﻿/**
 * Laptop V2 Safak ??" ana stiller (kampanya vitrini / e-ticaret hissi)
 */

:root {
    --lv2-orange: #2563eb;
    --lv2-orange-dark: #1e40af;
    --lv2-purple: #2563eb;
    --lv2-ink: #0f172a;
    --lv2-muted: #64748b;
    --lv2-bg: #f8fafc;
    --lv2-card: #ffffff;
    --lv2-line: rgba(15, 23, 42, 0.08);
    --lv2-radius: 14px;
    --lv2-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    --lv2-font: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
    /* Hero ??" tutarli ?l?? */
    --lv2-hero-min-h: clamp(280px, 52svh, 500px);
    --lv2-hero-copy-pad-x: clamp(18px, 2.8vw, 40px);
    --lv2-hero-copy-pad-y: clamp(18px, 2.8vh, 30px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.lv2-nav-open {
    overflow: hidden;
}

body {
    margin: 0;
    font-family: var(--lv2-font);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--lv2-ink);
    background: var(--lv2-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

#page {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--lv2-orange-dark);
}

a:hover {
    color: var(--lv2-orange);
}

.lv2-container {
    width: min(1180px, 100% - 32px);
    margin-left: auto;
    margin-right: auto;
}

/* Footer: tam genişlik, içerik kenarlardan dengeli boşluk */
.lv2-footer > .lv2-container {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
    box-sizing: border-box;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip link */
.lv2-skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 99999;
    padding: 12px 18px;
    background: var(--lv2-orange);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.lv2-skip-link:focus {
    left: 12px;
}

/* Kampanya ?Yeridi */
.lv2-kv-bar {
    background: #2563eb;
    color: #fff;
    font-size: 0.8125rem;
    min-height: 40px;
}

.lv2-kv-bar__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    min-height: 40px;
    padding: 4px 0;
    justify-content: space-between;
    text-align: left;
}

.lv2-kv-bar__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #93c5fd;
    animation: lv2Pulse 1.6s ease-in-out infinite;
}

@keyframes lv2Pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

.lv2-kv-bar__text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.lv2-kv-bar__cta {
    flex-shrink: 0;
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--lv2-purple);
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.72rem;
    white-space: nowrap;
}

.lv2-kv-bar__cta:hover {
    background: #dbeafe;
}

@media (max-width: 640px) {
    .lv2-kv-bar {
        min-height: 36px;
        font-size: 0.74rem;
    }

    .lv2-kv-bar__inner {
        min-height: 36px;
        gap: 8px;
        padding: 3px 0;
    }

    .lv2-kv-bar__pulse {
        width: 7px;
        height: 7px;
    }

    .lv2-kv-bar__cta {
        min-height: 26px;
        padding: 0 9px;
        font-size: 0.68rem;
    }
}

/* Header ??" tam viewport geni?Yli?Yi (i?erik lv2-container ile hizali kalir) */
.lv2-header.lv2-header--full {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.lv2-header {
    background: var(--lv2-card);
    border-bottom: 1px solid var(--lv2-line);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.lv2-header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "brand nav toolbar";
    align-items: center;
    gap: 18px;
    padding: 14px 0;
}

.lv2-header__brand {
    grid-area: brand;
}

.lv2-nav {
    grid-area: nav;
}

.lv2-header__toolbar {
    grid-area: toolbar;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.lv2-logo {
    text-decoration: none;
    color: inherit;
}

.lv2-logo--text .lv2-logo__title {
    display: block;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.lv2-logo--text .lv2-logo__tag {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--lv2-muted);
}

.lv2-logo--custom .custom-logo-link {
    display: block;
}

.lv2-logo--custom img {
    max-height: 48px;
    width: auto;
}

/* Nav */
.lv2-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--lv2-line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.lv2-nav-toggle__lines {
    display: block;
    width: 22px;
    height: 2px;
    margin: 6px auto;
    background: var(--lv2-ink);
    box-shadow: 0 -7px 0 var(--lv2-ink), 0 7px 0 var(--lv2-ink);
}

.lv2-nav__list {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lv2-nav__list > li > a {
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lv2-ink);
    text-decoration: none;
}

.lv2-nav__list > li > a:hover {
    background: rgba(37, 99, 235, 0.09);
}

.lv2-nav .sub-menu {
    display: none;
}

.lv2-header__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lv2-hide-mobile {
    display: inline-flex;
}

/* Buttons */
.lv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lv2-btn--primary {
    background: linear-gradient(135deg, var(--lv2-orange) 0%, var(--lv2-orange-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.lv2-btn--primary:hover {
    transform: translateY(-1px);
    color: #fff;
}

.lv2-btn--outline {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.45);
    color: var(--lv2-orange-dark);
}

.lv2-btn--ghost {
    background: transparent;
    color: var(--lv2-ink);
    border-color: var(--lv2-line);
}

.lv2-btn--whatsapp {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.35);
}

.lv2-btn--whatsapp:hover {
    color: #fff !important;
    filter: brightness(1.05);
}

.lv2-btn--lg {
    padding: 16px 26px;
    font-size: 1rem;
}

.lv2-btn--xl {
    padding: 18px 30px;
    font-size: 1.05rem;
}

@media (max-width: 920px) {
    .lv2-hide-mobile {
        display: none;
    }

    .lv2-nav-toggle {
        display: block;
    }

    .lv2-nav {
        display: none;
        border-top: 1px solid var(--lv2-line);
        padding-top: 12px;
    }

    .lv2-nav.is-open {
        display: block;
    }

    .lv2-nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .lv2-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand toolbar"
            "nav nav";
    }

    /* ?ost satirda men? ikonu + WhatsApp yan yana */
    .lv2-header__toolbar .lv2-btn--whatsapp {
        padding: 10px 14px;
        font-size: 0.8125rem;
        gap: 6px;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .lv2-kv-bar__pulse {
        animation: none;
    }
}

/* Hero */
.lv2-hero {
    padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 8vw, 96px);
    background:
        radial-gradient(circle at 82% 18%, rgba(124, 58, 237, 0.12), transparent 42%),
        radial-gradient(circle at 12% 72%, rgba(37, 99, 235, 0.1), transparent 45%);
}

.lv2-hero__grid {
    display: grid;
    gap: clamp(28px, 5vw, 52px);
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
    align-items: start;
}

.lv2-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--lv2-orange-dark);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.lv2-hero__title {
    margin: 0 0 16px;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 800;
}

.lv2-hero__lead {
    margin: 0 0 28px;
    color: var(--lv2-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 52ch;
}

.lv2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.lv2-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lv2-muted);
}

.lv2-hero__trust li {
    padding-left: 22px;
    position: relative;
}

.lv2-hero__trust li::before {
    content: "?o"";
    position: absolute;
    left: 0;
    color: var(--lv2-purple);
    font-weight: 900;
}


/* Hero panel */
.lv2-hero__panel {
    position: relative;
    padding: 28px 26px;
    border-radius: var(--lv2-radius);
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid var(--lv2-line);
    box-shadow: var(--lv2-shadow);
    overflow: hidden;
}

.lv2-hero__flare {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.22);
    filter: blur(40px);
}

.lv2-hero__panel-kicker {
    margin: 0 0 8px;
    font-size: 0.6875rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--lv2-purple);
}

.lv2-hero__panel-big {
    margin: 0 0 22px;
    font-weight: 700;
    font-size: 1rem;
}

.lv2-hero__mini {
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px dashed var(--lv2-line);
}

.lv2-hero__mini div + div {
    margin-top: 12px;
}

.lv2-hero__mini dt {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--lv2-muted);
}

.lv2-hero__mini dd {
    margin: 4px 0 0;
    font-weight: 700;
}

.lv2-hero__mini a {
    text-decoration: none;
}

.lv2-hero__footnote {
    margin: 16px 0 0;
    font-size: 0.75rem;
    color: var(--lv2-muted);
}

/* Hero ??" yatay slider: tam geni?Ylik, k??Yesiz, kart ?er?evesi yok */
.lv2-hero.lv2-hero--slider {
    padding: 0;
    margin: 0;
    background: var(--lv2-hero-bg, transparent);
    transition:
        background 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lv2-hero--slider {
    overflow: hidden;
}

.lv2-hero--slider .lv2-hero__grid {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(420px, 0.85fr) minmax(420px, 1fr);
    align-items: stretch;
    align-content: stretch;
    gap: 0;
    min-height: var(--lv2-hero-min-h);
    min-height: clamp(280px, 52vh, 500px);
}

.lv2-hero__copy--slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-inline: max(var(--lv2-hero-copy-pad-x), env(safe-area-inset-left))
        max(var(--lv2-hero-copy-pad-x), env(safe-area-inset-right));
    padding-block: max(var(--lv2-hero-copy-pad-y), env(safe-area-inset-top))
        max(var(--lv2-hero-copy-pad-y), env(safe-area-inset-bottom));
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition:
        background 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slider i?i tipografi ??" net kontrast ve ?l?? */
.lv2-hero--slider .lv2-hero__title {
    margin: 0 0 0.55em;
    color: var(--lv2-ink);
    font-size: clamp(1.35rem, 1.05vw + 0.95rem, 2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
    max-width: min(28rem, 100%);
}

.lv2-hero--slider .lv2-hero__lead {
    margin: 0 0 1.25rem;
    color: #475569;
    font-size: clamp(0.88rem, 0.18vw + 0.84rem, 0.98rem);
    line-height: 1.45;
    max-width: 32rem;
}

.lv2-hero--slider .lv2-pill {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    line-height: 1.25;
    letter-spacing: 0.08em;
}

.lv2-hero__copy--slide .lv2-hero__lead {
    max-width: 32rem;
}

.lv2-hero__media {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    align-self: stretch;
    min-height: var(--lv2-hero-min-h);
    min-height: clamp(280px, 52vh, 500px);
    box-shadow: none;
    border: 0;
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.lv2-hero__viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lv2-hero__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    width: calc(var(--lv2-hero-slide-count, 1) * 100%);
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.lv2-hero.is-reduced-motion .lv2-hero__track {
    transition: none;
}

.lv2-hero__slide {
    flex: 0 0 calc(100% / var(--lv2-hero-slide-count, 1));
    min-width: 0;
    height: 100%;
    margin: 0;
}

.lv2-hero__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.lv2-hero__controls {
    position: absolute;
    bottom: clamp(10px, 1.8vw, 18px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    border: 0;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.22);
    z-index: 3;
}

.lv2-hero__btn {
    appearance: none;
    border: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 8px;
    background: transparent;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.lv2-hero__btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lv2-hero__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lv2-hero__dot {
    flex-shrink: 0;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.lv2-hero__dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    transition: transform 0.15s ease, background 0.15s ease;
}

.lv2-hero__dot.is-active::after {
    background: #fff;
    transform: scale(1.2);
}

.lv2-hero__btn:focus-visible,
.lv2-hero__dot:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

/* Hero Neo: full-width, minimal-height, mobile friendly */
.lv2-hero--neo {
    margin: 0 0 10px;
    padding: 0;
    --lv2-hero-min-h: clamp(220px, 38svh, 360px);
}

.lv2-hero--neo .lv2-hero__grid {
    width: 100%;
    max-width: none;
    min-height: var(--lv2-hero-min-h);
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(340px, 1.2fr);
    gap: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    background: #fff;
}

.lv2-hero--neo .lv2-hero__copy--slide {
    min-height: var(--lv2-hero-min-h);
    padding: clamp(18px, 2vw, 28px) clamp(18px, 2.2vw, 32px);
    justify-content: center;
}

.lv2-hero--neo .lv2-hero__title {
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    line-height: 1.14;
    margin-bottom: 10px;
}

.lv2-hero--neo .lv2-hero__lead {
    font-size: clamp(0.92rem, 1vw, 1rem);
    margin-bottom: 14px;
}

.lv2-hero--neo .lv2-hero__actions {
    margin-bottom: 0;
    gap: 10px;
}

.lv2-hero--neo .lv2-hero__actions .lv2-btn {
    min-height: 40px;
}

.lv2-hero--neo .lv2-hero__trust {
    display: none;
}

.lv2-hero--neo .lv2-hero__media {
    min-height: var(--lv2-hero-min-h);
}

.lv2-hero--neo .lv2-hero__img {
    object-fit: cover;
    object-position: center;
}

.lv2-hero--neo .lv2-hero__controls {
    bottom: 10px;
}

@media (max-width: 920px) {
    .lv2-hero__grid {
        grid-template-columns: 1fr;
    }

    .lv2-hero--slider .lv2-hero__grid {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .lv2-hero--slider .lv2-hero__media {
        order: -1;
        min-height: clamp(180px, 36vmin, 280px);
        min-height: min(36svh, 280px);
    }

    .lv2-hero__copy--slide {
        text-align: center;
        padding-inline: max(18px, env(safe-area-inset-left)) max(18px, env(safe-area-inset-right));
        padding-block: clamp(16px, 4.2vw, 28px);
    }

    .lv2-hero--slider .lv2-hero__title {
        max-width: none;
        font-size: clamp(1.18rem, 3.6vw + 0.5rem, 1.6rem);
        line-height: 1.12;
        margin-bottom: 0.4em;
    }

    .lv2-hero--slider .lv2-hero__lead {
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.9rem;
    }

    .lv2-hero__copy--slide .lv2-hero__lead {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .lv2-hero__copy--slide .lv2-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .lv2-hero__copy--slide .lv2-hero__actions,
    .lv2-hero__copy--slide .lv2-hero__trust {
        justify-content: center;
    }

    .lv2-hero__copy--slide .lv2-hero__trust li {
        padding-left: 22px;
    }

    .lv2-hero__copy--slide .lv2-hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 1.5rem;
    }

    .lv2-hero--slider .lv2-btn--lg {
        width: 100%;
        justify-content: center;
        max-width: 360px;
        box-sizing: border-box;
    }

    .lv2-hero--neo .lv2-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .lv2-hero--neo .lv2-hero__media {
        order: -1;
        min-height: clamp(190px, 42svh, 280px);
    }

    .lv2-hero--neo .lv2-hero__copy--slide {
        text-align: center;
        min-height: 0;
        padding: 16px 14px 20px;
    }

    .lv2-hero--neo .lv2-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .lv2-hero--neo .lv2-hero__actions {
        justify-content: center;
    }
}

/* Strip */
.lv2-home > :where(
    section,
    .lv2-city-launcher,
    .lv2-service-highlights,
    .lv2-brand-showcase,
    .lv2-dual-lead,
    .lv2-home-seo-timeline
) + :where(
    section,
    .lv2-city-launcher,
    .lv2-service-highlights,
    .lv2-brand-showcase,
    .lv2-dual-lead,
    .lv2-home-seo-timeline
) {
    margin-top: clamp(14px, 2.2vw, 28px);
}

.lv2-top-promo {
    width: 100vw;
    margin: 8px calc(50% - 50vw) 10px;
}

.lv2-top-promo__viewport {
    overflow: hidden;
}

.lv2-top-promo__track {
    display: flex;
    transition: transform 520ms ease;
}

.lv2-top-promo__slide {
    flex: 0 0 100%;
    background: var(--lv2-promo-bg, #dbeafe);
    min-height: clamp(210px, 30vw, 300px);
}

.lv2-top-promo__inner {
    width: min(1180px, calc(100% - 16px));
    margin: 0 auto;
    min-height: inherit;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 8px;
    align-items: center;
    padding: clamp(14px, 2.2vw, 26px) 0;
}

.lv2-top-promo__copy p {
    margin: 0 0 8px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0f172a;
    font-weight: 700;
}

.lv2-top-promo__copy h2 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 3.2vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.lv2-top-promo__copy span {
    display: block;
    color: #1f2937;
    font-size: clamp(0.84rem, 1.1vw, 1rem);
    line-height: 1.5;
    margin-bottom: 12px;
}

.lv2-top-promo__copy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 8px;
    padding: 0 14px;
    text-decoration: none;
    background: #0f172a;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
}

.lv2-top-promo__media {
    margin: 0;
    display: flex;
    justify-content: center;
}

.lv2-top-promo__media img {
    width: min(460px, 100%);
    max-height: 230px;
    object-fit: contain;
    border-radius: 10px;
}

.lv2-top-promo__controls {
    width: min(1180px, calc(100% - 16px));
    margin: 8px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lv2-top-promo__dots {
    display: inline-flex;
    gap: 5px;
}

.lv2-top-promo__dots button {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    border: 0;
    background: rgba(15, 23, 42, 0.28);
    padding: 0;
    cursor: pointer;
}

.lv2-top-promo__dots button.is-active {
    background: #0f172a;
}

.lv2-top-promo__arrows {
    display: inline-flex;
    gap: 6px;
}

.lv2-top-promo__arrows button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.lv2-service-showcase {
    width: 100%;
    background:
        radial-gradient(circle at 10% 14%, rgba(30, 64, 175, 0.1), transparent 38%),
        radial-gradient(circle at 90% 86%, rgba(56, 189, 248, 0.08), transparent 36%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    padding: clamp(28px, 3.4vw, 44px) 0;
}

.lv2-service-showcase__head {
    display: grid;
    gap: 10px;
}

.lv2-service-showcase__eyebrow {
    margin: 0;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1d4ed8;
}

.lv2-service-showcase__head h2 {
    margin: 0;
    text-align: center;
    color: #0f172a;
    font-size: clamp(1.35rem, 2.45vw, 2.3rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.lv2-service-showcase__head p {
    margin: 0 auto;
    max-width: 72ch;
    text-align: center;
    color: #334155;
    font-size: clamp(0.9rem, 1.08vw, 1.02rem);
    line-height: 1.68;
}

.lv2-service-showcase__perks {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.lv2-service-showcase__perks p {
    margin: 0;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    color: #0f172a;
    font-weight: 700;
    padding: 0 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lv2-service-showcase__grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.lv2-service-showcase__card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.9);
    min-height: 246px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 12px;
    padding: 12px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.26s ease,
        box-shadow 0.26s ease,
        border-color 0.26s ease;
}

.lv2-service-showcase__card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
}

.lv2-service-showcase__media-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    aspect-ratio: 16 / 10;
}

.lv2-service-showcase__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.28s ease;
}

.lv2-service-showcase__card:hover .lv2-service-showcase__card img {
    transform: scale(1.04);
}

.lv2-service-showcase__card-body {
    display: grid;
    gap: 7px;
    align-content: start;
}

.lv2-service-showcase__card h3 {
    margin: 0;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.lv2-service-showcase__card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #475569;
}

.lv2-refurb {
    background:
        radial-gradient(circle at 8% 16%, rgba(37, 99, 235, 0.12), transparent 38%),
        radial-gradient(circle at 92% 88%, rgba(124, 58, 237, 0.12), transparent 38%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
    padding: clamp(26px, 3.4vw, 40px) 0;
}

.lv2-refurb__head h2 {
    margin: 0 0 8px;
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 2.2rem);
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.lv2-refurb__head p {
    margin: 0 auto;
    max-width: 72ch;
    text-align: center;
    font-size: 0.92rem;
    color: #334155;
}

.lv2-refurb__carousel {
    margin-top: 20px;
    position: relative;
}

.lv2-refurb__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-inline: clamp(-8px, -1.5vw, 0);
    padding-inline: clamp(4px, 1vw, 8px);
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.55) transparent;
}

.lv2-refurb__viewport::-webkit-scrollbar {
    height: 6px;
}

.lv2-refurb__viewport::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 999px;
}

.lv2-refurb__track {
    display: flex;
    gap: 18px;
    padding: 8px 4px 16px;
}

.lv2-refurb__card {
    flex: 0 0 clamp(260px, 74vw, 302px);
    scroll-snap-align: start;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 408px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    box-shadow:
        0 20px 42px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .lv2-refurb__card {
        transition: none;
    }
}

.lv2-refurb__card:hover {
    transform: scale(1.02);
    box-shadow:
        0 28px 54px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(37, 99, 235, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .lv2-refurb__card:hover {
        transform: none;
    }
}

.lv2-refurb__card--dark {
    background: linear-gradient(160deg, #0b1220 0%, #111b33 58%, #0f172a 100%);
    color: #f5f5f7;
}

.lv2-refurb__card--light {
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 52%, #eef2ff 100%);
    color: #1d1d1f;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.09),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lv2-refurb__card--light:hover {
    box-shadow:
        0 28px 54px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(37, 99, 235, 0.14);
}

.lv2-refurb__card-copy {
    padding: 26px 24px 12px;
    flex-shrink: 0;
}

.lv2-refurb__badge {
    display: block;
    margin-bottom: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563eb;
}

.lv2-refurb__card--light .lv2-refurb__badge {
    color: #1d4ed8;
}

.lv2-refurb__card-copy h3 {
    margin: 0 0 8px;
    font-size: clamp(1.12rem, 2.6vw, 1.42rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.lv2-refurb__card--dark .lv2-refurb__card-copy h3 {
    color: #ffffff;
}

.lv2-refurb__card--light .lv2-refurb__card-copy h3 {
    color: #1d1d1f;
}

.lv2-refurb__tagline {
    margin: 0 0 10px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.lv2-refurb__card--dark .lv2-refurb__tagline {
    color: #d2d2d7;
}

.lv2-refurb__card--light .lv2-refurb__tagline {
    color: #424245;
}

.lv2-refurb__meta {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
}

.lv2-refurb__card--dark .lv2-refurb__meta {
    color: #a1a1a6;
}

.lv2-refurb__card--light .lv2-refurb__meta {
    color: #6e6e73;
}

.lv2-refurb__card-visual {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 0;
    margin-top: auto;
    padding: 0 12px 4px;
    overflow: visible;
}

.lv2-refurb__card-visual img {
    width: 110%;
    max-width: none;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    object-position: center bottom;
    transform: translateY(8%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.3));
    pointer-events: none;
    user-select: none;
}

.lv2-refurb__card--light .lv2-refurb__card-visual img {
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.18));
}

.lv2-refurb__controls {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.lv2-refurb__nav {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #e8e8ed;
    color: #3a3a3c;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.lv2-refurb__nav:hover {
    background: #dcdce2;
    transform: scale(1.05);
}

.lv2-refurb__nav:active {
    transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
    .lv2-refurb__nav:hover,
    .lv2-refurb__nav:active {
        transform: none;
    }
}

.lv2-refurb__detail {
    margin-top: 20px;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.lv2-refurb__media {
    margin: 0;
}

.lv2-refurb__media img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    max-height: 320px;
}

.lv2-refurb__copy h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(1.08rem, 1.8vw, 1.5rem);
    line-height: 1.2;
}

.lv2-refurb__copy p {
    margin: 0 0 10px;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.7;
}

.lv2-welcome {
    padding: clamp(22px, 3.2vw, 42px) 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.12), transparent 36%),
        radial-gradient(circle at 88% 78%, rgba(59, 130, 246, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.lv2-welcome__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 1fr);
    gap: clamp(14px, 2.2vw, 26px);
    align-items: center;
}

.lv2-welcome__title {
    margin: 8px 0 10px;
    font-size: clamp(1.25rem, 2.5vw, 2.2rem);
    line-height: 1.12;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.lv2-welcome__lead {
    margin: 0 0 14px;
    font-size: clamp(0.92rem, 1.05vw, 1.04rem);
    color: #475569;
    max-width: 62ch;
}

.lv2-welcome__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-welcome__highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.lv2-welcome__highlights li {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: #fff;
    color: #1e3a8a;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.lv2-hero-canvas-strip {
    width: min(1180px, calc(100% - 16px));
    margin: 6px auto 18px;
}

.lv2-hero-canvas-strip__marquee {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 8px 0;
}

.lv2-hero-canvas-strip__track {
    display: inline-flex;
    gap: 10px;
    min-width: max-content;
    padding: 0 10px;
    animation: lv2HeroCanvasFlow 24s linear infinite;
}

.lv2-hero-canvas-strip__marquee:hover .lv2-hero-canvas-strip__track {
    animation-play-state: paused;
}

.lv2-hero-canvas-strip__tile {
    width: clamp(170px, 18vw, 230px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.lv2-hero-canvas-strip__tile img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.lv2-hero-canvas-strip__tile span {
    display: block;
    padding: 8px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

@media (max-width: 860px) {
    .lv2-home > :where(
        section,
        .lv2-city-launcher,
        .lv2-service-highlights,
        .lv2-brand-showcase,
        .lv2-dual-lead,
        .lv2-home-seo-timeline
    ) + :where(
        section,
        .lv2-city-launcher,
        .lv2-service-highlights,
        .lv2-brand-showcase,
        .lv2-dual-lead,
        .lv2-home-seo-timeline
    ) {
        margin-top: 12px;
    }

    .lv2-welcome__inner {
        grid-template-columns: 1fr;
    }

    .lv2-welcome__copy {
        text-align: center;
    }

    .lv2-welcome__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .lv2-welcome__actions {
        justify-content: center;
    }

    .lv2-top-promo {
        width: 100vw;
        margin: 8px calc(50% - 50vw) 10px;
    }

    .lv2-top-promo__inner {
        width: min(100%, calc(100% - 12px));
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        min-height: 0;
        padding: 12px 0;
    }

    .lv2-top-promo__media img {
        max-height: 170px;
    }

    .lv2-top-promo__controls {
        width: min(100%, calc(100% - 12px));
        justify-content: center;
        gap: 16px;
    }

    .lv2-service-showcase__perks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .lv2-service-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .lv2-service-showcase__card {
        min-height: 220px;
        border-radius: 14px;
    }

    .lv2-service-showcase__card-body {
        gap: 6px;
    }

    .lv2-service-showcase__card p {
        font-size: 0.78rem;
    }

    .lv2-refurb__detail {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lv2-refurb__card {
        flex: 0 0 min(280px, 82vw);
        min-height: 360px;
    }

    .lv2-refurb__card-visual img {
        max-height: 170px;
    }

    .lv2-refurb__nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lv2-hero-canvas-strip {
        width: min(100%, calc(100% - 12px));
        margin: 6px auto 14px;
    }

    .lv2-hero-canvas-strip__marquee {
        border-radius: 14px;
        padding: 6px 0;
    }

    .lv2-hero-canvas-strip__track {
        gap: 8px;
        padding: 0 8px;
        animation-duration: 20s;
    }

    .lv2-hero-canvas-strip__tile {
        width: min(180px, 58vw);
        border-radius: 12px;
    }
}

.lv2-hero-lite {
    padding: clamp(26px, 4vw, 44px) 0 clamp(16px, 2.2vw, 24px);
    background:
        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.1), transparent 36%),
        radial-gradient(circle at 85% 80%, rgba(124, 58, 237, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.lv2-hero-lite__inner {
    display: grid;
    gap: clamp(14px, 2.2vw, 22px);
    justify-items: center;
    text-align: center;
}

.lv2-hero-lite__copy {
    max-width: 660px;
}

.lv2-hero-lite__title {
    margin: 0 0 8px;
    color: #0b1f53;
    font-size: clamp(1.45rem, 2.6vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.lv2-hero-lite__lead {
    margin: 0 0 16px;
    color: #475569;
    font-size: clamp(0.96rem, 1.25vw, 1.08rem);
}

.lv2-hero-lite__btn.lv2-btn {
    min-width: 142px;
    min-height: 42px;
    border-radius: 999px;
    border-color: rgba(30, 41, 59, 0.26);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.lv2-hero-lite__btn.lv2-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.lv2-hero-lite__media {
    margin: 0;
    width: min(780px, 100%);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.lv2-hero-lite__media img {
    display: block;
    width: 100%;
    height: clamp(220px, 36vw, 430px);
    object-fit: cover;
    object-position: center;
}

@media (max-width: 640px) {
    .lv2-hero-lite__media {
        border-radius: 14px;
    }

    .lv2-hero-lite__media img {
        height: clamp(200px, 58vw, 300px);
    }
}

.lv2-strip {
    padding: clamp(16px, 2.2vw, 24px) 0;
}

.lv2-strip--muted {
    background:
        radial-gradient(circle at 14% 30%, rgba(124, 58, 237, 0.08), transparent 44%),
        radial-gradient(circle at 88% 76%, rgba(37, 99, 235, 0.08), transparent 44%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.lv2-strip--trust {
    padding: 10px 0 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.lv2-strip--trust .lv2-strip__marquee {
    mask-image: none;
    -webkit-mask-image: none;
    white-space: normal;
    padding-inline: 8px;
}

.lv2-strip--trust .lv2-strip__track {
    gap: 10px;
    padding: 0;
    animation-duration: 42s;
    animation-name: lv2TrustFlow;
}

.lv2-strip__lane--right .lv2-strip__track {
    animation-direction: reverse;
    animation-delay: -15s;
}

.lv2-strip__lane + .lv2-strip__lane {
    margin-top: 10px;
}

@keyframes lv2TrustFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.lv2-review-card {
    width: min(360px, 86vw);
    min-height: 0;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 7px;
    overflow: hidden;
}

.lv2-review-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lv2-review-card__avatar {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.08));
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 800;
}

.lv2-review-card__identity {
    min-width: 0;
    display: grid;
}

.lv2-review-card__identity strong {
    font-size: 0.78rem;
    line-height: 1.2;
    color: #1e293b;
}

.lv2-review-card__identity span {
    font-size: 0.64rem;
    color: #64748b;
    line-height: 1.2;
}

.lv2-review-card p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #334155;
    display: block;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.lv2-review-card small {
    font-size: 0.66rem;
    line-height: 1;
    color: #94a3b8;
}

.lv2-city-launcher {
    padding: 18px 0 20px;
    text-align: center;
}

.lv2-city-launcher__btn {
    appearance: none;
    border: 1px solid rgba(37, 99, 235, 0.24);
    background: #fff;
    color: #1d4ed8;
    min-height: 38px;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.lv2-city-popup[hidden] {
    display: none;
}

.lv2-city-popup {
    position: fixed;
    inset: 0;
    z-index: 250;
}

.lv2-city-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.56);
}

.lv2-city-popup__panel {
    position: relative;
    width: min(980px, calc(100vw - 20px));
    max-height: min(82svh, 760px);
    overflow: auto;
    margin: 4.2vh auto 0;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #fff;
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.26);
    padding: 14px;
}

.lv2-city-popup__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.lv2-city-popup__head h2 {
    margin: 0;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.lv2-city-popup__close {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 8px;
    background: #fff;
    color: #334155;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.lv2-city-popup__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}

.lv2-city-popup__grid a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: #f8fbff;
    color: #1e3a8a;
    text-decoration: none;
    padding: 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
}

.lv2-city-popup__grid a:hover {
    border-color: rgba(37, 99, 235, 0.38);
    background: #eff6ff;
}

body.lv2-popup-open {
    overflow: hidden;
}

.lv2-service-highlights {
    width: 100%;
    padding: 6px 0 24px;
}

.lv2-service-highlights__inner {
    width: min(1180px, calc(100% - 16px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.lv2-service-highlights__item {
    min-height: 54px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    text-align: center;
}

.lv2-service-highlights__item h3 {
    margin: 0;
    font-size: clamp(0.84rem, 1.4vw, 1rem);
    line-height: 1.25;
    color: #0f2f79;
    letter-spacing: 0.01em;
}

.lv2-brand-showcase {
    position: relative;
    width: 100%;
    padding: 10px 0 30px;
    overflow: visible;
}

.lv2-brand-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.15), transparent 44%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.14), transparent 46%);
}

.lv2-brand-showcase__head {
    width: min(1180px, calc(100% - 16px));
    margin: 0 auto 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lv2-brand-showcase__head p {
    margin: 0 0 6px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1d4ed8;
    font-weight: 700;
}

.lv2-brand-showcase__head h2 {
    margin: 0;
    font-size: clamp(1.12rem, 2.2vw, 1.9rem);
    letter-spacing: -0.02em;
    color: #0f172a;
}

.lv2-brand-showcase__marquee {
    display: flex;
    width: min(1180px, calc(100% - 16px));
    margin: 0 auto;
    overflow: hidden;
    gap: 0;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
    padding: 8px 0;
    mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.lv2-brand-showcase__track {
    display: inline-flex;
    align-items: stretch;
    gap: 10px;
    min-width: max-content;
    padding: 6px 10px;
    animation: lv2ShowcaseFlow 36s linear infinite;
}

.lv2-brand-showcase__marquee:hover .lv2-brand-showcase__track {
    animation-play-state: paused;
}

.lv2-brand-showcase__card {
    width: clamp(220px, 25vw, 320px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #ffffff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
    transform: translateZ(0);
}

.lv2-brand-showcase__card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.lv2-brand-showcase__meta {
    display: grid;
    gap: 2px;
    padding: 10px 12px 11px;
}

.lv2-brand-showcase__meta strong {
    font-size: 0.88rem;
    line-height: 1.2;
    color: #0f172a;
}

.lv2-brand-showcase__meta span {
    font-size: 0.72rem;
    line-height: 1.2;
    color: #475569;
}

.lv2-dual-lead {
    width: 100%;
    padding: 14px 0 30px;
}

.lv2-dual-lead__inner {
    width: min(1180px, calc(100% - 16px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lv2-dual-lead__card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.92));
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.1);
    padding: 16px;
}

.lv2-dual-lead__eyebrow {
    margin: 0 0 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1d4ed8;
    font-weight: 700;
}

.lv2-dual-lead__card h3 {
    margin: 0 0 12px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.3;
    color: #0f172a;
}

.lv2-dual-lead__sub {
    margin: 0 0 12px;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #475569;
}

.lv2-dual-lead__open {
    width: 100%;
}

.lv2-dual-lead__fields {
    display: grid;
    gap: 8px;
}

.lv2-dual-lead__input {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #fff;
    color: #0f172a;
    padding: 0 12px;
    font-size: 0.86rem;
}

.lv2-dual-lead__textarea {
    min-height: 76px;
    resize: vertical;
    padding: 10px 12px;
}

.lv2-dual-lead__types {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 8px;
}

.lv2-dual-lead__types button {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 999px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    background: #fff;
    cursor: pointer;
}

.lv2-dual-lead__types button.is-active {
    border-color: rgba(37, 99, 235, 0.4);
    background: #eff6ff;
    color: #1d4ed8;
}

.lv2-lead-popup[hidden] {
    display: none;
}

.lv2-lead-popup {
    position: fixed;
    inset: 0;
    z-index: 255;
}

.lv2-lead-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.56);
}

.lv2-lead-popup__panel {
    position: relative;
    width: min(560px, calc(100vw - 20px));
    max-height: min(86svh, 760px);
    overflow: auto;
    margin: 7vh auto 0;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #fff;
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.26);
    padding: 14px;
}

.lv2-lead-popup__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.lv2-lead-popup__head h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
    color: #0f172a;
}

.lv2-lead-popup__close {
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 8px;
    background: #fff;
    color: #334155;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.lv2-home-seo-timeline {
    width: 100vw;
    margin: 10px calc(50% - 50vw) 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.lv2-home-seo-timeline__head {
    width: min(1180px, calc(100% - 16px));
    margin: 0 auto 12px;
}

.lv2-home-seo-timeline__head > p:first-child {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2563eb;
    font-weight: 800;
}

.lv2-home-seo-timeline__head h2 {
    margin: 10px 0 10px;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.lv2-home-seo-timeline__lead {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
}

.lv2-home-seo-timeline__marquee {
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.lv2-home-seo-timeline__track {
    display: inline-flex;
    align-items: stretch;
    gap: 10px;
    min-width: max-content;
    padding: 0 10px;
    animation: lv2HomeSeoFlow 30s linear infinite;
}

.lv2-home-seo-timeline__marquee:hover .lv2-home-seo-timeline__track {
    animation-play-state: paused;
}

.lv2-home-seo-timeline__item {
    width: clamp(250px, 26vw, 340px);
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    padding: 13px 13px 12px;
}

.lv2-home-seo-timeline__no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.24);
    color: #1d4ed8;
    background: #eff6ff;
    font-size: 0.68rem;
    font-weight: 800;
}

.lv2-home-seo-timeline__item h3 {
    margin: 8px 0 6px;
    font-size: 0.9rem;
    line-height: 1.34;
    color: #0f172a;
}

.lv2-home-seo-timeline__item p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.55;
    color: #475569;
}

.lv2-seo-categories {
    width: min(1180px, calc(100% - 16px));
    margin: 0 auto 38px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    padding: clamp(14px, 2.3vw, 24px);
}

.lv2-seo-categories__head p {
    margin: 0;
}

.lv2-seo-categories__head > p:first-child {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1d4ed8;
    font-weight: 800;
}

.lv2-seo-categories__head h2 {
    margin: 8px 0;
    font-size: clamp(1.08rem, 2vw, 1.7rem);
    line-height: 1.2;
    color: #0f172a;
}

.lv2-seo-categories__lead {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
}

.lv2-seo-categories__toolbar {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lv2-seo-categories__search {
    width: min(560px, 100%);
    min-height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #fff;
    color: #0f172a;
    padding: 0 12px;
    font-size: 0.84rem;
}

.lv2-seo-categories__count {
    font-size: 0.76rem;
    color: #1e3a8a;
    font-weight: 700;
}

.lv2-seo-categories__grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    max-height: 760px;
    overflow: auto;
    padding-right: 2px;
}

.lv2-seo-categories__item {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    background: #f8fbff;
    color: #1e3a8a;
    text-decoration: none;
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 10px;
}

.lv2-seo-categories__item:hover {
    background: #eff6ff;
    border-color: rgba(37, 99, 235, 0.32);
}

.lv2-strip__row {
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(14px, 2.6vw, 28px);
    box-sizing: border-box;
}

.lv2-strip__item {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    color: #475569;
    line-height: 1.45;
}

.lv2-strip__item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.96rem;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.lv2-strip__row--brands {
    display: none;
}

.lv2-strip__marquee {
    width: 100%;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.lv2-strip__track {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 2px 10px;
    min-width: max-content;
    animation: lv2BrandMarquee 34s linear infinite;
}

.lv2-strip__marquee:hover .lv2-strip__track {
    animation-play-state: paused;
}


@keyframes lv2BrandMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes lv2HeroCanvasFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.lv2-strip__brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 9px 13px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.lv2-strip__brand-name {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    color: #0f172a;
    white-space: nowrap;
}

.lv2-strip__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}

.lv2-strip__trust-item::after {
    content: "•";
    color: rgba(15, 23, 42, 0.55);
    font-weight: 700;
}

@media (max-width: 768px) {
    .lv2-strip {
        padding: 14px 0;
    }

    .lv2-strip__row {
        padding-inline: 12px;
    }

    .lv2-strip__marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .lv2-strip__track {
        gap: 8px;
        animation-duration: 24s;
    }

    .lv2-strip--trust .lv2-strip__track {
        animation-duration: 32s;
        animation-delay: -11s;
    }

    .lv2-review-card {
        width: min(320px, 92vw);
        min-height: 0;
    }

    .lv2-service-highlights__inner {
        width: min(100%, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lv2-service-highlights__item {
        min-height: 48px;
        border-radius: 10px;
    }

    .lv2-brand-showcase {
        padding: 8px 0 22px;
    }

    .lv2-brand-showcase__marquee {
        width: min(100%, calc(100% - 12px));
        border-radius: 14px;
        padding: 6px 0;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .lv2-brand-showcase__track {
        padding: 4px 8px;
        gap: 8px;
        animation-duration: 28s;
    }

    .lv2-brand-showcase__card {
        width: min(250px, 78vw);
        border-radius: 16px;
    }

    .lv2-dual-lead__inner {
        width: min(100%, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lv2-dual-lead__card {
        border-radius: 14px;
        padding: 12px;
    }

    .lv2-lead-popup__panel {
        width: min(100%, calc(100vw - 12px));
        margin-top: 5vh;
        border-radius: 12px;
        padding: 12px;
    }

    .lv2-home-seo-timeline {
        margin: 8px calc(50% - 50vw) 24px;
    }

    .lv2-home-seo-timeline__head {
        width: min(100%, calc(100% - 12px));
    }

    .lv2-home-seo-timeline__marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .lv2-home-seo-timeline__track {
        gap: 8px;
        padding: 0 8px;
        animation-duration: 22s;
    }

    .lv2-home-seo-timeline__item {
        width: min(260px, 82vw);
    }

    .lv2-seo-categories {
        width: min(100%, calc(100% - 12px));
        margin: 0 auto 24px;
        border-radius: 14px;
        padding: 12px;
    }

    .lv2-seo-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: 560px;
        gap: 6px;
    }

    .lv2-strip__brand-pill {
        flex: 0 0 auto;
        padding: 8px 10px;
        border-radius: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lv2-strip__track {
        animation: none;
    }

    .lv2-brand-showcase__track {
        animation: none;
    }
}

@keyframes lv2ShowcaseFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes lv2HomeSeoFlow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Sections */
.lv2-section {
    padding: clamp(44px, 8vw, 96px) 0;
    position: relative;
}

.lv2-section--alt {
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.lv2-section--alt .lv2-section__head {
    max-width: none;
    padding: clamp(18px, 2.2vw, 26px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lv2-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 8% 10%, rgba(59, 130, 246, 0.06), transparent 38%),
        radial-gradient(circle at 92% 86%, rgba(16, 185, 129, 0.05), transparent 34%);
}

.lv2-section > .lv2-wrap {
    position: relative;
    z-index: 1;
}

.lv2-section__head {
    margin-bottom: 36px;
    max-width: 680px;
}

.lv2-section__title {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lv2-section__sub {
    margin: 0;
    color: var(--lv2-muted);
}

.lv2-section__cta {
    margin-top: 36px;
    text-align: center;
}

/* Campaign cards */
.lv2-section--campaigns {
    background:
        linear-gradient(
            145deg,
            rgba(15, 23, 42, var(--lv2-campaigns-overlay, 0.8)) 0%,
            rgba(30, 41, 59, calc(var(--lv2-campaigns-overlay, 0.8) * 0.86)) 45%,
            rgba(15, 23, 42, var(--lv2-campaigns-overlay, 0.8)) 100%
        ),
        var(--lv2-campaigns-bg-image, url("../images/campaign-placeholder.svg")) center / cover no-repeat;
}

.lv2-section--campaigns .lv2-section__title,
.lv2-section--campaigns .lv2-section__sub {
    color: #f8fafc;
}

.lv2-section--campaigns .lv2-section__sub {
    opacity: 0.9;
}

.lv2-section--campaigns .lv2-container {
    overflow: hidden;
}

.lv2-campaigns {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 340px);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 14px;
    margin-inline: -4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 116, 139, 0.5) rgba(226, 232, 240, 0.45);
}

.lv2-campaigns::-webkit-scrollbar {
    height: 8px;
}

.lv2-campaigns::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.5);
    border-radius: 999px;
}

.lv2-campaigns::-webkit-scrollbar-thumb {
    background: rgba(100, 116, 139, 0.52);
    border-radius: 999px;
}

.lv2-card--campaign {
    scroll-snap-align: start;
    min-height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.lv2-card--campaign:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.lv2-card__media {
    margin: -22px -20px 14px;
    border-radius: 14px 14px 10px 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e2e8f0;
}

.lv2-card__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.001);
}

.lv2-card {
    padding: 22px 20px;
    border-radius: var(--lv2-radius);
    background: var(--lv2-card);
    border: 1px solid var(--lv2-line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

@media (max-width: 680px) {
    .lv2-campaigns {
        grid-auto-columns: minmax(84vw, 300px);
    }
}

.lv2-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lv2-shadow);
}

.lv2-card__badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--lv2-orange) 0%, var(--lv2-purple) 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.lv2-card__title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 800;
}

.lv2-card__desc {
    margin: 0 0 18px;
    flex: 1;
    font-size: 0.875rem;
    color: var(--lv2-muted);
}

.lv2-card__link {
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--lv2-orange-dark);
}

.lv2-card__link:hover {
    text-decoration: underline;
}

/* Brands */
.lv2-brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.lv2-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(37, 99, 235, 0.14);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lv2-brand-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.14);
}

.lv2-brand-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lv2-orange), var(--lv2-purple));
}

/* Steps */
.lv2-steps-wrap {
    max-width: 1120px;
}

.lv2-steps {
    display: grid;
    gap: clamp(14px, 2.2vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.lv2-step {
    position: relative;
    min-height: clamp(182px, 22vw, 220px);
    padding: clamp(18px, 2vw, 24px);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lv2-step:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.16);
}

.lv2-step__num {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lv2-purple), #1d4ed8);
    color: #fff;
    font-weight: 900;
    margin-bottom: 12px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.24);
}

.lv2-step__title {
    margin: 0 0 8px;
    font-size: clamp(1rem, 1.1vw, 1.14rem);
    line-height: 1.28;
}

.lv2-step p {
    margin: 0;
    font-size: clamp(0.9rem, 0.95vw, 0.98rem);
    line-height: 1.6;
    color: var(--lv2-muted);
}

@media (max-width: 860px) {
    .lv2-steps {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
}

@media (max-width: 640px) {
    .lv2-steps {
        grid-template-columns: 1fr;
    }

    .lv2-step {
        min-height: 0;
    }
}

/* Subelerimiz ??" iki hat */
.lv2-branches__eyebrow {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lv2-purple);
}

.lv2-branches__phones {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
}

.lv2-branches__phone {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 24px;
    border-radius: var(--lv2-radius);
    border: 2px solid var(--lv2-line);
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.lv2-branches__phone:hover {
    border-color: rgba(37, 99, 235, 0.45);
    transform: translateY(-3px);
}

.lv2-branches__phone-label {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lv2-orange-dark);
}

.lv2-branches__phone-num {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

@media (max-width: 560px) {
    .lv2-branches__phones {
        grid-template-columns: 1fr;
    }
}

/* Finale CTA */
.lv2-cta-finale {
    padding: clamp(48px, 10vw, 100px) 0;
    background: linear-gradient(135deg, var(--lv2-purple) 0%, #1e40af 48%, var(--lv2-orange-dark) 100%);
    color: #fff;
}

.lv2-cta-finale__inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.lv2-cta-finale__title {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
}

.lv2-cta-finale__text {
    margin: 0 0 28px;
    opacity: 0.92;
}

.lv2-cta-finale__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.lv2-proof__grid,
.lv2-usecases__grid,
.lv2-home-faq__grid,
.lv2-home-blog__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-proof__item,
.lv2-usecases__card,
.lv2-home-faq__item,
.lv2-home-blog__item {
    border: 1px solid var(--lv2-line);
    border-radius: 12px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.lv2-proof__item {
    position: relative;
    padding: clamp(18px, 2.1vw, 24px);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lv2-proof__item:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.14);
}

.lv2-proof__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
    color: #1d4ed8;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.16));
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.lv2-proof__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.lv2-proof__item h3,
.lv2-usecases__card h3,
.lv2-home-faq__item h3,
.lv2-home-blog__item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lv2-proof__item h3 {
    margin-bottom: 10px;
    font-size: clamp(1rem, 1.1vw, 1.12rem);
}

.lv2-proof__item p,
.lv2-usecases__card p,
.lv2-home-faq__item p,
.lv2-home-blog__item p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.55;
}

.lv2-proof__item p {
    font-size: clamp(0.92rem, 0.95vw, 0.98rem);
}

.lv2-usecases {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.lv2-usecases .lv2-section__head {
    max-width: 760px;
}

.lv2-usecases__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.lv2-usecases__card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    padding: 0 16px 16px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lv2-usecases__card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.14);
}

.lv2-usecases__media {
    margin: 0 -16px 14px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e2e8f0;
}

.lv2-usecases__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lv2-usecases__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1e3a8a;
    background: rgba(37, 99, 235, 0.12);
}

.lv2-usecases__link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--lv2-orange-dark);
    text-decoration: none;
}

.lv2-usecases__link:hover {
    text-decoration: underline;
}

.lv2-service-areas {
    background: #fff;
}

.lv2-service-areas__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-service-areas__item {
    border: 1px solid var(--lv2-line);
    border-radius: 12px;
    background: #f8fafc;
    padding: 16px;
}

.lv2-service-areas__item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.lv2-service-areas__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: #334155;
}

.lv2-service-areas__item p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
}

.lv2-home-faq {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lv2-home-faq .lv2-section__head {
    max-width: 820px;
}

.lv2-home-faq__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.lv2-home-faq__item {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    padding: clamp(16px, 2vw, 22px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lv2-home-faq__item:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.14);
}

.lv2-home-faq__tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1e3a8a;
    background: rgba(37, 99, 235, 0.12);
}

.lv2-home-faq__item h3 {
    margin-bottom: 10px;
    font-size: clamp(1rem, 1.1vw, 1.12rem);
    line-height: 1.35;
}

.lv2-home-faq__item p {
    font-size: clamp(0.92rem, 0.96vw, 0.98rem);
    line-height: 1.65;
}

.lv2-home-faq__tabs {
    display: grid;
    gap: 16px;
}

.lv2-home-faq__tablist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.lv2-home-faq__tab {
    appearance: none;
    border: 1px solid rgba(37, 99, 235, 0.16);
    background: #fff;
    color: #1e293b;
    border-radius: 12px;
    min-height: 44px;
    padding: 10px 12px;
    text-align: left;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.lv2-home-faq__tab:hover {
    border-color: rgba(37, 99, 235, 0.34);
}

.lv2-home-faq__tab.is-active {
    border-color: rgba(37, 99, 235, 0.38);
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
}

.lv2-home-faq__panels {
    display: grid;
}

.lv2-home-faq__panel {
    display: none;
}

.lv2-home-faq__panel.is-active {
    display: block;
}

.lv2-home-blog__item h3 a {
    text-decoration: none;
    color: #0f172a;
}

.lv2-home-blog--modern {
    padding-top: clamp(48px, 8vw, 84px);
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.lv2-home-blog--modern .lv2-home-blog__grid {
    gap: clamp(14px, 2vw, 22px);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lv2-home-blog--modern .lv2-home-blog__item {
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lv2-home-blog--modern .lv2-home-blog__item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 20px 34px rgba(37, 99, 235, 0.16);
}

.lv2-home-blog__thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e2e8f0;
}

.lv2-home-blog__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.lv2-home-blog--modern .lv2-home-blog__item:hover .lv2-home-blog__thumb img {
    transform: scale(1.04);
}

.lv2-home-blog__body {
    padding: 14px 16px 16px;
}

.lv2-home-blog__meta {
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.73rem;
    color: #334155;
}

.lv2-home-blog__meta span {
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: rgba(239, 246, 255, 0.9);
    padding: 4px 10px;
    font-weight: 700;
}

.lv2-home-blog__body h3 {
    margin-bottom: 10px;
    font-size: clamp(1.02rem, 1.15vw, 1.14rem);
    line-height: 1.38;
}

.lv2-home-blog__body p {
    font-size: 0.93rem;
    line-height: 1.6;
}

.lv2-home-blog__link {
    display: inline-flex;
    margin-top: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--lv2-purple);
    text-decoration: none;
}

.lv2-home-blog__link:hover {
    color: #1e40af;
}

/* Istanbul landing template */
.lv2-istanbul-hero {
    padding: clamp(34px, 6vw, 72px) 0;
    background: linear-gradient(145deg, #eff6ff 0%, #ffffff 58%, #fff7ed 100%);
}

.lv2-istanbul-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
}

.lv2-istanbul-hero__badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
    color: #1e3a8a;
    background: rgba(37, 99, 235, 0.12);
}

.lv2-istanbul-hero__copy h1 {
    margin: 12px 0 10px;
    font-size: clamp(1.55rem, 3.6vw, 2.45rem);
    line-height: 1.2;
}

.lv2-istanbul-hero__copy p {
    margin: 0;
    color: #334155;
    line-height: 1.7;
}

.lv2-istanbul-hero__chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lv2-istanbul-hero__chips span {
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: #fff;
    border-radius: 999px;
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
}

.lv2-istanbul-hero__actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-istanbul-hero__media {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.lv2-istanbul-hero__media img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.lv2-istanbul-section {
    padding: clamp(36px, 6vw, 72px) 0;
}

.lv2-istanbul-section--alt {
    background: #f8fafc;
}

.lv2-istanbul-head {
    max-width: 860px;
    margin-bottom: 16px;
}

.lv2-istanbul-head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.28rem, 2.4vw, 1.8rem);
}

.lv2-istanbul-head p {
    margin: 0;
    color: #475569;
}

.lv2-istanbul-series__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lv2-istanbul-series__card {
    background: #fff;
    border: 1px solid var(--lv2-line);
    border-radius: 14px;
    padding: 14px;
}

.lv2-istanbul-series__card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lv2-istanbul-series__card ul {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    line-height: 1.5;
}

.lv2-istanbul-chiplist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lv2-istanbul-chiplist a {
    text-decoration: none;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: #fff;
    color: #1e293b;
    border-radius: 999px;
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.lv2-istanbul-chiplist a:hover {
    border-color: rgba(37, 99, 235, 0.45);
}

.lv2-istanbul-steps {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 12px;
}

.lv2-istanbul-steps li {
    background: #fff;
    border: 1px solid var(--lv2-line);
    border-radius: 12px;
    padding: 14px;
}

.lv2-istanbul-steps h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.lv2-istanbul-steps p {
    margin: 0;
    color: #475569;
}

.lv2-istanbul-section--links {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.lv2-istanbul-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.lv2-istanbul-links a {
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 10px;
    background: #fff;
    min-height: 44px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    color: #1e3a8a;
}

.lv2-istanbul-links a:hover {
    background: #eff6ff;
}

.lv2-istanbul-faq {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.lv2-istanbul-faq article {
    border: 1px solid var(--lv2-line);
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}

.lv2-istanbul-faq h3 {
    margin: 0 0 8px;
    font-size: 0.98rem;
}

.lv2-istanbul-faq p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
}

.lv2-istanbul-final {
    padding: clamp(42px, 8vw, 84px) 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 55%, #ea580c 100%);
    color: #fff;
}

.lv2-istanbul-final__inner {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.lv2-istanbul-final__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.lv2-istanbul-final__inner p {
    margin: 0;
    opacity: 0.95;
}

.lv2-istanbul-final__actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.lv2-btn--inverse {
    background: #fff;
    color: var(--lv2-purple) !important;
}

.lv2-btn--inverse:hover {
    background: #fef3c7;
}

.lv2-btn--ghost-inv {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #fff !important;
}

/* Footer */
.lv2-footer {
    padding: 24px 0 12px;
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
    color: #1d1d1f;
}

.lv2-footer,
.lv2-footer * {
    box-sizing: border-box;
}

.lv2f-quick h2 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #111;
}

.lv2f-quick__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.lv2f-quick__chips a {
    min-height: 32px;
    border-radius: 999px;
    border: 1px solid #b9b9be;
    background: #fff;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 0.78rem;
    font-weight: 600;
}

.lv2f-quick__chips a:hover {
    background: #f0f0f2;
}

.lv2f-note {
    border-top: 1px solid #d2d2d7;
    border-bottom: 1px solid #d2d2d7;
    padding: 10px 0;
    margin-bottom: 14px;
}

.lv2f-note p {
    margin: 0;
    font-size: 0.73rem;
    color: #6e6e73;
    line-height: 1.45;
}

.lv2f-links {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid #d2d2d7;
}

/* Uzun anahtar kelime listesi: sütun içinde çok kolon, tek blok gibi durur */
.lv2f-col--keywords {
    min-width: 0;
}

.lv2f-col__kw-list {
    column-count: 2;
    column-gap: 14px;
}

.lv2f-col__kw-list li {
    break-inside: avoid;
    margin-bottom: 6px;
}

@media (min-width: 1200px) {
    .lv2f-col__kw-list {
        column-count: 3;
    }
}

@media (max-width: 1199px) {
    .lv2f-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Laptop anahtar kelimeleri daha geniş tek blok (dağılmayı azaltır) */
    .lv2f-col--keywords {
        grid-column: span 2;
    }

    .lv2f-col__kw-list {
        column-count: 2;
    }
}

.lv2f-col h3 {
    margin: 0 0 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #1d1d1f;
}

.lv2f-col__toggle {
    width: 100%;
    appearance: none;
    border: 0;
    background: none;
    margin: 0 0 8px;
    padding: 0;
    text-align: left;
    font-size: 0.76rem;
    font-weight: 700;
    color: #1d1d1f;
    cursor: default;
}

.lv2f-col__content {
    display: block;
}

.lv2f-col p {
    margin: 0 0 8px;
    font-size: 0.74rem;
    color: #6e6e73;
}

.lv2f-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lv2f-col li {
    margin-bottom: 6px;
}

.lv2f-col a {
    text-decoration: none;
    color: #424245;
    font-size: 0.73rem;
    line-height: 1.4;
}

.lv2f-col a:hover {
    color: #000;
    text-decoration: underline;
}

.lv2f-seo {
    padding: 10px 0 0;
}

.lv2f-seo p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.5;
    color: #6e6e73;
}

.lv2f-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #d2d2d7;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.lv2f-bottom p {
    margin: 0;
    font-size: 0.72rem;
    color: #6e6e73;
}

@media (max-width: 980px) {
    .lv2-istanbul-hero__grid {
        grid-template-columns: 1fr;
    }

    .lv2-istanbul-series__grid,
    .lv2-istanbul-links,
    .lv2-istanbul-faq {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .lv2f-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .lv2f-col--keywords {
        grid-column: span 2;
    }

    .lv2f-col__kw-list {
        column-count: 1;
    }
    .lv2-proof__grid,
    .lv2-usecases__grid,
    .lv2-service-areas__grid,
    .lv2-home-faq__grid,
    .lv2-home-blog__grid,
    .lv2-istanbul-series__grid,
    .lv2-istanbul-links,
    .lv2-istanbul-faq {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .lv2f-links {
        grid-template-columns: 1fr;
    }

    .lv2f-col--keywords {
        grid-column: auto;
    }

    .lv2f-col {
        border-top: 1px solid #e5e7eb;
        padding-top: 10px;
    }

    .lv2f-col__toggle {
        position: relative;
        min-height: 36px;
        margin-bottom: 0;
        padding-right: 22px;
        cursor: pointer;
    }

    .lv2f-col__toggle::after {
        content: "+";
        position: absolute;
        right: 2px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #1d4ed8;
    }

    .lv2f-col.is-open .lv2f-col__toggle::after {
        content: "\2212";
    }

    .lv2f-col__content {
        display: none;
        padding: 8px 0 2px;
    }

    .lv2f-col.is-open .lv2f-col__content {
        display: block;
    }
}

/* FAB WhatsApp */
.lv2-fab {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 200;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(18, 140, 126, 0.45);
    text-decoration: none;
    transition: transform 0.15s ease;
}

.lv2-fab:hover {
    transform: scale(1.06);
    color: #fff;
}

.lv2-live-toast {
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 120;
    width: min(320px, calc(100vw - 24px));
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 20px 32px rgba(2, 6, 23, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 12px;
    color: #e2e8f0;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: opacity 260ms ease, transform 260ms ease;
}

.lv2-live-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lv2-live-toast__badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    border-radius: 999px;
    padding: 0 8px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: rgba(37, 99, 235, 0.22);
    color: #bfdbfe;
}

.lv2-live-toast__text {
    margin: 8px 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #f8fafc;
}

@media (max-width: 768px) {
    .lv2-live-toast {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 82px;
        border-radius: 12px;
    }
}

/* I? sayfalar */
.lv2-main {
    padding: clamp(36px, 6vw, 72px) 0;
}

.lv2-main--narrow {
    max-width: 760px;
}

.lv2-page-head {
    margin-bottom: 28px;
}

.lv2-page-title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
}

.lv2-page__content,
.entry-content {
    font-size: 1.05rem;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.lv2-post-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.lv2-post-card {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lv2-line);
}

.lv2-post-card__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.lv2-post-card__title a {
    text-decoration: none;
    color: inherit;
}

.lv2-post-card__meta {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    color: var(--lv2-muted);
}

.lv2-pagination {
    margin-top: 36px;
}

.lv2-article__title {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.lv2-article__meta {
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.post-navigation {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--lv2-line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

/* Modern blog */
.lv2-blog-head {
    max-width: 860px;
    padding: clamp(20px, 3vw, 30px);
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 58%, #fff7ed 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.lv2-blog-head__eyebrow {
    margin: 0 0 8px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e3a8a;
}

.lv2-blog-head__lead {
    margin: 10px 0 0;
    color: #475569;
    max-width: 760px;
}

.lv2-post-list--modern {
    display: grid;
    gap: clamp(14px, 2vw, 22px);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lv2-post-list--modern .lv2-post-card {
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
    padding-bottom: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lv2-post-list--modern .lv2-post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 22px 34px rgba(37, 99, 235, 0.14);
}

.lv2-post-card__thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e2e8f0;
}

.lv2-post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.lv2-post-list--modern .lv2-post-card:hover .lv2-post-card__thumb img {
    transform: scale(1.04);
}

.lv2-post-card__body {
    padding: 14px 15px 16px;
}

.lv2-post-list--modern .lv2-post-card__meta {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.lv2-post-list--modern .lv2-post-card__meta span,
.lv2-post-list--modern .lv2-post-card__meta time {
    border: 1px solid rgba(37, 99, 235, 0.16);
    background: #f8fbff;
    border-radius: 999px;
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1e3a8a;
}

.lv2-post-list--modern .lv2-post-card__title {
    margin-bottom: 8px;
    font-size: clamp(1.02rem, 1.2vw, 1.15rem);
    line-height: 1.38;
}

.lv2-post-list--modern .lv2-post-card__excerpt {
    color: #475569;
    line-height: 1.62;
    font-size: 0.92rem;
}

.lv2-post-card__link {
    margin-top: 12px;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--lv2-purple);
    text-decoration: none;
}

.lv2-post-card__link:hover {
    text-decoration: underline;
}

.lv2-article--modern {
    max-width: 860px;
    margin: 0 auto;
}

.lv2-article__head {
    margin-bottom: 16px;
}

.lv2-article__eyebrow {
    margin: 0 0 8px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
    padding: 0 12px;
}

.lv2-article__meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.lv2-article__cover {
    margin: 0 0 18px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.lv2-article__cover img {
    width: 100%;
    height: auto;
    display: block;
}

.lv2-article__content {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    padding: clamp(16px, 3vw, 28px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lv2-article__content p,
.lv2-article__content li {
    line-height: 1.78;
}

.lam-blog-index__head {
    max-width: 100%;
    margin-bottom: 18px;
}

.lam-blog-index__crumb {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 0.85rem;
}

.lam-blog-index__crumb a {
    color: inherit;
    text-decoration: none;
}

.lam-blog-index__tabs {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lam-blog-index__tabs a {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    background: #fff;
}

.lam-blog-index__tabs a.is-active {
    border-color: #3b82f6;
    color: #1d4ed8;
}

.lam-blog-index__tags {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lam-blog-index__tags a,
.lam-blog-card__tags a {
    min-height: 24px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    border-radius: 999px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
}

.lam-blog-card__tags {
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lam-featured-post {
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    background: #f8fafc;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    overflow: hidden;
    margin-bottom: 12px;
}

.lam-featured-post__thumb {
    display: block;
    min-height: 280px;
}

.lam-featured-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lam-featured-post__body {
    padding: clamp(16px, 2.2vw, 28px);
}

.lam-featured-post__meta {
    margin: 0 0 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.lam-featured-post__meta span,
.lam-featured-post__meta time {
    border-radius: 999px;
    min-height: 26px;
    border: 1px solid rgba(15, 23, 42, 0.24);
    background: #fff;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    font-size: 0.74rem;
    font-weight: 700;
}

.lam-featured-post h2 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.5vw, 2.05rem);
    line-height: 1.2;
}

.lam-featured-post h2 a {
    color: #111827;
    text-decoration: none;
}

.lam-featured-post p {
    margin: 0;
    color: #334155;
    line-height: 1.7;
}

.lam-featured-post__dots {
    margin: 0 auto 16px;
    display: flex;
    gap: 5px;
}

.lam-featured-post__dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #cbd5e1;
}

.lam-featured-post__dots .is-active {
    width: 18px;
    background: #94a3b8;
}

.lam-blog-index__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
}

.lam-blog-card {
    border-bottom: 0;
}

.lam-blog-index__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.lam-blog-ad {
    border-radius: 14px;
    padding: 16px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 44%, #0ea5e9 100%);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.24);
}

.lam-blog-ad strong {
    font-size: 1.08rem;
    line-height: 1.3;
}

.lam-blog-ad p {
    margin: 8px 0 10px;
    opacity: 0.92;
    font-size: 0.9rem;
}

.lam-blog-ad span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.78rem;
    width: 120px;
}

.lam-single__hero {
    margin-bottom: 18px;
    width: 100%;
}

.lam-single__hero-inner {
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 16px;
    background: #f5efea;
    padding: 18px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
}

.lam-single__hero-inner img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.lam-single__hero-copy .lv2-article__title {
    margin-top: 8px;
}

.lam-single__layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 270px;
    gap: 24px;
    width: 100%;
}

.lam-single-page {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.lam-single .entry-content {
    min-width: 0;
}

.lam-single__toc,
.lam-single__ad-box {
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.lam-single__toc {
    position: sticky;
    top: 96px;
    align-self: start;
}

.lam-single__toc h3 {
    margin: 0 0 8px;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #475569;
}

.lam-single__toc ul {
    margin: 0;
    padding-left: 14px;
}

.lam-single__toc li {
    margin-bottom: 7px;
}

.lam-single__toc a {
    text-decoration: none;
    color: #334155;
    font-size: 0.84rem;
}

.lam-single__ad {
    position: sticky;
    top: 96px;
    align-self: start;
}

.lam-single__ad-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.lam-single__ad-box strong {
    display: block;
    font-size: 1.03rem;
}

.lam-single__ad-box p {
    margin: 8px 0 10px;
    color: #475569;
    font-size: 0.9rem;
}

.lam-single__ad-box a {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.lam-single__taxbox {
    margin-top: 10px;
}

.lam-single__taxlinks {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lam-single__taxlinks a {
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    color: #334155;
    font-weight: 700;
}

.lam-related {
    margin-top: 24px;
}

.lam-related h2 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.lam-related__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lam-related__card {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.lam-related__card h3 {
    margin: 0 0 8px;
    font-size: 0.98rem;
}

.lam-related__card a {
    text-decoration: none;
    color: #0f172a;
}

.lam-related__card p {
    margin: 0;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .lam-blog-index__layout {
        grid-template-columns: 1fr;
    }

    .lam-blog-index__sidebar {
        position: static;
    }

    .lam-blog-ad {
        min-height: 180px;
    }

    .lam-single__layout {
        grid-template-columns: 1fr;
    }

    .lam-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lam-single__toc,
    .lam-single__ad {
        position: static;
    }
}

@media (max-width: 1280px) {
    .lam-single__layout {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

    .lam-single__toc {
        display: none;
    }
}

@media (max-width: 720px) {
    .lam-featured-post {
        grid-template-columns: 1fr;
    }

    .lam-single__hero-inner {
        grid-template-columns: 1fr;
    }

    .lam-related__grid {
        grid-template-columns: 1fr;
    }
}

/* Blog v3 templates */
.lam-blog-v3__head {
    margin-bottom: 22px;
}

.lam-blog-v3__crumb {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 0.84rem;
}

.lam-blog-v3__crumb a {
    color: inherit;
    text-decoration: none;
}

.lam-blog-v3__title {
    margin: 0;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    line-height: 1.15;
}

.lam-blog-v3__lead {
    margin: 10px 0 0;
    max-width: 72ch;
    color: #475569;
    line-height: 1.65;
}

.lam-blog-v3__tabs {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lam-blog-v3__tabs a {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #fff;
    color: #334155;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.lam-blog-v3__tabs a.is-active {
    border-color: #2563eb;
    color: #1d4ed8;
}

.lam-blog-v3__tags {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lam-blog-v3__tags a {
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #475569;
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.lam-blog-v3__featured {
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 18px;
    overflow: hidden;
    background: #f8fbff;
}

.lam-blog-v3__featured-thumb {
    min-height: 300px;
    display: block;
}

.lam-blog-v3__featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lam-blog-v3__featured-body {
    padding: clamp(18px, 2.4vw, 28px);
}

.lam-blog-v3__meta {
    margin: 0 0 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.lam-blog-v3__meta span,
.lam-blog-v3__meta time {
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    background: #fff;
    color: #1e3a8a;
}

.lam-blog-v3__featured h2 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.lam-blog-v3__featured h2 a {
    color: #0f172a;
    text-decoration: none;
}

.lam-blog-v3__featured p {
    margin: 0;
    color: #334155;
    line-height: 1.7;
}

.lam-blog-v3__featured-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.lam-blog-v3__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
}

.lam-blog-v3__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lam-blog-v3__card {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lam-blog-v3__card-thumb {
    display: block;
    aspect-ratio: 16 / 9;
}

.lam-blog-v3__card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lam-blog-v3__card-body {
    padding: 12px 12px 14px;
}

.lam-blog-v3__card-title {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.35;
}

.lam-blog-v3__card-title a {
    text-decoration: none;
    color: #0f172a;
}

.lam-blog-v3__card-excerpt {
    color: #475569;
    line-height: 1.58;
    font-size: 0.92rem;
}

.lam-blog-v3__card-link {
    margin-top: 9px;
    display: inline-flex;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
}

.lam-blog-v3__sidebar {
    position: sticky;
    top: 98px;
    align-self: start;
}

.lam-blog-v3__ad,
.lam-blog-v3__box {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    background: #fff;
}

.lam-blog-v3__ad {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 210px;
    padding: 16px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(140deg, #0f172a 0%, #1e293b 50%, #2563eb 100%);
}

.lam-blog-v3__ad p {
    margin: 8px 0 12px;
    color: #dbeafe;
}

.lam-blog-v3__ad span {
    min-height: 34px;
    width: fit-content;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.lam-blog-v3__box {
    margin-top: 12px;
    padding: 10px 12px;
}

.lam-blog-v3__box h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
}

.lam-blog-v3__box ul {
    margin: 0;
    padding-left: 14px;
}

.lam-blog-v3__box li + li {
    margin-top: 5px;
}

.lam-blog-v3__box-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lam-blog-v3__box-tags a {
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
}

.lam-single-v3 {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.lam-single-v3__hero {
    margin-bottom: 18px;
}

.lam-single-v3__hero-inner {
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 16px;
    background: #f8fbff;
    padding: 18px;
    display: grid;
    gap: 18px;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
}

.lam-single-v3__hero-inner img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.lam-single-v3__eyebrow {
    margin: 0;
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    border-radius: 999px;
    padding: 0 10px;
    background: #eaf2ff;
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 700;
}

.lam-single-v3__title {
    margin: 10px 0 10px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.lam-single-v3__meta {
    margin: 0;
    color: #64748b;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.88rem;
}

.lam-single-v3__layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 270px;
    gap: 24px;
}

.lam-single-v3__toc,
.lam-single-v3__box {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.lam-single-v3__toc {
    position: sticky;
    top: 96px;
    align-self: start;
}

.lam-single-v3__toc h3 {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    font-size: 0.78rem;
}

.lam-single-v3__toc ul {
    margin: 0;
    padding-left: 14px;
}

.lam-single-v3__toc li + li {
    margin-top: 6px;
}

.lam-single-v3__toc a {
    text-decoration: none;
    color: #334155;
    font-size: 0.84rem;
}

.lam-single-v3__content {
    min-width: 0;
    max-width: 78ch;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: clamp(18px, 3vw, 30px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lam-single-v3__content p,
.lam-single-v3__content li {
    line-height: 1.8;
}

.lam-single-v3__sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
}

.lam-single-v3__box + .lam-single-v3__box {
    margin-top: 10px;
}

.lam-single-v3__box p {
    margin: 8px 0 10px;
    color: #475569;
    font-size: 0.9rem;
}

.lam-single-v3__box a {
    text-decoration: none;
}

.lam-single-v3__box > a {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.lam-single-v3__taxbox {
    margin-top: 10px;
}

.lam-single-v3__taxlinks {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lam-single-v3__taxlinks a {
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #334155;
    background: #fff;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.lam-single-v3__related {
    margin-top: 26px;
}

.lam-single-v3__related h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.lam-single-v3__related-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lam-single-v3__related-card {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.lam-single-v3__related-card h3 {
    margin: 0 0 8px;
    font-size: 0.98rem;
}

.lam-single-v3__related-card a {
    color: #0f172a;
    text-decoration: none;
}

.lam-single-v3__related-card p {
    margin: 0;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 1200px) {
    .lam-single-v3__layout {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

    .lam-single-v3__toc {
        display: none;
    }
}

@media (max-width: 1024px) {
    .lam-blog-v3__layout,
    .lam-single-v3__layout {
        grid-template-columns: 1fr;
    }

    .lam-blog-v3__sidebar,
    .lam-single-v3__sidebar {
        position: static;
    }

    .lam-single-v3__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .lam-blog-v3__featured {
        grid-template-columns: 1fr;
    }

    .lam-blog-v3__grid {
        grid-template-columns: 1fr;
    }

    .lam-single-v3__hero-inner {
        grid-template-columns: 1fr;
    }

    .lam-single-v3__related-grid {
        grid-template-columns: 1fr;
    }
}

.lv2-main--404 .lv2-btn + .lv2-btn {
    margin-left: 10px;
}

@media (max-width: 920px) {
    .lv2-header__inner {
        padding: 12px 0;
    }
}

/* ?"??"??"? Ileti?Yim sayfasi (/iletisim) ?"??"??"? */
.lv2-contact {
    padding-bottom: clamp(48px, 10vw, 96px);
}

.lv2-contact-hero {
    padding: clamp(36px, 8vw, 72px) 0 clamp(28px, 5vw, 48px);
    background:
        radial-gradient(circle at 78% 12%, rgba(37, 99, 235, 0.14), transparent 42%),
        radial-gradient(circle at 8% 78%, rgba(124, 58, 237, 0.12), transparent 48%),
        linear-gradient(180deg, #ffffff 0%, var(--lv2-bg) 100%);
    border-bottom: 1px solid var(--lv2-line);
}

.lv2-contact-hero__inner {
    max-width: 820px;
}

.lv2-contact-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 14px 22px;
    margin-bottom: 18px;
    border-radius: 14px;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    background: linear-gradient(135deg, var(--lv2-orange) 0%, var(--lv2-purple) 100%);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.lv2-contact-hero__title {
    margin: 0 0 16px;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.lv2-contact-hero__lead {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--lv2-muted);
    line-height: 1.65;
}

.lv2-contact-actions {
    padding: clamp(28px, 6vw, 52px) 0;
}

.lv2-contact-cards {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

@media (max-width: 1100px) {
    .lv2-contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .lv2-contact-cards {
        grid-template-columns: 1fr;
    }
}

.lv2-contact-card {
    padding: clamp(26px, 5vw, 34px);
    border-radius: var(--lv2-radius);
    border: 1px solid var(--lv2-line);
    background: #fff;
    box-shadow: var(--lv2-shadow);
    display: flex;
    flex-direction: column;
}

.lv2-contact-card--wa {
    border-color: rgba(5, 150, 105, 0.35);
    background: linear-gradient(165deg, #ffffff 0%, #eff6ff 100%);
}

.lv2-contact-card__label {
    align-self: flex-start;
    padding: 5px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    background: rgba(37, 99, 235, 0.15);
    color: var(--lv2-orange-dark);
}

.lv2-contact-card__title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 800;
}

.lv2-contact-card__desc {
    margin: 0 0 22px;
    flex: 1;
    font-size: 0.9375rem;
    color: var(--lv2-muted);
    line-height: 1.55;
}

.lv2-contact-card__btn {
    align-self: flex-start;
}

.lv2-contact-scope {
    padding: clamp(28px, 6vw, 56px) 0;
    background: #fff;
    border-block: 1px solid var(--lv2-line);
}

.lv2-contact-scope__head {
    margin-bottom: 22px;
    max-width: 780px;
}

.lv2-contact-scope__title {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
}

.lv2-contact-scope__intro {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.lv2-contact-scope__list {
    margin: 0;
    padding: 0 0 0 22px;
    max-width: 760px;
    color: var(--lv2-ink);
}

.lv2-contact-scope__list li {
    margin-bottom: 12px;
    padding-left: 6px;
}

.lv2-contact-scope__list li:last-child {
    margin-bottom: 0;
}

.lv2-contact-editor {
    padding-top: clamp(36px, 7vw, 64px);
}

.lv2-contact-editor__title {
    margin: 0 0 22px;
    font-size: 1.35rem;
    font-weight: 800;
}

.lv2-contact-editor .lv2-page__content {
    padding-top: 0;
}

/* ?"??"??"? Nasil Calisiyoruz sayfasi ?"??"??"? */
.lv2-how {
    padding-bottom: clamp(44px, 8vw, 88px);
}

.lv2-how-hero {
    padding: clamp(30px, 6vw, 72px) 0 clamp(24px, 4vw, 44px);
    background:
        radial-gradient(circle at 82% 14%, rgba(124, 58, 237, 0.12), transparent 42%),
        radial-gradient(circle at 10% 84%, rgba(37, 99, 235, 0.1), transparent 46%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--lv2-line);
}

.lv2-how-hero__grid {
    display: grid;
    gap: clamp(22px, 3vw, 36px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
}

.lv2-how-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    color: var(--lv2-purple);
    background: rgba(124, 58, 237, 0.12);
    margin-bottom: 14px;
}

.lv2-how-hero__title {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3.4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.lv2-how-hero__lead {
    margin: 0 0 20px;
    max-width: 54ch;
    color: var(--lv2-muted);
}

.lv2-how-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lv2-how-hero__media {
    margin: 0;
    border-radius: var(--lv2-radius);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--lv2-shadow);
}

.lv2-how-hero__media img {
    display: block;
    width: 100%;
    height: auto;
}

.lv2-how-steps {
    padding: clamp(30px, 5vw, 56px) 0;
}

.lv2-how-steps__head {
    margin-bottom: 20px;
    max-width: 700px;
}

.lv2-how-steps__title {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.lv2-how-steps__sub {
    margin: 0;
    color: var(--lv2-muted);
}

.lv2-how-steps__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lv2-how-step {
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lv2-line);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.lv2-how-step__num {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    background: linear-gradient(135deg, var(--lv2-orange) 0%, var(--lv2-purple) 100%);
    margin-bottom: 10px;
}

.lv2-how-step__title {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lv2-how-step p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-how-info {
    padding: clamp(30px, 5vw, 56px) 0;
    background: #fff;
    border-block: 1px solid var(--lv2-line);
}

.lv2-how-info__title {
    margin: 0 0 18px;
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.lv2-how-info__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-how-info__card {
    padding: 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--lv2-line);
}

.lv2-how-info__card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lv2-how-info__card p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-how-editor {
    margin-top: clamp(26px, 4vw, 40px);
}

.lv2-how-editor__title {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.lv2-how-editor .lv2-page__content {
    border-radius: var(--lv2-radius);
    border: 1px solid var(--lv2-line);
    background: #fff;
    padding: clamp(20px, 3vw, 30px);
    box-shadow: var(--lv2-shadow);
}

@media (max-width: 1024px) {
    .lv2-how-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lv2-how-info__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .lv2-how-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .lv2-how-steps__grid {
        grid-template-columns: 1fr;
    }

    .lv2-how-hero__actions {
        flex-direction: column;
    }
}

/* ?"??"??"? Laptop Sat sayfasi ?"??"??"? */
.lv2-sell {
    padding-bottom: clamp(44px, 8vw, 88px);
}

.lv2-sell-hero {
    padding: clamp(30px, 6vw, 72px) 0 clamp(24px, 5vw, 48px);
    background:
        radial-gradient(circle at 84% 16%, rgba(124, 58, 237, 0.12), transparent 42%),
        radial-gradient(circle at 12% 80%, rgba(37, 99, 235, 0.1), transparent 48%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--lv2-line);
}

.lv2-sell-hero__grid {
    display: grid;
    gap: clamp(20px, 3vw, 34px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
}

.lv2-sell-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.13);
    color: #047857;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    font-weight: 900;
    margin-bottom: 12px;
}

.lv2-sell-hero__title {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3.3vw, 2.55rem);
    line-height: 1.11;
    letter-spacing: -0.03em;
}

.lv2-sell-hero__lead {
    margin: 0 0 20px;
    max-width: 58ch;
    color: var(--lv2-muted);
}

.lv2-sell-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.lv2-sell-hero__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lv2-sell-hero__chips li {
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.06);
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
}

.lv2-sell-hero__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: var(--lv2-shadow);
}

.lv2-sell-hero__media img {
    display: block;
    width: 100%;
    height: auto;
}

.lv2-sell-showcase {
    padding: clamp(24px, 4vw, 42px) 0;
}

.lv2-sell-quickquote {
    padding: clamp(12px, 2.6vw, 26px) 0 clamp(26px, 5vw, 46px);
}

.lv2-sell-quickquote__wrap {
    max-width: 920px;
}

.lv2-sell-quickquote__head {
    text-align: center;
    margin: 0 auto clamp(14px, 2.4vw, 20px);
    max-width: 700px;
}

.lv2-sell-quickquote__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    padding: 0 14px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.lv2-sell-quickquote__head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.lv2-sell-quickquote__head p {
    margin: 0;
    color: #64748b;
}

.lv2-sell-quickquote__panel {
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.08);
    padding: clamp(14px, 2.6vw, 24px);
}

.lv2-sell-quickquote__group {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #fff;
    padding: 14px;
    margin-bottom: 12px;
}

.lv2-sell-quickquote__group:last-of-type {
    margin-bottom: 16px;
}

.lv2-sell-quickquote__label {
    margin: 0 0 10px;
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
}

.lv2-sell-device-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lv2-sell-device {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #f8fafc;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lv2-sell-device:hover {
    transform: translateY(-2px);
}

.lv2-sell-device.is-active {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.14);
    background: #eff6ff;
}

.lv2-sell-device img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 8px;
}

.lv2-sell-device span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

.lv2-sell-select {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: #fff;
    padding: 0 14px;
    font-size: 0.95rem;
    color: #334155;
}

.lv2-sell-quickquote__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-sell-showcase__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-sell-showcase__card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--lv2-line);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.lv2-sell-showcase__card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.lv2-sell-showcase__card > div {
    padding: 14px;
}

.lv2-sell-showcase__card h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.lv2-sell-showcase__card p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-sell-copy {
    padding: clamp(28px, 5vw, 54px) 0;
}

.lv2-sell-copy__title {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.lv2-sell-copy p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.7;
}

.lv2-sell-brands {
    padding: clamp(30px, 5vw, 56px) 0;
    background: #fff;
    border-block: 1px solid var(--lv2-line);
}

.lv2-sell-brands__title {
    margin: 0 0 16px;
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.lv2-sell-brands__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lv2-sell-brand-card {
    padding: 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--lv2-line);
}

.lv2-sell-brand-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.lv2-sell-brand-card h4 {
    margin: 0 0 8px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 700;
}

.lv2-sell-brand-card p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-sell-timeline {
    padding: clamp(34px, 6vw, 68px) 0;
}

.lv2-sell-timeline__head {
    max-width: 760px;
    margin-bottom: 18px;
}

.lv2-sell-timeline__head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.lv2-sell-timeline__head p {
    margin: 0;
    color: var(--lv2-muted);
}

.lv2-sell-timeline__list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.lv2-sell-timeline__list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    opacity: 0.45;
}

.lv2-sell-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lv2-line);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.lv2-sell-timeline__item:last-child {
    margin-bottom: 0;
}

.lv2-sell-timeline__point {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #2563eb 100%);
    margin-top: 2px;
}

.lv2-sell-timeline__item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.lv2-sell-timeline__item h4 {
    margin: 0 0 8px;
    font-size: 0.84rem;
    color: #64748b;
    font-weight: 700;
}

.lv2-sell-timeline__item p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-sell-faq {
    padding: clamp(30px, 5vw, 56px) 0;
    background: #fff;
    border-block: 1px solid var(--lv2-line);
}

.lv2-sell-faq h2 {
    margin: 0 0 16px;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.lv2-sell-faq__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-sell-faq__item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #f8fafc;
}

.lv2-sell-faq__item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lv2-sell-faq__item p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-sell-final {
    padding: clamp(30px, 5vw, 56px) 0;
}

.lv2-sell-final__inner {
    border-radius: 14px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--lv2-line);
    background:
        radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.14), transparent 38%),
        radial-gradient(circle at 12% 78%, rgba(14, 165, 233, 0.1), transparent 42%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.24);
}

.lv2-sell-final__inner h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.lv2-sell-final__inner p {
    margin: 0 0 16px;
    color: rgba(248, 250, 252, 0.84);
}

.lv2-sell-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-sell-editor {
    margin-top: clamp(26px, 4vw, 40px);
}

.lv2-sell-editor__title {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.lv2-sell-editor .lv2-page__content {
    border-radius: var(--lv2-radius);
    border: 1px solid var(--lv2-line);
    background: #fff;
    padding: clamp(20px, 3vw, 30px);
    box-shadow: var(--lv2-shadow);
}

/* Scroll reveal */
.lv2-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lv2-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .lv2-sell-showcase__grid,
    .lv2-sell-brands__grid,
    .lv2-sell-faq__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .lv2-sell-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .lv2-sell-hero__actions {
        flex-direction: column;
    }

    .lv2-sell-showcase__grid,
    .lv2-sell-brands__grid,
    .lv2-sell-faq__grid {
        grid-template-columns: 1fr;
    }

    .lv2-sell-timeline__item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
    }

    .lv2-sell-final__actions {
        flex-direction: column;
    }

    .lv2-sell-device-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lv2-sell-quickquote__actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lv2-reveal,
    .lv2-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ?"??"??"? Subelerimiz sayfasi ?"??"??"? */
.lv2-branches-page {
    padding-bottom: clamp(44px, 8vw, 88px);
}

.lv2-branches-page__hero {
    padding: clamp(30px, 6vw, 72px) 0 clamp(24px, 4vw, 48px);
    background:
        radial-gradient(circle at 85% 16%, rgba(124, 58, 237, 0.12), transparent 42%),
        radial-gradient(circle at 8% 84%, rgba(37, 99, 235, 0.1), transparent 48%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--lv2-line);
}

.lv2-branches-page__hero-grid {
    display: grid;
    gap: clamp(20px, 3vw, 34px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
}

.lv2-branches-page__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    color: var(--lv2-purple);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.lv2-branches-page__title {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.lv2-branches-page__lead {
    margin: 0 0 20px;
    max-width: 58ch;
    color: var(--lv2-muted);
}

.lv2-branches-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lv2-branches-page__stats {
    display: grid;
    gap: 12px;
}

.lv2-branches-page__stat-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.lv2-branches-page__stat-card h2 {
    margin: 0 0 6px;
    font-size: 1.2rem;
}

.lv2-branches-page__stat-card p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-branches-page__content {
    padding: clamp(28px, 5vw, 54px) 0;
}

.lv2-branches-page__content h2 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.lv2-branches-page__content p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.7;
}

.lv2-branches-page__timeline {
    padding: clamp(32px, 5.5vw, 62px) 0;
    background: #fff;
    border-block: 1px solid var(--lv2-line);
}

.lv2-branches-page__timeline__head,
.lv2-branches-page__timeline header {
    max-width: 760px;
    margin-bottom: 18px;
}

.lv2-branches-page__timeline h2 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.lv2-branches-page__timeline p {
    margin: 0;
    color: var(--lv2-muted);
}

.lv2-branches-page__timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.lv2-branches-page__timeline-list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    opacity: 0.45;
}

.lv2-branches-page__timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lv2-line);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.lv2-branches-page__timeline-item:last-child {
    margin-bottom: 0;
}

.lv2-branches-page__timeline-no {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #2563eb 100%);
    margin-top: 2px;
}

.lv2-branches-page__timeline-item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.lv2-branches-page__timeline-item h4 {
    margin: 0 0 8px;
    font-size: 0.84rem;
    color: #64748b;
    font-weight: 700;
}

.lv2-branches-page__timeline-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--lv2-muted);
}

.lv2-branches-page__seo {
    padding: clamp(30px, 5vw, 56px) 0;
}

.lv2-branches-page__seo h2 {
    margin: 0 0 16px;
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.lv2-branches-page__seo-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-branches-page__seo-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #f8fafc;
}

.lv2-branches-page__seo-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lv2-branches-page__seo-card p {
    margin: 0;
    color: var(--lv2-muted);
    font-size: 0.9rem;
}

.lv2-branches-page__faq {
    padding: clamp(30px, 5vw, 56px) 0;
    background: #fff;
    border-block: 1px solid var(--lv2-line);
}

.lv2-branches-page__faq h2 {
    margin: 0 0 16px;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.lv2-branches-page__faq-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-branches-page__faq-item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #f8fafc;
}

.lv2-branches-page__faq-item h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.lv2-branches-page__faq-item h4 {
    margin: 0 0 8px;
    font-size: 0.82rem;
    color: #64748b;
}

.lv2-branches-page__faq-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--lv2-muted);
}

.lv2-branches-page__cta {
    padding: clamp(32px, 5.5vw, 62px) 0;
}

.lv2-branches-page__cta .lv2-container {
    padding: clamp(20px, 3vw, 30px);
    border-radius: 14px;
    border: 1px solid var(--lv2-line);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--lv2-shadow);
}

.lv2-branches-page__cta h2 {
    margin: 0 0 8px;
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.lv2-branches-page__cta p {
    margin: 0 0 16px;
    color: var(--lv2-muted);
}

.lv2-branches-page__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-branches-page__editor {
    margin-top: clamp(26px, 4vw, 40px);
}

.lv2-branches-page__editor-title {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.lv2-branches-page__editor .lv2-page__content {
    border-radius: var(--lv2-radius);
    border: 1px solid var(--lv2-line);
    background: #fff;
    padding: clamp(20px, 3vw, 30px);
    box-shadow: var(--lv2-shadow);
}

@media (max-width: 1024px) {
    .lv2-branches-page__seo-grid,
    .lv2-branches-page__faq-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .lv2-branches-page__hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .lv2-branches-page__timeline-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
    }

    .lv2-branches-page__seo-grid,
    .lv2-branches-page__faq-list {
        grid-template-columns: 1fr;
    }

    .lv2-branches-page__actions,
    .lv2-branches-page__cta-actions {
        flex-direction: column;
    }
}

/* ?"??"??"? Subelerimiz dizin g?r?n?m? (panelden y?netilen) ?"??"??"? */
.lv2-branches-directory {
    padding-bottom: clamp(36px, 7vw, 72px);
}

.lv2-branches-directory__top {
    padding: 12px 0 10px;
}

.lv2-branches-directory__crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.lv2-branches-directory__crumbs a {
    text-decoration: none;
    color: #334155;
}

.lv2-branches-directory__hero {
    padding: 0 0 16px;
}

.lv2-branches-directory__hero-card {
    padding: clamp(18px, 3vw, 24px);
    border-radius: 14px;
    border: 1px solid var(--lv2-line);
    background: linear-gradient(135deg, #edf7f3 0%, #f1f5f9 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.lv2-branches-directory__title {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.02em;
}

.lv2-branches-directory__filters {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
}

.lv2-branches-directory__filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
}

.lv2-branches-directory__filter select {
    height: 42px;
    border-radius: 9px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #fff;
    padding: 0 12px;
    font-size: 0.95rem;
    color: #1f2937;
}

.lv2-branches-directory__toggle {
    height: 42px;
    border-radius: 9px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 0.92rem;
    color: #334155;
}

.lv2-branches-directory__list {
    padding: 10px 0 0;
}

.lv2-branches-directory__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-branch-card {
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
}

.lv2-branch-card__title {
    margin: 0 0 12px;
    display: grid;
    gap: 2px;
    color: #365f4f;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding-bottom: 10px;
}

.lv2-branch-card__brand {
    display: block;
    font-size: 0.9rem;
    line-height: 1.25;
    letter-spacing: 0.01em;
    font-weight: 800;
    text-transform: uppercase;
}

.lv2-branch-card__location {
    display: block;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.lv2-branch-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 10px;
}

.lv2-branch-card__meta li {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #475569;
}

.lv2-branch-card__meta strong {
    display: inline-block;
    margin-right: 4px;
    color: #1f2937;
}

.lv2-branch-card__btn {
    margin-top: auto;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    color: #1f2937;
}

.lv2-branch-card__btn:hover {
    background: #f8fafc;
}

.lv2-branches-directory__empty {
    margin: 18px 0 0;
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .lv2-branches-directory__filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lv2-branches-directory__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .lv2-branches-directory__filters {
        grid-template-columns: 1fr;
    }
    .lv2-branches-directory__grid {
        grid-template-columns: 1fr;
    }
}

/* Kurumsal Alim Merkezi landing */
.lv2-corporate {
    padding-bottom: clamp(40px, 6vw, 72px);
}

.lv2-corporate-hero {
    padding: clamp(18px, 3.5vw, 34px) 0 12px;
}

.lv2-corporate-hero__grid {
    display: grid;
    gap: clamp(16px, 2.4vw, 26px);
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: stretch;
}

.lv2-corporate-hero__copy {
    border: 1px solid var(--lv2-line);
    border-radius: 16px;
    background: linear-gradient(150deg, #eef2ff 0%, #f8fafc 55%, #ffffff 100%);
    padding: clamp(18px, 3vw, 32px);
}

.lv2-corporate-hero__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1e3a8a;
    background: rgba(79, 70, 229, 0.12);
}

.lv2-corporate-hero__title {
    margin: 14px 0 10px;
    font-size: clamp(1.45rem, 2.9vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.lv2-corporate-hero__lead {
    margin: 0 0 18px;
    font-size: clamp(0.94rem, 0.25vw + 0.86rem, 1.04rem);
    color: #475569;
}

.lv2-corporate-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.lv2-corporate-hero__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lv2-corporate-hero__chips li {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
}

.lv2-corporate-hero__media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lv2-line);
    min-height: clamp(280px, 40vw, 460px);
}

.lv2-corporate-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lv2-corporate-logos {
    padding: 8px 0 10px;
}

.lv2-corporate-logos__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.lv2-corporate-logos__item {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #fff;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    font-weight: 700;
    color: #334155;
}

.lv2-corporate-showcase {
    padding: 10px 0;
}

.lv2-corporate-showcase__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-corporate-showcase__card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--lv2-line);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.lv2-corporate-showcase__card img {
    width: 100%;
    height: 188px;
    object-fit: cover;
    display: block;
}

.lv2-corporate-showcase__card div {
    padding: 14px;
}

.lv2-corporate-showcase__card h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.lv2-corporate-showcase__card p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
}

.lv2-corporate-steps {
    padding: 16px 0 6px;
}

.lv2-corporate-steps h2 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.lv2-corporate-steps header p {
    margin: 0 0 12px;
    color: #64748b;
}

.lv2-corporate-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lv2-corporate-steps__item {
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 14px;
}

.lv2-corporate-steps__item > span {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, var(--lv2-purple), #1d4ed8);
}

.lv2-corporate-steps__item h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.lv2-corporate-steps__item p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

.lv2-corporate-final {
    margin-top: 14px;
    padding: clamp(24px, 4.6vw, 44px) 0;
    background: linear-gradient(130deg, #1e3a8a 0%, #2563eb 48%, #2563eb 100%);
    color: #fff;
}

.lv2-corporate-final__inner {
    text-align: center;
}

.lv2-corporate-final__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.lv2-corporate-final__inner p {
    margin: 0 auto 16px;
    max-width: 760px;
    opacity: 0.95;
}

.lv2-corporate-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-corporate-editor {
    padding-top: 20px;
}

.lv2-corporate-editor__title {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

@media (max-width: 1040px) {
    .lv2-corporate-hero__grid {
        grid-template-columns: 1fr;
    }
    .lv2-corporate-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lv2-corporate-logos__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .lv2-corporate-showcase__grid,
    .lv2-corporate-steps__list {
        grid-template-columns: 1fr;
    }
    .lv2-corporate-logos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lv2-corporate-hero__actions .lv2-btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/* Bireysel Alim Merkezi landing */
.lv2-individual {
    padding-bottom: clamp(40px, 6vw, 72px);
}

.lv2-individual-hero {
    padding: clamp(18px, 3.5vw, 34px) 0 12px;
}

.lv2-individual-hero__grid {
    display: grid;
    gap: clamp(16px, 2.4vw, 26px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.lv2-individual-hero__copy {
    border: 1px solid var(--lv2-line);
    border-radius: 16px;
    background: linear-gradient(148deg, #eff6ff 0%, #f8fafc 55%, #ffffff 100%);
    padding: clamp(18px, 3vw, 32px);
}

.lv2-individual-hero__badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0f766e;
    background: rgba(20, 184, 166, 0.14);
}

.lv2-individual-hero__title {
    margin: 14px 0 10px;
    font-size: clamp(1.45rem, 2.8vw, 2.3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.lv2-individual-hero__lead {
    margin: 0 0 18px;
    color: #475569;
}

.lv2-individual-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.lv2-individual-hero__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lv2-individual-hero__chips li {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #fff;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
}

.lv2-individual-hero__media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lv2-line);
    min-height: clamp(280px, 40vw, 460px);
}

.lv2-individual-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lv2-individual-showcase {
    padding: 10px 0;
}

.lv2-individual-showcase__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-individual-showcase__card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--lv2-line);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.lv2-individual-showcase__card img {
    width: 100%;
    height: 188px;
    object-fit: cover;
    display: block;
}

.lv2-individual-showcase__card div {
    padding: 14px;
}

.lv2-individual-showcase__card h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.lv2-individual-showcase__card p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
}

.lv2-individual-steps {
    padding: 16px 0 6px;
}

.lv2-individual-steps h2 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.lv2-individual-steps header p {
    margin: 0 0 12px;
    color: #64748b;
}

.lv2-individual-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lv2-individual-steps__item {
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 14px;
}

.lv2-individual-steps__item > span {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, #1e3a8a, #2563eb);
}

.lv2-individual-steps__item h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.lv2-individual-steps__item p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

.lv2-individual-final {
    margin-top: 14px;
    padding: clamp(24px, 4.6vw, 44px) 0;
    background: linear-gradient(130deg, #0f172a 0%, #1d4ed8 48%, #2563eb 100%);
    color: #fff;
}

.lv2-individual-final__inner {
    text-align: center;
}

.lv2-individual-final__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.lv2-individual-final__inner p {
    margin: 0 auto 16px;
    max-width: 760px;
    opacity: 0.95;
}

.lv2-individual-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1040px) {
    .lv2-individual-hero__grid {
        grid-template-columns: 1fr;
    }
    .lv2-individual-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .lv2-individual-showcase__grid,
    .lv2-individual-steps__list {
        grid-template-columns: 1fr;
    }
    .lv2-individual-hero__actions .lv2-btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/* Mobil Uygulama sayfasi */
.lv2-mobile-app {
    padding-bottom: clamp(34px, 6vw, 70px);
}

.lv2-mobile-app__hero {
    padding: clamp(18px, 3.4vw, 34px) 0 14px;
}

.lv2-mobile-app__hero-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
}

.lv2-mobile-app__copy {
    border-radius: 14px;
    border: 1px solid var(--lv2-line);
    background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 58%, #fff 100%);
    padding: clamp(16px, 2.8vw, 30px);
}

.lv2-mobile-app__title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.8vw, 2.15rem);
}

.lv2-mobile-app__lead {
    margin: 0 0 16px;
    color: #475569;
}

.lv2-mobile-app__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-mobile-app__qr {
    width: 178px;
    border-radius: 14px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    padding: 10px;
}

.lv2-mobile-app__qr img {
    width: 100%;
    height: auto;
    display: block;
}

.lv2-mobile-app__preview {
    padding-top: 6px;
}

.lv2-mobile-app__preview h2 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.lv2-mobile-app__iframe-wrap {
    border-radius: 14px;
    border: 1px solid var(--lv2-line);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lv2-mobile-app__iframe-wrap iframe {
    display: block;
    width: 100%;
    min-height: 70vh;
    border: 0;
}

@media (max-width: 860px) {
    .lv2-mobile-app__hero-grid {
        grid-template-columns: 1fr;
    }
    .lv2-mobile-app__qr {
        width: 140px;
    }
    .lv2-mobile-app__actions .lv2-btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/* Ikinci El Laptop Sat sayfasi */
.lv2-secondhand {
    padding-bottom: clamp(40px, 7vw, 78px);
}

.lv2-secondhand-hero {
    padding: clamp(22px, 4vw, 40px) 0 16px;
}

.lv2-secondhand-hero__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
}

.lv2-secondhand-hero__copy {
    border: 1px solid var(--lv2-line);
    border-radius: 16px;
    background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 56%, #fff 100%);
    padding: clamp(18px, 3vw, 32px);
}

.lv2-secondhand-hero__badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    padding: 0 12px;
    background: rgba(59, 130, 246, 0.14);
    color: #9a3412;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.lv2-secondhand-hero__title {
    margin: 12px 0 10px;
    font-size: clamp(1.4rem, 2.9vw, 2.25rem);
    line-height: 1.14;
}

.lv2-secondhand-hero__lead {
    margin: 0 0 16px;
    color: #475569;
}

.lv2-secondhand-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-secondhand-hero__media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lv2-line);
}

.lv2-secondhand-hero__media img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.lv2-secondhand-benefits {
    padding: 12px 0;
}

.lv2-secondhand-benefits h2,
.lv2-secondhand-steps h2 {
    margin: 0 0 12px;
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
}

.lv2-secondhand-benefits__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-secondhand-card {
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    padding: 16px;
}

.lv2-secondhand-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.lv2-secondhand-card p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
}

.lv2-secondhand-steps {
    padding: 10px 0 0;
}

.lv2-secondhand-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-secondhand-steps__item {
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 14px;
}

.lv2-secondhand-steps__item > span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.lv2-secondhand-steps__item h3 {
    margin: 0 0 5px;
    font-size: 0.98rem;
}

.lv2-secondhand-steps__item p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
}

.lv2-secondhand-final {
    margin-top: 14px;
    padding: clamp(24px, 4.5vw, 44px) 0;
    background: linear-gradient(130deg, #0f172a 0%, #2563eb 45%, #1d4ed8 100%);
    color: #fff;
}

.lv2-secondhand-final__inner {
    text-align: center;
}

.lv2-secondhand-final__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.7vw, 1.95rem);
}

.lv2-secondhand-final__inner p {
    margin: 0 auto 16px;
    max-width: 760px;
    opacity: 0.95;
}

.lv2-secondhand-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 980px) {
    .lv2-secondhand-hero__grid {
        grid-template-columns: 1fr;
    }
    .lv2-secondhand-benefits__grid,
    .lv2-secondhand-steps__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .lv2-secondhand-benefits__grid,
    .lv2-secondhand-steps__list {
        grid-template-columns: 1fr;
    }
    .lv2-secondhand-hero__actions,
    .lv2-secondhand-final__actions {
        flex-direction: column;
    }
}

/* Laptop Sat - sifirdan modern s?r?m */
.lv2-sellx {
    padding-bottom: clamp(36px, 7vw, 78px);
}

.lv2-sellx-hero {
    padding: clamp(22px, 4.5vw, 50px) 0 14px;
    background:
        radial-gradient(circle at 12% 12%, rgba(59, 130, 246, 0.14), transparent 36%),
        radial-gradient(circle at 88% 88%, rgba(124, 58, 237, 0.14), transparent 38%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.lv2-sellx-hero__grid {
    display: grid;
    gap: clamp(16px, 2.8vw, 30px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    align-items: center;
}

.lv2-sellx-hero__copy {
    border: 1px solid var(--lv2-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
    padding: clamp(18px, 3vw, 30px);
}

.lv2-sellx-hero__badge {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border-radius: 999px;
    padding: 0 12px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.lv2-sellx-hero__title {
    margin: 12px 0 10px;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lv2-sellx-hero__lead {
    margin: 0 0 14px;
    color: #475569;
    max-width: 62ch;
}

.lv2-sellx-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lv2-sellx-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #334155;
    font-size: 0.8rem;
    font-weight: 700;
}

.lv2-sellx-orbit {
    position: relative;
    width: min(420px, 92%);
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    display: grid;
    place-items: center;
}

.lv2-sellx-orbit__ring {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 2px dashed rgba(59, 130, 246, 0.4);
    animation: lv2SellSpin 18s linear infinite;
}

.lv2-sellx-orbit__ring--reverse {
    inset: 16%;
    border-color: rgba(124, 58, 237, 0.35);
    animation-direction: reverse;
    animation-duration: 14s;
}

.lv2-sellx-orbit__core {
    width: 60%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.lv2-sellx-orbit__core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes lv2SellSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lv2-sellx-formsec {
    padding: 0 0 clamp(20px, 4vw, 36px);
}

.lv2-sellx-formcard {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding: clamp(16px, 2.8vw, 26px);
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.08);
}

.lv2-sellx-formcard__head h2 {
    margin: 0 0 6px;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.lv2-sellx-formcard__head p {
    margin: 0 0 12px;
    color: #64748b;
}

.lv2-sellx-types {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 12px;
}

.lv2-sellx-type {
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: #fff;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
}

.lv2-sellx-type.is-active {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.16);
    color: #9a3412;
    background: #eff6ff;
}

.lv2-sellx-formgrid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lv2-sellx-formgrid label {
    display: grid;
    gap: 6px;
}

.lv2-sellx-formgrid span {
    font-size: 0.84rem;
    font-weight: 700;
    color: #334155;
}

.lv2-sellx-formgrid input,
.lv2-sellx-formgrid select,
.lv2-sellx-formgrid textarea {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    background: #fff;
    padding: 10px 12px;
    font: inherit;
    color: #0f172a;
}

.lv2-sellx-formgrid textarea {
    min-height: 88px;
    resize: vertical;
}

.lv2-sellx-formgrid__full {
    grid-column: 1 / -1;
}

.lv2-sellx-formcard__actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-sellx-copy {
    padding: clamp(28px, 5vw, 54px) 0;
}

.lv2-sellx-copy__title {
    margin: 0 0 10px;
    font-size: clamp(1.3rem, 2.3vw, 1.95rem);
}

.lv2-sellx-copy p {
    margin: 0 0 12px;
    color: #475569;
    line-height: 1.7;
}

.lv2-sellx-steps {
    padding: 0 0 clamp(24px, 5vw, 46px);
}

.lv2-sellx-steps h2 {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.lv2-sellx-steps__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv2-sellx-step {
    border-radius: 12px;
    border: 1px solid var(--lv2-line);
    background: #fff;
    padding: 14px;
}

.lv2-sellx-step span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #2563eb 100%);
    margin-bottom: 8px;
}

.lv2-sellx-step h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.lv2-sellx-step p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
}

.lv2-sellx-final {
    padding: clamp(24px, 4.6vw, 42px) 0;
}

.lv2-sellx-final__inner {
    border-radius: 16px;
    border: 1px solid var(--lv2-line);
    padding: clamp(20px, 3vw, 30px);
    background: linear-gradient(130deg, #0f172a 0%, #1d4ed8 46%, #2563eb 100%);
    color: #fff;
}

.lv2-sellx-final__inner h2 {
    margin: 0 0 8px;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.lv2-sellx-final__inner p {
    margin: 0 0 14px;
    opacity: 0.94;
}

.lv2-sellx-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lv2-sellx-editor {
    margin-top: 26px;
}

.lv2-sellx-editor__title {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

@media (max-width: 980px) {
    .lv2-sellx-hero__grid {
        grid-template-columns: 1fr;
    }
    .lv2-sellx-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .lv2-sellx-types,
    .lv2-sellx-formgrid,
    .lv2-sellx-steps__grid {
        grid-template-columns: 1fr;
    }
    .lv2-sellx-formcard__actions,
    .lv2-sellx-final__actions {
        flex-direction: column;
    }
}


