/* =====================================================================
   YILDIRIM LP — Kırmızı tema override (v4.1)
   ===================================================================== */
:root {
    --primary-color: #e01c24;
    --primary-dark: #b91219;
    --accent-color: #e01c24;
    --yl-red: #e01c24;
    --yl-dark: #1a1a1a;
    --yl-white: #fff;
    --yl-border: #eee;
    --text-dark: #1a1a1a;
    --text-medium: #555;
}
body.lp-page {
    font-family: 'Poppins', sans-serif !important;
    background: #fff;
}

/* ---- LP Header (izole — yildirim_theme ile çakışmaz) ---- */
.lp-topbar {
    background: var(--yl-dark);
    color: rgba(255,255,255,.88);
    font-size: 13px;
    padding: 10px 0;
}
.lp-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.lp-topbar__left,
.lp-topbar__right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.lp-topbar a {
    color: rgba(255,255,255,.92);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lp-topbar a:hover { color: #fff; }
.lp-topbar i { color: var(--yl-red); }
.lp-topbar__right span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #fff;
    border-bottom: 1px solid var(--yl-border);
    transition: box-shadow .2s;
}
.lp-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.lp-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.lp-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}
.lp-header__logo img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.lp-header__nav {
    justify-self: center;
}
.lp-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
}
.lp-nav__item {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.lp-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: color .15s, background .15s;
    position: relative;
    top: 0;
    transform: none;
    vertical-align: middle;
}
.lp-nav__link:hover,
.lp-nav__link.is-active {
    color: var(--yl-red);
    background: rgba(224,28,36,.08);
}
.lp-nav__link::before,
.lp-nav__link::after {
    content: none !important;
    display: none !important;
}
.lp-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}
.lp-header__tel {
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}
.lp-header__tel i { color: var(--yl-red); }
.lp-header__wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--yl-red);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}
.lp-header__wa:hover { background: var(--primary-dark); color: #fff !important; }
.lp-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid var(--yl-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.lp-header__burger span {
    display: block;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}
.lp-mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1190;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s;
}
.lp-mob-overlay.is-open { opacity: 1; visibility: visible; }
.lp-mob-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: #fff;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform .25s;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0,0,0,.12);
}
.lp-mob-menu.is-open { transform: translateX(0); }
.lp-mob-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--yl-border);
}
.lp-mob-menu__head img { height: 44px; width: auto; }
.lp-mob-menu__close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
}
.lp-mob-menu__links {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}
.lp-mob-menu__links a {
    display: block;
    padding: 14px 20px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f3f3f3;
}
.lp-mob-menu__links a:hover { color: var(--yl-red); background: #fff8f8; }
.lp-mob-menu__cta {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--yl-border);
}
.lp-mob-menu__cta .lp-header__wa {
    justify-content: center;
    padding: 14px;
}
.lp-mob-menu__wa-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--yl-dark);
    color: var(--yl-dark);
    background: #fff;
}
@media (max-width: 991px) {
    .lp-header__inner {
        grid-template-columns: 1fr auto;
    }
    .lp-header__nav { display: none; }
}

/* ---- LP Footer ---- */
.lp-footer {
    background: #141414;
    color: rgba(255,255,255,.82);
    margin-top: 0;
    position: relative;
    z-index: 1;
}
.lp-footer .container {
    padding-top: 56px;
    padding-bottom: 40px;
}
.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px 24px;
}
@media (max-width: 991px) {
    .lp-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .lp-footer__grid { grid-template-columns: 1fr; }
}
.lp-footer__logo {
    max-width: 170px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}
.lp-footer__about {
    font-size: .92rem;
    line-height: 1.65;
    color: #fff;
    margin: 0 0 18px;
    max-width: 320px;
}
.lp-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.lp-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.lp-footer__social a:hover {
    background: var(--yl-red);
    color: #fff;
}
.lp-footer__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lp-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-footer__links li { margin-bottom: 10px; }
.lp-footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}
.lp-footer__links a i { font-size: .75rem; color: var(--yl-red); }
.lp-footer__links a:hover { color: rgba(255,255,255,.85); }
.lp-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .92rem;
    line-height: 1.5;
    color: #fff;
}
.lp-footer__contact i {
    color: var(--yl-red);
    flex-shrink: 0;
    margin-top: 3px;
}
.lp-footer__contact a {
    color: #fff;
    text-decoration: none;
}
.lp-footer__contact a:hover { color: #fff; }
.lp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0 22px;
    background: #0f0f0f;
}
.lp-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
}
.lp-footer__bottom p {
    margin: 0;
    font-size: .85rem;
    color: rgba(255,255,255,.45);
}
.lp-footer__bottom a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
}
.lp-footer__bottom a:hover { color: #fff; }
.lp-footer__legal {
    display: flex;
    gap: 16px;
}
.lp-footer__legal a {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    text-decoration: none;
}
.lp-footer__legal a:hover { color: #fff; }

/* Floating butonlar */
.lp-floats {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.35rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    transition: transform .15s;
}
.lp-float-btn:hover { transform: scale(1.06); color: #fff !important; }
.lp-float-btn--wa { background: #25D366; }
.lp-float-btn--tel { background: var(--yl-red); }
@media (max-width: 991px) {
    .lp-floats { display: none; }
    body.lp-page { padding-bottom: 72px; }
}

/* ---- LP Bölge / Güzergah (Haktan haritası yerine) ---- */
.lp-zones {
    background: #fafafa;
}
.lp-zones__layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}
@media (max-width: 991px) {
    .lp-zones__layout { grid-template-columns: 1fr; }
}
.lp-zones__hub {
    background: #141414;
    color: rgba(255,255,255,.88);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 4px solid var(--yl-red);
}
.lp-zones__hub-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--yl-red);
}
.lp-zones__hub h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}
.lp-zones__hub-addr {
    margin: 0;
    font-size: .88rem;
    line-height: 1.55;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.lp-zones__hub-addr i { color: var(--yl-red); flex-shrink: 0; margin-top: 2px; }
.lp-zones__hub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-zones__hub-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: rgba(255,255,255,.78);
}
.lp-zones__hub-list i { color: var(--yl-red); }
.lp-zones__hub-focus {
    margin-top: auto;
    padding: 14px;
    background: rgba(224,28,36,.12);
    border: 1px solid rgba(224,28,36,.25);
    border-radius: 8px;
}
.lp-zones__hub-focus strong {
    display: block;
    color: #fff;
    font-size: .95rem;
    margin-bottom: 4px;
}
.lp-zones__hub-focus span {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
}
.lp-zones__body {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.lp-zones__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.lp-zones__tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid #eee;
    border-left: 3px solid var(--yl-red);
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,.03);
}
.lp-zones__routes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 767px) {
    .lp-zones__routes { grid-template-columns: 1fr; }
}
.lp-zones__route {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: #fff8f8;
    border: 1px solid #ffe0e2;
    border-radius: 10px;
}
.lp-zones__route-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--yl-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lp-zones__route h4 {
    margin: 0 0 6px;
    font-size: .95rem;
    font-weight: 800;
    color: #1a1a1a;
}
.lp-zones__route p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.55;
    color: #666;
}

/* Yeni hero layout */
.lp-hero--yl {
    padding: 32px 0 48px !important;
    background: linear-gradient(180deg, #fff5f5 0%, #fff 55%) !important;
    overflow: hidden;
    position: relative;
}
body.lp-page .lp-hero.lp-hero--yl {
    padding-top: 32px !important;
    padding-bottom: 48px !important;
    background: linear-gradient(180deg, #fff5f5 0%, #fff 55%) !important;
}
.lp-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}
@media (max-width: 991px) {
    .lp-hero__grid { grid-template-columns: 1fr; }
    .lp-hero--yl .lp-hero__grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .lp-hero--yl .lp-hero__visual {
        order: 0;
        position: relative;
        width: 100%;
        margin: 0;
    }
    .lp-hero--yl .lp-hero__copy {
        order: 0;
        position: static !important;
        z-index: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        background: transparent !important;
        max-width: none;
    }
    .lp-hero--yl .lp-hero__copy .lp-hero__tag {
        background: #fff !important;
        color: var(--yl-red) !important;
        border-color: #ffd4d6 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none;
    }
    .lp-hero--yl .lp-hero__copy .lp-hero__tag i {
        color: var(--yl-red) !important;
    }
    .lp-hero--yl .lp-hero__copy .lp-hero__h1 {
        color: var(--yl-dark, #1a1a1a) !important;
        text-shadow: none !important;
        max-width: none !important;
    }
    .lp-hero--yl .lp-hero__copy .lp-hero__sub {
        color: #555 !important;
        text-shadow: none !important;
    }
    .lp-hero--yl .lp-hero__cta-row--desk { display: none; }
    .lp-hero--yl .lp-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 4px;
    }
    .lp-hero--yl .lp-hero__actions .lp-yl-btn {
        justify-content: center;
        width: 100%;
        min-height: 48px;
    }
    .lp-hero--yl .lp-hero__pill-list {
        margin-top: 12px;
        margin-bottom: 0;
    }
    .lp-hero--yl .lp-hero__card img {
        min-height: 220px;
        max-height: 300px;
    }
    .lp-hero--yl .lp-hero__float-stats {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }
    .lp-hero--yl .lp-hero__float-stats div {
        min-width: 0;
        flex: 1 1 88px;
    }
    .lp-hero--yl {
        padding: 16px 0 28px !important;
    }
    body.lp-page .lp-hero.lp-hero--yl {
        padding-top: 16px !important;
        padding-bottom: 28px !important;
    }
}
.lp-hero--yl .lp-hero__tag {
    background: #fff;
    color: var(--yl-red);
    border: 1px solid #ffd4d6;
    box-shadow: none;
    font-weight: 700;
    letter-spacing: .02em;
}
.lp-hero--yl .lp-hero__tag i { color: var(--yl-red); }
.lp-hero--yl .lp-hero__h1 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.15;
    max-width: none;
}
.lp-hero--yl .lp-hero__sub { max-width: 560px; }
.lp-hero--yl .lp-hero__actions { display: none; }
.lp-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 18px;
}
.lp-yl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.lp-yl-btn--red {
    background: var(--yl-red);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(224,28,36,.25);
}
.lp-yl-btn--red:hover { transform: translateY(-2px); color: #fff !important; }
.lp-yl-btn--dark {
    background: #1a1a1a;
    color: #fff !important;
}
.lp-yl-btn--dark:hover { color: #fff !important; transform: translateY(-2px); }
.lp-yl-btn--wa {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.lp-yl-btn--wa:hover { color: #fff !important; transform: translateY(-2px); background: #1ebe57; }
.lp-hero__pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 576px) { .lp-hero__pill-list { grid-template-columns: 1fr; } }
.lp-hero__pill-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: 1px solid #eee;
    border-left: 3px solid var(--yl-red);
    padding: 10px 12px;
    border-radius: 6px;
}
.lp-hero__pill-list i { color: var(--yl-red); flex-shrink: 0; margin-top: 2px; }
.lp-hero__visual { position: relative; }
.lp-hero__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.14);
    border: 4px solid #fff;
    outline: 2px solid rgba(224,28,36,.15);
}
.lp-hero__card img {
    width: 100%;
    height: auto;
    min-height: 360px;
    object-fit: cover;
    display: block;
}
.lp-hero__card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #fff;
    color: var(--yl-red);
    border: 1px solid #ffd4d6;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.lp-hero__card-badge strong { display: block; font-size: 22px; line-height: 1; color: var(--yl-red); }
.lp-hero__card-badge span { font-size: 11px; font-weight: 600; color: #555; }
.lp-hero__float-stats {
    position: absolute;
    top: 20px;
    right: -12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (max-width: 991px) {
    .lp-hero__float-stats { position: static; flex-direction: row; margin-top: 12px; }
}
.lp-hero__float-stats div {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    min-width: 88px;
}
.lp-hero__float-stats strong { display: block; color: var(--yl-red); font-size: 16px; }
.lp-hero__float-stats span { font-size: 10px; color: #666; font-weight: 600; }

/* Eski mavi hero — yl dışındakiler */
body.lp-page .lp-hero:not(.lp-hero--yl) { padding-top: 128px; }

/* Bölüm başlıkları & CTA kırmızı */
.lp-section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--yl-red) !important;
    margin-bottom: 8px;
}
.lp-trust-badge i,
.lp-advantage__icon i,
.lp-process__icon i { color: var(--yl-red) !important; }
.lp-process__num {
    background: var(--yl-red) !important;
    box-shadow: 0 6px 16px rgba(224,28,36,.28) !important;
}
.lp-process__item:hover {
    border-color: rgba(224,28,36,.22) !important;
    box-shadow: 0 12px 28px rgba(224,28,36,.10) !important;
}
.lp-advantage__icon {
    background: rgba(224,28,36,.08) !important;
    color: var(--yl-red) !important;
}
.lp-advantage:hover {
    border-color: rgba(224,28,36,.22) !important;
    box-shadow: 0 12px 28px rgba(224,28,36,.10) !important;
}
.lp-final-cta,
.lp-cta-banner {
    background: linear-gradient(135deg, #e01c24, #b91219) !important;
}
.lp-cta-btn--phone { background: var(--yl-red) !important; box-shadow: 0 8px 24px rgba(224,28,36,.2) !important; }
.lp-sticky-bar__btn--call { background: var(--yl-red) !important; }
.lp-form-submit,
.lp-faq__cta {
    background: linear-gradient(135deg, #e01c24, #b91219) !important;
    box-shadow: 0 12px 28px rgba(224,28,36,.22) !important;
}
.lp-pricing__icon {
    background: rgba(224,28,36,.08) !important;
    color: var(--yl-red) !important;
}
.lp-coverage__list li i { color: var(--yl-red) !important; }

/* Yeni yorum kartları — fotoğraf yok, 2 sütun */
.lp-reviews-yl__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8px;
}
@media (max-width: 767px) {
    .lp-reviews-yl__grid { grid-template-columns: 1fr; }
}
.lp-review-card {
    background: #fff;
    border: 1px solid #eee;
    border-left: 4px solid var(--yl-red);
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
    transition: box-shadow .15s, transform .15s;
}
.lp-review-card:hover {
    box-shadow: 0 14px 32px rgba(224,28,36,.08);
    transform: translateY(-2px);
}
.lp-review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.lp-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yl-red);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-review-card__name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: .95rem;
    line-height: 1.2;
}
.lp-review-card__city {
    font-size: .82rem;
    color: #888;
    margin-top: 2px;
}
.lp-review-card__stars {
    margin-left: auto;
    color: #f5b400;
    font-size: .9rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.lp-review-card__quote {
    margin: 0;
    padding: 0;
    border: none;
    font-size: .96rem;
    line-height: 1.65;
    color: #444;
    font-style: normal;
}
.lp-reviews-yl .lp-testimonial::before { display: none !important; }

/* =====================================================================
   LP.CSS — Landing Page Eklenti Stilleri
   Mevcut tema CSS'lerinin (main.css + new_design.css + modern_theme.css)
   üzerine biner. Ana renk: --primary-color (#0D6EFD), --accent-color (#FF9800).
   Tema CSS'i yüklenmiş varsayılır — bu dosya sadece eksikleri tamamlar.
   ===================================================================== */

/* Mobil sticky bar için body alt boşluk — desktop'ta yok */
@media (max-width: 991.98px) {
    body { padding-bottom: 92px; }
}

/* =====================================================================
   LANDING'TE HEADER OPAK
   Tema'nın modern-header'ı varsayılan transparent; landing hero üstüne
   binerken altındaki metni okunmaz hale getirmesin diye opak veriyoruz.
   ===================================================================== */
body.lp-page .modern-header {
    background-color: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 10px 0 !important;
}
body.lp-page .modern-header.scrolled {
    background-color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 8px 0 !important;
}
body.lp-page .modern-logo,
body.lp-page .modern-header .navbar-brand img {
    height: 86px !important;
    max-height: 86px !important;
}
@media (max-width: 991.98px) {
    body.lp-page .modern-logo,
    body.lp-page .modern-header .navbar-brand img {
        height: 58px !important;
        max-height: 58px !important;
    }
}

/* =====================================================================
   HERO — Tema header position:fixed olduğu için yeterli üst boşluk
   ===================================================================== */
body.lp-page .lp-hero {
    padding-top: 128px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(13,110,253,.075) 0%, rgba(255,255,255,0) 58%),
        linear-gradient(90deg, #fff 0%, #fff 52%, rgba(13,110,253,.055) 52%, rgba(13,110,253,.055) 100%);
}
@media (max-width: 991.98px) {
    body.lp-page .lp-hero {
        padding-top: 100px;
        padding-bottom: 34px;
        background: linear-gradient(180deg, rgba(13,110,253,.07) 0%, #fff 48%);
    }
}
.lp-hero__bg-shape {
    position: absolute; top: 0; right: 0; height: 100%; width: 46%;
    background:
        linear-gradient(rgba(13,110,253,.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,110,253,.075) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
    z-index: 0;
    opacity: .48;
}
@media (max-width: 991.98px) { .lp-hero__bg-shape { display: none; } }
.lp-hero__inner { position: relative; z-index: 2; }

.lp-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-color);
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(13,110,253,.18);
    box-shadow: 0 12px 30px rgba(13,110,253,.10);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.lp-hero__tag i { color: var(--accent-color, #FF9800); font-size: 1rem; }

.lp-hero__h1 {
    font-size: clamp(1.65rem, 3.2vw + .2rem, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 18px;
    letter-spacing: 0;
    max-width: 760px;
}
.lp-hero__sub {
    font-size: clamp(.98rem, .65vw + .82rem, 1.1rem);
    color: var(--text-medium, #4a4a4a);
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 640px;
}

.lp-hero__features {
    list-style: none; padding: 0; margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 650px;
}
@media (min-width: 640px) { .lp-hero__features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.lp-hero__features li {
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; color: var(--text-dark, #1a1a1a);
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(13,110,253,.14);
    border-radius: 8px;
    padding: 11px 12px;
    font-size: .95rem;
    box-shadow: 0 10px 24px rgba(15,23,42,.045);
}
.lp-hero__features li i {
    color: #16a34a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lp-hero__cta {
    display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px;
    margin-bottom: 10px; max-width: 660px;
}

.lp-cta-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 11px 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    min-height: 52px; flex: 1; min-width: 140px;
    box-shadow: 0 14px 28px rgba(13,110,253,.18);
    transition: transform .15s, box-shadow .15s, background-color .15s;
    will-change: transform;
}
.lp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.14); color: #fff !important; }
.lp-cta-btn:active { transform: translateY(0); }
.lp-cta-btn--phone { background: var(--primary-color, #0D6EFD); }
.lp-cta-btn--phone:hover { background: var(--primary-dark, #0D47A1); }
.lp-cta-btn--whatsapp { background: #128C7E; box-shadow: 0 14px 28px rgba(18,140,126,.18); }
.lp-cta-btn--whatsapp:hover { background: #0f766c; }

.lp-cta-btn__icon {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.15rem;
    background: rgba(255,255,255,.16);
    border-radius: 50%;
}
.lp-cta-btn__content { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.lp-cta-btn__title { font-size: .88rem; font-weight: 800; letter-spacing: .02em; }
.lp-cta-btn__sub { font-size: .76rem; font-weight: 500; opacity: .92; margin-top: 1px; }

.lp-hero__alt { font-size: .9rem; color: var(--text-medium, #4a4a4a); }
.lp-hero__alt a { color: var(--primary-color); font-weight: 600; border-bottom: 1px dashed var(--primary-color); }

.lp-hero__trustline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 14px;
    color: #334155;
    font-size: .9rem;
    font-weight: 700;
}
.lp-hero__trustline span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.lp-hero__trustline i {
    color: var(--primary-color, #0D6EFD);
    font-size: 1rem;
}

.lp-hero__rating {
    display: flex; align-items: center; gap: 12px;
    margin-top: 10px; flex-wrap: wrap;
    font-size: .9rem; color: var(--text-medium);
}
.lp-hero__rating .stars { color: #f5b400; letter-spacing: 2px; }
.lp-hero__rating strong { color: var(--text-dark, #1a1a1a); }

.lp-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
    max-width: 540px;
}
.lp-hero__metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(13,110,253,.12);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
}
.lp-hero__metric strong {
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.15;
    font-size: .98rem;
}
.lp-hero__metric small {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.2;
    font-size: .78rem;
}

.lp-hero__media {
    position: relative;
    width: min(100%, 500px);
    margin-left: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(15,23,42,.20);
    aspect-ratio: 3/4;
    background: #f6f8fb;
    border: 1px solid rgba(15,23,42,.08);
}

/* Görsel kolonu: Bootstrap'ın stretch'ini kır, aspect-ratio serbestçe çalışsın */
.lp-hero__img-col {
    align-self: flex-start;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    body.lp-page .lp-hero { padding-top: 112px; }
    .lp-hero__h1 { font-size: clamp(1.75rem, 2.8vw, 2.8rem); }
    .lp-hero__features { grid-template-columns: 1fr; }
    .lp-hero__metrics { display: none; }
    .lp-hero__media { aspect-ratio: 3/4; max-width: 420px; }
}
@media (max-width: 991.98px) {
    .lp-hero__media {
        width: min(100%, 460px);
        margin: 8px auto 0;
    }
}
.lp-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.lp-hero__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,.62) 100%);
    pointer-events: none;
}
.lp-hero__media-badge {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: calc(100% - 32px);
    background: rgba(255,255,255,.94);
    color: #1e293b;
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 800;
    font-size: .9rem;
    box-shadow: 0 12px 28px rgba(15,23,42,.20);
}
.lp-hero__media-badge i { color: var(--primary-color); font-size: 1.1rem; }

.lp-hero__media-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
    padding: 11px 13px;
    background: rgba(255,255,255,.95);
    color: #0f172a;
    border: 1px solid rgba(13,110,253,.12);
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(15,23,42,.18);
}
.lp-hero__media-chip--top {
    top: 16px;
    right: 16px;
}
.lp-hero__media-chip strong {
    color: var(--primary-color, #0D6EFD);
    font-size: 1.25rem;
    line-height: 1;
}
.lp-hero__media-chip span {
    color: #475569;
    font-size: .78rem;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .lp-hero__sub { font-size: 1rem; }
    .lp-hero__cta { max-width: none; }
    .lp-hero__media {
        width: min(100%, 360px);
        margin: 6px auto 0;
        aspect-ratio: 4/5;
    }
    .lp-hero__media-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        font-size: .82rem;
    }
    .lp-hero__media-chip {
        top: 12px;
        right: 12px;
        padding: 9px 11px;
    }
    .lp-hero__metrics { grid-template-columns: 1fr; }
    .lp-hero__metric { flex-direction: row; align-items: baseline; justify-content: space-between; }
}

/* =====================================================================
   HERO REDESIGN — modern, sade, Google Ads odaklı ilk ekran
   ===================================================================== */
body.lp-page {
    font-family: "Outfit", Arial, sans-serif;
}

body.lp-page p {
    font-family: "Outfit", Arial, sans-serif;
}

body.lp-page ::selection {
    color: HighlightText;
    background: Highlight;
}

body.lp-page ::-moz-selection {
    color: HighlightText;
    background: Highlight;
}

body.lp-page .lp-hero {
    min-height: calc(100vh - 24px);
    padding-top: 132px;
    padding-bottom: 64px;
    background:
        linear-gradient(115deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.98) 48%, rgba(237,245,255,.82) 48%, rgba(237,245,255,.82) 100%),
        linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

body.lp-page .lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(13,110,253,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,110,253,.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 49%, #000 68%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 49%, #000 68%, #000 100%);
    pointer-events: none;
}

.lp-hero__bg-shape {
    display: none;
}

.lp-hero__copy {
    max-width: 760px;
}

.lp-hero__tag {
    margin-bottom: 18px;
    padding: 10px 14px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(13,110,253,.16);
    color: #0d6efd;
    box-shadow: 0 14px 34px rgba(15,23,42,.07);
    font-size: .88rem;
    align-self: flex-start;
    width: fit-content;
}

.lp-hero__h1 {
    max-width: 740px;
    margin-bottom: 18px;
    color: #0f172a;
    font-size: clamp(1.75rem, 3.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
}

.lp-hero__sub {
    max-width: 650px;
    margin-bottom: 26px;
    color: #475569;
    font-family: "Outfit", Arial, sans-serif;
    font-size: clamp(1.02rem, .55vw + .9rem, 1.2rem);
    line-height: 1.7;
}

.lp-hero__cta {
    max-width: 610px;
    gap: 10px;
    margin-bottom: 12px;
}

.lp-cta-btn {
    min-height: 52px;
    border-radius: 8px;
    box-shadow: none;
    padding: 11px 14px;
    gap: 10px;
}

.lp-cta-btn--phone {
    background: linear-gradient(135deg, #0d6efd 0%, #0757d8 100%);
    box-shadow: 0 18px 34px rgba(13,110,253,.24);
}

.lp-cta-btn--whatsapp {
    background: #128c7e;
    box-shadow: 0 18px 34px rgba(18,140,126,.18);
}

.lp-cta-btn__title {
    font-size: .88rem;
}

.lp-hero__alt {
    margin-top: 0;
    color: #64748b;
    font-family: "Outfit", Arial, sans-serif;
}

.lp-hero__alt a {
    border-bottom: 1px solid rgba(13,110,253,.28);
    text-decoration: none;
}

.lp-hero__rating {
    margin-top: 14px;
    color: #475569;
    font-family: "Outfit", Arial, sans-serif;
    font-weight: 600;
}

.lp-hero__trustline {
    margin-top: 18px;
    margin-bottom: 18px;
    gap: 10px 18px;
    color: #0f172a;
    font-size: .92rem;
}

.lp-hero__trustline span {
    padding: 0;
    background: transparent;
}

.lp-hero__trustline i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    background: #eef5ff;
    border-radius: 50%;
    font-size: .78rem;
}

.lp-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    max-width: 680px;
    margin: 0 0 18px;
}

.lp-hero__features li {
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #334155;
    font-size: .94rem;
    font-weight: 700;
}

.lp-hero__features li i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #16a34a;
    border-radius: 50%;
    font-size: .72rem;
}

.lp-hero__metrics {
    max-width: 610px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(15,23,42,.10);
}

.lp-hero__metric {
    padding: 0 18px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.lp-hero__metric strong {
    color: #0f172a;
    font-size: 1.02rem;
}

.lp-hero__metric small {
    color: #64748b;
}

.lp-hero__img-col {
    align-self: center;
}

.lp-hero__media {
    width: min(100%, 520px);
    aspect-ratio: 4/5;
    margin-left: auto;
    border-radius: 8px;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 30px 80px rgba(15,23,42,.22);
    background: #eaf1f8;
}

.lp-hero__media::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.46);
    border-radius: 8px;
    pointer-events: none;
}

.lp-hero__media::after {
    height: 46%;
    background: linear-gradient(180deg, transparent 0%, rgba(8,15,28,.70) 100%);
}

.lp-hero__media img {
    object-position: center center;
    transform: scale(1.01);
}

.lp-hero__media-badge {
    left: 22px;
    bottom: 22px;
    padding: 12px 14px;
    background: rgba(255,255,255,.96);
    color: #0f172a;
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 0 18px 40px rgba(2,6,23,.22);
    font-size: .9rem;
}

.lp-hero__media-chip {
    top: 22px;
    right: 22px;
    padding: 13px 15px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 42px rgba(2,6,23,.18);
}

.lp-hero__media-chip strong {
    color: #0d6efd;
    font-size: 1.45rem;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .lp-hero__h1 {
        font-size: clamp(1.75rem, 2.8vw, 2.8rem);
    }

    .lp-hero__features {
        display: flex;
    }

    .lp-hero__metrics {
        display: grid;
    }

    .lp-hero__media {
        max-width: 430px;
        aspect-ratio: 4/5;
    }
}

@media (max-width: 991.98px) {
    body.lp-page .lp-hero {
        min-height: auto;
        padding-top: 100px;       /* navbar + ~28px boşluk */
        padding-bottom: 30px;
        background: #fff;
    }

    body.lp-page .lp-hero::before {
        display: none;
    }

    .lp-hero__copy {
        max-width: none;
    }

    .lp-hero__h1 {
        max-width: 720px;
        line-height: 1.06;
        font-size: clamp(1.65rem, 4.5vw, 2.4rem);
    }

    .lp-hero__cta {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .lp-cta-btn {
        min-width: 0;
        flex: 1;
    }

    .lp-hero__media {
        width: min(100%, 520px);
        margin: 10px auto 0;
    }
}

@media (max-width: 575.98px) {
    body.lp-page .lp-hero {
        padding-top: 92px;
        padding-bottom: 30px;
    }

    .lp-hero__tag {
        font-size: .82rem;
    }

    .lp-hero__h1 {
        font-size: clamp(1.45rem, 7.5vw, 1.9rem);
        line-height: 1.1;
    }

    .lp-hero__cta {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .lp-cta-btn {
        min-width: 0;
        flex: 1;
        padding: 10px 10px;
        gap: 7px;
        min-height: 48px;
    }

    .lp-cta-btn__icon {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }

    .lp-cta-btn__title {
        font-size: .8rem;
    }

    .lp-cta-btn__sub {
        font-size: .7rem;
    }

    .lp-hero__features,
    .lp-hero__trustline {
        gap: 9px 12px;
    }

    .lp-hero__metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lp-hero__metric {
        padding: 0;
    }

    .lp-hero__media {
        width: 100%;
        aspect-ratio: 4/5;
    }
}

/* =====================================================================
   TRUST BADGES BANT
   ===================================================================== */
.lp-trust {
    padding: 18px 0;
    background: #fff;
    border-top: 1px solid #e6eaf0;
    border-bottom: 1px solid #e6eaf0;
}
.lp-trust__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.lp-trust__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a1a);
    background: #f8f9fa;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
}
.lp-trust__item i { color: var(--primary-color); font-size: 1.15rem; }
@media (max-width: 991.98px) {
    .lp-trust__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .lp-trust__list { grid-template-columns: 1fr; }
    .lp-trust__item { justify-content: flex-start; }
}

/* =====================================================================
   HİZMET DETAYI
   ===================================================================== */
.lp-service__title {
    font-size: clamp(1.6rem, 2.5vw + .5rem, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 18px;
    letter-spacing: 0;
}
.lp-service__intro {
    font-size: 1.03rem;
    color: var(--text-medium);
    line-height: 1.75;
    background: #fff;
    border-left: 4px solid var(--primary-color);
    padding: 18px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15,23,42,.045);
}
.lp-service__intro p { margin-bottom: 16px; color: #475569; }
.lp-service__intro p:first-child { font-weight: 600; color: #0f172a; }
.lp-service__intro p:last-child { margin-bottom: 0; }
.lp-service__intro strong { color: #0f172a; }
.lp-service__features {
    list-style: none; padding: 0; margin: 20px 0 0;
    display: grid; grid-template-columns: 1fr; gap: 10px;
}
@media (min-width: 480px) { .lp-service__features { grid-template-columns: 1fr 1fr; } }
.lp-service__features li {
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; padding: 12px 16px;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    color: var(--text-dark);
}
.lp-service__features li i { color: #16a34a; font-size: 1.1rem; flex-shrink: 0; }

.lp-service__media {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 16px 36px rgba(15,23,42,.12);
    aspect-ratio: 4/3;
    border: 1px solid rgba(15,23,42,.08);
}
.lp-service__media img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   SÜREÇ (4 ADIM)
   ===================================================================== */
.lp-process__item {
    position: relative;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    padding: 32px 22px 24px;
    text-align: center;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    height: 100%;
}
.lp-process__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13,110,253,.12);
    border-color: rgba(13,110,253,.25);
}
.lp-process__num {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 6px 16px rgba(13,110,253,.30);
}
.lp-process__icon {
    font-size: 2.4rem; margin-top: 4px; margin-bottom: 12px;
    color: var(--primary-color); line-height: 1;
}
.lp-process__title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.lp-process__desc { font-size: .94rem; color: var(--text-medium); line-height: 1.6; margin: 0; }

/* =====================================================================
   AVANTAJLAR
   ===================================================================== */
.lp-advantage {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    padding: 28px 24px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    height: 100%;
}
.lp-advantage:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13,110,253,.12);
    border-color: rgba(13,110,253,.25);
}
.lp-advantage__icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(13,110,253,.1);
    color: var(--primary-color);
    font-size: 1.6rem;
    border-radius: 8px;
    margin-bottom: 14px;
}
.lp-advantage__title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.lp-advantage__desc { font-size: .95rem; color: var(--text-medium); line-height: 1.6; margin: 0; }

/* =====================================================================
   GALERİ
   ===================================================================== */
.lp-gallery__item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #f6f8fb;
}
.lp-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.lp-gallery__item:hover img { transform: scale(1.05); }

/* =====================================================================
   YORUMLAR
   ===================================================================== */
.lp-testimonial {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 16px;
    padding: 26px 24px;
    height: 100%;
    display: flex; flex-direction: column;
    transition: box-shadow .15s, transform .15s;
}
.lp-testimonial:hover { box-shadow: 0 12px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.lp-testimonial__stars { color: #f5b400; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.lp-testimonial__text { color: var(--text-dark); font-size: .98rem; line-height: 1.65; flex-grow: 1; margin-bottom: 16px; font-style: italic; }
.lp-testimonial__author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid #e6eaf0; padding-top: 12px;
}
.lp-testimonial__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.lp-testimonial__name { font-weight: 700; color: var(--text-dark); font-size: .95rem; line-height: 1.2; }
.lp-testimonial__city { color: var(--text-light, #7a7a7a); font-size: .85rem; }

/* =====================================================================
   FİYAT KRİTERLERİ
   ===================================================================== */
.lp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.lp-pricing__factor {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    padding: 22px 20px;
    min-height: 190px;
    transition: box-shadow .15s, transform .15s;
}
.lp-pricing__factor:hover { box-shadow: 0 12px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.lp-pricing__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(13,110,253,.10);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}
.lp-pricing__factor h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--text-dark);
    font-weight: 800;
}
.lp-pricing__factor p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: .95rem;
}
.lp-pricing__disclaimer { font-size: .9rem; color: var(--text-medium); margin: 18px auto 0; text-align: center; padding: 0 16px; max-width: 860px; }

@media (max-width: 991.98px) {
    .lp-pricing__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .lp-pricing__grid { grid-template-columns: 1fr; }
    .lp-pricing__factor { min-height: 0; }
}

/* =====================================================================
   HİZMET BÖLGELERİ
   ===================================================================== */
.lp-coverage__map {
    border-radius: 14px;
    overflow: hidden;
    background: #f6f8fb;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.lp-coverage__map img { width: 100%; height: auto; display: block; }
.lp-coverage__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.lp-coverage__list li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: .95rem; color: var(--text-dark);
    background: #fff; border: 1px solid #e6eaf0; border-radius: 10px;
}
.lp-coverage__list li i { color: var(--primary-color); flex-shrink: 0; }

/* =====================================================================
   SSS (FAQ ACCORDION)
   ===================================================================== */
.lp-faq__layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 28px;
    align-items: start;
}
.lp-faq__intro {
    position: sticky;
    top: 120px;
}
.lp-section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(13,110,253,.10);
    color: var(--primary-color);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.lp-faq__intro h2 {
    font-size: clamp(1.55rem, 2vw + .5rem, 2.25rem);
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 12px;
    color: var(--text-dark);
}
.lp-faq__intro p {
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0 0 18px;
}
.lp-faq__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(13,110,253,.18);
}
.lp-faq__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.lp-faq__list { min-width: 0; }
.lp-faq__item {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .15s, border-color .15s;
}
.lp-faq__item[open] {
    box-shadow: 0 8px 24px rgba(13,110,253,.08);
    border-color: rgba(13,110,253,.20);
}
.lp-faq__item summary {
    padding: 15px 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    font-size: 1rem;
    transition: background .15s;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary:hover { background: #f8f9fa; }
.lp-faq__item summary::after {
    content: "+";
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
    transition: transform .25s;
    flex-shrink: 0;
}
.lp-faq__item[open] summary::after { transform: rotate(45deg); }
.lp-faq__item__body { padding: 0 24px 20px; color: var(--text-medium); line-height: 1.7; }
.lp-faq__item__body { padding: 0 18px 18px; font-size: .95rem; }

@media (max-width: 991.98px) {
    .lp-faq__layout { grid-template-columns: 1fr; gap: 18px; }
    .lp-faq__intro { position: static; }
}
@media (max-width: 767.98px) {
    .lp-faq__columns { grid-template-columns: 1fr; }
}

/* =====================================================================
   FORM
   ===================================================================== */
.lp-form-wrap {
    max-width: 760px; margin: 0 auto;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
}
@media (max-width: 575.98px) { .lp-form-wrap { padding: 24px 20px; } }
.lp-form__row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
@media (min-width: 640px) { .lp-form__row--2col { grid-template-columns: 1fr 1fr; } }
.lp-form-group { display: flex; flex-direction: column; gap: 6px; }
.lp-form-label { font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.lp-form-label .required { color: #dc2626; }
.lp-form-input, .lp-form-textarea, .lp-form-select {
    width: 100%; padding: 13px 16px;
    font-size: 1rem;
    border: 1.5px solid #e6eaf0;
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
    transition: border-color .15s, box-shadow .15s;
    min-height: 48px;
    font-family: inherit;
}
.lp-form-textarea { min-height: 100px; resize: vertical; }
.lp-form-input:focus, .lp-form-textarea:focus, .lp-form-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13,110,253,.12);
}
.lp-form-check {
    display: flex; gap: 10px; align-items: flex-start;
    margin: 8px 0; font-size: .9rem; color: var(--text-medium); line-height: 1.55;
}
.lp-form-check input { margin-top: 3px; flex-shrink: 0; }
.lp-form-check a { color: var(--primary-color); text-decoration: underline; }
.lp-form-honeypot { position: absolute; left: -9999px; visibility: hidden; height: 0; width: 0; }
.lp-form__alt {
    text-align: center; margin-top: 20px; padding-top: 18px;
    border-top: 1px solid #e6eaf0; color: var(--text-medium); font-size: .92rem;
}
.lp-form__alt a { color: var(--primary-color); font-weight: 700; }

.lp-form-submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background .15s, transform .15s, box-shadow .15s;
    min-height: 52px;
    margin-top: 10px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lp-form-submit:hover:not(:disabled) {
    background: var(--primary-dark, #0D47A1);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13,110,253,.30);
}
.lp-form-submit:disabled { opacity: .65; cursor: not-allowed; }

/* =====================================================================
   FİNAL CTA
   ===================================================================== */
.lp-final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark, #0D47A1) 100%);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}
.lp-final-cta h2 {
    font-size: clamp(1.6rem, 2.5vw + .5rem, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.lp-final-cta p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }
.lp-final-cta__btns {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 580px; margin: 0 auto;
}
@media (min-width: 580px) { .lp-final-cta__btns { flex-direction: row; } }
.lp-final-cta .lp-cta-btn--phone { background: var(--accent-color, #FF9800); }
.lp-final-cta .lp-cta-btn--phone:hover { background: #e88800; }
.lp-final-cta__note { margin-top: 20px; font-size: .9rem; color: rgba(255,255,255,.75); }

/* =====================================================================
   STICKY MOBILE BAR
   ===================================================================== */
.lp-sticky-mobile {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 99;
    display: flex;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #e6eaf0;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    /* Başlangıçta gizli — JS hero bitince gösterir */
    transform: translateY(100%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.22,.68,0,1.2), opacity .3s ease;
    pointer-events: none;
}
.lp-sticky-mobile.lp-sticky-mobile--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.lp-sticky-mobile a {
    flex: 1; min-height: 64px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px;
    font-weight: 700; font-size: .78rem;
    text-decoration: none; letter-spacing: .02em;
    transition: filter .15s;
}
.lp-sticky-mobile a:active { filter: brightness(.92); }
.lp-sticky-mobile a i { font-size: 1.25rem; line-height: 1; }
.lp-sticky-mobile__phone { background: var(--primary-color); color: #fff !important; }
.lp-sticky-mobile__wa    { background: #25D366; color: #fff !important; }
.lp-sticky-mobile__form  { background: #fff; color: var(--primary-color) !important; border-left: 1px solid #e6eaf0; }

@media (min-width: 992px) { .lp-sticky-mobile { display: none !important; } }

/* =====================================================================
   TOAST & COOKIE BANNER
   ===================================================================== */
.lp-toast {
    position: fixed;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: min(360px, calc(100vw - 32px));
    max-width: min(420px, calc(100vw - 32px));
    padding: 14px 16px;
    background: rgba(17, 24, 39, .96);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(15,23,42,.24);
    opacity: 0; pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease;
    z-index: 9999;
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.35;
    backdrop-filter: blur(12px);
}
.lp-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lp-toast__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-weight: 800;
}
.lp-toast__message { min-width: 0; }
.lp-toast--success {
    background: rgba(21, 128, 61, .96);
    border-color: rgba(187, 247, 208, .34);
}
.lp-toast--error {
    background: rgba(185, 28, 28, .96);
    border-color: rgba(254, 202, 202, .34);
}
@media (max-width: 575.98px) {
    .lp-toast {
        top: 12px;
        right: 12px;
        min-width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }
}

.lp-cookie {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 86px;
    z-index: 100;
    display: none;
    grid-template-columns: auto 1fr;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto;
    padding: 16px;
    color: #0f172a;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(13,110,253,.14);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(15,23,42,.18);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    font-family: "Outfit", Arial, sans-serif;
    font-size: .9rem;
    line-height: 1.55;
}
.lp-cookie.is-visible {
    display: none !important;
}
.lp-cookie__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #0D6EFD);
    background: #eef5ff;
    border-radius: 12px;
    font-size: 1.15rem;
}
.lp-cookie__body {
    min-width: 0;
}
.lp-cookie__body strong {
    display: block;
    margin-bottom: 3px;
    color: #0f172a;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.25;
}
.lp-cookie__body p {
    margin: 0;
    color: #475569;
}
.lp-cookie a {
    color: var(--primary-color, #0D6EFD);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(13,110,253,.24);
}
.lp-cookie__actions {
    grid-column: 2;
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.lp-cookie__btn {
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
    font-size: .86rem;
    line-height: 1;
    transition: transform .15s, box-shadow .15s, background-color .15s, border-color .15s;
}
.lp-cookie__btn:hover {
    transform: translateY(-1px);
}
.lp-cookie__btn--accept {
    background: var(--primary-color, #0D6EFD);
    color: #fff;
    box-shadow: 0 12px 24px rgba(13,110,253,.22);
}
.lp-cookie__btn--reject {
    background: #f8fafc;
    color: #334155;
    border-color: #dbe4ef;
}
@media (min-width: 992px) {
    .lp-cookie {
        bottom: 28px;
        left: auto;
        right: 28px;
    }
}
@media (max-width: 575.98px) {
    .lp-cookie {
        grid-template-columns: 1fr;
        gap: 10px;
        bottom: 78px;
        padding: 14px;
        border-radius: 14px;
    }
    .lp-cookie__icon {
        display: none;
    }
    .lp-cookie__actions {
        grid-column: auto;
        margin-top: 2px;
    }
    .lp-cookie__btn {
        flex: 1;
    }
}
/* =====================================================================
   FADE-IN ANIMATION
   ===================================================================== */
.lp-fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.lp-fade-in.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .lp-fade-in { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   YARDIMCILAR
   ===================================================================== */
.lp-section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.lp-section-head h2 {
    font-size: clamp(1.6rem, 2.5vw + .5rem, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 0;
}
.lp-section-head p { color: var(--text-medium); font-size: 1.05rem; margin: 0; }

.lp-bg-alt { background: #f8f9fa; }

/* Erişilebilirlik */
.lp-sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.lp-cta-btn:focus-visible,
.lp-form-input:focus-visible,
.lp-form-submit:focus-visible {
    outline: 3px solid var(--accent-color, #FF9800);
    outline-offset: 2px;
}


/* =====================================================================
   LP FOOTER — TEMA'nın .modern-footer / .footer-title / .footer-links /
   .social-links / .floating-actions / .float-btn / .footer-bottom
   sınıflarını birebir kullanıyor. Onların stilleri main.css / modern_theme.css
   içinde tanımlı; burada ayrıca CSS yazmıyoruz.
   ===================================================================== */

/* =====================================================================
   GÖRSEL FALLBACK — hero/service görseli yoksa kırık img basma
   Component'ler "alt" attr'ında da ipucu verir.
   ===================================================================== */
.lp-hero__media img,
.lp-service__media img {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    display: block;
    width: 100%;
    height: 100%;
}
.lp-hero__media img[src=""],
.lp-service__media img[src=""],
.lp-hero__media img:not([src]) { display: none; }

/* Hero görseli broken ise konteyneri minimize et */
.lp-hero__media:has(img[src=""]) { display: none; }


/* Testimonial avatar img varyantı (image varsa baş harf yerine fotoğraf) */
.lp-testimonial__avatar--img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
}


/* =====================================================================
   LP MAP — slug-bazlı ofis haritası + iletişim bilgileri
   ===================================================================== */
.lp-contact-panel {
    background: #fff;
    border: 1px solid rgba(13,110,253,.12);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 18px 48px rgba(15,23,42,.08);
}
.lp-contact-panel__head {
    max-width: 760px;
    margin-bottom: 22px;
}
.lp-contact-panel__head h2 {
    font-size: clamp(1.65rem, 2.2vw + .5rem, 2.45rem);
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--text-dark);
}
.lp-contact-panel__head p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.65;
}
.lp-contact-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 22px;
    align-items: stretch;
}
.lp-contact-panel__map { margin-top: 22px; }
.lp-map__info {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(13,110,253,.12) 0%, transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 24px 60px rgba(15,23,42,.08);
}
.lp-map__info::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #0D6EFD), #25D366);
}
.lp-map__info::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(13,110,253,.06);
    pointer-events: none;
}
.lp-map__brand {
    position: relative;
    z-index: 1;
    font-size: 1.28rem;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
    line-height: 1.3;
}
.lp-map__branch {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: rgba(13,110,253,.09);
    color: var(--primary-color, #0D6EFD);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    margin: 0 0 4px;
}
.lp-map__row {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(15,23,42,.07);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(15,23,42,.04);
}
.lp-map__row > div { min-width: 0; }
.lp-map__row > i {
    color: var(--primary-color, #0D6EFD);
    background: #eef5ff;
    border: 1px solid rgba(13,110,253,.10);
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lp-map__row strong {
    display: block;
    font-size: .76rem;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lp-map__row span,
.lp-map__row a {
    color: #0f172a;
    font-size: .95rem;
    text-decoration: none;
    display: block;
    line-height: 1.45;
    font-weight: 700;
    overflow-wrap: anywhere;
}
.lp-map__row a:hover {
    color: var(--primary-color, #0D6EFD);
    text-decoration: underline;
}
.lp-map__embed {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    background: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.lp-map__embed iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}

.lp-quick-form {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.lp-quick-form h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--text-dark);
}
.lp-quick-form > p {
    color: var(--text-medium);
    font-size: .95rem;
    line-height: 1.55;
    margin: 0 0 16px;
}
.lp-quick-form .lp-form-group { margin-bottom: 12px; }
.lp-form-textarea--quick { min-height: 88px; }
.lp-form-check--compact {
    font-size: .82rem;
    margin: 4px 0 12px;
}
.lp-form-submit--quick { margin-top: 0; }
@media (max-width: 991.98px) {
    .lp-contact-panel { padding: 22px; }
    .lp-contact-panel__grid { grid-template-columns: 1fr; }
    .lp-map__embed,
    .lp-map__embed iframe { min-height: 320px; }
}
@media (max-width: 575.98px) {
    .lp-contact-panel { padding: 18px; border-radius: 10px; }
    .lp-map__info,
    .lp-quick-form { padding: 18px; }
}


/* services-detail görseli yoksa features iki sütun (boş alan kalmasın) */
.lp-service__features--two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 24px;
}
@media (max-width: 575.98px) {
    .lp-service__features--two-col {
        grid-template-columns: 1fr;
    }
}

/* lp-hero__proof ve proof-col her ekranda gizli */
.lp-hero__proof,
.lp-hero__proof-col {
    display: none !important;
}

/* =====================================================================
   LP DESIGN SYSTEM REFRESH - hero proof + modern section surfaces
   ===================================================================== */
.lp-hero__proof {
    max-width: 690px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(13,110,253,.13);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(15,23,42,.075);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
}

.lp-hero__img-col {
    align-self: flex-start;
}

.lp-hero__media {
    margin-top: 0;
}

.lp-hero__proof .lp-hero__trustline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.lp-hero__proof .lp-hero__trustline span {
    min-width: 0;
    gap: 9px;
    color: #0f172a;
    font-size: .9rem;
    line-height: 1.25;
}

.lp-hero__proof .lp-hero__trustline i {
    width: 30px;
    height: 30px;
    color: #0d6efd;
    background: linear-gradient(180deg, #edf5ff 0%, #fff 100%);
    border: 1px solid rgba(13,110,253,.14);
    box-shadow: 0 8px 18px rgba(13,110,253,.10);
    font-size: .88rem;
}

/* Features artık copy column dışında, ayrı col — cta'nın altında, media'nın yanında */
.lp-hero__features-col {
    margin-top: 0;
}

/* lg+ grid: features-col sol-7, copy'nin altında */
@media (min-width: 992px) {
    .lp-hero__features-col {
        grid-column: 1;
        grid-row: 2;
        margin-top: 14px;
    }
}

.lp-hero__features-col .lp-hero__features,
.lp-hero__copy .lp-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    max-width: none;
}

.lp-hero__copy .lp-hero__features li,
.lp-hero__features-col .lp-hero__features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    padding: 7px 12px 7px 8px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(13,110,253,.13);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(15,23,42,.06);
}

.lp-hero__copy .lp-hero__features li i,
.lp-hero__features-col .lp-hero__features li i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #16a34a;
    border-radius: 50%;
    font-size: .68rem;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .lp-hero__copy .lp-hero__features li,
    .lp-hero__features-col .lp-hero__features li {
        font-size: .84rem;
        padding: 6px 10px 6px 7px;
    }
}

body.lp-page .section-padding {
    padding-top: 92px;
    padding-bottom: 92px;
}

body.lp-page .section-padding.lp-bg-alt,
body.lp-page .lp-bg-alt {
    background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.lp-section-head {
    max-width: 820px;
    margin-bottom: 46px;
}

.lp-section-head h2,
.lp-contact-panel__head h2 {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.05;
}

.lp-section-head p,
.lp-contact-panel__head p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #64748b;
    font-size: 1.08rem;
    line-height: 1.7;
}

.lp-section-kicker {
    background: #eef5ff;
    color: #0d6efd;
    border: 1px solid rgba(13,110,253,.12);
}

.lp-trust {
    padding: 24px 0;
    background: #fff;
    border-color: rgba(15,23,42,.08);
}

.lp-trust__list {
    gap: 12px;
}

.lp-trust__item {
    justify-content: flex-start;
    min-height: 58px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 10px 28px rgba(15,23,42,.045);
}

.lp-trust__item i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    border-radius: 50%;
}

.lp-service__title {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.lp-service__intro {
    border: 0;
    border-left: 3px solid var(--primary-color, #0d6efd);
    padding: 4px 0 4px 22px;
    background: transparent;
    box-shadow: none;
}

.lp-service__features li,
.lp-coverage__list li {
    background: #fff;
    border-color: rgba(15,23,42,.08);
    box-shadow: 0 10px 26px rgba(15,23,42,.04);
}

.lp-service__features li i,
.lp-coverage__list li i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    border-radius: 50%;
    color: #13a85b;
    font-size: .82rem;
}

.lp-service__media,
.lp-coverage__map,
.lp-gallery__item {
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(15,23,42,.13);
}

#lp-services .col-lg-5 {
    align-self: flex-start;
}

#lp-services .lp-service__media {
    width: min(100%, 520px);
    margin-left: auto;
    aspect-ratio: 4/5;
}

#lp-services .lp-service__media img {
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 991.98px) {
    #lp-services .lp-service__media {
        width: min(100%, 520px);
        margin: 8px auto 0;
    }
}

.lp-process__item,
.lp-advantage,
.lp-pricing__factor,
.lp-testimonial,
.lp-faq__item {
    border-color: rgba(15,23,42,.08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15,23,42,.055);
}

.lp-process__item,
.lp-advantage,
.lp-pricing__factor {
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.lp-process__item:hover,
.lp-advantage:hover,
.lp-pricing__factor:hover,
.lp-testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(13,110,253,.20);
    box-shadow: 0 24px 56px rgba(15,23,42,.105);
}

.lp-process__num {
    border-radius: 999px;
    background: #0d6efd;
}

.lp-process__icon,
.lp-advantage__icon,
.lp-pricing__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    border: 1px solid rgba(13,110,253,.12);
    border-radius: 50%;
    color: #0d6efd;
    font-size: 1.45rem;
}

.lp-process__icon {
    margin: 8px auto 14px;
}

.lp-testimonial {
    position: relative;
}

.lp-testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #12b886);
    border-radius: 999px;
}

.lp-testimonial__text {
    color: #334155;
    font-style: normal;
}

.lp-pricing__factor {
    min-height: 0;
}

.lp-coverage__list {
    gap: 10px;
}

.lp-faq__item summary {
    min-height: 64px;
    font-weight: 800;
}

.lp-faq__item summary:hover {
    background: #f8fbff;
}

.lp-form-wrap,
.lp-contact-panel,
.lp-quick-form {
    border-color: rgba(15,23,42,.08);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

.lp-form-input,
.lp-form-textarea,
.lp-form-select {
    border-color: rgba(15,23,42,.12);
    background: #fbfdff;
    border-radius: 8px;
}

.lp-form-submit {
    border-radius: 8px;
    background: linear-gradient(135deg, #0d6efd 0%, #0757d8 100%);
    box-shadow: 0 18px 34px rgba(13,110,253,.20);
}

.lp-map__embed {
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(15,23,42,.11);
}

.lp-faq__cta {
    border-radius: 8px;
    background: linear-gradient(135deg, #0d6efd 0%, #0757d8 100%);
    box-shadow: 0 16px 32px rgba(13,110,253,.18);
}

.lp-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1220 0%, #0d47a1 58%, #0d6efd 100%);
}

.lp-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .32;
}

.lp-final-cta .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    body.lp-page .section-padding {
        padding-top: 39px;
        padding-bottom: 39px;
    }

    .lp-hero__proof .lp-hero__trustline {
        grid-template-columns: 1fr;
    }

    .lp-section-head {
        margin-bottom: 34px;
    }
}

@media (max-width: 575.98px) {
    .lp-hero__proof {
        padding: 14px;
    }

    .lp-section-head h2,
    .lp-contact-panel__head h2 {
        font-size: clamp(1.8rem, 10vw, 2.35rem);
    }

    .lp-trust__item,
    .lp-service__features li,
    .lp-coverage__list li {
        min-height: 52px;
    }
}

/* Coverage section redesign */
.lp-coverage__panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: 26px;
    align-items: stretch;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(248,251,255,.96) 100%);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.lp-coverage__visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    height: 100%;
}

.lp-coverage__map {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    aspect-ratio: 690/650;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #eef6ff 0%, #f8fbff 48%, #ffffff 100%);
    border: 1px solid rgba(13,110,253,.12);
    box-shadow: none;
}

.lp-coverage__map img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.lp-coverage__map-placeholder {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 42% 45%, rgba(13,110,253,.16) 0 2px, transparent 3px),
        linear-gradient(rgba(13,110,253,.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,110,253,.075) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
}

.lp-coverage__map-placeholder::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 10%;
    top: 18%;
    bottom: 14%;
    border: 1px solid rgba(13,110,253,.16);
    border-radius: 46% 54% 42% 58%;
    transform: rotate(-8deg);
    background: rgba(255,255,255,.42);
}

.lp-coverage__hub,
.lp-coverage__pin {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 12px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(13,110,253,.14);
    border-radius: 999px;
    color: #0f172a;
    font-size: .86rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(15,23,42,.10);
}

.lp-coverage__hub::before,
.lp-coverage__pin::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d6efd;
    box-shadow: 0 0 0 5px rgba(13,110,253,.12);
}

.lp-coverage__hub {
    left: 38%;
    top: 43%;
    color: #0d6efd;
}

.lp-coverage__pin--one {
    left: 52%;
    top: 34%;
}

.lp-coverage__pin--two {
    left: 18%;
    top: 26%;
}

.lp-coverage__pin--three {
    right: 9%;
    bottom: 24%;
}

.lp-coverage__route {
    position: absolute;
    z-index: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(13,110,253,0), rgba(13,110,253,.55), rgba(18,184,134,.45));
    transform-origin: left center;
}

.lp-coverage__route--one {
    left: 42%;
    top: 49%;
    width: 36%;
    transform: rotate(-16deg);
}

.lp-coverage__route--two {
    left: 26%;
    top: 41%;
    width: 30%;
    transform: rotate(19deg);
}

.lp-coverage__map-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: calc(100% - 36px);
    padding: 11px 13px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 8px;
    color: #0f172a;
    font-size: .9rem;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(15,23,42,.16);
}

.lp-coverage__map-badge i {
    color: #13a85b;
}

.lp-coverage__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.lp-coverage__stats span {
    min-width: 0;
    padding: 13px 14px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15,23,42,.045);
}

.lp-coverage__stats strong,
.lp-coverage__stats small {
    display: block;
    line-height: 1.15;
}

.lp-coverage__stats strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.lp-coverage__stats small {
    margin-top: 4px;
    color: #64748b;
    font-size: .78rem;
    font-weight: 700;
}

.lp-coverage__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0 4px 0 8px;
}

.lp-coverage__content-head {
    max-width: 650px;
    margin-bottom: 18px;
}

.lp-coverage__content-head h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: clamp(1.45rem, 2vw, 2.1rem);
    font-weight: 800;
    line-height: 1.12;
}

.lp-coverage__content-head p {
    margin: 0;
    color: #64748b;
    font-size: .98rem;
    line-height: 1.65;
}

.lp-coverage__panel .lp-coverage__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
}

.lp-coverage__panel .lp-coverage__list li {
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 8px;
}

@media (max-width: 1199.98px) {
    .lp-coverage__panel {
        grid-template-columns: 1fr;
    }

    .lp-coverage__map {
        min-height: 360px;
        aspect-ratio: 690/650;
    }

    .lp-coverage__content {
        padding: 0;
    }

    .lp-coverage__panel .lp-coverage__list {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .lp-coverage__panel {
        padding: 14px;
    }

    .lp-coverage__map {
        min-height: 300px;
        aspect-ratio: 690/650;
    }

    .lp-coverage__stats,
    .lp-coverage__panel .lp-coverage__list {
        grid-template-columns: 1fr;
    }

    .lp-coverage__pin--three {
        right: 5%;
    }
}

/* Mobile polish: sticky actions, reveal lists, hero scale */
@media (max-width: 991.98px) {
    body.lp-page .floating-actions,
    body.lp-page .float-btn {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    body.lp-page .lp-hero:not(.lp-hero--yl) {
        padding-top: 84px;
    }

    body.lp-page .lp-hero:not(.lp-hero--yl) .lp-hero__h1 {
        font-size: clamp(1.45rem, 7.5vw, 1.9rem) !important;
        line-height: 1.1;
        max-width: 340px;
        margin-bottom: 16px;
    }

    body.lp-page .lp-hero:not(.lp-hero--yl) .lp-hero__sub {
        font-size: .98rem;
        line-height: 1.65;
    }

    .lp-hero--yl .lp-hero__h1 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 10px;
    }

    .lp-hero--yl .lp-hero__sub {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .lp-hero--yl .lp-hero__pill-list {
        margin-top: 4px;
    }
}

.lp-sticky-mobile {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 46px rgba(15,23,42,.20);
    /* Animasyon başlangıç konumu güncelle (bottom: 10px offset) */
    transform: translateY(calc(100% + 10px));
}
.lp-sticky-mobile.lp-sticky-mobile--visible {
    transform: translateY(0);
}

.lp-sticky-mobile a {
    min-height: 62px;
    gap: 4px;
    font-size: .72rem;
    letter-spacing: 0;
}

.lp-sticky-mobile a i {
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.lp-sticky-mobile__phone {
    background: linear-gradient(135deg, #0d6efd 0%, #0757d8 100%);
}

.lp-sticky-mobile__wa {
    background: linear-gradient(135deg, #18c96e 0%, #10a85b 100%);
}

.lp-sticky-mobile__form {
    background: #fff;
}

@media (max-width: 991.98px) {
    .lp-reveal-item {
        display: none !important;
    }

    .is-expanded .lp-reveal-item {
        display: block !important;
    }

    .lp-coverage__list.is-expanded .lp-reveal-item {
        display: flex !important;
    }
}

.lp-reveal-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.lp-reveal-actions--coverage {
    justify-content: flex-start;
    margin-top: 14px;
}

.lp-reveal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(13,110,253,.18);
    border-radius: 999px;
    background: #fff;
    color: #0d6efd;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15,23,42,.07);
    cursor: pointer;
}

@media (min-width: 992px) {
    .lp-reveal-actions {
        display: none;
    }
}


/* =====================================================================
   LAYOUT FIX — Proof ve Features ayrı kolon haline getirildi
   ===================================================================== */

/* Hero düzen mantığı:
   - lg+ : copy (col-7) yan yana media (col-5). Proof (col-12) altta, sayfayı
           tam genişliğinde kaplar — istenilen "uzunluk = media kadar" için
           proof'un yatayda max-width'i kaldırılır, copy + proof toplam
           dikey alan = media yüksekliği oluyor.
   - <992px : copy → media → proof sırasıyla stack.
*/

@media (min-width: 992px) {
    /* Hero'da Bootstrap row yerine CSS Grid kullan — 2 sütun, 2 satır:
       Satır 1: copy(sol) + media(sağ rowspan 2)
       Satır 2: proof(sol) + media (devam)
       Bu sayede copy + proof toplam yüksekliği media yüksekliği ile eşit olur. */
    .lp-hero .lp-hero__inner > .row {
        display: grid;
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
        grid-template-rows: auto 1fr;
        gap: 0 32px;
        align-items: stretch;
    }

    /* Bootstrap col padding'lerini grid içinde sıfırla */
    .lp-hero .lp-hero__inner > .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        flex: unset;
        width: auto;
    }

    .lp-hero__copy {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        flex-direction: column;
    }

    .lp-hero__img-col {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: stretch;
    }

    .lp-hero__proof-col {
        grid-column: 1;
        grid-row: 2;
        margin-top: 18px;
        display: flex;
        flex-direction: column;
    }
    .lp-hero__proof-col .lp-hero__proof {
        max-width: none;
        flex: 1;
    }

    /* features-col: copy'nin altında, sol sütun (grid-row 2) */
    .lp-hero__features-col {
        grid-column: 1;
        grid-row: 2;
        margin-top: 14px;
    }

    /* Media: copy(satır 1) + features(satır 2) toplam yüksekliğini doldursun.
       aspect-ratio kaldırılıyor — height: 100% ile grid hücresine uyuyor. */
    .lp-hero__media {
        height: 100%;
        aspect-ratio: unset !important;
    }
    .lp-hero__media img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* Mobile (<992px): row item'lar 100% genişlik. HTML sırası zaten:
   copy → media → proof. */
@media (max-width: 991.98px) {
    .lp-hero__proof-col {
        margin-top: 8px;
    }

    /* Metrics ve trustline'ı mobilde gizle */
    .lp-hero__metrics,
    .lp-hero__proof .lp-hero__trustline,
    .lp-hero__trustline {
        display: none !important;
    }
}

/* Trustline ikonları ile metni yapışıklıktan kurtar */
.lp-hero__proof .lp-hero__trustline {
    gap: 14px 18px;
    align-items: center;
}

.lp-hero__proof .lp-hero__trustline span {
    gap: 12px;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-hero__proof .lp-hero__trustline i {
    flex-shrink: 0;
}

/* Services: aynı mantık — features-col mobilde media'nın altına gelecek.
   HTML sırası: intro → media → features. */
@media (min-width: 992px) {
    /* Bootstrap row → CSS Grid: intro(sol) + media(sağ rowspan 2) + features(alt full) */
    #lp-services .lp-service__row {
        display: grid;
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
        grid-template-rows: auto 1fr;
        gap: 0 40px;
        align-items: stretch;
    }

    #lp-services .lp-service__row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        flex: unset;
        width: auto;
    }

    .lp-service__intro-col {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        min-height: 320px;
    }

    .lp-service__media-col {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
    }

    /* Media intro-col ile tam aynı yükseklikte — başı title ile, sonu intro ile */
    .lp-service__media-col .lp-service__media,
    #lp-services .lp-service__media {
        width: 100%;
        height: 100%;
        min-height: 320px;
        margin-left: 0;
    }

    /* intro font-size: görsel yüksekliğini dolduracak şekilde ayarlandı.
       vw tabanlı değer col-7 genişliğine göre ölçeklenir.
       main.css p{font-size:16px} override için !important */
    .lp-service__intro {
        flex: 1;
        font-size: clamp(1.05rem, 0.85vw + 0.45rem, 1.28rem) !important;
        line-height: 1.72;
        border-left-width: 4px;
        padding-left: 26px;
    }

    .lp-service__intro p {
        font-size: inherit !important;
        margin-bottom: clamp(14px, 1.2vw, 22px);
        color: #475569;
    }

    /* İlk paragraf öne çıkar — büyük, koyu, koyu renk */
    .lp-service__intro p:first-child {
        font-size: clamp(1.15rem, 1vw + 0.5rem, 1.42rem) !important;
        font-weight: 600;
        color: #0f172a;
        line-height: 1.65;
        margin-bottom: clamp(16px, 1.4vw, 26px);
    }

    .lp-service__intro p {
        margin-bottom: 22px;
    }

    .lp-service__intro p:last-child {
        margin-bottom: 0;
    }

    /* features-col: tam container genişliği (her iki sütun) */
    .lp-service__features-col {
        grid-column: 1 / span 2;
        grid-row: 2;
        margin-top: 28px;
        padding-top: 24px;
        border-top: 1px solid rgba(15,23,42,.08);
    }

    /* features listesi: 2 satır, yan yana (auto-fill ile içerik sayısına göre) */
    .lp-service__features-col .lp-service__features {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 10px;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .lp-service__features-col {
        margin-top: 10px;
    }
}

/* =====================================================================
   MOBİL HERO — Görsel üstüne overlay efekti (<992px)
   Görsel en üstte tam genişlik, tag+h1+sub görselin üzerine biner (beyaz),
   butonlar görselin hemen altında başlar.
   ===================================================================== */
@media (max-width: 991.98px) {

    /* Row: relative container, flex column, gap sıfırla */
    .lp-hero .lp-hero__inner > .row {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }

    /* Media col: en üste çıkar — container içinde, kenar boşluklu */
    .lp-hero__img-col {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin: 48px 0 0;     /* navbar'dan ek boşluk — görsel daha aşağıda */
        padding: 0;
        position: relative;
        z-index: 1;
    }

    /* Görsel: container içinde, görselin doğal oranı korunur (4:5 dikey) */
    .lp-hero__img-col .lp-hero__media {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5 !important;
        max-height: none;
        min-height: 0;
        border-radius: 14px;
        border: 1px solid rgba(15,23,42,.08);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(15,23,42,.12);
    }

    .lp-hero__img-col .lp-hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /* Mobilde media-badge gizli */
    .lp-hero__img-col .lp-hero__media-badge {
        display: none !important;
    }

    /* Mobilde görsel üzerine çok hafif uniform karartma */
    .lp-hero__img-col .lp-hero__media::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        height: 100% !important;
        width: 100% !important;
        background: rgba(8,15,30,.42) !important;
        z-index: 2 !important;
        border-radius: 14px !important;
        pointer-events: none !important;
    }

    .lp-hero:not(.lp-hero--yl) .lp-hero__copy::before {
        display: none !important;
    }

    /* Copy col: tag/h1/sub görselin alt yarısına biner — sadece eski hero */
    .lp-hero:not(.lp-hero--yl) .lp-hero__copy {
        order: 0;
        position: relative;
        z-index: 3;
        margin-top: -76vw;
        padding-top: 0;
        background: transparent;
        display: flex;
        flex-direction: column;
    }

    .lp-hero:not(.lp-hero--yl) .lp-hero__copy .lp-hero__cta {
        position: relative;
        z-index: 4;
        margin-top: 14px;
    }

    .lp-hero:not(.lp-hero--yl) .lp-hero__copy .lp-hero__tag {
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.35);
        color: #fff;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .lp-hero:not(.lp-hero--yl) .lp-hero__copy .lp-hero__tag i {
        color: #FFD166;
    }

    .lp-hero:not(.lp-hero--yl) .lp-hero__copy .lp-hero__h1 {
        color: #fff !important;
        text-shadow: 0 2px 12px rgba(0,0,0,.35);
    }

    .lp-hero:not(.lp-hero--yl) .lp-hero__copy .lp-hero__sub {
        color: rgba(255,255,255,.88) !important;
        text-shadow: 0 1px 6px rgba(0,0,0,.3);
    }

    /* Features col: görselin tamamen dışında, beyaz arka plan */
    .lp-hero__features-col {
        order: 1;
        position: relative;
        z-index: 3;
        background: #fff;
        padding-top: 12px;
        margin-top: 0;
    }

    /* Proof col gizli zaten ama sıra garantisi */
    .lp-hero__proof-col {
        order: 2;
    }
}

/* Çok küçük ekranlar için ince ayar */
@media (max-width: 400px) {
    .lp-hero:not(.lp-hero--yl) .lp-hero__copy {
        margin-top: -79vw;
    }
}

/* =====================================================================
   v4.1 — Alttaki eski mavi kuralları ezer (Haktan kalıntısı)
   ===================================================================== */
body.lp-page .lp-process__num {
    background: var(--yl-red) !important;
    box-shadow: 0 6px 16px rgba(224,28,36,.28) !important;
}
body.lp-page .lp-process__icon,
body.lp-page .lp-advantage__icon,
body.lp-page .lp-pricing__icon {
    background: rgba(224,28,36,.08) !important;
    border-color: rgba(224,28,36,.14) !important;
    color: var(--yl-red) !important;
}
body.lp-page .lp-process__item:hover,
body.lp-page .lp-advantage:hover {
    border-color: rgba(224,28,36,.22) !important;
    box-shadow: 0 12px 28px rgba(224,28,36,.10) !important;
}
body.lp-page .lp-hero.lp-hero--yl {
    background: linear-gradient(180deg, #fff5f5 0%, #fff 55%) !important;
}
body.lp-page .lp-testimonial::before {
    background: linear-gradient(90deg, #e01c24, #b91219) !important;
}
