/* =====================================================================
   AraziMax — Components
   ===================================================================== */

/* ---------- Header (floating pill, ortada) ---------- */
.site-header {
    position: sticky;
    top: 18px;
    z-index: 100;
    padding: 0 24px;
    pointer-events: none;
    transition: top .3s var(--ease);
}
.site-header > * { pointer-events: auto; }
.site-header.is-scrolled { top: 12px; }

.header-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 14px 10px 22px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(1.6) blur(20px);
    -webkit-backdrop-filter: saturate(1.6) blur(20px);
    border: 1px solid rgba(11, 11, 15, 0.06);
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 10px 30px -12px rgba(11, 11, 15, 0.14),
        0 4px 10px -4px rgba(11, 11, 15, 0.06);
    transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled .header-pill {
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 14px 36px -14px rgba(11, 11, 15, 0.20),
        0 6px 14px -6px rgba(11, 11, 15, 0.08);
}

.header-brand { flex-shrink: 0; }
.header-brand .brand-logo,
.mobile-overlay-logo .brand-logo {
    align-items: center;
    transform: translateY(2px);
}
.header-brand .brand-logo > span,
.mobile-overlay-logo .brand-logo > span {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.header-brand .brand-logo > svg,
.mobile-overlay-logo .brand-logo > svg {
    display: block;
}

/* Zarif nav — pill yerine alt çizgi animasyonu */
.site-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    position: relative;
    padding: 10px 18px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.06rem;
    color: var(--ink);
    transition: color .25s var(--ease);
    letter-spacing: 0.01em;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px;
    bottom: 4px;
    height: 2px;
    background: var(--accent-grad);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--accent-deep); font-weight: 700; }
.nav-link.is-active::after { transform: scaleX(1); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Renkli CTA buton — gradient dolgulu */
.btn-cta-elegant {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: var(--accent-grad);
    border: 0;
    box-shadow: 0 10px 26px -10px rgba(239, 35, 60, 0.55), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.01em;
}
.btn-cta-elegant::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FB8500 0%, #EF233C 100%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    z-index: -1;
}
.btn-cta-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px rgba(239, 35, 60, 0.65), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
    filter: brightness(1.04);
}
.btn-cta-elegant:hover::before { opacity: 1; }
.btn-cta-elegant i {
    font-size: 0.95rem;
    transition: transform .3s var(--ease);
}
.btn-cta-elegant:hover i { transform: translateX(3px); }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.mobile-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menü — ortadan açılan tam ekran */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(11, 11, 15, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-overlay-inner {
    width: 100%;
    max-width: 420px;
    background: #FFFFFF;
    border-radius: 28px;
    padding: 36px 28px 28px;
    box-shadow: 0 40px 80px -20px rgba(11, 11, 15, 0.45), 0 0 0 1px rgba(11, 11, 15, 0.04);
    text-align: center;
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    transition: transform .45s var(--ease), opacity .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.mobile-overlay-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent-grad);
}
.mobile-overlay.is-open .mobile-overlay-inner {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.mobile-overlay-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform .25s var(--ease), background .25s var(--ease);
    z-index: 201;
}
.mobile-overlay-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}
.mobile-overlay-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.mobile-overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}
.mobile-overlay-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 14px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--ink);
    background: var(--bg-soft);
    border: 1px solid transparent;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
    opacity: 0;
    transform: translateY(10px);
    animation: drawer-item-in .4s var(--ease) forwards;
    animation-delay: calc(0.08s + var(--i, 0) * 0.05s);
}
.mobile-overlay-nav a i {
    color: var(--muted-2);
    font-size: 0.95rem;
    transition: color .25s var(--ease), transform .25s var(--ease);
}
.mobile-overlay-nav a:hover,
.mobile-overlay-nav a.is-active {
    background: var(--accent-soft);
    color: var(--accent-deep);
    border-color: rgba(239, 35, 60, 0.18);
}
.mobile-overlay-nav a:hover i,
.mobile-overlay-nav a.is-active i {
    color: var(--accent);
    transform: translate(2px, -2px);
}
@keyframes drawer-item-in {
    to { opacity: 1; transform: translateY(0); }
}

.mobile-overlay-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 26px !important;
    font-size: 1.05rem !important;
}
.mobile-overlay-contact {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--line-strong);
}
.mobile-overlay-contact a {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .25s, color .25s;
}
.mobile-overlay-contact a i { color: var(--accent); }
.mobile-overlay-contact a:hover { background: var(--accent-soft); color: var(--accent-deep); }

/* Profil ikon butonu (header) */
.header-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--bg-soft, #f3efe8);
    color: var(--ink, #1a1a1a);
    border: 1px solid var(--line, rgba(0,0,0,0.08));
    font-size: 1.25rem;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.header-profile-btn:hover {
    background: var(--accent-soft);
    color: var(--accent-deep);
    transform: translateY(-1px);
}

/* Giriş yapılmış: hafif yeşil */
.header-profile-btn.is-authed {
    background: #e6f6ec;
    color: #1f9b4a;
    border-color: #b8e3c6;
    cursor: pointer;
}
.header-profile-btn.is-authed:hover {
    background: #d6f0e0;
    color: #14773a;
    border-color: #98d6ad;
}

/* Profil dropdown */
.header-profile-wrap { position: relative; display: inline-flex; }
.header-profile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--line, rgba(0,0,0,0.08));
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    padding: 6px;
    display: none;
    z-index: 1100;
}
.header-profile-wrap.is-open .header-profile-menu { display: block; }
.header-profile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink, #1a1a1a);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background .15s ease, color .15s ease;
}
.header-profile-menu a:hover { background: #f5f1ea; }
.header-profile-menu a i { font-size: 1rem; color: var(--accent, #fb8500); }
.header-profile-menu a.is-danger { color: #a01829; }
.header-profile-menu a.is-danger i { color: #c0392b; }
.header-profile-menu a.is-danger:hover { background: #fde7eb; }

/* Mobil menüde sadece ikon */
.mobile-overlay-contact--icons { justify-content: center; }
.mobile-icon-link {
    flex: 0 0 auto !important;
    width: 52px;
    height: 52px;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 1.4rem;
}
.mobile-icon-link i { color: var(--accent); }

body.menu-open { overflow: hidden; }

@media (max-width: 1024px) {
    .site-nav { display: none; }
    .mobile-toggle { display: inline-flex; }
    .header-pill { padding: 8px 10px 8px 18px; }
}
@media (max-width: 520px) {
    .site-header { padding: 0 14px; top: 12px; }
    .btn-cta-elegant.btn-cta-elegant:not(.mobile-overlay-cta) { display: none; }
    .header-profile-btn { width: 38px; height: 38px; font-size: 1.15rem; }
}

/* ---------- Footer ---------- */
.site-footer {
    margin-top: 0;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 80px 0 28px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent-grad);
}
.site-footer::after {
    content: '';
    position: absolute; bottom: -120px; right: -80px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.16), transparent 60%);
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}
.footer-brand .footer-tagline {
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 380px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    font-size: 1.05rem;
    color: #fff;
    transition: background .25s, transform .25s, border-color .25s;
}
.footer-social a:hover {
    background: var(--accent-grad);
    border-color: transparent;
    transform: translateY(-3px);
}
.footer-col h4 {
    color: #fff;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    transition: color .2s;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-contact i { color: var(--accent-2); margin-right: 8px; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255, 255, 255, 0.5); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-left { justify-content: flex-start; }
.footer-bottom-center { justify-content: center; text-align: center; }
.footer-bottom-right { justify-content: flex-end; }
.footer-whatsapp { color: #25D366 !important; font-weight: 600; }
.footer-whatsapp:hover { color: #1ebe5d !important; }
.footer-contact .bi-whatsapp { color: #25D366; }
.footer-tagline-accent {
    color: var(--accent-2);
    font-weight: 700;
}
.footer-badge {
    height: 1.8rem;
    width: auto;
    opacity: 1;
}
.footer-pay {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-pay-methods {
    height: 26px;
    width: auto;
    display: block;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .hide-on-mobile { display: none !important; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        text-align: center;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-col:nth-of-type(4) { grid-column: 1 / -1; }
    .footer-brand,
    .footer-col { align-items: center; }
    .footer-brand .footer-tagline { margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-col ul { align-items: center; }
    .footer-contact { align-items: center; }
    .footer-contact li { display: block; text-align: center; }
    .footer-contact li i { margin-right: 6px; }
    .footer-bottom { grid-template-columns: 1fr; gap: 18px; text-align: center; justify-items: center; }
    .footer-bottom-left,
    .footer-bottom-right { justify-content: center; width: 100%; flex-direction: column; gap: 12px; }
    .footer-pay { justify-content: center; }
    .footer-bottom-center { display: none; }
    .footer-badge { height: auto; width: auto; max-width: 240px; max-height: 1.8rem; object-fit: contain; opacity: 1; }
}

/* WhatsApp floating button */
.float-whatsapp {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 58px; height: 58px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.55);
    z-index: 90;
    transition: transform .3s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp::before {
    content: '';
    position: absolute; inset: -6px;
    border: 2px solid rgba(37, 211, 102, 0.45);
    border-radius: 50%;
    animation: pulse-ring 2s var(--ease) infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(.85); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
/* Mobile: move WhatsApp float to right (forms are left-aligned, prevents covering inputs/buttons) */
@media (max-width: 768px) {
    .float-whatsapp {
        left: auto;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        width: 52px; height: 52px;
        font-size: 1.5rem;
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: clamp(48px, 8vw, 110px) 0 clamp(60px, 8vw, 120px);
    overflow: hidden;
}
@media (min-width: 1025px) {
    .hero { padding: 55px 0 44px; }
    .hero-title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
    .hero-sub { font-size: 1.22rem; max-width: 620px; margin-top: 0; margin-bottom: 36px; }
    .hero-features { padding-top: 22px; gap: 10px 18px; }
    .hero-features li { font-size: 0.92rem; }
    .hero-features li i { width: 26px; height: 26px; font-size: 0.86rem; }
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}
.hero-title {
    font-size: clamp(1.9rem, 2.6vw, 2.35rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-align: center;
}
.hero-title .hero-line-1,
.hero-title .hero-line-2 { display: block; }
.hero-title .gradient-text { font-weight: 800; }
@media (min-width: 1025px) {
    .hero-title .hero-line-1,
    .hero-title .hero-line-2 { white-space: nowrap; }
}
.hero-slogan {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--ink);
    max-width: 620px;
    margin: 0 auto 14px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.01em;
}
.hero-sub {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.55;
    text-align: center;
}
.hero-sub-highlight {
    display: block;
    margin-top: 0;
    font-weight: 800;
    color: var(--ink);
    font-size: 1.08em;
    letter-spacing: -0.01em;
}
.brand-mark {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; align-items: center; }

/* CTA — üç yatay dikdörtgen kart: Go (yeşil), Plus (turuncu), Örnekleri İzle (gradient) */
.hero-cta3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
    margin-bottom: 30px;
}
.hc3 {
    /* Beyaz zemin, renkli çerçeve. Renk her butonda değişir. */
    --c: #FF6A00;
    --c-koyu: #E05A00;
    --c-soft: rgba(255, 106, 0, 0.10);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 78px;
    padding: 12px 40px 12px 18px;
    border-radius: 14px;
    border: 2px solid var(--c);
    background: #fff;
    color: var(--c-koyu);
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 4px 14px -8px var(--c-soft), 0 1px 2px rgba(11, 11, 15, .04);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease),
                background-color .22s var(--ease), color .22s var(--ease);
}

/* İçinden geçen parıltı — sırayla, sonsuz döngüde */
.hc3::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: -60%;
    width: 45%;
    background: linear-gradient(100deg, transparent 0%, var(--c-soft) 45%, rgba(255,255,255,.9) 50%, var(--c-soft) 55%, transparent 100%);
    transform: skewX(-18deg);
    z-index: -1;
    animation: hc3Shine 5s var(--ease) infinite;
}
.hc3--go::before   { animation-delay: 0s; }
.hc3--plus::before { animation-delay: .55s; }
.hc3--watch::before{ animation-delay: 1.1s; }

@keyframes hc3Shine {
    0%   { left: -60%; }
    22%  { left: 130%; }
    100% { left: 130%; }
}

.hc3--go {
    --c: #00A63E;
    --c-koyu: #017C30;
    --c-soft: rgba(0, 166, 62, 0.12);
}
.hc3--plus {
    --c: #FF7A1A;
    --c-koyu: #D35A00;
    --c-soft: rgba(255, 122, 26, 0.13);
}
.hc3--watch {
    --c: #C81E2C;
    --c-koyu: #A3131F;
    --c-soft: rgba(200, 30, 44, 0.12);
}

/* Üstüne gelince renk dolsun */
.hc3:hover {
    background: var(--c);
    color: #fff;
    border-color: var(--c);
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -14px var(--c);
}
.hc3:hover .hc3-name,
.hc3:hover .hc3-price small { color: rgba(255, 255, 255, .9); }
.hc3:hover .hc3-arrow { background: rgba(255, 255, 255, .22); color: #fff; border-color: transparent; }
.hc3:active { transform: translateY(0) scale(.99); }
.hc3:focus-visible { outline: 2px solid var(--c-koyu); outline-offset: 3px; }

.hc3-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: var(--c-koyu);
    white-space: nowrap;
    transition: color .22s var(--ease);
}
.hc3-price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.78rem;
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    color: var(--c-koyu);
}
.hc3-price small {
    font-size: 0.34em;
    font-weight: 800;
    margin-left: 5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-2, #8C8880);
    vertical-align: 0.55em;
    transition: color .22s var(--ease);
}

/* Ok: metnin ortalanmasını bozmasın diye sağ boşlukta durur */
.hc3-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--c);
    background: #fff;
    color: var(--c);
    font-size: 0.72rem;
    transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}
.hc3:hover .hc3-arrow { transform: translateY(-50%) translateX(3px); }

/* Örnekleri İzle: fiyat yok → ikon + isim tek satır, ortalı */
.hc3--watch {
    flex-direction: row;
    gap: 9px;
    padding: 11px 16px;
}
.hc3-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--c-soft);
    color: var(--c);
    font-size: 0.8rem;
    transition: background .22s var(--ease), color .22s var(--ease);
}
.hc3--watch:hover .hc3-ico { background: rgba(255, 255, 255, .22); color: #fff; }
.hc3--watch .hc3-name {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--c-koyu);
    line-height: 1.1;
}
.hc3--watch:hover .hc3-name { color: #fff; }

/* Hareket duyarlılığı: parıltı kapansın */
@media (prefers-reduced-motion: reduce) {
    .hc3::before { animation: none; }
}

/* Mobil: Go + Plus üstte iki dikdörtgen, Örnekleri İzle altta tam genişlik bar */
@media (max-width: 560px) {
    .hero-cta3 { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 440px; }
    .hc3 { padding: 11px 34px 11px 12px; min-height: 72px; }
    .hc3-price { font-size: 1.52rem; }
    .hc3-name { font-size: 0.76rem; }
    .hc3--watch {
        grid-column: 1 / -1;
        padding: 10px 14px;
        min-height: 54px;
    }
}

/* CTA — invite to click */
.btn-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    padding: 12px 14px 12px 24px !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,0.18) !important;
    background: linear-gradient(135deg, #FF2D4A 0%, #EF233C 45%, #FB8500 100%) !important;
    box-shadow:
        0 18px 38px -14px rgba(239, 35, 60, 0.55),
        0 6px 14px -6px rgba(251, 133, 0, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.28);
    animation: ctaPulse 2.6s ease-in-out infinite;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-position .6s var(--ease);
    font-family: var(--font-display);
}
.btn-cta::before {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 55%; height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: ctaShine 3.6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.btn-cta::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 45%);
    pointer-events: none;
    z-index: 0;
}
.btn-cta > * { position: relative; z-index: 2; }

.btn-cta-text { display: inline-flex; flex-direction: column; line-height: 1.1; text-align: left; font-family: var(--font-display); }
.btn-cta-main {
    font-weight: 800;
    font-size: 1.18rem;
    letter-spacing: 0.005em;
    font-family: var(--font-display);
    text-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.btn-cta-sub {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 0.88rem;
    opacity: 0.97;
    font-weight: 500;
    margin-top: 4px;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}
.btn-cta-sub strong { font-weight: 800; font-size: 0.98rem; letter-spacing: -0.005em; }
.btn-cta-vat {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.20);
    border: 1px solid rgba(255,255,255,0.28);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    backdrop-filter: blur(2px);
}

.btn-cta-arrow-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.30);
    transition: background .3s var(--ease), transform .3s var(--ease);
    flex-shrink: 0;
}
.btn-cta-arrow { transition: transform .3s var(--ease); font-size: 1.05rem; line-height: 1; color: #fff; }
.btn-cta:hover {
    animation: none;
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 26px 50px -14px rgba(239, 35, 60, 0.65),
        0 10px 22px -8px rgba(251, 133, 0, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.32);
}
.btn-cta:hover .btn-cta-arrow-wrap { background: rgba(255,255,255,0.30); transform: translateX(2px); }
.btn-cta:hover .btn-cta-arrow { transform: translateX(3px); }
.btn-cta:focus-visible { outline: 3px solid rgba(255,255,255,0.55); outline-offset: 3px; }

@keyframes ctaPulse {
    0%, 100% {
        box-shadow:
            0 18px 38px -14px rgba(239, 35, 60, 0.55),
            0 6px 14px -6px rgba(251, 133, 0, 0.35),
            inset 0 1px 0 rgba(255,255,255,0.28);
    }
    50% {
        box-shadow:
            0 22px 46px -12px rgba(239, 35, 60, 0.78),
            0 10px 22px -6px rgba(251, 133, 0, 0.50),
            inset 0 1px 0 rgba(255,255,255,0.32);
    }
}
@keyframes ctaShine {
    0%   { left: -120%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}

/* Secondary watch CTA — elegant glass */
.btn-watch {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 22px 12px 12px !important;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid var(--line) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--ink) !important;
    font-family: var(--font-display);
    font-weight: 700;
    box-shadow:
        0 12px 28px -16px rgba(11, 11, 15, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.btn-watch-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--accent-grad);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 18px -8px rgba(239, 35, 60, 0.55);
    position: relative;
    flex-shrink: 0;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-watch-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid rgba(239, 35, 60, 0.35);
    opacity: 0;
    animation: watchRing 2.4s ease-out infinite;
    pointer-events: none;
}
.btn-watch-icon i { transform: translateX(1px); line-height: 1; }
.btn-watch-text { letter-spacing: 0.005em; }
.btn-watch:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong) !important;
    background: #fff !important;
    box-shadow:
        0 18px 36px -14px rgba(11, 11, 15, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.8);
}
.btn-watch:hover .btn-watch-icon {
    transform: scale(1.06);
    box-shadow: 0 12px 24px -8px rgba(239, 35, 60, 0.70);
}
.btn-watch:focus-visible { outline: 3px solid rgba(239, 35, 60, 0.35); outline-offset: 3px; }

@keyframes watchRing {
    0%   { opacity: 0.6; transform: scale(0.85); }
    70%  { opacity: 0;   transform: scale(1.25); }
    100% { opacity: 0;   transform: scale(1.25); }
}

/* Feature list — compact & punchy */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 150%);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 12px 28px -18px rgba(16, 24, 40, 0.28);
}
.hero-features li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    padding: 12px 14px;
    min-width: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .2s var(--ease);
}
.hero-features li:nth-child(2n) { border-right: 0; }
.hero-features li:nth-last-child(-n+2) { border-bottom: 0; }
.hero-features li:nth-child(1) { border-top-left-radius: 13px; }
.hero-features li:nth-child(2) { border-top-right-radius: 13px; }
.hero-features li:nth-child(5) { border-bottom-left-radius: 13px; }
.hero-features li:nth-child(6) { border-bottom-right-radius: 13px; }
.hero-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent-grad);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .2s var(--ease);
}
.hero-features li:hover {
    background: var(--accent-soft);
}
.hero-features li:hover::before { transform: scaleY(1); }
.hero-features li .feat-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-features li .info-tip { margin-left: 2px; flex-shrink: 0; }
@media (min-width: 1025px) {
    .hero-features li .feat-text { white-space: nowrap; }
}
.hero-features li i {
    color: #fff;
    background: var(--accent-grad);
    font-size: 0.84rem;
    width: 26px; height: 26px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 12px -5px rgba(239, 35, 60, 0.6);
}

/* Info tooltip */
.info-tip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    color: var(--muted);
    cursor: help;
    outline: none;
}
.info-tip > i {
    background: transparent !important;
    color: var(--muted) !important;
    width: auto !important; height: auto !important;
    box-shadow: none !important;
    font-size: 0.95rem !important;
    border-radius: 0 !important;
    transition: color .2s var(--ease);
}
.info-tip:hover > i,
.info-tip:focus > i { color: var(--accent) !important; }
.info-tip-bubble {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: max-content;
    max-width: 240px;
    background: var(--ink);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    z-index: 100;
    letter-spacing: 0;
}
.info-tip { position: relative; z-index: 50; }
.info-tip:hover, .info-tip:focus-within { z-index: 200; }
.hero-copy { position: relative; z-index: 20; }
.info-tip-bubble::after {
    content: "";
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--ink);
}
.info-tip.is-open .info-tip-bubble { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.info-tip:hover > i,
.info-tip.is-open > i { color: var(--accent) !important; }

@media (hover: hover) {
    .info-tip:hover .info-tip-bubble,
    .info-tip:focus .info-tip-bubble { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
}

@media (max-width: 1024px) {
    .info-tip-bubble {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -48%) scale(0.94);
        width: min(86vw, 360px);
        max-width: none;
        padding: 26px 22px 22px !important;
        font-size: 0.92rem;
        line-height: 1.5;
        text-align: center;
        z-index: 1001;
        background: linear-gradient(160deg, #1a1a22 0%, #0b0b0f 100%);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 18px;
        box-shadow:
            0 30px 60px -10px rgba(0, 0, 0, 0.55),
            0 0 0 1px rgba(239, 35, 60, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        transition: opacity .22s var(--ease), transform .26s var(--ease);
    }
    .info-tip-bubble::after { display: none; }
    .info-tip-bubble { opacity: 0; pointer-events: none !important; }
    .info-tip-bubble.is-open,
    .info-tip.is-open .info-tip-bubble { opacity: 1; pointer-events: auto !important; transform: translate(-50%, -50%) scale(1); }
    .info-tip.is-open::before { content: none; }
}
.tip-backdrop {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s var(--ease);
}
.tip-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 1024px) {
    .info-tip-close {
        position: absolute !important;
        top: -14px !important;
        right: -14px !important;
        width: 40px !important;
        height: 40px !important;
        border: 2px solid #fff !important;
        margin: 0 !important;
        padding: 0 !important;
        background: var(--accent-grad, #ef233c) !important;
        color: #fff !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.95rem !important;
        line-height: 1 !important;
        cursor: pointer;
        z-index: 1003;
        appearance: none;
        -webkit-appearance: none;
        box-shadow: 0 8px 22px rgba(239, 35, 60, 0.5);
        transition: transform .15s ease;
    }
    .info-tip-close:active { transform: scale(0.92); }
}
@media (min-width: 1025px) {
    .tip-backdrop,
    .info-tip-close { display: none !important; }
}

.hero-video-wrap { display: flex; justify-content: flex-end; width: 100%; }
.hero-video {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 820px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg), 0 30px 70px -25px rgba(239, 35, 60, 0.45);
    border: 4px solid var(--accent);
    outline: 6px solid #fff;
    outline-offset: -10px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    cursor: pointer;
}
.hero-video:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg), 0 40px 90px -25px rgba(239, 35, 60, 0.6); }
.hero-video iframe { width: 100%; height: 100%; border: 0; pointer-events: none; display: block; }
.hero-video-el { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }

.hero-video-controls {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    gap: 8px;
    align-items: center;
}
.hero-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    min-width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background .2s var(--ease), transform .2s var(--ease), opacity .3s var(--ease);
}
.hero-video-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.hero-video-btn i { font-size: 1.05rem; line-height: 1; }
.hero-video-btn-label { line-height: 1; }

/* Play/Pause icon toggle */
.hero-video [data-icon-play] { display: none; }
.hero-video.is-paused [data-icon-play] { display: inline-block; }
.hero-video.is-paused [data-icon-pause] { display: none; }

/* Unmute icon + label toggle */
.hero-video [data-icon-unmuted] { display: none; }
.hero-video.is-unmuted [data-icon-unmuted] { display: inline-block; }
.hero-video.is-unmuted [data-icon-muted] { display: none; }
.hero-video.is-unmuted .hero-video-btn-label { display: none; }

@media (max-width: 1024px) {
    .hero { padding: 40px 0 56px; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-copy .hero-title { font-size: clamp(1.55rem, 6.5vw, 2rem); margin-bottom: 6px; }
    .hero-copy .hero-slogan { font-size: 1.02rem; margin: 0 auto 10px; max-width: 100%; }
    .hero-copy .hero-sub { margin: 0 auto 18px; font-size: 0.88rem; max-width: 100%; }
    .hero-copy .hero-sub .hero-sub-line { display: block; white-space: nowrap; }
    /* Tek sütun: fiyat kutusu tam genişlik, altında Örnekleri İzle tam genişlik */
    .hero-copy .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 22px; width: 100%; max-width: 440px; }
    .hero-copy .hero-cta-prices { display: flex; width: 100%; }
    .hero-copy .hcp { flex: 1 1 0; justify-content: center; }
    .hero-copy .btn-lg { padding: 12px 18px; font-size: 0.92rem; }
    .hero-copy .btn-watch {
        padding: 12px 18px 12px 12px !important;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .hero-copy .btn-watch-icon { width: 30px; height: 30px; font-size: 0.88rem; }
    .hero-copy .btn-watch-text { font-size: 0.88rem; }
    .hero-copy .hero-features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 10px;
    }
    .hero-copy .hero-features li {
        background: var(--bg-paper, #fff);
        border: 1px solid var(--line, rgba(0,0,0,0.08));
        border-radius: 10px;
        padding: 7px 6px;
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        gap: 8px;
        cursor: default;
        min-width: 0;
        text-align: center;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        position: relative;
        gap: 5px;
        box-shadow: 0 2px 6px -3px rgba(0,0,0,0.10);
        cursor: pointer;
        transition: background .2s var(--ease), border-color .2s var(--ease);
    }
    .hero-copy .hero-features li .feat-text {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition: white-space .2s var(--ease);
    }
    .hero-copy .hero-features li.is-expanded {
        background: var(--accent-soft, #ffeef0);
        border-color: var(--accent);
    }
    .hero-copy .hero-features li.is-expanded > span:not(.muted-note):not(.info-tip-bubble) {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .hero-copy .hero-features li > i:first-child {
        width: 22px; height: 22px;
        font-size: 0.68rem;
        border-radius: 6px;
    }
    .hero-copy .hero-features li .feat-text {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.25;
        flex: 0 0 auto;
    }
    .hero-copy .hero-features li.is-expanded,
    .hero-copy .hero-features li:hover {
        background: var(--bg-paper, #fff);
        border-color: var(--line, rgba(0,0,0,0.08));
    }
    .hero-copy .hero-features .info-tip {
        position: absolute;
        top: 4px;
        right: 4px;
        margin: 0;
        flex-shrink: 0;
    }
    .hero-copy .hero-features .info-tip > i {
        width: auto !important; height: auto !important;
        font-size: 0.8rem !important;
        opacity: 0.6;
    }
    .hero-copy .btn-cta-text { text-align: left; }
    .hero-video-wrap { justify-content: center; }
    .hero-video { max-width: 100%; }
}

/* ---------- Before / After (özgün düzen) ---------- */
.compare-section {
    position: relative;
    padding: clamp(24px, 3vw, 36px) 0 clamp(56px, 7vw, 96px);
    overflow: hidden;
}
.compare-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 50% at 12% 18%, rgba(239, 35, 60, 0.10), transparent 60%),
        radial-gradient(50% 45% at 88% 82%, rgba(15, 76, 240, 0.10), transparent 60%),
        var(--bg-soft);
    z-index: -1;
}
.compare-header {
    max-width: 720px;
    margin: 0 auto clamp(20px, 2.5vw, 28px);
    text-align: center;
}
.compare-header h2 { margin: 0 0 14px; }
.compare-header p {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0;
    line-height: 1.6;
}

.compare-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}
.compare-stage {
    position: relative;
    min-width: 0;
}
.compare-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.08);
    user-select: none;
    touch-action: none;
    cursor: ew-resize;
    background: #0b0b0f;
    transition: border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.compare-slider.is-revealed {
    border-color: transparent;
    box-shadow:
        0 0 0 2px rgba(239, 35, 60, 0.55),
        0 24px 60px -12px rgba(239, 35, 60, 0.45),
        0 12px 32px -8px rgba(251, 133, 0, 0.35),
        0 30px 80px rgba(0, 0, 0, 0.18);
}
.compare-stage:has(.compare-slider.is-revealed) .compare-label--right {
    color: var(--accent-deep);
    transform: translateY(-1px);
}
.compare-stage:has(.compare-slider.is-revealed) .compare-label--left {
    opacity: 0.45;
}
.compare-slider img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}
.compare-after {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    will-change: clip-path;
}
.compare-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.18),
        0 0 28px rgba(239, 35, 60, 0.55);
    transform: translateX(-50%);
    pointer-events: none;
}
.compare-handle-knob {
    position: absolute;
    top: 50%; left: 50%;
    width: 56px; height: 56px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.28),
        0 0 0 6px rgba(255, 255, 255, 0.18),
        0 0 0 7px rgba(239, 35, 60, 0.35);
    color: var(--ink);
    font-size: 0.9rem;
    animation: compareNudge 2.4s ease-in-out infinite;
    transition: box-shadow .2s ease;
}
.compare-slider.is-dragging { cursor: grabbing; }
.compare-slider.is-dragging .compare-handle-knob {
    animation: none;
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow:
        0 12px 36px rgba(0,0,0,0.32),
        0 0 0 6px rgba(255, 255, 255, 0.22),
        0 0 0 8px rgba(239, 35, 60, 0.5);
}
.compare-slider.is-dragging .compare-after { will-change: clip-path; }
@media (prefers-reduced-motion: reduce) {
    .compare-handle-knob { animation: none; }
}
.compare-handle-knob i { line-height: 1; }
.compare-handle-knob i:first-child { color: var(--muted); }
.compare-handle-knob i:last-child  { color: var(--accent); }

@keyframes compareNudge {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.08); }
}

.compare-tag {
    position: absolute;
    top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
}
.compare-tag--left {
    left: 18px;
    background: rgba(11, 11, 15, 0.55);
    border: 1px solid rgba(255,255,255,0.14);
}
.compare-tag--right {
    right: 18px;
    background: var(--accent-grad);
    box-shadow: 0 8px 22px rgba(239, 35, 60, 0.35);
}
.compare-tag .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
}
.compare-tag .dot--accent {
    background: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

/* Outside labels above the slider */
.compare-labels {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 16px;
    padding: 0 8px;
}
.compare-label {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 400;
    letter-spacing: 0.005em;
    color: var(--muted);
    white-space: nowrap;
    line-height: 1.2;
    transition: color .35s var(--ease), opacity .35s var(--ease);
}
.compare-label--left {
    font-style: italic;
    font-weight: 300;
    opacity: 0.75;
}
.compare-label--right {
    font-weight: 700;
    font-size: 1.32rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.compare-label--right::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-grad);
    margin-right: 10px;
    transform: translateY(-2px);
    box-shadow: 0 0 14px rgba(239, 35, 60, 0.55);
}

.compare-hint {
    text-align: center;
    margin: 18px 0 0;
    font-size: 0.88rem;
    color: var(--muted);
}
.compare-hint i { color: var(--accent); margin-right: 6px; }

/* Özellik listesi (compare sağ kolon) */
.compare-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.compare-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.compare-features li:hover {
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(239, 35, 60, 0.18);
}
.compare-features .cf-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(239, 35, 60, 0.25);
}
.compare-features strong {
    display: block;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.3;
}
.compare-features span {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}
.cf-br-mobile { display: none; }

@media (max-width: 900px) {
    .compare-section { padding: clamp(20px, 4vw, 32px) 0 clamp(48px, 8vw, 72px); }
    .compare-slider { aspect-ratio: 16 / 9; border-radius: var(--radius-lg); }
    .compare-handle-knob {
        width: 60px; height: 60px;
        font-size: 1rem;
    }
    .compare-header h2 { font-size: clamp(1.45rem, 6vw, 1.95rem); line-height: 1.15; }
    .compare-header h2 .compare-h2-line,
    .compare-header h2 .gradient-text { display: block; font-weight: 800; }
    .compare-header h2 .compare-h2-line { color: var(--ink); }
    .compare-labels {
        margin-bottom: 8px;
        padding: 0 2px;
        gap: 8px;
    }
    .compare-label { font-size: 0.78rem; letter-spacing: 0; }
    .compare-label--left { font-weight: 300; }
    .compare-label--right { font-size: 0.88rem; font-weight: 700; }
    .compare-label--right::before { width: 6px; height: 6px; margin-right: 6px; }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .compare-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .compare-features li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 14px 12px;
        border-radius: 14px;
        min-width: 0;
    }
    .compare-features li > div { min-width: 0; width: 100%; }
    .compare-features .cf-icon { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }
    .compare-features strong {
        font-size: 0.86rem;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 4px;
        letter-spacing: -0.005em;
    }
    .compare-features span {
        font-size: 0.74rem;
        line-height: 1.4;
        display: block;
    }
    .cf-br-mobile { display: inline; }
}


/* ---------- Video showcase ---------- */
.showcase {
    padding: clamp(72px, 9vw, 120px) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.phone-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 9 / 19.5;
    background: #0B0B0F;
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,0,0,0.1);
}
.phone-frame::before {
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 30px;
    background: #000;
    border-radius: 16px;
    z-index: 2;
}
.phone-screen {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
}
.phone-screen video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.location-pin {
    position: absolute;
    width: 36px; height: 36px;
    background: var(--accent-grad);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 0 0 6px rgba(239, 35, 60, 0.18), 0 8px 20px rgba(239, 35, 60, 0.4);
    animation: pin-pulse 2.5s var(--ease) infinite;
}
.pin-1 { top: 22%; left: 18%; animation-delay: 0s; }
.pin-2 { top: 48%; right: 12%; animation-delay: .6s; }
.pin-3 { bottom: 20%; left: 28%; animation-delay: 1.2s; }
@keyframes pin-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

@media (max-width: 900px) {
    .showcase-grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing Card (Tek Paket) ---------- */
.pricing-hero {
    padding: clamp(20px, 2.5vw, 36px) 0 clamp(24px, 3vw, 44px);
}
.br-mobile { display: none; }
@media (max-width: 560px) {
    .br-mobile { display: inline; }
}
.pricing-hero .section-head { margin-bottom: clamp(14px, 1.8vw, 22px); }
.pricing-card {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--bg-paper);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    position: relative;
    align-items: stretch;
}
.pricing-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: var(--accent-grad);
}
.pricing-left {
    padding: 16px 40px;
    border-right: 1px solid var(--line);
    background: linear-gradient(170deg, #fff 0%, var(--bg-soft) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.pricing-right {
    padding: 26px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.pricing-name {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 5px;
    line-height: 1.05;
    text-align: center;
}
.pricing-name-arazi {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.pricing-name-max {
    color: var(--ink);
    font-weight: 900;
}
.pricing-desc { color: var(--muted); margin: 0 0 14px; font-size: 0.96rem; text-align: center; }
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 0;
}
.pricing-price-old-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 4px;
}
.pricing-price + .pricing-price { margin-top: 0; }
.pricing-old {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(239, 35, 60, 0.55);
}
.pricing-save-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #15803D 0%, #22C55E 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 5px 11px 5px 10px;
    border-radius: 8px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 6px 14px -6px rgba(22, 163, 74, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.pricing-save-badge i {
    font-size: 0.92rem;
    line-height: 1;
    opacity: 0.95;
}

/* 3'lü paket — büyük adet göstergesi */
.pricing-qty {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 2px 0 12px;
}
.pricing-card.is-paket-uclu .pricing-qty {
    display: flex;
}
.pricing-qty-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3.6rem;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 16px rgba(239, 35, 60, 0.22));
}
.pricing-qty-text {
    text-align: left;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.05;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
}
.pricing-vat {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 3.1rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1;
    margin-left: 8px;
}
.pricing-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3.1rem;
    letter-spacing: -0.04em;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.pricing-currency {
    font-family: var(--font-display);
    font-size: 3.1rem;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Paket seçici (Tek Video / 3'lü Paket) */
.pricing-toggle {
    display: flex;
    gap: 6px;
    width: 100%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px;
    margin: 0 0 24px;
}
.pricing-toggle-btn {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 11px 8px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    color: var(--muted);
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.pricing-toggle-btn.is-active {
    background: var(--accent-grad);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(239, 35, 60, 0.55);
}
.ptb-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.ptb-sub {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}
.pricing-toggle-btn:not(.is-active) .ptb-title { color: var(--ink); }
.pricing-toggle-btn.is-active .ptb-title { color: #fff; }
.pricing-toggle-btn.is-active .ptb-sub { color: rgba(255, 255, 255, 0.92); }

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    margin: 16px 0 0;
    padding: 11px 15px;
    background: var(--accent-soft);
    border: 1px solid rgba(239, 35, 60, 0.13);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink-soft);
    text-align: center;
}
.pricing-note i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }

/* Sol kolon üstü — marka kartı (Go yeşil / Plus turuncu). Video üstündeki
   boşluğu değere çevirir; video boyutu ve sağ kolon aynı kalır. */
/* İçerik üstte toplanır (hero + video + renk + ses birbirine yakın),
   kalan boşluk en alta iner — oraya sonra içerik eklenecek. */
.pricing-card-wide .pricing-left { justify-content: flex-start; }
.pl-herocard {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    color: #fff;
}
.pl-herocard--go   { background: var(--go-grad); }
.pl-herocard--plus { background: var(--accent-grad); }
.plh-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.plh-text { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; flex: 1; text-align: left; }
.plh-text strong { font-size: 1rem; font-weight: 700; color: #fff; }
.plh-text span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.9); }
.plh-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.plh-badge i { font-size: 0.9rem; }
@media (max-width: 640px) {
    /* Dar ekran: üst satır = ikon (sol) + rozet (sağ), alt satır = metin tam genişlik.
       Böylece başlık sıkışıp 3 satıra bölünmez, ikon ortada asılı kalmaz. */
    .pl-herocard { flex-wrap: wrap; gap: 10px 12px; padding: 13px 14px; margin-top: 30px; }
    .plh-icon { order: 1; width: 42px; height: 42px; font-size: 1.25rem; }
    .plh-badge { order: 2; margin-left: auto; }
    .plh-text { order: 3; flex-basis: 100%; }
}

/* Sol kolon altı — gerçek müşteri yorumları: alt alta 2 kart, dönerek kayar.
   margin-top:auto ile kolon dibine yapışır. */
.pl-reviews {
    margin: auto 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pl-review {
    margin: 0;
    width: 100%;
    padding: 10px 13px;
    border-radius: 13px;
    border: 1px solid var(--line);
    overflow: hidden;
}
.pl-review--go   { background: var(--go-soft);     border-color: rgba(22, 163, 74, 0.2); }
.pl-review--plus { background: var(--accent-soft); border-color: rgba(239, 35, 60, 0.16); }
.plr-body { will-change: transform; }
.plr-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.plr-stars { display: inline-flex; gap: 2px; color: #F59E0B; font-size: 0.8rem; }
.plr-stars .bi-star { color: #E4D6B0; }
.plr-qmark { font-size: 1.25rem; line-height: 1; }
.pl-review--go   .plr-qmark { color: #9FE1CB; }
.pl-review--plus .plr-qmark { color: #F5C4B3; }
.plr-quote {
    margin: 0 0 8px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--ink-soft);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Her zaman 2 satır yüksekliği ayır — yorum değişince kart boyu (ve sayfa) zıplamasın */
    min-height: 2.9em;
}
.plr-foot { display: flex; align-items: center; gap: 9px; }
.plr-logo { height: 22px; width: auto; max-width: 74px; object-fit: contain; flex-shrink: 0; }
/* hidden attribute, display kuralını ezebildiği için logo/avatar'da kesinleştir */
.plr-logo[hidden], .plr-avatar[hidden] { display: none !important; }
.plr-avatar {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
.pl-review--go   .plr-avatar { background: var(--go-deep); }
.pl-review--plus .plr-avatar { background: var(--accent-deep); }
.plr-who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; text-align: left; }
.plr-who strong { font-size: 0.83rem; font-weight: 700; color: var(--ink); }
.plr-who span { font-size: 0.74rem; color: var(--muted); }

/* Plus kartı — üyelik kuponu teşviki (yalnızca tek video panelinde anlamlı) */
.pricing-coupon-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 0;
    padding: 11px 15px;
    background: #FFF9EC;
    border: 1px dashed #E8C468;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink-soft);
    text-align: center;
}
.pricing-coupon-note i { color: #C98A0C; font-size: 1.1rem; flex-shrink: 0; }
.pricing-coupon-note strong { color: var(--ink); }
/* 3'lü pakette üyelik kuponu geçmez — notu gizle */
.pricing-card.is-paket-uclu .pricing-coupon-note { display: none; }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 18px 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--ink-soft);
}
.pricing-features li i {
    width: 26px; height: 26px;
    background: var(--accent-grad);
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 2px;
    box-shadow: 0 6px 14px -6px rgba(239, 35, 60, 0.5);
}
.pricing-features li strong { color: var(--ink); font-weight: 700; }

.pricing-badge {
    position: absolute;
    top: 28px; right: 28px;
    background: var(--ink);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pricing-video {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-width: 420px;
    margin: 0 auto;
    align-self: center;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
/* webm asset'inde telefonun etrafında şeffaf dolgu var; hafif büyütüp kırparak
   telefonu yukarı çekiyoruz (üstteki boşluk kapanır). Mute butonu etkilenmez. */
.pricing-card-wide .pricing-video { overflow: hidden; }
.pricing-card-wide .pricing-video video { transform: scale(1.16); transform-origin: center center; }
.video-sound-wrap {
    display: flex;
    justify-content: center;
    margin: 2px 0 14px;
}
.video-sound {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 auto;
    padding: 7px 16px 7px 13px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: color .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.video-sound i {
    font-size: 16px;
    line-height: 1;
}
.video-sound:hover {
    color: #1e293b;
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}
.video-sound:focus-visible {
    outline: 2px solid var(--brand, #FF6A00);
    outline-offset: 2px;
}
.video-sound:not(.is-muted) {
    color: #fff;
    border-color: transparent;
    background: var(--brand, #FF6A00);
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.32);
}
.video-sound .video-sound-text::after {
    content: "Sesi aç";
}
.video-sound:not(.is-muted) .video-sound-text::after {
    content: "Sesi kapat";
}

/* Video üzerinde şeffaf, ortalı mute/unmute butonu */
.video-sound.pv-mute {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 0.7;
    z-index: 3;
    transition: background .18s ease, opacity .2s ease, transform .12s ease, border-color .18s ease;
}
.video-sound.pv-mute .video-sound-text { display: none; }
.video-sound.pv-mute i {
    font-size: 22px;
    line-height: 1;
    /* İkonu her zeminde okunur kıl — arka plan yerine gölge */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}
.video-sound.pv-mute:hover {
    background: rgba(15, 23, 42, 0.38);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    opacity: 1;
}
.video-sound.pv-mute:active { transform: translate(-50%, -50%) scale(0.93); }
/* Ses açıkken taban stili turuncuya dönmesin — şeffaf kalsın */
.video-sound.pv-mute:not(.is-muted) {
    background: rgba(15, 23, 42, 0.10);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    box-shadow: none;
    opacity: 0.58;
}
.video-sound.pv-mute:not(.is-muted):hover { opacity: 1; }
.pricing-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

/* ---- Arazi Çizim Rengi seçici ---- */
.color-picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateY(-52px);
    margin-bottom: -42px;
}
.color-picker-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding: 0 14px;
}
.color-picker-label::before,
.color-picker-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.color-picker-label::before { right: 100%; }
.color-picker-label::after  { left: 100%; }
.color-picker-row {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow:
        0 12px 28px -16px rgba(11, 11, 15, 0.22),
        0 4px 10px -4px rgba(11, 11, 15, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sw, #ccc);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease);
    position: relative;
    filter: saturate(1.45) brightness(1.05);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.08),
        0 0 14px color-mix(in srgb, var(--sw) 55%, transparent),
        0 6px 14px -4px color-mix(in srgb, var(--sw) 70%, transparent);
}
.color-swatch:hover {
    transform: translateY(-2px) scale(1.1);
    filter: saturate(1.6) brightness(1.08);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.12),
        0 0 22px color-mix(in srgb, var(--sw) 75%, transparent),
        0 12px 24px -6px color-mix(in srgb, var(--sw) 85%, transparent);
}
.color-swatch.is-active {
    transform: scale(1.18);
    filter: saturate(1.6) brightness(1.08);
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 3.5px var(--sw),
        0 0 24px color-mix(in srgb, var(--sw) 85%, transparent),
        0 14px 28px -6px color-mix(in srgb, var(--sw) 85%, transparent);
}
.color-swatch:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 3.5px var(--sw);
}

.pricing-trust {
    display: flex; gap: 18px; flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px; padding-top: 12px;
    border-top: 1px dashed var(--line-strong);
}
.pricing-trust-top {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 12px;
    border-top: 0;
    border-bottom: 1px dashed var(--line-strong);
}
.pricing-trust .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--muted); font-weight: 600;
}
.pricing-trust .trust-item i { color: var(--accent); }

/* ---- Hemen Satın Al CTA ---- */
.btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF6EC 100%);
    border: 2px solid rgba(251, 133, 0, 0.9);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.3;
    white-space: nowrap;
    letter-spacing: -0.005em;
    text-decoration: none;
    box-shadow:
        0 18px 36px -16px rgba(251, 133, 0, 0.35),
        0 10px 22px -10px rgba(11, 11, 15, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    animation: buyPulse 3s var(--ease) infinite;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-buy-now::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(239, 35, 60, 0.06), rgba(251, 133, 0, 0.10));
    opacity: 1;
    transition: opacity .3s var(--ease);
}
.btn-buy-now::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 40%;
    background: linear-gradient(110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.0) 30%,
        rgba(251, 133, 0, 0.35) 50%,
        rgba(255, 255, 255, 0.0) 70%,
        transparent 100%);
    transform: skewX(-18deg);
    animation: buyShine 3.2s var(--ease) infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes buyPulse {
    0%, 100% {
        box-shadow:
            0 18px 36px -16px rgba(251, 133, 0, 0.35),
            0 10px 22px -10px rgba(11, 11, 15, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
    50% {
        box-shadow:
            0 22px 44px -14px rgba(251, 133, 0, 0.50),
            0 12px 24px -10px rgba(11, 11, 15, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
}
@keyframes buyShine {
    0%   { left: -60%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}
.btn-buy-now:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 133, 0, 1);
    box-shadow:
        0 26px 50px -16px rgba(251, 133, 0, 0.50),
        0 14px 28px -12px rgba(11, 11, 15, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.btn-buy-now:hover::before { opacity: 1; }
.btn-buy-label,
.btn-buy-price,
.btn-buy-arrow {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    white-space: nowrap;
}
.btn-buy-label {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.btn-buy-price {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.25rem;
    padding-left: 14px;
    margin-left: 2px;
    border-left: 1px solid var(--line);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}
.btn-buy-vat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--muted);
    -webkit-text-fill-color: var(--muted);
    background: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.btn-buy-arrow {
    color: #FB8500;
    font-size: 1.3rem;
    transition: transform .25s var(--ease);
    -webkit-text-fill-color: #FB8500;
    display: inline-flex;
    align-items: center;
}
.btn-buy-now:hover .btn-buy-arrow { transform: translateX(4px); }

/* Payment security badges below the buy button */
.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    padding: 12px 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F4 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 1px 2px rgba(11,11,15,0.03);
}
.ps-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
}
.ps-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
}
.ps-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
}
.ps-label strong {
    font-weight: 800;
    color: var(--ink);
    margin-right: 3px;
}
.ps-divider {
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}

.payment-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
    padding: 0 6px;
    opacity: 0.85;
}
.pb-logo {
    height: 22px;
    width: auto;
    flex-shrink: 0;
}
.pb-paytr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pb-paytr img {
    height: 22px;
    width: auto;
    display: block;
}

@media (max-width: 980px) {
    .pricing-card { grid-template-columns: 1fr; }
    .pricing-left { padding: 14px 28px 12px; text-align: center; gap: 4px; }
    .pricing-right { padding: 22px 28px 28px; text-align: center; }
    .pricing-left .pricing-video { margin: -8px auto -10px; }
    .pricing-trust-top { padding-bottom: 6px; }
    .pricing-left .pricing-trust:not(.pricing-trust-top) { padding-top: 6px; margin-top: 0; }
    .pricing-left { border-right: 0; border-bottom: 1px solid var(--line); }
    .pricing-right { align-items: center; }
    .pricing-right .pricing-desc,
    .pricing-right .pricing-name { width: 100%; }
    .pricing-price { justify-content: center; }
    .pricing-features { width: 100%; }
    .pricing-features li { text-align: left; }
    .pricing-trust { justify-content: center; }
    .pricing-video { max-width: 460px; }
}
@media (max-width: 560px) {
    .pricing-left { padding: 14px 16px 18px; gap: 0; background: #fff; }
    .pricing-right { padding: 26px 20px 28px; }
    .pricing-video {
        max-width: 92vw;
        margin: -36px auto -28px;
    }
    .color-picker {
        transform: translateY(-18px);
        margin-bottom: 6px;
        gap: 10px;
    }
    .color-picker-row {
        padding: 10px 14px;
        gap: 12px;
    }
    .color-swatch {
        width: 26px;
        height: 26px;
        box-shadow:
            0 0 0 1px rgba(0,0,0,0.08),
            0 0 10px color-mix(in srgb, var(--sw) 45%, transparent),
            0 4px 10px -3px color-mix(in srgb, var(--sw) 55%, transparent);
    }
    .color-swatch.is-active {
        transform: scale(1.12);
        box-shadow:
            0 0 0 2px #fff,
            0 0 0 3px var(--sw),
            0 0 14px color-mix(in srgb, var(--sw) 65%, transparent),
            0 6px 14px -4px color-mix(in srgb, var(--sw) 65%, transparent);
    }
    .pb-paytr img { height: 18px; }
    .pricing-trust-top { padding-bottom: 4px; border-bottom: 0; }
    .pricing-left .pricing-trust:not(.pricing-trust-top) { padding-top: 8px; margin-top: 4px; border-top: 0; }
    .pricing-features { margin: 18px 0 20px; gap: 12px; }
    .pricing-features li { font-size: 0.95rem; line-height: 1.5; gap: 12px; }
    .pricing-features li i { width: 22px; height: 22px; font-size: 0.75rem; }
    .pricing-name { font-size: 2rem; }
    .pricing-amount { font-size: 2.6rem; }
    .pricing-currency { font-size: 2.6rem; }
    .pricing-vat { font-size: 2.6rem; margin-left: 6px; }
    .pricing-toggle { margin-bottom: 22px; }
    .pricing-toggle-btn { padding: 10px 6px; }
    .ptb-title { font-size: 1.12rem; }
    .ptb-sub { font-size: 0.74rem; white-space: normal; line-height: 1.25; }
    .pricing-note { font-size: 0.85rem; padding: 11px 14px; min-height: 64px; }
    .pricing-desc { min-height: 3.4em; }
    .pricing-trust { gap: 12px; }
    .btn-buy-now {
        padding: 16px 16px;
        font-size: 1rem;
        gap: 8px;
    }
    .btn-buy-price { font-size: 1rem; padding-left: 8px; gap: 4px; }
    .btn-buy-vat { font-size: 0.58rem; }
    .btn-buy-arrow { font-size: 1.05rem; }
    .payment-security { gap: 10px; padding: 10px 12px; margin-top: 14px; }
    .ps-icon { width: 18px; height: 18px; }
    .ps-label { font-size: 0.72rem; }
    .ps-divider { height: 16px; }
    .payment-brands { gap: 12px; margin-top: 10px; }
    .pb-logo { height: 18px; }
}

/* ---------- Testimonials (Bento) ---------- */
.testimonials {
    padding: clamp(72px, 9vw, 120px) 0;
    overflow: hidden;
}
.t-marquee {
    margin-top: 28px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.t-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: t-scroll 110s linear infinite;
}
.t-marquee:hover .t-marquee-track { animation-play-state: paused; }
@keyframes t-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.t-card {
    position: relative;
    flex: 0 0 360px;
    width: 360px;
    min-height: 240px;
    background: var(--bg-paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s, border-color 0.35s;
}
.t-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.t-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
    box-shadow: 0 18px 40px -20px color-mix(in srgb, var(--accent) 40%, transparent);
}
.t-card:hover::before { opacity: 1; }

.t-card-quote-mark {
    position: absolute;
    top: -8px;
    right: 14px;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    transform: rotate(180deg);
}
.t-card-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
    display: flex;
    gap: 1px;
}
.t-card-stars .is-empty { color: color-mix(in srgb, #f59e0b 22%, var(--line)); }

.t-card-text {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

.t-card-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
    position: relative;
    z-index: 1;
}
.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.t-avatar--logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
    padding: 5px;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.t-avatar--logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Sağ üst köşede doğrulanmış rozeti */
.t-verified {
    position: absolute;
    top: 12px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #16a34a;
    background: color-mix(in srgb, #16a34a 12%, #fff);
    border: 1px solid color-mix(in srgb, #16a34a 28%, transparent);
    padding: 4px 9px 4px 8px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 2;
    letter-spacing: 0.02em;
}
.t-verified i { font-size: 0.82rem; }

/* Footer'da büyük, beyaz zeminli logo kutusu */
.t-logo-box {
    height: 56px;
    min-width: 56px;
    max-width: 120px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    transition: border-color .25s, box-shadow .25s;
}
.t-logo-box img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.t-card:hover .t-logo-box {
    border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
    box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--accent) 30%, transparent);
}
.t-card--has-logo .t-card-foot {
    justify-content: space-between;
}
.t-author { flex: 1; min-width: 0; }
.t-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem;
    word-break: break-word;
}
.t-office {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 3px;
    word-break: break-word;
}
.t-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #16a34a;
    background: color-mix(in srgb, #16a34a 10%, transparent);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.t-date i { font-size: 0.75rem; }

@media (max-width: 640px) {
    .t-card { flex: 0 0 300px; width: 300px; min-height: 220px; padding: 14px 18px; }
    .t-marquee-track { animation-duration: 80s; }
    .t-date { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .t-marquee-track { animation: none; }
}

/* ---------- Testimonials Section Head (2-col title) ---------- */
.testimonials-head {
    margin-bottom: 32px;
    text-align: center;
}
.testimonials-title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.testimonials-title-left,
.testimonials-title-right { display: block; }
@media (min-width: 900px) {
    .testimonials-title-left,
    .testimonials-title-right { display: inline; }
}
@media (min-width: 900px) {
    .testimonials-title {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
        text-align: left;
    }
    .testimonials-title-left {
        text-align: right;
        padding-right: 24px;
        border-right: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
        font-size: clamp(2rem, 4.2vw, 3rem);
        color: var(--ink);
    }
    .testimonials-title-right {
        text-align: left;
        font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    }
}
.testimonials-head .lead { margin-top: 14px; }

/* ---------- Rating Hero (kompakt, turuncu temalı) ---------- */
.rating-hero {
    position: relative;
    margin: 22px auto 8px;
    max-width: 720px;
    padding: 18px 28px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, #FFF7EF 0%, #FFEEDC 100%);
    color: var(--ink);
    display: grid;
    grid-template-columns: auto 1px 1fr;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent-2) 28%, var(--line));
    box-shadow:
        0 16px 40px -24px color-mix(in srgb, var(--accent) 45%, transparent),
        0 0 0 1px rgba(255,255,255,0.6) inset;
}
.rating-hero-glow {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(40% 50% at 20% 50%, color-mix(in srgb, var(--accent-2) 28%, transparent), transparent 60%),
        radial-gradient(40% 50% at 80% 50%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%);
    filter: blur(24px);
    pointer-events: none;
    animation: rating-pulse 6s ease-in-out infinite alternate;
}
@keyframes rating-pulse {
    from { opacity: 0.5; transform: scale(1); }
    to   { opacity: 0.85; transform: scale(1.08); }
}
.rating-hero-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.35) 55%, transparent);
    transform: skewX(-18deg);
    animation: rating-shine 5.5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}
@keyframes rating-shine {
    0%   { left: -100%; }
    55%  { left: 130%; }
    100% { left: 130%; }
}

.rating-hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1;
    align-self: stretch;
}
.rating-hero-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}
.rating-hero-num {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    background: var(--accent-grad);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px color-mix(in srgb, var(--accent-2) 35%, transparent));
}
.rating-hero-out {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 600;
}
.rating-hero-stars {
    display: flex;
    gap: 2px;
    font-size: 0.95rem;
    color: var(--accent-2);
    filter: drop-shadow(0 1px 6px color-mix(in srgb, var(--accent-2) 40%, transparent));
}

.rating-hero-divider {
    width: 1px;
    align-self: stretch;
    min-height: 56px;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent-2) 45%, transparent), transparent);
    position: relative;
    z-index: 1;
}

.rating-hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    z-index: 1;
    min-width: 0;
    align-self: stretch;
}
.rating-hero-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.rating-hero-count-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-deep);
    line-height: 1;
    letter-spacing: -0.5px;
}
.rating-hero-count-label {
    font-size: 0.88rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.rating-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.rating-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--accent-deep);
    background: rgba(255,255,255,0.7);
    border: 1px solid color-mix(in srgb, var(--accent-2) 30%, transparent);
    padding: 4px 10px;
    border-radius: 999px;
}
.rating-hero-badge i { font-size: 0.85rem; color: var(--accent-2); }
.rating-hero-badge--soft {
    color: var(--ink-soft);
    background: rgba(255,255,255,0.55);
    border-color: var(--line);
}
.rating-hero-badge--soft i { color: var(--ink-soft); }

@media (max-width: 720px) {
    .rating-hero {
        padding: 18px 16px;
        gap: 14px;
        grid-template-columns: 1fr;
        justify-items: center;
        margin: 18px auto 4px;
    }
    .rating-hero-divider {
        width: 60%;
        height: 1px;
        min-height: 0;
        background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-2) 45%, transparent), transparent);
    }
    .rating-hero-right { align-items: center; text-align: center; }
    .rating-hero-count { justify-content: center; }
    .rating-hero-badges { justify-content: center; }
}

/* ---------- Brand Logos / İş Ortaklarımız ---------- */
.brands {
    padding: 28px 0 32px;
    overflow: hidden;
    background:
        radial-gradient(60% 80% at 50% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 70%),
        var(--bg-paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.brands-head {
    text-align: center;
    margin-bottom: 20px;
}
.brands-head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.brand-marquee {
    position: relative;
    padding: 8px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brand-track {
    display: flex;
    gap: 72px;
    align-items: center;
    width: max-content;
    animation: brand-scroll 38s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }

@keyframes brand-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(calc(-50% - 36px), 0, 0); }
}
@media (max-width: 720px) {
    @keyframes brand-scroll {
        from { transform: translate3d(0, 0, 0); }
        to   { transform: translate3d(calc(-50% - 24px), 0, 0); }
    }
}

.brand-track img {
    height: 64px;
    width: auto;
    flex-shrink: 0;
    opacity: .95;
    filter: saturate(1.05);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), filter .25s, opacity .25s;
    will-change: transform;
}
.brand-track img:hover {
    opacity: 1;
    transform: scale(1.12);
    filter: saturate(1.15) drop-shadow(0 8px 18px color-mix(in srgb, var(--accent) 35%, transparent));
}

@media (max-width: 720px) {
    .brands { padding: 22px 0 26px; }
    .brand-track { gap: 48px; }
    .brand-track img { height: 50px; }
}
@media (prefers-reduced-motion: reduce) {
    .brand-track { animation: none; }
}

/* ---------- Final CTA (SVG wave ile light→dark geçiş) ---------- */
.cta-strip {
    padding: 0;
    margin-top: 0;
    background: var(--bg-dark);
    position: relative;
    isolation: isolate;
}
.cta-wave-wrap {
    position: relative;
    width: 100%;
    background: var(--bg);
    line-height: 0;
    margin-bottom: -1px;
    overflow: hidden;
}
.cta-wave {
    display: block;
    width: 100%;
    height: clamp(80px, 10vw, 140px);
    margin-top: -1px;
    margin-bottom: -1px;
    fill: var(--bg-dark);
    background: transparent;
}
.cta-wave--accent {
    position: absolute;
    top: 0;
    left: 0;
    height: clamp(70px, 9vw, 120px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: normal;
    animation: ctaWaveDrift 14s ease-in-out infinite alternate;
}
.cta-wave-wrap > .cta-wave:not(.cta-wave--accent) {
    position: relative;
    z-index: 1;
    animation: ctaWaveDrift 18s ease-in-out infinite alternate-reverse;
}
@keyframes ctaWaveDrift {
    0%   { transform: translateX(-2%) scaleX(1.02); }
    100% { transform: translateX(2%)  scaleX(1.04); }
}
.cta-strip > .container {
    max-width: none;
    padding: 0;
}
.cta-box {
    background: transparent;
    border-radius: 0;
    padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 96px) clamp(40px, 5vw, 64px);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}
.cta-box::before,
.cta-box::after { content: none; }
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(251, 133, 0, 0.12);
    border: 1px solid rgba(251, 133, 0, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}
.cta-box h2 {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
    font-weight: 800;
}
.cta-line { display: block; }
.cta-highlight {
    background: var(--accent-grad);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.72);
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}
.cta-primary {
    box-shadow: 0 14px 40px -12px rgba(251, 133, 0, 0.6);
}
.cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: background 0.25s, border-color 0.25s;
}
.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}
.cta-trust {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}
.cta-trust span { display: inline-flex; align-items: center; gap: 6px; }
.cta-trust i { color: var(--accent-2); font-size: 0.95rem; }

/* ---------- Impact Chart (öncesi/sonrası infografik) ---------- */
.impact-chart {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 6px auto 32px;
    padding: 26px 28px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(6px);
    text-align: left;
}
.impact-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}
.impact-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: right;
}
.impact-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}
.impact-tag--accent {
    background: var(--accent-grad);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.impact-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}
.impact-bar-wrap {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.impact-bar {
    height: 100%;
    border-radius: 8px;
    width: 0;
    animation: impact-grow 1.4s cubic-bezier(.2,.7,.2,1) 0.2s forwards;
    position: relative;
    overflow: hidden;
}
.impact-bar--before {
    background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.28));
}
.impact-bar--after {
    background: var(--accent-grad);
    box-shadow: 0 0 24px -4px rgba(251, 133, 0, 0.55);
    animation-delay: 0.55s;
}
.impact-bar--after::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: impact-shine 2.6s ease-in-out 1.8s infinite;
}
@keyframes impact-grow {
    from { width: 0; }
    to   { width: var(--target, 100%); }
}
@keyframes impact-shine {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(220%); }
    100% { transform: translateX(220%); }
}
.impact-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    font-variant-numeric: tabular-nums;
    min-width: 60px;
}
.impact-val--accent {
    color: #fff;
    font-size: 1.45rem;
}
.impact-delta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    text-align: center;
}
.impact-delta-num {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: var(--accent-grad);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(251, 133, 0, 0.4));
}
.impact-delta-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}
.impact-note {
    position: relative;
    z-index: 1;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 18px 0 0;
    text-align: center;
}

@media (max-width: 640px) {
    .impact-chart { padding: 20px 16px 16px; }
    .impact-row { grid-template-columns: 1fr; gap: 6px; }
    .impact-label { text-align: left; flex-direction: row; align-items: center; gap: 8px; }
    .impact-bar-wrap { height: 32px; }
    .impact-delta-num { font-size: 1.6rem; }
    .impact-delta-label { font-size: 0.82rem; }
}

/* Footer ile birleşik koyu blok — footer'ın kendi üst çizgisi ve ayraç gizlenir */
.cta-strip + .site-footer { border-top: 0; }
.cta-strip + .site-footer::before { display: none; }

@media (max-width: 640px) {
    .cta-trust { gap: 14px; font-size: 0.78rem; }
    .cta-actions .btn-lg { width: 100%; justify-content: center; }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    padding: clamp(70px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
    text-align: center;
    position: relative;
}
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin-bottom: 18px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.1rem; color: var(--muted); }

/* ---------- Örnekler (Portfolio) ---------- */
/* ===== Ornekler page — cinematic showcase =====================
   Hero · Filter · Featured · Bento grid · Proof strip
================================================================ */

/* ----- HERO ----- */
body.page-ornekler { background: var(--bg-dark); }
.ornek-hero {
    position: relative;
    padding: clamp(28px, 3.5vw, 48px) 0 0;
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.ornek-hero .hero-wave-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: clamp(2px, 0.6vw, 8px);
    margin-bottom: -1px;
    background: transparent;
    z-index: 2;
}
.ornek-hero .hero-wave {
    display: block;
    width: 100%;
    height: clamp(42px, 5vw, 68px);
    fill: var(--bg);
    background: transparent;
    animation: ctaWaveDrift 18s ease-in-out infinite alternate-reverse;
}
.ornek-hero-bg {
    position: absolute; inset: 0;
    z-index: -1;
    background: var(--bg-dark);
}
.ornek-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}
.ornek-hero-glow--1 {
    width: 420px; height: 420px;
    top: 20%; left: -180px;
    background: radial-gradient(circle, rgba(239, 35, 60, 0.40), transparent 70%);
    animation: ornekGlow1 16s ease-in-out infinite alternate;
}
.ornek-hero-glow--2 {
    width: 360px; height: 360px;
    top: 25%; right: -200px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.35), transparent 70%);
    animation: ornekGlow2 18s ease-in-out infinite alternate;
}
@keyframes ornekGlow1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes ornekGlow2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, -60px) scale(1.1); }
}
.ornek-hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    opacity: 0.7;
    pointer-events: none;
}
.ornek-hero-inner {
    position: relative;
    text-align: center;
    max-width: 1120px;
}
.ornek-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}
.ornek-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent-grad);
    box-shadow: 0 0 12px rgba(239, 35, 60, 0.8);
    animation: ornekDot 1.8s ease-in-out infinite;
}
@keyframes ornekDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.7; }
}
.ornek-h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.15rem, 2.9vw, 2.3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #fff;
}
.ornek-h1-line { display: block; }
.ornek-h1 .gradient-text { font-weight: 900; }
.ornek-brand-mark {
    color: var(--accent-2);
    font-weight: 900;
    letter-spacing: -0.025em;
}
.ornek-lead {
    font-size: clamp(0.92rem, 1.2vw, 1.02rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin: 0 auto 22px;
    max-width: 580px;
}
.ornek-lead strong { color: #fff; font-weight: 700; }

.ornek-stats {
    display: inline-flex;
    align-items: stretch;
    gap: clamp(20px, 3vw, 40px);
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 20px 40px -22px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.o-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.o-stat-num-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
    line-height: 1;
    letter-spacing: -0.02em;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.o-stat-plus,
.o-stat-suffix {
    font-size: 0.6em;
    font-weight: 800;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-left: 1px;
}
.o-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}
.o-stat-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
}

.ornek-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.ornek-hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5));
    position: relative;
    overflow: hidden;
}
.ornek-hero-scroll-line::after {
    content: "";
    position: absolute;
    top: -50%; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: ornekScroll 2s ease-in-out infinite;
}
@keyframes ornekScroll {
    0%   { top: -50%; }
    100% { top: 100%; }
}
.ornek-hero-scroll-text {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ----- STAGE — Uniform grid ----- */
.ornek-stage {
    padding: clamp(4px, 0.8vw, 10px) 0 clamp(36px, 5vw, 56px);
    background: var(--bg);
}
.ornek-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.6vw, 22px);
    max-width: 1180px;
    margin: 0 auto;
}
.ornek-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    padding: 0;
    border: 0;
    background: #0B0B0F;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 32px -18px rgba(11, 11, 15, 0.32);
    transition: transform .35s var(--ease), box-shadow .4s var(--ease);
    display: block;
}
.ornek-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 1.4s var(--ease), filter .35s var(--ease);
}
.ornek-card-grad {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,11,15,0.40) 0%, rgba(11,11,15,0) 35%, rgba(11,11,15,0) 65%, rgba(11,11,15,0.65) 100%);
    pointer-events: none;
}
.ornek-card-shine {
    position: absolute; top: 0; bottom: 0; left: -45%; width: 35%;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: skewX(-18deg);
    opacity: 0;
    transition: opacity .3s var(--ease), left .9s var(--ease);
    pointer-events: none;
}
.ornek-card:hover .ornek-card-shine { opacity: 1; left: 130%; }
.ornek-card-num {
    position: absolute;
    top: 12px; left: 12px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    z-index: 2;
}
.ornek-card-num::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 2px;
    background: var(--accent-grad);
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 2px;
}
.ornek-card-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.88);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.55);
    transition: opacity .3s var(--ease), transform .35s var(--ease), background .3s var(--ease);
    pointer-events: none;
    z-index: 3;
}
.ornek-card-play i { transform: translateX(2px); line-height: 1; }
.ornek-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -22px rgba(11, 11, 15, 0.40);
}
.ornek-card:hover img { transform: scale(1.08); filter: brightness(0.82); }
.ornek-card:hover .ornek-card-play { opacity: 1; transform: translate(-50%, -50%) scale(1); background: #fff; }
.ornek-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.4), 0 14px 32px -18px rgba(11, 11, 15, 0.32);
}
.ornek-card:focus-visible .ornek-card-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ----- HİZMET SEÇİCİ (tab kartları) ----- */
.ornek-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 1.4vw, 18px);
    max-width: 1180px;
    margin: 0 auto clamp(24px, 3vw, 40px);
}
.ornek-switch-card {
    --c: var(--brand, #FF6A00);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: clamp(13px, 1.4vw, 17px) clamp(15px, 1.6vw, 21px) clamp(12px, 1.2vw, 15px);
    border: 1.5px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    background: var(--card, #fff);
    cursor: pointer;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
                border-color .3s var(--ease), background .3s var(--ease);
}
.ornek-switch-card[data-panel="go"] { --c: #00A63E; }
.ornek-switch-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--c);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.ornek-switch-card:hover {
    transform: translateY(-3px);
    border-color: var(--c);
    box-shadow: 0 18px 42px -26px rgba(15, 23, 42, 0.45);
}
.ornek-switch-card.is-active {
    border-color: var(--c);
    background: color-mix(in srgb, var(--c) 7%, var(--card, #fff));
    box-shadow: 0 22px 46px -24px rgba(15, 23, 42, 0.40);
}
.ornek-switch-card.is-active::before { opacity: 1; }
.ornek-switch-card:focus-visible { outline: 2px solid var(--c); outline-offset: 2px; }

/* Üst satır: ikon + (rozet) + ok — dikey ortalı */
.osc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(8px, 1vw, 11px);
}
.osc-icon {
    flex: 0 0 auto;
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 1.1rem;
    color: var(--c);
    background: color-mix(in srgb, var(--c) 12%, transparent);
    transition: background .3s var(--ease), color .3s var(--ease);
}
.ornek-switch-card.is-active .osc-icon { background: var(--c); color: #fff; }
.osc-badge {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--c);
    padding: 3px 10px;
    border-radius: 999px;
    line-height: 1.4;
}
.osc-arrow {
    flex: 0 0 auto;
    margin-left: auto;
    width: 30px; height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--c);
    color: var(--c);
    background: transparent;
    font-size: 0.92rem;
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.ornek-switch-card.is-active .osc-arrow { background: var(--c); color: #fff; }
.ornek-switch-card:hover .osc-arrow { transform: translateX(3px); }

.osc-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 6px;
}
.osc-title .ornek-brand-mark--go { color: #00A63E; }
.osc-desc {
    color: var(--muted, #64748b);
    font-size: clamp(0.84rem, 1.1vw, 0.92rem);
    line-height: 1.4;
}
.osc-desc strong { color: var(--ink); font-weight: 700; }

/* Özellik çipleri — kartın altına yaslı (iki kartın alt kenarı hizalı) */
.osc-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: clamp(10px, 1.1vw, 13px);
}
.osc-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    line-height: 1;
    color: var(--ink);
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 6px 9px;
    border-radius: 999px;
    white-space: nowrap;
}
.osc-chip i { font-size: 0.82rem; color: var(--c); }
.ornek-switch-card.is-active .osc-chip {
    background: color-mix(in srgb, var(--c) 12%, transparent);
    border-color: color-mix(in srgb, var(--c) 22%, transparent);
}

/* ----- PANELLER ----- */
.ornek-panels { max-width: 1180px; margin: 0 auto; }
.ornek-panel { display: none; }
.ornek-panel.is-active { display: block; animation: ornek-panel-in .38s var(--ease); }
@keyframes ornek-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

/* Kayan şerit — 4'lü görünüm, kusursuz döngü, kenarlarda solma */
.ornek-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.ornek-marquee-track {
    display: flex;
    width: max-content;
    gap: clamp(14px, 1.6vw, 22px);
    padding: 6px 0;
    will-change: transform;
    animation: ornek-marquee-left var(--dur, 48s) linear infinite;
}
.ornek-marquee[data-dir="right"] .ornek-marquee-track {
    animation-name: ornek-marquee-right;
}
.ornek-marquee:hover .ornek-marquee-track,
.ornek-marquee:focus-within .ornek-marquee-track {
    animation-play-state: paused;
}
/* Şerit içindeki her kart 4'lü görünüm için sabit genişlikte */
.ornek-marquee .ornek-card {
    flex: 0 0 auto;
    width: calc((1180px - 3 * 22px) / 4);
    max-width: 26vw;
}
/* Bir tam kopya (%50) kadar kaydır — iki kopya döngüyü kusursuz yapar */
@keyframes ornek-marquee-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes ornek-marquee-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .ornek-marquee-track { animation: none; }
    .ornek-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ----- LIGHTBOX MODAL ----- */
.ornek-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    background: rgba(8, 8, 12, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vw, 40px);
    opacity: 0;
    transition: opacity .25s var(--ease);
}
.ornek-modal.is-open {
    display: flex;
    opacity: 1;
}
.ornek-modal-stage {
    position: relative;
    height: 100%;
    max-height: min(92vh, 800px);
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ornekModalIn .35s var(--ease);
}
.ornek-modal-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}
.ornek-modal-frame iframe,
.ornek-modal-frame video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
    background: #000;
}
/* Tam ekranda (yatay monitör) dikey videoyu kırpma — tamamını göster */
.ornek-modal-frame video:fullscreen,
.ornek-modal-frame video:-webkit-full-screen {
    object-fit: contain;
}
@keyframes ornekModalIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

.ornek-modal-close,
.ornek-modal-nav {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
    z-index: 2;
}
.ornek-modal-close {
    top: clamp(14px, 2.5vw, 28px);
    right: clamp(14px, 2.5vw, 28px);
}
.ornek-modal-close i { font-size: 1.3rem; line-height: 1; }
.ornek-modal-nav { top: 50%; transform: translateY(-50%); }
.ornek-modal-nav--prev { left: clamp(12px, 2vw, 28px); }
.ornek-modal-nav--next { right: clamp(12px, 2vw, 28px); }
.ornek-modal-close:hover,
.ornek-modal-nav:hover {
    background: var(--accent-grad);
    border-color: transparent;
    transform: scale(1.06);
}
.ornek-modal-nav:hover { transform: translateY(-50%) scale(1.06); }
.ornek-modal-close:focus-visible,
.ornek-modal-nav:focus-visible {
    outline: 3px solid rgba(239, 35, 60, 0.45);
    outline-offset: 3px;
}

body.is-modal-open { overflow: hidden; }

/* ===== Ornekler — Sales-close CTA ===== */
.ornek-cta {
    position: relative;
    padding: 0 0 clamp(56px, 8vw, 100px);
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.ornek-cta .cta-wave-wrap { margin-bottom: clamp(24px, 4vw, 56px); }
.ornek-cta-bg {
    position: absolute; inset: 0;
    z-index: -1;
    background:
        radial-gradient(100% 80% at 50% 100%, rgba(239, 35, 60, 0.18), transparent 60%),
        var(--bg-dark);
}
.ornek-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    pointer-events: none;
}
.ornek-cta-glow--1 {
    width: 340px; height: 340px;
    top: 55%; left: -120px;
    background: radial-gradient(circle, rgba(239, 35, 60, 0.45), transparent 70%);
    animation: ornekGlow1 14s ease-in-out infinite alternate;
}
.ornek-cta-glow--2 {
    width: 340px; height: 340px;
    bottom: -80px; right: -90px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.50), transparent 70%);
    animation: ornekGlow2 16s ease-in-out infinite alternate;
}
.ornek-cta-inner {
    position: relative;
    max-width: 760px;
}

/* Urgency badge */
.ornek-cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(239, 35, 60, 0.12);
    border: 1px solid rgba(239, 35, 60, 0.40);
    color: #FFE5E8;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.ornek-cta-urgency strong { font-weight: 800; color: #fff; }
.ornek-cta-urgency-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.7);
    animation: ornekUrgencyPulse 1.6s ease-out infinite;
}
@keyframes ornekUrgencyPulse {
    0%   { box-shadow: 0 0 0 0   rgba(239, 35, 60, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(239, 35, 60, 0); }
    100% { box-shadow: 0 0 0 0   rgba(239, 35, 60, 0); }
}

.ornek-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 22px;
}
.ornek-stats--solo { padding: 16px 26px; }
.ornek-cta-lead {
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 24px;
    max-width: 580px;
}
.ornek-cta-lead strong { color: #fff; font-weight: 700; }

/* Social proof — stars + count */
.ornek-cta-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ornek-cta-stars {
    display: inline-flex;
    gap: 2px;
    color: #FFC83D;
    font-size: 0.88rem;
    text-shadow: 0 0 12px rgba(255, 200, 61, 0.6);
}
.ornek-cta-social-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.ornek-cta-social-text strong { color: #fff; font-weight: 800; margin-right: 4px; }

/* Price anchor */
.ornek-cta-price {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    padding: 18px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.ornek-cta-price-old {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-decoration-thickness: 2px;
    letter-spacing: -0.01em;
}
.ornek-cta-price-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    display: inline-flex;
    line-height: 1;
}
.ornek-cta-price-new {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.ornek-cta-price-new strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 24px rgba(239, 35, 60, 0.3);
}
.ornek-cta-price-new small {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ornek-cta-price-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--accent-grad);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px -6px rgba(239, 35, 60, 0.55);
}

/* ----- İKİ HİZMET FİYAT KARTLARI (CTA) ----- */
.octa-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}
.octa-card {
    --c: #FF6A00;
    --c-grad: linear-gradient(135deg, #FF2D4A 0%, #EF233C 45%, #FB8500 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: clamp(20px, 2.4vw, 28px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}
.octa-card--go {
    --c: #00C853;
    --c-grad: linear-gradient(135deg, #00E676 0%, #00C853 50%, #00A63E 100%);
}
.octa-card::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: var(--c-grad);
}
.octa-card-head { margin-bottom: 16px; }
.octa-card-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
}
.octa-card-name .ornek-brand-mark { color: #FF7A1A; }
.octa-card-name .ornek-brand-mark--go { color: #00E676; }
.octa-card-flag {
    display: inline-block;
    font-size: 0.6em;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #062;
    background: #00E676;
    padding: 2px 8px;
    border-radius: 999px;
    vertical-align: middle;
    transform: translateY(-2px);
}
.octa-card-tag {
    display: block;
    margin-top: 7px;
    font-size: 0.84rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.62);
}
.octa-card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-bottom: 14px;
}
.octa-price-old {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}
.octa-price-new {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.octa-price-new strong {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.4vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.octa-price-new small {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.octa-card-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--c) 40%, transparent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.octa-card-badge i { color: var(--c); }
.octa-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--c-grad);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 16px 34px -14px color-mix(in srgb, var(--c) 70%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.octa-card-btn i { transition: transform .25s var(--ease); }
.octa-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px -14px color-mix(in srgb, var(--c) 80%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.octa-card-btn:hover i { transform: translateX(3px); }
.octa-card-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* Primary close button wrapper — guarantees centering */
.ornek-cta-action {
    display: flex;
    justify-content: center;
    width: 100%;
}
.ornek-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px 18px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF2D4A 0%, #EF233C 45%, #FB8500 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow:
        0 22px 50px -16px rgba(239, 35, 60, 0.65),
        0 10px 24px -8px rgba(251, 133, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    animation: ornekCtaBtnPulse 2.4s ease-in-out infinite;
}
.ornek-cta-btn::before {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 50%; height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: ornekCtaBtnShine 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.ornek-cta-btn > * { position: relative; z-index: 2; }
.ornek-cta-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-size: 1.05rem;
    line-height: 1;
    transition: background .3s var(--ease), transform .3s var(--ease);
}
.ornek-cta-btn:hover {
    animation: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 30px 60px -16px rgba(239, 35, 60, 0.75),
        0 14px 28px -10px rgba(251, 133, 0, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}
.ornek-cta-btn:hover .ornek-cta-btn-arrow {
    background: rgba(255, 255, 255, 0.32);
    transform: translateX(3px);
}
.ornek-cta-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}
@keyframes ornekCtaBtnPulse {
    0%, 100% {
        box-shadow:
            0 22px 50px -16px rgba(239, 35, 60, 0.65),
            0 10px 24px -8px rgba(251, 133, 0, 0.40),
            inset 0 1px 0 rgba(255, 255, 255, 0.32);
    }
    50% {
        box-shadow:
            0 26px 58px -14px rgba(239, 35, 60, 0.85),
            0 14px 30px -8px rgba(251, 133, 0, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.36);
    }
}
@keyframes ornekCtaBtnShine {
    0%   { left: -120%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}

/* Responsive */
@media (max-width: 640px) {
    .ornek-cta { padding: 0 0 64px; }
    .ornek-cta-urgency { font-size: 0.72rem; padding: 6px 14px; }
    .ornek-cta-price { padding: 16px 18px; gap: 8px 12px; border-radius: 16px; }
    .ornek-cta-price-old { font-size: 0.95rem; }
    .ornek-cta-price-arrow { display: none; }
    .ornek-cta-price-badge { font-size: 0.62rem; padding: 4px 10px; }
    .ornek-cta-btn {
        padding: 15px 22px 15px 26px;
        font-size: 1.02rem;
        gap: 10px;
    }
    .ornek-cta-btn-arrow { width: 32px; height: 32px; font-size: 0.95rem; }
}

/* ----- PROOF STRIP ----- */
.ornek-proof {
    padding: clamp(36px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
    background: var(--bg);
}
.ornek-proof-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(180deg, var(--bg-paper) 0%, #FFF 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.ornek-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 160px;
}
.ornek-proof-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.ornek-proof-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.ornek-proof-text strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.96rem;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.ornek-proof-text small {
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .ornek-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    /* Tablet: 3'lü görünüm */
    .ornek-marquee .ornek-card { width: 30vw; max-width: 30vw; }
}
@media (max-width: 760px) {
    .ornek-hero { padding: 24px 0 0; }
    .ornek-h1 { font-size: clamp(1.3rem, 5.5vw, 1.9rem); line-height: 1.18; }
    .ornek-hero .hero-wave-wrap { margin-top: clamp(2px, 1vw, 8px); }
    .ornek-stats { gap: 16px; padding: 10px 14px; flex-wrap: wrap; justify-content: center; }
    .ornek-stats .o-stat-divider { display: none; }
    .o-stat { flex: 1 1 auto; min-width: 80px; }
    .o-stat-num-wrap { font-size: 1.35rem; }
    .o-stat-label { font-size: 0.6rem; }
    .ornek-hero-scroll { display: none; }

    .ornek-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    /* Mobil: ~2'li görünüm */
    .ornek-marquee .ornek-card { width: 44vw; max-width: 44vw; }
    .ornek-card { border-radius: 14px; }
    .ornek-switch { grid-template-columns: 1fr; gap: 12px; }
    .octa-cards { grid-template-columns: 1fr; gap: 12px; max-width: 420px; }
    .ornek-card-num { font-size: 0.92rem; top: 8px; left: 10px; }
    .ornek-card-num::before { width: 10px; margin-right: 6px; }
    .ornek-card-play { width: 44px; height: 44px; font-size: 1.05rem; opacity: 1; transform: translate(-50%, -50%) scale(1); }

    .ornek-modal { padding: 12px; }
    .ornek-modal-close { width: 40px; height: 40px; font-size: 1rem; top: 12px; right: 12px; }
    .ornek-modal-close i { font-size: 1.1rem; }
    .ornek-modal-nav { width: 40px; height: 40px; font-size: 1rem; }
}
@media (max-width: 420px) {
    .ornek-modal-nav--prev { left: 6px; }
    .ornek-modal-nav--next { right: 6px; }
}

/* ---------- Video modal ---------- */
.video-modal {
    position: fixed; inset: 0;
    background: rgba(11, 11, 15, 0.92);
    display: none;
    align-items: center; justify-content: center;
    z-index: 999;
    padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}
.video-modal-inner iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
    position: absolute;
    top: -50px; right: 0;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .25s;
}
.video-modal-close:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Hakkımızda ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--bg-paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 56px; height: 56px;
    background: var(--accent-grad);
    color: #fff;
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-accent);
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ---------- İletişim ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}
.contact-info {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.contact-info::after {
    content: '';
    position: absolute; bottom: -100px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(251, 133, 0, 0.25), transparent 60%);
}
.contact-info h2 { color: #fff; }
.contact-info .lead { color: rgba(255, 255, 255, 0.72); }
.contact-info ul { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.contact-info li { display: flex; align-items: flex-start; gap: 14px; color: rgba(255, 255, 255, 0.85); }
.contact-info li i {
    width: 42px; height: 42px;
    background: var(--accent-grad);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info a { color: #fff; }

.contact-form {
    background: var(--bg-paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--ink); }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 32px 24px; }
}

/* ---------- Alert ---------- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-weight: 500;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item summary {
    cursor: pointer;
    padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    color: var(--accent);
    transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Stats ---------- */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.stat-cell {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: 0; }
.stat-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    letter-spacing: -0.03em;
}
.stat-text { color: var(--muted); font-weight: 600; font-size: 0.88rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 900px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: 0; }
    .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* =================== PROCESS / SÜREÇ =================== */
.process-intro { padding-top: 8px; padding-bottom: 64px; }
.process-intro .section-head { margin-bottom: 40px; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
}

/* animated dashed flow line behind cards on desktop */
.process-grid::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 8%;
    right: 8%;
    height: 2px;
    background-image: linear-gradient(90deg,
        color-mix(in srgb, var(--accent) 60%, transparent) 0 10px,
        transparent 10px 20px);
    background-size: 20px 2px;
    animation: process-flow 1.6s linear infinite;
    z-index: 0;
    opacity: .55;
    pointer-events: none;
}
@keyframes process-flow {
    to { background-position: 20px 0; }
}

.process-step {
    position: relative;
    padding: 28px 22px 24px;
    background: var(--bg-paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}
/* gradient glow ring on hover */
.process-step::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--accent) 75%, transparent),
        transparent 45%,
        color-mix(in srgb, var(--accent) 55%, transparent));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 2;
}
/* soft radial glow that follows hover */
.process-step::after {
    content: "";
    position: absolute;
    inset: auto;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(closest-side,
        color-mix(in srgb, var(--accent) 18%, transparent),
        transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
    z-index: 0;
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -22px color-mix(in srgb, var(--accent) 35%, rgba(0,0,0,.25));
    border-color: transparent;
}
.process-step:hover::before { opacity: 1; }
.process-step:hover::after  { opacity: 1; }
.process-step:hover .process-icon { transform: translateY(-2px) rotate(-3deg) scale(1.05); }
.process-step:hover .process-icon i { transform: scale(1.08); }
.process-step:hover .process-num   { transform: scale(1.08); }

.process-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent) 12%, var(--bg-paper));
    border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: var(--accent);
    margin-bottom: 18px;
    position: relative;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    z-index: 1;
}
.process-icon i {
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    animation: process-float 4s ease-in-out infinite;
}
.process-step:nth-child(2) .process-icon i { animation-delay: .4s; }
.process-step:nth-child(3) .process-icon i { animation-delay: .8s; }
.process-step:nth-child(4) .process-icon i { animation-delay: 1.2s; }
@keyframes process-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

.process-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--accent-grad);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 6px 16px -4px color-mix(in srgb, var(--accent) 60%, transparent);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.process-num::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent);
    animation: process-pulse 2.4s ease-out infinite;
}
.process-step:nth-child(2) .process-num::after { animation-delay: .6s; }
.process-step:nth-child(3) .process-num::after { animation-delay: 1.2s; }
.process-step:nth-child(4) .process-num::after { animation-delay: 1.8s; }
@keyframes process-pulse {
    0%   { box-shadow: 0 0 0 0   color-mix(in srgb, var(--accent) 55%, transparent); }
    70%  { box-shadow: 0 0 0 14px color-mix(in srgb, var(--accent) 0%,  transparent); }
    100% { box-shadow: 0 0 0 0   color-mix(in srgb, var(--accent) 0%,  transparent); }
}

.process-step h3 {
    font-size: 1.08rem;
    margin: 0 0 6px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.process-step p {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .process-grid::before { display: none; }
}
@media (max-width: 560px) {
    .process-intro { padding-top: 4px; padding-bottom: 44px; }
    .process-intro .section-head { margin-bottom: 26px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .process-step { padding: 20px 16px 18px; border-radius: 16px; }
    .process-icon { width: 48px; height: 48px; font-size: 1.25rem; margin-bottom: 12px; border-radius: 14px; }
    .process-num  { width: 24px; height: 24px; font-size: 0.72rem; top: -8px; right: -8px; }
    .process-step h3 { font-size: 0.98rem; }
    .process-step p  { font-size: 0.84rem; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
    .process-grid::before,
    .process-icon i,
    .process-num::after { animation: none; }
}

/* ============================================================
   WHY ARAZIMAX (vs others)
   ============================================================ */
.why-arazimax {
    position: relative;
    padding: clamp(12px, 2vw, 24px) 0 clamp(56px, 8vw, 96px);
    overflow: hidden;
    isolation: isolate;
}
.why-arazimax .why-bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(700px 320px at 85% 8%, rgba(251, 133, 0, 0.06), transparent 65%),
        linear-gradient(180deg, transparent 0%, var(--bg-soft) 18%, var(--bg-soft) 70%, var(--bg) 100%);
}
.why-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto clamp(28px, 4vw, 48px);
}
.why-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: var(--accent-soft);
    border: 1px solid rgba(239, 35, 60, 0.16);
}
.why-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--text, #1c1c20);
    letter-spacing: -0.5px;
}
.why-logo {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 14px;
}
.why-logo--other { max-width: 280px; }
.why-logo--max { max-width: 320px; }
.why-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}
.why-sub strong { color: var(--text, #1c1c20); }

.why-wrap {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: clamp(20px, 3vw, 40px);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 30px 80px -20px rgba(239, 35, 60, 0.12),
        0 18px 50px -15px rgba(15, 15, 30, 0.10);
    isolation: isolate;
    overflow: hidden;
}
.why-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent-grad);
    border-radius: 28px 28px 0 0;
    z-index: 1;
}
.why-wrap-glow {
    position: absolute;
    inset: -1px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(600px 200px at 100% 0%, rgba(251, 133, 0, 0.07), transparent 60%),
        radial-gradient(500px 200px at 0% 100%, rgba(239, 35, 60, 0.05), transparent 60%);
}
.why-wrap > .why-table,
.why-wrap > .why-cta { position: relative; z-index: 1; }

/* ---- Marka renk tokenları (fiyatlandırma sayfasıyla birebir aynı) ----
   Go   -> .pricing-card-go içindeki --go-* değerleri
   Plus -> markanın --accent-* / --accent-grad değerleri                        */
.why-arazimax,
.svc-compare {
    --w-go: #16A34A;
    --w-go-deep: #15803D;
    --w-go-grad: linear-gradient(135deg, #15803D 0%, #22C55E 100%);
    --w-go-soft: #EFFAF2;
    --w-plus: var(--accent-2, #FB8500);
    --w-plus-deep: #EA580C;
    --w-plus-grad: linear-gradient(135deg, #FB8500 0%, #F97316 100%);
    --w-plus-soft: #FFF4E8;
}

/* ============================================================
   BÖLÜM BAŞLIĞI — kicker rozeti + altı çizili vurgu
   ============================================================ */
.why-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 7px 16px 7px 12px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--ink, #1c1c20);
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px -10px rgba(15,15,30,0.22), 0 1px 0 rgba(255,255,255,0.9) inset;
    backdrop-filter: blur(6px);
}
.wk-dot {
    position: relative;
    flex: 0 0 auto;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-grad, linear-gradient(135deg, #EF233C 0%, #FB8500 100%));
}
.wk-dot::after {
    content: "";
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(239,35,60,0.28);
    animation: wkPulse 2.4s ease-out infinite;
}
@keyframes wkPulse {
    0%   { transform: scale(.7); opacity: 1; }
    100% { transform: scale(1.35); opacity: 0; }
}
.wk-brand { font-weight: 900; letter-spacing: -0.2px; }
.wk-arazi {
    background: var(--accent-grad, linear-gradient(135deg, #EF233C 0%, #FB8500 100%));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.wk-max { color: var(--ink, #1c1c20); }

.why-head--hero .why-title {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.2px;
    margin: 0 0 20px;
}
/* Vurgulu ifadenin altındaki gradient çizgi.
   SVG yerine background kullanılır: ifade satır sonunda bölünürse
   çizgi de onunla birlikte bölünür, taşma olmaz. */
.why-title-mark {
    display: inline;
    padding-bottom: .06em;
    background-image: var(--accent-grad, linear-gradient(135deg, #EF233C 0%, #FB8500 100%));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% .09em;
    border-radius: 2px;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
    animation: wtuDraw 1s .2s var(--ease, ease) both;
}
@keyframes wtuDraw {
    from { background-size: 0 .09em; }
    to   { background-size: 100% .09em; }
}
@media (prefers-reduced-motion: reduce) {
    .why-title-mark { animation: none; background-size: 100% .09em; }
    .wk-dot::after { animation: none; opacity: 0; }
}

/* ============================================================
   KANIT KARTLARI (bento) — "Neden AraziMax" bölümünün gövdesi
   İlk kart iki kolon kaplar; kalan dördü 2x2 dizilir.
   ============================================================ */
.why-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.5vw, 18px);
}
.wp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(20px, 2.2vw, 28px);
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 14px 34px -22px rgba(15,15,30,0.22);
    transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease), border-color .25s var(--ease, ease);
    isolation: isolate;
    overflow: hidden;
}
.wp-card::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    opacity: 0;
    background: radial-gradient(420px 200px at 100% 0%, rgba(251,133,0,0.07), transparent 62%);
    transition: opacity .25s var(--ease, ease);
}
.wp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239,35,60,0.16);
    box-shadow: 0 26px 54px -26px rgba(239,35,60,0.28);
}
.wp-card:hover::before { opacity: 1; }

/* Öne çıkan ilk kart — iki kolon, koyu zemin, bölümün ana iddiası */
.wp-card--lead {
    grid-column: span 2;
    grid-row: span 2;
    justify-content: center;
    gap: 14px;
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(560px 240px at 90% 6%, rgba(251,133,0,0.30), transparent 62%),
        linear-gradient(155deg, #23232B 0%, #16161C 100%);
    box-shadow: 0 30px 66px -30px rgba(15,15,30,0.55);
}
.wp-card--lead:hover { border-color: transparent; box-shadow: 0 34px 74px -30px rgba(15,15,30,0.62); }
.wp-card--lead::before { display: none; }

.wp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px; height: 46px;
    border-radius: 14px;
    font-size: 1.3rem;
    color: var(--accent-deep);
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 1px rgba(239,35,60,0.10);
}
.wp-card--lead .wp-icon {
    width: 56px; height: 56px;
    font-size: 1.6rem;
    color: #fff;
    background: var(--w-plus-grad);
    box-shadow: 0 14px 28px -12px rgba(251,133,0,0.65);
}
.wp-card h3 {
    margin: 0;
    font-size: clamp(1.02rem, 1.3vw, 1.16rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.2px;
    color: var(--ink, #1c1c20);
    text-wrap: balance;
}
.wp-card--lead h3 {
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    color: #fff;
}
.wp-card p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.62;
    color: var(--muted, #5b5b62);
    text-wrap: pretty;
}
.wp-card p strong { color: var(--ink, #1c1c20); font-weight: 700; }
.wp-card--lead p {
    font-size: clamp(.96rem, 1.2vw, 1.05rem);
    color: rgba(255,255,255,0.80);
}
.wp-card--lead p strong { color: #fff; }
.wp-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    margin-top: 4px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .01em;
    color: #fff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(4px);
}

/* ============================================================
   STANDART KARŞILAŞTIRMASI — kategori seviyesinde, marka adı geçmez
   ============================================================ */
.why-std {
    margin-top: clamp(28px, 3.5vw, 44px);
    padding: clamp(22px, 3vw, 38px);
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 24px 62px -34px rgba(15,15,30,0.22);
}
.wstd-head { text-align: center; margin-bottom: clamp(18px, 2.4vw, 28px); }
.wstd-head h3 {
    margin: 0 0 8px;
    font-size: clamp(1.2rem, 2.1vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--ink, #1c1c20);
    text-wrap: balance;
}
.wstd-head p {
    margin: 0;
    font-size: .95rem;
    color: var(--muted, #5b5b62);
    text-wrap: pretty;
}
.wstd-head em { font-style: normal; font-weight: 700; color: var(--accent-deep); }

.wstd-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}
.wstd-row { display: contents; }
.wstd-cell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px clamp(12px, 1.5vw, 18px);
    font-size: .93rem;
    line-height: 1.5;
}
.wstd-row:not(.wstd-row--head) .wstd-cell { border-top: 1px solid rgba(0,0,0,0.05); }
.wstd-cell--old {
    background: #FAF9F7;
    color: #8b8880;
    box-shadow: inset -1px 0 0 rgba(0,0,0,0.05);
}
.wstd-cell--new {
    background: var(--w-go-soft);
    color: var(--ink, #1c1c20);
    font-weight: 600;
}
.wstd-row--head .wstd-cell {
    padding-top: 15px; padding-bottom: 13px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    align-items: center;
}
.wstd-row--head .wstd-cell--old { color: #a3a09a; }
.wstd-row--head .wstd-cell--new {
    color: var(--w-go-deep);
    box-shadow: inset 0 3px 0 var(--w-go);
}
/* Marka yazımı includes/logo.php ile birebir aynı: "Arazi" gradient, "Max" koyu. */
.wstd-brand { font-weight: 900; letter-spacing: -0.2px; text-transform: none; font-size: 1.02rem; }
.wstd-brand-a {
    background: var(--accent-grad, linear-gradient(135deg, #EF233C 0%, #FB8500 100%));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.wstd-brand-b { color: var(--ink, #1c1c20); font-weight: 900; }
.wstd-head-ico { font-size: .95rem; margin-right: 2px; opacity: .55; }
.wstd-m { flex: 0 0 auto; font-size: 1.05rem; line-height: 1.42; }
.wstd-m--old { color: #c6c3bc; }
.wstd-m--new { color: var(--w-go); }
.wstd-cell--old span { text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.14); }

.wstd-foot {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 16px 0 0;
    font-size: .87rem;
    line-height: 1.55;
    color: var(--muted-2, #7a7a80);
    text-wrap: pretty;
}
.wstd-foot i { flex: 0 0 auto; margin-top: 2px; color: var(--accent); }

/* ---- CTA ---- */
.why-cta {
    margin-top: clamp(24px, 3vw, 36px);
    text-align: center;
}
.why-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.why-actions .btn { gap: 8px; }
.why-btn-go {
    background: var(--w-go-grad);
    color: #fff;
    border: 0;
    box-shadow: 0 16px 32px -16px rgba(22,163,74,0.65);
}
.why-btn-go:hover { filter: brightness(1.06); color: #fff; transform: translateY(-2px); }
.why-btn-plus {
    background: var(--w-plus-grad);
    color: #fff;
    border: 0;
    box-shadow: 0 16px 32px -16px rgba(251,133,0,0.7);
}
.why-btn-plus:hover { filter: brightness(1.06); color: #fff; transform: translateY(-2px); }
.why-btn-ghost {
    background: #fff;
    color: var(--accent-deep);
    border: 1.5px solid rgba(239, 35, 60, 0.25);
}
.why-btn-ghost:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}

/* ---- Tablet ---- */
@media (max-width: 900px) {
    .why-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wp-card--lead { grid-column: span 2; grid-row: auto; }
}

/* ---- Mobil ---- */
@media (max-width: 620px) {
    .why-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
    .why-sub { font-size: .95rem; text-wrap: pretty; }
    .why-proof { grid-template-columns: minmax(0, 1fr); gap: 12px; }
    .wp-card { grid-column: auto !important; padding: 18px 16px; border-radius: 16px; }
    .wp-card--lead h3 { font-size: 1.32rem; }
    .wp-icon { width: 42px; height: 42px; font-size: 1.15rem; border-radius: 12px; }
    .wp-card--lead .wp-icon { width: 48px; height: 48px; font-size: 1.3rem; }
    .wp-card p { font-size: .88rem; }

    .why-std { padding: 16px 12px; border-radius: 18px; }
    .wstd-cell { padding: 12px 10px; font-size: .86rem; gap: 8px; }
    .wstd-row--head .wstd-cell { font-size: .64rem; letter-spacing: .06em; }
    .wstd-brand { font-size: .8rem; }

    .why-actions { gap: 10px; }
    .why-actions .btn { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 380px) {
    .wstd-cell { padding: 10px 8px; font-size: .8rem; }
    .wstd-m { font-size: .92rem; }
}
@media (prefers-reduced-motion: reduce) {
    .wp-card:hover { transform: none; }
    .why-actions .btn:hover { transform: none; }
}

/* ============================================================
   SSS (FAQ) — iki kolonlu: solda sabit panel, sağda akordeon
   Sekmeler yalnızca filtre; JS kapalıysa tüm sorular görünür kalır.
   ============================================================ */
.faq-section {
    position: relative;
    padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 96px);
    isolation: isolate;
    overflow: hidden;
}
.faq-bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(680px 300px at 12% 6%, rgba(239, 35, 60, 0.055), transparent 62%),
        radial-gradient(560px 280px at 92% 88%, rgba(251, 133, 0, 0.055), transparent 62%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 45%, var(--bg) 100%);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: clamp(24px, 3.5vw, 56px);
    align-items: start;
}
.faq-aside-inner { position: sticky; top: 100px; }

.faq-title {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1px;
    margin: 0 0 14px;
    color: var(--ink);
    text-wrap: balance;
}
.faq-sub {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    text-wrap: pretty;
}
.faq-sub strong { color: var(--ink); font-weight: 700; }

/* ---- Kategori sekmeleri: masaüstünde dikey liste ---- */
.faq-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 26px;
}
.faq-tab {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    font-family: inherit;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    color: var(--muted, #5b5b62);
    background: var(--bg-paper, #fff);
    border: 1.5px solid var(--line, rgba(0,0,0,0.07));
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s var(--ease, ease), box-shadow .2s ease;
}
.faq-tab i { font-size: 1rem; opacity: .8; }
.faq-tab > span:not(.faq-tab-count) { flex: 1 1 auto; }
.faq-tab:hover {
    color: var(--accent-deep);
    border-color: rgba(239,35,60,0.26);
    transform: translateX(2px);
}
.faq-tab.is-active {
    color: #fff;
    background: var(--accent-grad, linear-gradient(135deg, #D90429 0%, #EF233C 100%));
    border-color: transparent;
    box-shadow: 0 14px 28px -14px rgba(239,35,60,0.7);
}
.faq-tab.is-active i { opacity: 1; }
.faq-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px; height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    color: var(--muted-2, #7a7a80);
    background: rgba(0,0,0,0.05);
}
.faq-tab.is-active .faq-tab-count { color: #fff; background: rgba(255,255,255,0.22); }

/* ---- Sol paneldeki WhatsApp kartı ---- */
.faq-help {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(360px 160px at 88% 4%, rgba(37, 211, 102, 0.28), transparent 62%),
        linear-gradient(155deg, #23232B 0%, #16161C 100%);
    box-shadow: 0 24px 48px -28px rgba(15,15,30,0.55);
}
.faq-help-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px; height: 42px;
    border-radius: 13px;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 12px 24px -12px rgba(37, 211, 102, 0.75);
}
.faq-help-text { flex: 1 1 140px; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.faq-help-text strong { font-size: .95rem; font-weight: 800; }
.faq-help-text span { font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,0.72); text-wrap: pretty; }
.faq-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 700;
    color: #16161C;
    background: #fff;
    transition: transform .2s var(--ease, ease), box-shadow .2s ease;
}
.faq-help-btn:hover { color: #16161C; transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(0,0,0,0.5); }

/* ---- Akordeon ---- */
.faq-list-wrap { display: flex; flex-direction: column; gap: 10px; }
.sss-item {
    border-radius: 18px;
    background: var(--bg-paper, #fff);
    border: 1.5px solid var(--line, rgba(0,0,0,0.07));
    box-shadow: 0 10px 26px -22px rgba(15,15,30,0.3);
    overflow: hidden;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease, ease);
}
.sss-item:hover { border-color: rgba(239,35,60,0.22); transform: translateY(-2px); }
.sss-item[open] {
    border-color: rgba(239,35,60,0.28);
    box-shadow: 0 26px 54px -30px rgba(239,35,60,0.35);
}
.sss-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--ink);
    text-wrap: pretty;
    transition: color .18s ease;
}
.sss-q::-webkit-details-marker { display: none; }
.sss-q:hover { color: var(--accent-deep); }
.sss-q-num {
    flex: 0 0 auto;
    font-family: var(--font-display, inherit);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: var(--muted-2, #a8a5a0);
    transition: color .2s ease;
}
.sss-q-text { flex: 1 1 auto; min-width: 0; }
.sss-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: .82rem;
    color: var(--muted-2, #7a7a80);
    background: rgba(0,0,0,0.045);
    transition: transform .28s var(--ease, ease), background .22s ease, color .22s ease;
}
.sss-item[open] > .sss-q { color: var(--accent-deep); }
.sss-item[open] .sss-q-num { color: var(--accent); }
.sss-item[open] .sss-toggle {
    transform: rotate(135deg);
    color: #fff;
    background: var(--accent-grad, linear-gradient(135deg, #D90429 0%, #EF233C 100%));
}
.sss-a { padding: 0 20px 20px 55px; }
.sss-a p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.72;
    text-wrap: pretty;
}
.sss-a-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--accent-deep);
    background: var(--accent-soft);
    border: 1px solid rgba(239, 35, 60, 0.14);
}
.sss-a-tag i { font-size: .8rem; }
.sss-item[open] .sss-a { animation: sssReveal .3s var(--ease, ease) both; }
@keyframes sssReveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}
.sss-item[hidden] { display: none; }
.faq-empty {
    margin: 0;
    padding: 34px 6px;
    text-align: center;
    font-size: .93rem;
    color: var(--muted-2, #7a7a80);
}

/* ---- Alt CTA ---- */
.faq-foot {
    margin-top: clamp(32px, 4vw, 52px);
    text-align: center;
}
.faq-foot p {
    margin: 0 0 16px;
    font-weight: 600;
    color: var(--muted);
    text-wrap: pretty;
}
.faq-foot-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.faq-section .why-btn-go,
.faq-section .why-btn-ghost { gap: 8px; }
.faq-section .why-btn-go {
    --w-go-grad: linear-gradient(135deg, #15803D 0%, #22C55E 100%);
    background: var(--w-go-grad);
    color: #fff;
    border: 0;
    box-shadow: 0 16px 32px -16px rgba(22,163,74,0.65);
}

/* ---- Tablet: tek kolona düşer, sekmeler yatay olur ---- */
@media (max-width: 900px) {
    /* Tek kolona düşerken panel parçaları tek tek sıralanır; böylece
       yardım kartı soruların ÖNÜNE geçip listeyi aşağı itmez. */
    .faq-layout { display: flex; flex-direction: column; gap: 18px; }
    .faq-aside, .faq-aside-inner { display: contents; }
    .faq-section .why-kicker { order: 1; align-self: center; margin-bottom: 0; }
    .faq-title { order: 2; text-align: center; margin-bottom: 0; }
    .faq-sub   { order: 3; text-align: center; margin-bottom: 0; }
    .faq-tabs  { order: 4; margin-bottom: 0; }
    .faq-main  { order: 5; }
    .faq-help  { order: 6; max-width: 560px; width: 100%; margin: 6px auto 0; text-align: left; }
    .faq-title-br { display: none; }
    .faq-tabs { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
    .faq-tab { width: auto; padding: 9px 15px; border-radius: 999px; font-size: .86rem; }
    .faq-tab > span:not(.faq-tab-count) { flex: 0 0 auto; }
    .faq-tab:hover { transform: translateY(-1px); }
}

/* ---- Mobil ---- */
@media (max-width: 620px) {
    .faq-sub { font-size: .93rem; }
    .faq-tab { padding: 8px 12px; font-size: .8rem; gap: 7px; }
    .faq-tab i { display: none; }
    .sss-q { padding: 15px 15px; gap: 10px; font-size: .93rem; }
    .sss-q-num { font-size: .74rem; }
    .sss-toggle { width: 26px; height: 26px; font-size: .74rem; }
    .sss-a { padding: 0 15px 17px 40px; }
    .sss-a p { font-size: .89rem; }
    .faq-foot-actions .btn { flex: 1 1 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .sss-item[open] .sss-a { animation: none; }
    .sss-item:hover { transform: none; }
    .sss-toggle { transition: none; }
    .faq-tab:hover { transform: none; }
    .faq-help-btn:hover { transform: none; }
}

/* Hero CTAs — dar telefonda fiyat butonu tam genişlik, altında Örnekleri İzle */
@media (max-width: 480px) {
    .hero-copy .hero-actions { flex-wrap: wrap; align-items: stretch; gap: 10px; }
    .hero-copy .hero-cta-prices { display: flex; width: 100%; }
    .hero-copy .hcp { flex: 1 1 0; justify-content: center; padding: 11px 6px; column-gap: 8px; }
    .hero-copy .hcp-arrow { width: 26px; height: 26px; font-size: 0.82rem; }
    .hero-copy .btn-watch {
        flex: 1 1 100%;
        justify-content: center;
        padding: 11px 12px 11px 11px !important;
        gap: 8px;
    }
    .hero-copy .btn-watch-icon { width: 28px; height: 28px; font-size: 0.82rem; }
    .hero-copy .btn-watch-text { font-size: 0.86rem; }
}

/* ---------- İletişim sayfası — kompakt, scroll-suz layout ---------- */
.contact-section {
    padding: clamp(90px, 11vh, 130px) 0 clamp(28px, 4vh, 48px);
}
.contact-section .contact-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(20px, 2.5vw, 36px);
    align-items: stretch;
}
.contact-section .contact-info,
.contact-section .contact-form {
    padding: clamp(22px, 2.4vw, 34px) clamp(22px, 2.4vw, 32px);
}
.contact-section .contact-info h2,
.contact-section .contact-form h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    margin: 0 0 6px;
    line-height: 1.15;
}
.contact-section .contact-info .lead {
    margin: 0 0 14px;
    font-size: 0.92rem;
    line-height: 1.45;
}
.contact-section .contact-info ul {
    margin-top: 8px;
    gap: 12px;
}
.contact-section .contact-info li {
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.35;
}
.contact-section .contact-info li i {
    width: 36px; height: 36px;
    font-size: 0.92rem;
    border-radius: 10px;
}
.contact-section .contact-info li strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
}
.contact-section .contact-info li span,
.contact-section .contact-info li a {
    font-size: 0.9rem;
}
.contact-section .form-sub {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0 0 14px;
}
.contact-section .form-row { margin-bottom: 10px; gap: 12px; }
.contact-section .form-label {
    font-size: 0.8rem;
    margin-bottom: 4px;
}
.contact-section input,
.contact-section textarea {
    padding: 9px 12px;
    font-size: 0.92rem;
}
.contact-section textarea { resize: vertical; min-height: 84px; }
.contact-section .btn-lg { padding: 11px 18px; font-size: 0.95rem; }
.contact-section .form-foot {
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    margin: 8px 0 0;
}
.contact-section .alert { padding: 10px 14px; font-size: 0.88rem; margin-bottom: 12px; }

@media (max-width: 900px) {
    .contact-section { padding: 84px 0 16px; }
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .contact-section .contact-info,
    .contact-section .contact-form { padding: 18px 18px; }
    .contact-section .contact-info ul { gap: 8px; }
    .contact-section .contact-info li { font-size: 0.84rem; }
    .contact-section .contact-info li i { width: 32px; height: 32px; font-size: 0.85rem; }
    .contact-section .contact-info h2,
    .contact-section .contact-form h2 { font-size: 1.2rem; }
    .contact-section textarea { min-height: 70px; }
    .contact-section .form-row { margin-bottom: 8px; }
}

/* İletişim — footer tarzı yeşil WhatsApp linki */
.contact-section .contact-whatsapp-link {
    color: #25D366 !important;
    font-weight: 700;
}
.contact-section .contact-whatsapp-link:hover {
    color: #1ebe5d !important;
}
.contact-section .contact-info li .bi-whatsapp { color: #25D366; }

/* İçerik daha yayık */
.contact-section .contact-info,
.contact-section .contact-form {
    padding: clamp(28px, 3vw, 44px) clamp(26px, 3vw, 42px);
}
.contact-section .contact-info ul { gap: 18px; margin-top: 4px; }
.contact-section .contact-info li { font-size: 0.95rem; }
.contact-section .contact-info li i { width: 40px; height: 40px; font-size: 1rem; }
.contact-section .contact-info .lead { font-size: 0.98rem; margin-bottom: 6px; }

/* Telefon input — kart içine entegre */
.contact-section .phone-input {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.contact-section .phone-input__prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    background: rgba(0,0,0,0.04);
    border-right: 1px solid var(--line);
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
    white-space: nowrap;
}
.contact-section .phone-input__flag {
    width: 22px; height: 16px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-block;
}
.contact-section .phone-input input {
    border: 0 !important;
    border-radius: 0 !important;
    flex: 1;
    background: transparent;
}
.contact-section .phone-input:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.12);
}

/* KVKK checkbox */
.contact-section .kvkk-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
    cursor: pointer;
}
.contact-section .kvkk-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
    cursor: pointer;
}
.contact-section .kvkk-check a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-section .contact-info ul { gap: 12px; }
}

/* ---------- Pricing Stack (Fiyatlandırma — Go + Plus+) ---------- */
.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 2.6vw, 34px);
}
.pricing-stack .pricing-card {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
.pricing-card-go {
    --go: #16A34A;
    --go-deep: #15803D;
    --go-grad: linear-gradient(135deg, #15803D 0%, #22C55E 100%);
    --go-soft: #EFFAF2;
}
.pricing-card-go::before { background: var(--go-grad); }

/* Kart köşe rozeti */
.pricing-flag {
    position: absolute;
    top: 18px; right: 20px;
    color: #fff;
    padding: 6px 13px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
    z-index: 2;
}
.pricing-flag-go {
    background: var(--go-grad);
    box-shadow: 0 8px 18px -8px rgba(22, 163, 74, 0.6);
}
.pricing-flag-plus {
    background: var(--ink);
    box-shadow: 0 8px 18px -8px rgba(11, 11, 15, 0.5);
}

/* İsim ve tagline */
.pricing-name-arazi-ink { color: var(--ink); font-weight: 800; }
.pricing-name-go {
    background: var(--go-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.pricing-name-plus {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.pricing-tagline {
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 12px;
}
.pricing-tagline strong { color: var(--ink); font-weight: 700; }

/* Go — yeşil vurgular */
.pricing-card-go .pricing-toggle-btn.is-active {
    background: var(--go-grad);
    box-shadow: 0 10px 22px -10px rgba(22, 163, 74, 0.55);
}
.pricing-card-go .pricing-amount,
.pricing-card-go .pricing-qty-num {
    background: var(--go-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 16px rgba(22, 163, 74, 0.22));
}
.pricing-card-go .pricing-old { text-decoration-color: rgba(22, 163, 74, 0.55); }
.pricing-card-go .pricing-note {
    background: var(--go-soft);
    border-color: rgba(22, 163, 74, 0.18);
}
.pricing-card-go .pricing-note i { color: var(--go); }
.pricing-card-go .pricing-features li i {
    background: var(--go-grad);
    box-shadow: 0 6px 14px -6px rgba(22, 163, 74, 0.5);
}
.pricing-card-go .pricing-trust .trust-item i { color: var(--go); }
.pricing-card-go .btn-buy-now {
    border-color: rgba(22, 163, 74, 0.9);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FBF3 100%);
    box-shadow:
        0 18px 36px -16px rgba(22, 163, 74, 0.35),
        0 10px 22px -10px rgba(11, 11, 15, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    animation: buyPulseGo 3s var(--ease) infinite;
}
.pricing-card-go .btn-buy-now::before {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.06), rgba(34, 197, 94, 0.10));
}
.pricing-card-go .btn-buy-now::after {
    background: linear-gradient(110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.0) 30%,
        rgba(34, 197, 94, 0.35) 50%,
        rgba(255, 255, 255, 0.0) 70%,
        transparent 100%);
}
@keyframes buyPulseGo {
    0%, 100% {
        box-shadow:
            0 18px 36px -16px rgba(22, 163, 74, 0.35),
            0 10px 22px -10px rgba(11, 11, 15, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
    50% {
        box-shadow:
            0 22px 44px -14px rgba(22, 163, 74, 0.50),
            0 12px 24px -10px rgba(11, 11, 15, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
}
.pricing-card-go .btn-buy-now:hover {
    border-color: rgba(22, 163, 74, 1);
    box-shadow:
        0 26px 50px -16px rgba(22, 163, 74, 0.50),
        0 14px 28px -12px rgba(11, 11, 15, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.pricing-card-go .btn-buy-label {
    background: var(--go-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-card-go .btn-buy-arrow {
    color: var(--go);
    -webkit-text-fill-color: var(--go);
}

/* Fark maddeleri — vurgulu satırlar (teslimat & lokasyon) */
.pricing-card-wide {
    --hl-bg: var(--accent-soft);
    --hl-border: rgba(239, 35, 60, 0.32);
    --hl-strong: var(--accent-deep);
}
.pricing-card-go {
    --hl-bg: #EFFAF2;
    --hl-border: rgba(22, 163, 74, 0.4);
    --hl-strong: #15803D;
}
.pricing-features li.is-highlight {
    padding: 11px 13px;
    background: var(--hl-bg, var(--accent-soft));
    border: 1px dashed var(--hl-border, rgba(239, 35, 60, 0.32));
    border-radius: var(--radius);
}
.pricing-features li.is-highlight strong { color: var(--hl-strong, var(--ink)); }

/* Ödeme güvenliği — iki kartın altında ortak */
.pricing-duo-footer {
    max-width: 620px;
    margin: clamp(18px, 2.2vw, 26px) auto 0;
}

/* ---------- Service Switch (Go / Plus+ karşılaştırmalı sekmeler) ---------- */
.br-desktop { display: none; }
@media (min-width: 561px) { .br-desktop { display: inline; } }

.service-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 1.6vw, 20px);
    max-width: 780px;
    margin: 0 auto clamp(20px, 2.4vw, 30px);
}
/* Hero sürümü — dar kolona sığan kompakt kartlar.
   Burada seçim yapılmaz: iki kart da her zaman aktif görünür. */
.service-switch--hero {
    max-width: 100%;
    margin: 0 0 clamp(18px, 2vw, 26px);
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}
.service-switch--hero .service-switch-btn {
    padding: 14px 16px 12px;
    gap: 7px;
    border-radius: 16px;
    box-shadow: 0 6px 18px -12px rgba(11, 11, 15, .25);
}
/* Hero'da seçim yok: iki kart da "seçili" görünümündedir.
   Soluklaştırma (opacity .82) ve alttaki seçim oku burada devre dışı. */
.service-switch--hero .service-switch-btn,
.service-switch--hero .service-switch-btn:not(.is-active) { opacity: 1; }
.service-switch--hero .service-switch-btn::before { opacity: 1; height: 5px; }
.service-switch--hero .service-switch-btn::after { display: none; }
.service-switch--hero .service-switch-go {
    border-color: #16A34A;
    box-shadow: 0 14px 30px -18px rgba(22, 163, 74, .5);
}
.service-switch--hero .service-switch-plus {
    border-color: var(--accent, #EF233C);
    box-shadow: 0 14px 30px -18px rgba(239, 35, 60, .5);
}
.service-switch--hero .service-switch-go:hover {
    border-color: #16A34A;
    box-shadow: 0 20px 38px -18px rgba(22, 163, 74, .6);
}
.service-switch--hero .service-switch-plus:hover {
    border-color: var(--accent, #EF233C);
    box-shadow: 0 20px 38px -18px rgba(239, 35, 60, .6);
}
.service-switch--hero .service-switch-btn:hover { transform: translateY(-2px); }

.service-switch--hero .ssb-name { font-size: clamp(.98rem, 1.5vw, 1.18rem); }
.service-switch--hero .ssb-head { flex-wrap: nowrap; align-items: center; gap: 6px; }
.service-switch--hero .ssb-name { white-space: nowrap; min-width: 0; }
.service-switch--hero .ssb-badge { font-size: .56rem; padding: 3px 7px; white-space: nowrap; flex-shrink: 0; }
.service-switch--hero .ssb-price { font-size: .92rem; }
.service-switch--hero .ssb-price strong { font-size: 1.58rem; }
.service-switch--hero .ssb-specs { gap: 6px; }
.service-switch--hero .ssb-spec { font-size: clamp(.63rem, 1.15vw, .78rem); gap: 7px; letter-spacing: -.005em; }
.service-switch--hero .ssb-spec > span { white-space: nowrap; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.service-switch--hero .ssb-kisa { display: none; }
.service-switch--hero .ssb-spec { min-width: 0; }
.service-switch--hero .ssb-spec i { width: 23px; height: 23px; font-size: .76rem; }
.service-switch--hero .ssb-state { display: none; }

/* Örnekleri İncele — siyah zemin, turuncu yazı; iki beyaz kartın altında karşıt duruş.
   Turuncu bu düğmeye özeldir (#FF6200); marka değişkeni --accent-2 bilerek kullanılmaz. */
.ss-ornek {
    grid-column: 1 / -1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 14px;
    border: none;
    background: #0B0B0F;
    color: #FF6200;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .94rem;
    letter-spacing: -.005em;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 10px 24px -14px rgba(11, 11, 15, .55);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s var(--ease);
}
.ss-ornek:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -14px rgba(11, 11, 15, .6);
    filter: brightness(1.08);
    color: #FF6200;
}
.ss-ornek:active { transform: translateY(0) scale(.995); }

/* Oynat ikonu: markanın gradyanı */
.ss-ornek-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px; height: 27px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    font-size: .8rem;
    padding-left: 2px;
    backdrop-filter: blur(4px);
    transition: transform .22s var(--ease);
}
.ss-ornek:hover .ss-ornek-ico { transform: scale(1.08); }

.ss-ornek-ad { color: #FF6200; }
.ss-ornek-ok { font-size: .84rem; color: rgba(255, 98, 0, .6); transition: transform .22s var(--ease), color .22s var(--ease); }
.ss-ornek:hover .ss-ornek-ok { transform: translateX(4px); color: #FF6200; }

/* Yavaşça geçen parıltı */
.ss-ornek-parilti {
    position: absolute;
    top: 0; bottom: 0; left: -55%;
    width: 40%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.10) 45%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.10) 55%, transparent 100%);
    transform: skewX(-18deg);
    z-index: -1;
    animation: ssOrnekShine 6s var(--ease) infinite;
    animation-delay: 1.6s;
}
@keyframes ssOrnekShine {
    0%   { left: -55%; }
    20%  { left: 130%; }
    100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) { .ss-ornek-parilti { animation: none; } }

/* Mobil: iki kart yan yana kalsın, örnek butonu altta ve daha küçük */
@media (max-width: 560px) {
    .service-switch--hero {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .service-switch--hero .service-switch-btn { padding: 12px 9px 10px; border-radius: 14px; }
    .service-switch--hero .ssb-spec i { display: none; }
    .service-switch--hero .ssb-spec { gap: 0; }
    .service-switch--hero .ssb-name { font-size: .92rem; }
    .service-switch--hero .ssb-price strong { font-size: 1.34rem; }
    .service-switch--hero .ssb-price { font-size: .8rem; }
    .service-switch--hero .ssb-spec { font-size: .615rem; }
    .service-switch--hero .ssb-uzun { display: none; }
    .service-switch--hero .ssb-kisa { display: inline; }
    .service-switch--hero .ssb-head { flex-wrap: nowrap; row-gap: 0; }
    .service-switch--hero .ssb-badge { font-size: .46rem; padding: 2px 5px; letter-spacing: .04em; white-space: nowrap; }
    .service-switch--hero .ssb-name { font-size: .86rem; }
    .ss-ornek { padding: 11px 14px; font-size: .85rem; gap: 8px; border-radius: 12px; }
    .ss-ornek-ico { width: 23px; height: 23px; font-size: .73rem; }
    .ss-ornek-ok { font-size: .78rem; }
}

.service-switch-btn {
    padding: 14px 16px 12px;
    gap: 7px;
    border-radius: 16px;
    box-shadow: 0 6px 18px -12px rgba(11, 11, 15, .25);
}
.service-switch-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px 22px 16px;
    text-align: left;
    background: var(--bg-paper);
    border: 2px solid var(--line);
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
    overflow: hidden;
}
.service-switch-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    opacity: 0.55;
    transition: opacity .25s var(--ease);
}
.service-switch-go::before { background: linear-gradient(135deg, #15803D 0%, #22C55E 100%); }
.service-switch-plus::before { background: var(--accent-grad); }

.ssb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.ssb-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.ssb-arazi, .ssb-max { color: var(--ink); }
.service-switch-go .ssb-variant {
    background: linear-gradient(135deg, #15803D 0%, #22C55E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-switch-plus .ssb-variant {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ssb-badge {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
    color: #fff;
    padding: 5px 9px;
    border-radius: var(--radius-sm);
}
.service-switch-go .ssb-badge { background: linear-gradient(135deg, #15803D 0%, #22C55E 100%); }
.service-switch-plus .ssb-badge { background: var(--ink); }

.ssb-price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.ssb-price strong {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.service-switch-go .ssb-price strong {
    background: linear-gradient(135deg, #15803D 0%, #22C55E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-switch-plus .ssb-price strong {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Go'nun eski fiyatı (499) yeni fiyatın solunda üstü çizili durur. */
.ssb-price-old {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--muted);
    opacity: .75;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(239, 35, 60, 0.55);
}
.ptb-sub s {
    opacity: .6;
    margin-right: 4px;
    text-decoration-thickness: 1.5px;
}
.ssb-price em {
    font-style: normal;
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ssb-specs {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 10px;
    border-top: 1px dashed var(--line-strong);
}
.ssb-spec {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.35;
}
.ssb-spec strong { color: var(--ink); font-weight: 800; }
.ssb-spec i {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
}
.service-switch-go .ssb-spec i { background: linear-gradient(135deg, #15803D 0%, #22C55E 100%); }
.service-switch-plus .ssb-spec i { background: var(--accent-grad); }

.ssb-state {
    margin-top: 2px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
}
.ssb-state-on { display: none; align-items: center; gap: 6px; }
.ssb-state-off { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.ssb-state-off i { transition: transform .25s var(--ease); }
.service-switch-btn:hover .ssb-state-off i { transform: translateX(3px); }

/* Aktif sekme */
.service-switch-go.is-active { border-color: #16A34A; box-shadow: 0 16px 34px -16px rgba(22, 163, 74, 0.45); }
.service-switch-plus.is-active { border-color: var(--accent); box-shadow: 0 16px 34px -16px rgba(239, 35, 60, 0.45); }
.service-switch-btn.is-active::before { opacity: 1; }
.service-switch-btn.is-active .ssb-state-on { display: inline-flex; }
.service-switch-btn.is-active .ssb-state-off { display: none; }
.service-switch-go.is-active .ssb-state-on { color: #15803D; }
.service-switch-plus.is-active .ssb-state-on { color: var(--accent-deep); }
.service-switch-btn:not(.is-active) { opacity: 0.82; }
.service-switch-btn:not(.is-active):hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--line-strong);
}
.service-switch-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (max-width: 560px) {
    .service-switch { gap: 10px; }
    .service-switch-btn { padding: 14px 13px 12px; gap: 8px; border-radius: var(--radius); }
    .ssb-name { font-size: 1.02rem; }
    .ssb-head { flex-wrap: wrap; align-items: flex-start; row-gap: 5px; }
    .ssb-badge { font-size: 0.54rem; padding: 4px 7px; letter-spacing: 0.08em; }
    .ssb-price strong { font-size: 1.5rem; }
    .ssb-price { font-size: 0.9rem; }
    .ssb-price em { font-size: 0.6rem; }
    .ssb-spec { font-size: 0.74rem; gap: 7px; }
    .ssb-spec i { width: 20px; height: 20px; font-size: 0.68rem; border-radius: 6px; }
    .ssb-state { font-size: 0.72rem; }
}

/* Panel geçişi */
[data-service-panel].is-service-hidden { display: none; }
[data-service-panel] {
    animation: servicePanelIn .35s var(--ease);
}
@keyframes servicePanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
    .service-switch { gap: 7px; padding: 6px; }
    .service-switch-btn { padding: 11px 8px; gap: 3px; }
    .ssb-name { font-size: 1.08rem; }
    .ssb-sub { font-size: 0.68rem; }
}

/* Dar ekranda köşe rozeti güven çipleriyle çakışmasın */
@media (max-width: 980px) {
    .pricing-card-wide .pricing-trust-top { margin-top: 34px; }
}

/* Rozet ile paket toggle'ı arasında nefes payı */
@media (min-width: 981px) {
    .pricing-card-wide .pricing-right { padding-top: 44px; }
}

/* ---------- Fiyatlandırma — ince rötuşlar (polish) ---------- */

/* Hero'ya çok hafif renk yıkaması: sayfaya derinlik, dikkat switcher'a */
.pricing-hero {
    background:
        radial-gradient(720px 320px at 18% 0%, rgba(34, 197, 94, 0.05), transparent 65%),
        radial-gradient(720px 320px at 82% 0%, rgba(251, 133, 0, 0.06), transparent 65%);
}

/* Seçim kartları: aktif olan hafif yükselir, üst şerit kalınlaşır */
.service-switch-btn { will-change: transform; }
.service-switch-btn.is-active {
    transform: translateY(-3px);
}
.service-switch-btn.is-active::before { height: 5px; }
.service-switch-btn:active { transform: translateY(0) scale(0.99); }

/* Aktif kartın altına renkli "işaretçi" ok — hangi panelin açık olduğu netleşir */
.service-switch-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 14px; height: 14px;
    transform: translateX(-50%) rotate(45deg) scale(0);
    border-radius: 3px;
    transition: transform .25s var(--ease);
    z-index: 1;
}
.service-switch-go::after { background: #16A34A; }
.service-switch-plus::after { background: var(--accent); }
.service-switch-btn.is-active::after { transform: translateX(-50%) rotate(45deg) scale(1); }

/* Telefon mockup'ın altına yumuşak zemin gölgesi — havada durmasın */
.pricing-card-wide .pricing-video::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 62%;
    height: 26px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(11, 11, 15, 0.18), transparent 68%);
    filter: blur(6px);
    z-index: -1;
    pointer-events: none;
}

/* Özellik satırları: hover'da çok hafif vurgu (masaüstü) */
@media (hover: hover) {
    .pricing-features li {
        border-radius: var(--radius-sm);
        transition: background .2s var(--ease);
        padding: 4px 6px;
        margin: -4px -6px;
    }
    .pricing-features li:hover { background: rgba(11, 11, 15, 0.025); }
    .pricing-features li.is-highlight { margin: 0; padding: 11px 13px; }
}

/* Fiyat bloğu: rakam değişince yumuşak giriş */
@keyframes amountIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pricing-amount.is-swapped { animation: amountIn .3s var(--ease); }

/* Panel geçişi biraz daha zarif: hafif yukarı + soluklaşma zaten var, süreyi uzat */
[data-service-panel] { animation-duration: .42s; }

/* Mobil ritim: başlık ile kartlar arası nefes, switcher kartları daha dokunulabilir */
@media (max-width: 560px) {
    .pricing-hero .section-head { margin-bottom: 16px; }
    .pricing-hero .section-head .lead { font-size: 0.92rem; }
    .service-switch-btn { min-height: 44px; }
    .service-switch-btn.is-active { transform: translateY(-2px); }
    .pricing-card-wide .pricing-video::after { width: 70%; height: 18px; bottom: 10px; }
}

/* Hareket azaltma tercihi olanlara saygı */
@media (prefers-reduced-motion: reduce) {
    [data-service-panel],
    .pricing-amount.is-swapped,
    .service-switch-btn,
    .service-switch-btn::after { animation: none; transition: none; }
}

/* ---------- Seçim kartı: "Seçili · Detaylar ↓" satırı ---------- */
.ssb-state-on {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.ssb-selected {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ssb-details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-weight: 700;
}
.ssb-details i {
    font-size: 0.85em;
    animation: detailsNudge 1.6s var(--ease) infinite;
}
.service-switch-go.is-active .ssb-details { color: #15803D; }
.service-switch-plus.is-active .ssb-details { color: var(--accent-deep); }
@keyframes detailsNudge {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(3px); }
}
@media (prefers-reduced-motion: reduce) {
    .ssb-details i { animation: none; }
}

/* Lead metninde hizmet adları — kart kimlikleriyle aynı renk (Go yeşil / Plus+ turuncu) */
.pricing-hero .lead .lead-go,
.pricing-hero .lead .lead-plus {
    font-weight: 800;
    white-space: nowrap;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-hero .lead .lead-go   { background-image: linear-gradient(135deg, #15803D 0%, #22C55E 100%); }
.pricing-hero .lead .lead-plus { background-image: var(--accent-grad); }

/* ---- "go" wordmark: küçük harf + bir tık daha ince (Go'nun kimliği) ---- */
.service-switch-go .ssb-variant-go { font-weight: 700; letter-spacing: 0.01em; }
.pricing-name-go { font-weight: 700 !important; }
.pricing-hero .lead .lead-go .go-sfx { font-weight: 600; }

/* ---- Lead karşılaştırma satırı: kendi satırında, masaüstünde tek satır ---- */
.pricing-hero .lead-compare {
    margin-top: 6px;
    font-weight: 600;
    color: var(--ink-soft);
}
@media (min-width: 760px) {
    .pricing-hero .lead-compare { white-space: nowrap; font-size: 1.02rem; }
}

/* Tek satırlık güven notu — Go yeşilinden Plus turuncusuna geçen gradient.
   İki hizmetin rengini birleştirir; renk desteği yoksa düz yeşile düşer. */
.pricing-hero .lead-nofee {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    line-height: 1.35;
    color: #16A34A;
    background: linear-gradient(100deg, #16A34A 0%, #22C55E 34%, #FB8500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 620px) {
    .pricing-hero .lead-nofee { white-space: nowrap; font-size: 1.12rem; }
}
@media (max-width: 400px) {
    .pricing-hero .lead-nofee { font-size: 0.92rem; }
}

/* ---- "plus" wordmark: küçük harf + bir tık daha ince (go ile simetrik) ---- */
.service-switch-plus .ssb-variant-plus { font-weight: 700; letter-spacing: 0.01em; }
.pricing-name-plus { font-weight: 700 !important; }
.pricing-hero .lead .lead-plus .plus-sfx { font-weight: 600; }

/* ============================================================
   YÜZEN HİZMET ANAHTARI
   Fiyat bölümünde aşağı kaydırıldığında ekranın altında belirir;
   Go/Plus kıyaslaması için sayfanın başına dönmeyi gereksiz kılar.
   Segment kontrolü: her taraf kendi marka rengini taşır, kabın
   ışıması seçili hizmete göre yeşilden turuncuya döner.
   ============================================================ */
.svc-mini {
    --smi-go-deep:   #15803D;
    --smi-go-lite:   #22C55E;
    --smi-go-soft:   #EFFAF2;
    --smi-plus-deep: #EA580C;
    --smi-plus-lite: #FB8500;
    --smi-plus-soft: #FFF4EC;

    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 16px 42px -14px rgba(15, 23, 42, 0.30),
                0 2px 8px rgba(15, 23, 42, 0.06);
    opacity: 0;
    transform: translate(-50%, 18px) scale(0.96);
    transition: opacity .26s cubic-bezier(.22,1,.36,1),
                transform .26s cubic-bezier(.22,1,.36,1),
                box-shadow .3s ease,
                border-color .3s ease;
    max-width: calc(100vw - 20px);
}
.svc-mini.is-in { opacity: 1; transform: translate(-50%, 0) scale(1); }

/* Kabın ışıması seçili hizmetin rengini alır */
.svc-mini[data-active="go"] {
    border-color: rgba(34, 197, 94, 0.30);
    box-shadow: 0 16px 42px -14px rgba(21, 128, 61, 0.45),
                0 2px 10px rgba(21, 128, 61, 0.10);
}
.svc-mini[data-active="plus"] {
    border-color: rgba(251, 133, 0, 0.32);
    box-shadow: 0 16px 42px -14px rgba(234, 88, 12, 0.45),
                0 2px 10px rgba(234, 88, 12, 0.10);
}

/* ---- Butonlar ---- */
.svc-mini-btn {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    font-family: var(--font-display, inherit);
    font-size: 0.83rem;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease,
                box-shadow .24s ease, transform .14s ease;
}
.svc-mini-btn .smb-brand { font-weight: 800; }
.svc-mini-btn .smb-sfx   { font-weight: 800; margin-left: 4px; }

/* Marka noktası — pasifken içi boş halka, aktifken dolu */
.svc-mini-btn .smb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid currentColor;
    background: transparent;
    transition: background .2s ease, box-shadow .2s ease;
}
.svc-mini-btn.is-active .smb-dot {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.30);
}

/* Pasif durum: kendi marka rengi, soluk */
.svc-mini-btn--go        { color: var(--smi-go-deep);   opacity: .60; }
.svc-mini-btn--plus      { color: var(--smi-plus-deep); opacity: .60; }
.svc-mini-btn--go:hover  { background: var(--smi-go-soft);   opacity: 1; }
.svc-mini-btn--plus:hover{ background: var(--smi-plus-soft); opacity: 1; }

/* Aktif durum: marka gradyanı + renkli gölge + üstte ışık çizgisi */
.svc-mini-btn.is-active { opacity: 1; color: #fff; }
.svc-mini-btn--go.is-active {
    background: linear-gradient(135deg, var(--smi-go-deep) 0%, var(--smi-go-lite) 100%);
    box-shadow: 0 8px 18px -7px rgba(21, 128, 61, 0.75),
                inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
.svc-mini-btn--plus.is-active {
    background: linear-gradient(135deg, var(--smi-plus-deep) 0%, var(--smi-plus-lite) 100%);
    box-shadow: 0 8px 18px -7px rgba(234, 88, 12, 0.75),
                inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

.svc-mini-btn:active { transform: scale(0.96); }
.svc-mini-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Dar ekranda markayı kısalt: "AraziMax go" -> "go" */
@media (max-width: 400px) {
    .svc-mini-btn { padding: 9px 14px; font-size: 0.8rem; }
    .svc-mini-btn .smb-brand { display: none; }
    .svc-mini-btn .smb-sfx { margin-left: 0; font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
    .svc-mini { transition: opacity .2s ease; transform: translate(-50%, 0) scale(1); }
    .svc-mini-btn { transition: background .2s ease, color .2s ease; }
    .svc-mini-btn:active { transform: none; }
}

/* ============================================================
   GO / PLUS KARAR TABLOSU (fiyat bloğunun altında)
   Rakip kolonu yoktur; yalnızca iki hizmet karşılaştırılır.
   ============================================================ */
.svc-compare {
    max-width: 1000px;
    margin: clamp(28px, 4vw, 48px) auto 0;
    padding: clamp(20px, 3vw, 36px);
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 28px 70px -38px rgba(15,15,30,0.28);
    isolation: isolate;
    overflow: hidden;
    position: relative;
}
.svc-compare::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--w-go) 0%, var(--w-go) 50%, var(--w-plus) 50%, var(--w-plus) 100%);
}
.svc-head { text-align: center; margin-bottom: clamp(18px, 2.4vw, 28px); }
.svc-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: var(--accent-soft);
    border: 1px solid rgba(239, 35, 60, 0.16);
}
.svc-head h3 {
    margin: 0 0 10px;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--ink, #1c1c20);
    text-wrap: balance;
}
.svc-head > p {
    margin: 0 auto;
    max-width: 620px;
    font-size: .95rem;
    line-height: 1.62;
    color: var(--muted, #5b5b62);
    text-wrap: pretty;
}
.svc-head strong { color: var(--ink, #1c1c20); }

.svc-table {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(120px, 1fr));
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}
.svc-row {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    transition: background .2s ease;
}
.svc-row:not(.svc-row--head) + .svc-row:not(.svc-row--head) .svc-cell {
    border-top: 1px solid rgba(0,0,0,0.05);
}
.svc-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px clamp(10px, 1.2vw, 16px);
    font-size: .93rem;
    line-height: 1.45;
}
.svc-cell--crit {
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    background: var(--bg-soft, #FAF9F7);
    padding-left: clamp(14px, 1.6vw, 22px);
}
.svc-crit-icon { flex: 0 0 auto; font-size: 1.1rem; line-height: 1; color: var(--accent); }
.svc-crit-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.svc-crit-text strong { font-weight: 700; color: var(--ink, #1c1c20); font-size: .95rem; line-height: 1.3; }
.svc-crit-text small { font-size: .79rem; font-weight: 500; color: var(--muted-2, #7a7a80); line-height: 1.4; text-wrap: pretty; }
.svc-crit-head {
    font-size: .73rem; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--muted-2, #7a7a80);
}

.svc-cell--go {
    background: var(--w-go-soft);
    box-shadow: inset 1.5px 0 0 rgba(22,163,74,0.16), inset -1.5px 0 0 rgba(22,163,74,0.16);
}
.svc-cell--plus {
    background: linear-gradient(180deg, #FFFAF3 0%, var(--w-plus-soft) 100%);
    box-shadow: inset 1.5px 0 0 rgba(251,133,0,0.22), inset -1.5px 0 0 rgba(251,133,0,0.22);
}

/* Farkın gerçekten olduğu satırlar — metinle anlatılır, çarpıyla değil */
.svc-row--key .svc-cell { padding-top: 17px; padding-bottom: 17px; }
.svc-row--key .svc-cell--crit { box-shadow: inset 3px 0 0 var(--accent); }
.svc-row--key .svc-crit-text strong { font-size: 1rem; }
.svc-val {
    font-weight: 700;
    font-size: .9rem;
    line-height: 1.4;
    text-wrap: balance;
}
.svc-val--go { color: var(--w-go-deep); }
.svc-val--plus { color: var(--w-plus-deep); }

.svc-mark {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 1rem; line-height: 1;
    transition: transform .2s var(--ease, ease);
}
.svc-row:hover .svc-mark { transform: scale(1.08); }
.svc-mark--no { color: #b9b6b1; background: rgba(0,0,0,0.045); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04); }
.svc-mark--yes { color: #fff; }
.svc-mark--yes.svc-mark--go   { background: var(--w-go-grad);   box-shadow: 0 4px 10px -3px rgba(22, 163, 74, 0.55); }
.svc-mark--yes.svc-mark--plus { background: var(--w-plus-grad); box-shadow: 0 4px 10px -3px rgba(251, 133, 0, 0.55); }

.svc-row--head .svc-cell {
    padding-top: 20px; padding-bottom: 16px;
    flex-direction: column; gap: 5px;
}
.svc-row--head .svc-cell--crit { justify-content: flex-end; align-items: flex-start; }
.svc-row--head .svc-cell--go   { box-shadow: inset 1.5px 0 0 rgba(22,163,74,0.16), inset -1.5px 0 0 rgba(22,163,74,0.16), inset 0 3px 0 var(--w-go); }
.svc-row--head .svc-cell--plus { box-shadow: inset 1.5px 0 0 rgba(251,133,0,0.22), inset -1.5px 0 0 rgba(251,133,0,0.22), inset 0 3px 0 var(--w-plus); }
.svc-col-name {
    font-family: var(--font-display, inherit);
    font-size: clamp(.92rem, 1.15vw, 1.1rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.15;
    white-space: nowrap;
}
.svc-col-name .scn-brand { color: var(--ink, #1c1c20); font-weight: 800; }
.svc-col-name .scn-sfx { font-weight: 900; }
.svc-col-name--go .scn-sfx   { color: var(--w-go-deep); }
.svc-col-name--plus .scn-sfx { color: var(--w-plus-deep); }
.svc-col-price { font-size: .8rem; font-weight: 700; color: #55534f; white-space: nowrap; }
.svc-col-price small { font-weight: 600; color: var(--muted-2, #7a7a80); }
.svc-col-old { color: var(--muted-2, #a8a5a0); font-weight: 600; margin-right: 2px; }

/* Değeri metin olan satırlar: iki kolon farklı şey söyler, tik satırlarıyla
   karışmasın diye zemin bir tık koyulaşır. */
.svc-row--val:not(.svc-row--key) .svc-cell--crit { background: #F6F4F1; }

/* ---- "Hangisini seçmeliyim" kartları ---- */
.svc-pick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1.4vw, 16px);
    margin-top: clamp(16px, 2vw, 22px);
}
.svc-pick-card {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1.5px solid transparent;
}
.svc-pick-card p {
    margin: 8px 0 0;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--muted, #5b5b62);
    text-wrap: pretty;
}
.svc-pick-card p strong { color: var(--ink, #1c1c20); font-weight: 700; }
.svcp-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: #fff;
}
.svc-pick-card--go   { background: var(--w-go-soft);   border-color: rgba(22,163,74,0.20); }
.svc-pick-card--go   .svcp-badge { background: var(--w-go-grad); }
.svc-pick-card--plus { background: var(--w-plus-soft); border-color: rgba(251,133,0,0.24); }
.svc-pick-card--plus .svcp-badge { background: var(--w-plus-grad); }

@media (max-width: 900px) {
    .svc-table { grid-template-columns: minmax(0, 1fr) repeat(2, minmax(100px, 130px)); }
    .svc-cell { padding: 12px 8px; }
    .svc-cell--crit { padding-left: 14px; gap: 10px; }
    .svc-crit-text strong { font-size: .9rem; }
    .svc-crit-text small { font-size: .75rem; }
    .svc-val { font-size: .82rem; }
}
@media (max-width: 620px) {
    .svc-compare { padding: 14px 10px; border-radius: 18px; }
    .svc-table { grid-template-columns: minmax(0, 1fr) repeat(2, 88px); border-radius: 14px; }
    .svc-cell { padding: 11px 5px; }
    .svc-cell--crit { padding: 11px 8px 11px 10px; gap: 8px; }
    .svc-crit-icon { font-size: .98rem; }
    .svc-crit-text strong { font-size: .84rem; line-height: 1.28; }
    .svc-crit-text small { font-size: .7rem; line-height: 1.35; }
    .svc-mark { width: 25px; height: 25px; font-size: .82rem; }
    .svc-val { font-size: .74rem; line-height: 1.3; }
    .svc-row--head .svc-cell { padding: 12px 4px 10px; gap: 3px; }
    .svc-col-price { font-size: .66rem; letter-spacing: -0.2px; }
    .svc-col-price small { display: none; }   /* "+ KDV" dipnotta zaten var */
    .svc-col-old { display: none; }
    .svc-crit-head { font-size: .65rem; }
    .svc-col-name { font-size: .72rem; letter-spacing: 0; }
    .svc-col-name .scn-brand { display: none; }   /* "AraziMax" tekrar etmesin */
    .svc-col-name .scn-sfx { font-size: .84rem; text-transform: uppercase; }
    .svc-pick { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 400px) {
    /* Dar ekranda alt açıklamalar yalnızca fark satırlarında kalır —
       oradaki bilgi (hangi lokasyonlar, süre notu) satışın kendisi. */
    .svc-row:not(.svc-row--key) .svc-crit-text small { display: none; }
}
@media (max-width: 380px) {
    .svc-table { grid-template-columns: minmax(0, 1fr) repeat(2, 74px); }
    .svc-val { font-size: .68rem; }
}
@media (prefers-reduced-motion: reduce) {
    .svc-row:hover .svc-mark { transform: none; }
}
