/* ==========================================================================
   QRMenu Landing — 2026 Minimal
   Beyaz zemin · Antrasit ana · Kırmızı vurgu · Titillium Web (400/600)
   Keskin köşeler · sade · sıcak satış odaklı.
   ========================================================================== */

:root {
    --bg: #ffffff;
    --bg-soft: #fafafa;
    --bg-warm: #fff3f3;
    --ink: #1a1d23;              /* antrasit */
    --ink-2: #3d4350;
    --muted: #7c838f;
    --brand: #e11d2a;            /* kırmızı */
    --brand-dark: #c00f1c;
    --brand-soft: rgba(225, 29, 42, 0.08);
    --line: rgba(26, 29, 35, 0.08);
    --line-strong: rgba(26, 29, 35, 0.14);
    --card: #ffffff;
    --shadow-sm: 0 1px 2px rgba(26, 29, 35, 0.05);
    --shadow: 0 12px 34px -16px rgba(26, 29, 35, 0.20);
    --shadow-lg: 0 28px 64px -28px rgba(26, 29, 35, 0.28);
    --ring: 0 0 0 4px rgba(225, 29, 42, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Titillium Web', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, .brand, .btn, .eyebrow { font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(225, 29, 42, 0.15); }

/* Listeleme işaretlerini kaldır. */
ul, ol, li { list-style: none; }

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

/* ==========================================================================
   Üst şerit (top header) — kırmızı ton
   ========================================================================== */
.top-bar {
    background: var(--brand);
    color: #fff;
    padding: 9px 0;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.top-contact a {
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: opacity .18s;
}
.top-contact a i { font-weight: 400; }
.top-contact a:hover { opacity: 0.85; }
.top-right { display: flex; align-items: center; }

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 5px 30px 5px 12px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.lang-select option { color: var(--ink); background: #fff; }
.lang-select:focus { outline: none; }

.top-contact .top-hours {
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.top-contact .top-hours i { font-weight: 400; }
.top-support { opacity: 0.95; }
.top-bar-sep { margin: 0 4px; opacity: 0.55; }

/* ==========================================================================
   Özel scrollbar — arka plan KIRMIZI, sürgü (thumb) ANTRASİT
   ========================================================================== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--brand) !important; }
::-webkit-scrollbar-thumb {
    background: var(--ink) !important;
    border-radius: 5px;
    border: 2px solid #14161b !important;
}
::-webkit-scrollbar-thumb:hover { background: #2a2e38 !important; }
::-webkit-scrollbar-corner { background: var(--brand) !important; }
html {
    scrollbar-color: var(--ink) var(--brand);
}
* { scrollbar-width: thin; }
/* ==========================================================================
   WhatsApp destek butonu (sağ orta: küçük kare, hover'da açılır)
   ========================================================================== */
.wa-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 0;
    box-shadow: -6px 6px 24px -10px rgba(37, 211, 102, 0.55);
    text-decoration: none;
    transition: background-color .18s ease, box-shadow .18s ease;
}
.wa-float .wa-icon { width: 26px; height: 26px; flex: 0 0 26px; }
.wa-float .wa-text { display: none; }
.wa-float:hover { background: #1fb959; box-shadow: -10px 10px 30px -10px rgba(37, 211, 102, 0.75); }
@media (max-width: 600px) {
    .wa-float { width: 48px; height: 48px; }
}

/* ==========================================================================
   Sayfa başına dön (Scroll to Top) butonu
   ========================================================================== */
#backToTop {
    position: fixed;
    right: 18px;
    bottom: 26px;
    z-index: 940;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, background-color .18s ease;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--brand); }
@media (max-width: 600px) {
    #backToTop { bottom: 78px; }
}

/* ==========================================================================
   Navbar — antrasit
   ========================================================================== */
.site-header {
    background: var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(26, 29, 35, 0.18);
}
.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
}
.brand {
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}
.brand .logo-dot {
    width: 30px;
    height: 30px;
    background: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
}
.brand .logo-dot i { font-weight: 400; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
    color: #d1d5db;
    font-weight: 400;
    font-size: 15.5px;
    padding: 8px 14px;
    transition: color .18s, background .18s;
}
.site-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.site-nav a.active { color: #fff; background: rgba(225, 29, 42, 0.9); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Butonlar
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s, color .2s;
    white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(225, 29, 42, 0.7);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-ghost {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-demo {
    background: #fff;
    color: var(--brand);
    border: 2px solid var(--brand);
    box-shadow: 0 8px 18px -8px rgba(225, 29, 42, 0.45);
}
.btn-demo:hover {
    background: linear-gradient(135deg, var(--brand), #dd2476);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -9px rgba(225, 29, 42, 0.7);
}
.btn-block { width: 100%; margin-top: 16px; }
.btn.small { padding: 9px 20px; font-size: 14px; }

/* ==========================================================================
   Hero — görsel banner üzerinde içerik
   ========================================================================== */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: var(--ink);
}
.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 29, 35, 0.82) 0%, rgba(26, 29, 35, 0.62) 55%, rgba(26, 29, 35, 0.85) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 72px 24px;
}
.hero h1 {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.02em;
    max-width: 820px;
    margin: 0 auto 18px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero p.hero-sub {
    font-size: clamp(17px, 2.2vw, 20px);
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 30px;
    font-weight: 400;
}
.hero .btn-pill {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: rgba(225, 29, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.5);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.5); }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }

.hero-stats { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 48px; }
.hero-stats .stat {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 34px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-stats .stat { border-right: none; }
.hero-stats .stat:first-child { border-left: none; }
.hero-stats .stat-num { display: block; font-size: 30px; font-weight: 600; color: #fff; line-height: 1.1; }
.hero-stats .stat-label { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.78); margin-top: 4px; font-weight: 400; }

/* ==========================================================================
   Hero carousel (çoklu banner)
   ========================================================================== */
.hero-carousel { position: relative; min-height: 640px; }
.hero-carousel .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity var(--hero-trans, 800ms) ease, visibility 0s linear var(--hero-trans, 800ms);
    will-change: opacity, transform;
}
.hero-carousel .hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity var(--hero-trans, 800ms) ease;
    z-index: 2;
}
/* ==========================================================================
   Animasyon şablonları (2026) — hero görsel + efekt katmanı
   ========================================================================== */
.hero .hero-bg::after { z-index: 1; }
.hero .hero-bg img { position: relative; z-index: 0; }
.hero-fx {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity calc(var(--hero-trans, 800ms) / 2) ease;
}
.hero-slide.active .hero-fx { opacity: 1; }
.fx-dot {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: var(--d, 6px);
    height: var(--d, 6px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.15) 70%);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
    opacity: 0;
    animation: fxFloat var(--dur, 12s) linear var(--delay, 0s) infinite;
    will-change: transform, opacity;
}
@keyframes fxFloat {
    0% { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
    12% { opacity: 0.9; }
    50% { transform: translate3d(calc(var(--drift, 30px)), calc(var(--drifty, -40px)), 0) scale(1); }
    88% { opacity: 0.7; }
    100% { transform: translate3d(calc(var(--drift, 30px) * -1), calc(var(--drifty, -40px) * -0.4), 0) scale(0.5); opacity: 0; }
}
.hero-fx .fx-dot { --drift: 26px; --drifty: -34px; }

/* --- AURORA --- kutup ışıkları: görsel üstünde renk bloblarının sürüklenmesi */
.hero-slide[data-anim="aurora"] .hero-bg img { transform: none; }
.hero-slide[data-anim="aurora"] .hero-fx {
    background:
        radial-gradient(38% 42% at 18% 22%, rgba(88, 180, 255, 0.55), transparent 70%),
        radial-gradient(42% 50% at 82% 18%, rgba(120, 90, 255, 0.5), transparent 70%),
        radial-gradient(50% 55% at 64% 78%, rgba(52, 211, 153, 0.42), transparent 72%),
        radial-gradient(30% 35% at 26% 70%, rgba(251, 146, 60, 0.32), transparent 70%);
    filter: blur(26px) saturate(1.2);
    animation: auroraFlow 12s ease-in-out infinite alternate;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,0.25));
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,0.25));
}
@keyframes auroraZoom { from { transform: scale(1.04); } to { transform: scale(1.18); } }
@keyframes auroraFlow {
    0% { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 50%; transform: translate3d(-2%, -2%, 0) scale(1); }
    100% { background-position: 100% 40%, 0% 100%, 20% 0%, 100% 30%; transform: translate3d(2%, 2%, 0) scale(1.12); }
}
.hero-slide[data-anim="aurora"] .hero h1,
.hero-slide[data-anim="aurora"] .hero .btn-pill {
    background: linear-gradient(120deg, #fff 0%, #cfe9ff 40%, #e6d9ff 70%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: auroraText 10s ease-in-out infinite alternate;
}
@keyframes auroraText { from { filter: drop-shadow(0 0 18px rgba(90, 160, 255, 0.35)); } to { filter: drop-shadow(0 0 34px rgba(140, 90, 255, 0.55)); } }

/* --- PARTICLES --- yüzen ışık taneleri */
.hero-slide[data-anim="particles"] .hero-bg img { transform: none; }
.hero-slide[data-anim="particles"] .hero-fx { mix-blend-mode: screen; }
@keyframes particleZoom { from { transform: scale(1); } to { transform: scale(1.16); } }

/* --- MOLECULAR --- yörünge ağı + bağlantı çizgileri */
.hero-slide[data-anim="molecular"] .hero-fx {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.85), transparent 72%);
    mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.85), transparent 72%);
    animation: molecularPan 24s linear infinite;
}
.hero-slide[data-anim="molecular"] .fx-dot.orb { background: rgba(120, 200, 255, 0.9); box-shadow: 0 0 16px rgba(120, 200, 255, 0.8); }
@keyframes molecularPan { from { background-position: 0 0, 0 0; } to { background-position: 128px 128px, 128px 128px; } }

/* --- LIQUID --- akışkan dalga + hareketli ışıltı */
.hero-slide[data-anim="liquid"] .hero-bg img { filter: saturate(1.15) contrast(1.05); transform: none; }
.hero-slide[data-anim="liquid"] .hero-fx {
    background:
        radial-gradient(60% 60% at 50% 120%, rgba(90, 200, 255, 0.45), transparent 60%),
        radial-gradient(50% 50% at 80% -20%, rgba(255, 140, 120, 0.28), transparent 60%);
    animation: liquidWave 9s ease-in-out infinite alternate;
}
@keyframes liquidZoom { from { transform: scale(1); } to { transform: scale(1.15); } }
@keyframes liquidWave {
    0% { border-radius: 58% 42% 55% 45% / 45% 55% 42% 58%; transform: rotate(-4deg) scale(1.1); }
    50% { border-radius: 42% 58% 45% 55% / 55% 42% 58% 45%; transform: rotate(3deg) scale(1.2); }
    100% { border-radius: 55% 45% 58% 42% / 42% 58% 45% 55%; transform: rotate(-2deg) scale(1.15); }
}

/* --- SHIMMER --- parlaklık süpürmesi (light sweep) */
.hero-slide[data-anim="shimmer"] .hero-bg img { filter: saturate(1.2) brightness(1.02); }
.hero-slide[data-anim="shimmer"] .hero-fx {
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.4) 44%, transparent 60%);
    background-size: 260% 100%;
    mix-blend-mode: overlay;
    animation: shimmerSweep 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.hero-slide[data-anim="shimmer"] .hero-fx::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 45%);
    opacity: 0;
    animation: shimmerBlink 4.5s ease-in-out infinite;
}
@keyframes shimmerSweep { from { background-position: 120% 0; } to { background-position: -60% 0; } }
@keyframes shimmerBlink { 0%, 55% { opacity: 0; } 70% { opacity: 0.5; } 100% { opacity: 0; } }

/* --- DUO --- bölünmüş cam panel + yüzen ışık halkaları */
.hero-slide[data-anim="duo"] .hero-bg img { transform: none; filter: saturate(1.1); }
.hero-slide[data-anim="duo"] .hero-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    padding: 48px 40px;
    max-width: 860px;
    margin: 0 auto;
    animation: duoGlass 8s ease-in-out infinite alternate;
}
.hero-slide[data-anim="duo"] .hero-fx {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: radial-gradient(circle, transparent 5%, rgba(255, 255, 255, 0.12) 5.5%, transparent 24%);
}
@keyframes duoGlass { from { transform: translateY(-10px) rotateX(6deg); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3); } to { transform: translateY(10px) rotateX(-4deg); box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45); } }

/* --- EMERGE --- sinematik stagger çıkış */
.hero-slide[data-anim="emerge"] .hero-content :is(.btn-pill, h1, .hero-sub, .hero-actions, .hero-stats) {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(8px);
    transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 800ms ease;
}
.hero-slide[data-anim="emerge"].active .hero-content :is(.btn-pill, h1, .hero-sub, .hero-actions, .hero-stats) {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.hero-slide[data-anim="emerge"].active .hero-content h1 { transition-delay: 120ms; }
.hero-slide[data-anim="emerge"].active .hero-content .hero-sub { transition-delay: 240ms; }
.hero-slide[data-anim="emerge"].active .hero-content .hero-actions { transition-delay: 360ms; }
.hero-slide[data-anim="emerge"].active .hero-content .hero-stats { transition-delay: 480ms; }

/* --- fallback: bilinmeyen efekt için nazik zoom --- */
.hero-slide[data-anim="zoom"] .hero-bg img { transform: none; }
.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
    z-index: 5;
}
.hero-dots button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: background 300ms ease;
}
.hero-dots button.active { background: #fff; }
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #e11d2a, #ff8a3d);
    z-index: 5;
    transition: width linear;
}
@media (max-width: 768px) {
    .hero-carousel { min-height: 520px; }
    .hero-dots { bottom: 16px; }
}


/* ==========================================================================
   Section başlıkları
   ========================================================================== */
.section { padding: 72px 0; }
.section-tight { padding: 12px 0 8px; }
.section-title { text-align: center; font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 44px; font-weight: 400; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.center { text-align: center; }

/* ==========================================================================
   Feature kartları
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    padding: 34px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .25s ease, box-shadow .35s ease, border-color .25s ease, background .3s ease;
    will-change: transform;
}
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 0%, var(--feature-glow), transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.feature::after {
    content: "";
    position: absolute;
    left: 50%; top: -1px;
    transform: translateX(-50%) scaleX(0);
    height: 3px;
    width: 100%;
    background: var(--feature-accent);
    transition: transform .3s ease;
}
.feature:hover { transform: translateY(-6px); border-color: var(--feature-accent); box-shadow: 0 22px 46px -20px rgba(0,0,0,0.4); background: var(--bg-warm); }
.feature:hover::before { opacity: 1; }
.feature:hover::after { transform: translateX(-50%) scaleX(1); }
.feature-icon {
    width: 62px; height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--feature-accent);
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    order: -1;
    box-shadow: 0 10px 22px -10px var(--feature-accent);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s ease;
}
.feature-icon i { font-size: 24px; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.feature:hover .feature-icon { transform: translateY(-3px) rotate(-6deg) scale(1.06); }
.feature:hover .feature-icon i { transform: scale(1.12) rotate(6deg); }
.feature-body { position: relative; z-index: 1; }
.feature h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--ink); }
.feature p { color: var(--muted); font-size: 14px; font-weight: 400; margin: 0; line-height: 1.65; }
.feature:nth-child(1) { --feature-accent: #e11d2a; --feature-glow: rgba(225,29,42,0.16); }
.feature:nth-child(2) { --feature-accent: #e8590c; --feature-glow: rgba(232,89,12,0.16); }
.feature:nth-child(3) { --feature-accent: #0d9488; --feature-glow: rgba(13,148,136,0.16); }
.feature:nth-child(4) { --feature-accent: #2563eb; --feature-glow: rgba(37,99,235,0.16); }
.feature:nth-child(5) { --feature-accent: #d97706; --feature-glow: rgba(217,119,6,0.16); }
.feature:nth-child(6) { --feature-accent: #db2777; --feature-glow: rgba(219,39,119,0.16); }
.feature:nth-child(7) { --feature-accent: #059669; --feature-glow: rgba(5,150,105,0.16); }
.feature:nth-child(8) { --feature-accent: #7c3aed; --feature-glow: rgba(124,58,237,0.16); }

/* ==========================================================================
   Fiyatlandırma
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.price-card { background: var(--card); border: 1px solid var(--line-strong); padding: 34px 28px 28px; position: relative; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .35s ease, border-color .25s ease, background .3s ease; will-change: transform; }
.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(140% 100% at 50% 0%, var(--pc-glow), transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.price-card::after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0;
    height: 4px;
    background: var(--pc-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--pc-soft); box-shadow: 0 22px 46px -24px rgba(0,0,0,0.30); background: linear-gradient(180deg, #ffffff, #fffcf7); }
.price-card:hover::before { opacity: 0.7; }
.price-card:hover::after { transform: scaleX(1); }
.price-card.selected { background: var(--bg-warm); }
.price-card .badge { display: inline-block; background: var(--pc-accent); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; margin-bottom: 12px; align-self: flex-start; }
.price-head { display: flex; align-items: center; gap: 12px; }
.price-head .pc-icon {
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pc-accent); color: #fff;
    box-shadow: 0 10px 20px -10px var(--pc-accent);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s ease;
}
.price-head .pc-icon i { font-size: 20px; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.price-name { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--ink); }
.price-amount { font-size: 46px; font-weight: 900; letter-spacing: -0.02em; margin: 20px 0 4px; color: var(--pc-accent); line-height: 1.05; }
.price-amount span { font-size: 14px; color: var(--muted); font-weight: 400; }
.price-yearly { color: var(--muted); font-size: 16px; font-weight: 700; margin-bottom: 22px; letter-spacing: 0; }
.price-yearly .qrp-yearly-val { color: var(--ink); font-weight: 900; }
.price-features { margin: 0 0 26px; flex: 1 0 auto; }
.price-features li { padding: 7px 0; font-size: 14.5px; position: relative; padding-left: 6px; }
.price-features i { color: var(--pc-accent); margin-right: 10px; font-weight: 600; }
.price-card .btn { width: 100%; }
.price-card:hover .pc-icon { transform: translateY(-3px) rotate(-6deg) scale(1.06); }
.price-card:hover .pc-icon i { transform: scale(1.12) rotate(6deg); }

/* Ücretsiz paket etiketi — tam genişlik üst bant, kırmızı zemin, beyaz kalın yazı */
.free-badge {
    display: block;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    width: calc(100% + 56px);
    margin: -34px -28px 20px;
    padding: 15px 12px 13px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset;
    animation: freePulse 1.6s ease-in-out infinite;
}
@keyframes freePulse {
    0%, 100% {
        filter: brightness(1);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 0 0 0 rgba(225,29,42,0.55);
    }
    50% {
        filter: brightness(1.18);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 0 0 11px rgba(225,29,42,0);
    }
}
.price-card:nth-child(1), .price-card:nth-of-type(1) { --pc-accent: #e11d2a; --pc-soft: #f5b9bd; --pc-glow: rgba(241,163,169,0.40); }
.price-card:nth-child(2), .price-card:nth-of-type(2) { --pc-accent: #e8590c; --pc-soft: #f4c9a3; --pc-glow: rgba(243,196,158,0.45); }
.price-card:nth-child(3), .price-card:nth-of-type(3) { --pc-accent: #0d9488; --pc-soft: #a9dcd4; --pc-glow: rgba(158,219,210,0.45); }
.price-card:nth-child(4), .price-card:nth-of-type(4) { --pc-accent: #2563eb; --pc-soft: #b6cbf6; --pc-glow: rgba(181,202,244,0.45); }

/* ==========================================================================
   Nasıl çalışır (adımlar)
   ========================================================================== */
.page-hero-hw { padding-bottom: 28px; }
.hw-section-head h2 { font-weight: 600; }

.hw-hero {
    position: relative;
    text-align: center;
    padding: 92px 20px 72px;
    background:
        linear-gradient(180deg, rgba(26,29,35,.82), rgba(26,29,35,.65) 40%, rgba(26,29,35,.92)),
        radial-gradient(900px 420px at 85% -10%, rgba(225,29,42,.28), transparent 60%),
        radial-gradient(700px 380px at 8% 112%, rgba(37,99,235,.20), transparent 60%),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat,
        var(--ink);
    color: #fff;
    overflow: hidden;
}
.hw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none;
}
.hw-hero > .container { position: relative; z-index: 1; }
.hw-hero h1 {
    font-size: clamp(34px, 5.4vw, 58px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px auto 18px;
    max-width: 780px;
}
.hw-hero h1 .grad {
    background: linear-gradient(120deg, #ff8a3d, #ffd66b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hw-hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 18px;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.65;
}
.eyebrow.light { color: #ffb3ba; letter-spacing: .14em; }
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.hero-pills span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.hero-pills i { color: #ff8a3d; font-weight: 400; }

.section-steps { background: linear-gradient(180deg, var(--bg-soft), #ffffff); }
.step-glow {
    position: relative;
    width: 92px; height: 92px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 38px;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 40px -16px var(--step-glow, rgba(225,29,42,.5));
}
.step-glow.i1 { --step-glow: rgba(225,29,42,.6); background: linear-gradient(135deg,#e11d2a,#ff5d41); }
.step-glow.i2 { --step-glow: rgba(37,99,235,.6);  background: linear-gradient(135deg,#2563eb,#38bdf8); }
.step-glow.i3 { --step-glow: rgba(13,148,136,.6); background: linear-gradient(135deg,#0d9488,#2dd4bf); }
.step-glow.i4 { --step-glow: rgba(124,58,237,.6); background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.step-glow i { font-weight: 400; }
.step:hover .step-glow { transform: translateY(-4px) scale(1.06); }

.hw-stats {
    background: linear-gradient(120deg, #e11d2a, #c00f1c);
    padding: 56px 0;
    color: #fff;
}
.hw-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.hw-stat { padding: 18px; }
.hw-stat i { font-size: 30px; font-weight: 400; color: rgba(255,255,255,.9); margin-bottom: 14px; display: inline-block; }
.hw-stat-value { font-size: clamp(30px,4vw,46px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.hw-stat-label { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,.85); font-weight: 500; }

.hw-cta {
    background:
        radial-gradient(640px 260px at 85% 0%, rgba(225,29,42,.20), transparent 60%),
        var(--ink);
    color: #fff;
    text-align: center;
    padding: 68px 40px;
    border-radius: 16px;
}
.hw-cta h3 { font-size: clamp(24px,3.2vw,34px); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 14px; }
.hw-cta p { color: rgba(255,255,255,.75); font-size: 17px; margin: 0 0 30px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }

.hw-figure {
    margin: 0;
    border: 1px solid var(--line-strong);
    background: var(--ink);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}
.hw-figure img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    opacity: 0.92;
    transition: transform .6s ease;
}
.hw-figure:hover img { transform: scale(1.015); }
.hw-figure figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(26, 29, 35, 0.72);
    color: #fff;
    font-size: 13px;
    padding: 8px 14px;
    border-left: 3px solid var(--brand);
}

.steps {
    display: grid;
    grid-template-columns: 1.4fr 44px 1.4fr 44px 1.4fr 44px 1.4fr;
    gap: 0;
    align-items: stretch;
    list-style: none;
}
.step {
    position: relative;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--line-strong);
    padding: 52px 30px 44px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .22s ease, box-shadow .3s ease, border-color .22s ease, background .25s ease;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(225,29,42,.45); background: var(--bg-warm); }
.step:hover .step-glow { box-shadow: 0 22px 46px -14px var(--step-glow, rgba(225,29,42,.55)); }
.step-top { display: block; text-align: center; margin-bottom: 24px; position: relative; }
.step-icon {
    width: 76px; height: 76px;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 30px;
    border: 1px solid rgba(225,29,42,.18);
    box-shadow: 0 10px 24px -12px rgba(225,29,42,.5);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s ease;
}
.step-icon i { font-weight: 400; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.step:hover .step-icon { transform: translateY(-3px) rotate(-6deg) scale(1.08); }
.step:hover .step-icon i { transform: scale(1.12) rotate(6deg); }
.step::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    height: 3px;
    width: 100%;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.step:hover::after { transform: scaleX(1); }
.step h3, .step h4 { font-size: 21px; margin: 0 0 10px; letter-spacing: -0.01em; color: var(--ink); font-weight: 700; }
.step p { color: var(--muted); font-size: 16px; font-weight: 400; line-height: 1.65; margin: 0; }
.step-arrow {
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    font-size: 22px;
}
.step-arrow i { font-weight: 400; }

/* ==========================================================================
   Demo sayfası
   ========================================================================== */
.demo-hero {
    position: relative;
    text-align: center;
    padding: 92px 20px 72px;
    background:
        linear-gradient(180deg, rgba(26,29,35,.82), rgba(26,29,35,.65) 40%, rgba(26,29,35,.92)),
        radial-gradient(900px 420px at 85% -10%, rgba(139,92,246,.30), transparent 60%),
        radial-gradient(700px 380px at 8% 112%, rgba(225,29,42,.22), transparent 60%),
        url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat,
        var(--ink);
    color: #fff;
    overflow: hidden;
}
.demo-hero > .container { position: relative; z-index: 1; }
.demo-hero h1 {
    font-size: clamp(34px, 5.4vw, 58px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 8px auto 18px;
    max-width: 780px;
}
.demo-hero h1 .grad {
    background: linear-gradient(120deg, #a78bfa, #ff8a3d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.demo-hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 17.5px;
    line-height: 1.7;
    max-width: 660px;
    margin: 0 auto 26px;
}
.demo-section { padding: 84px 0 70px; }
.demo-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.demo-head .section-title { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.02em; }
.demo-head .section-sub { color: var(--muted); font-size: 17px; line-height: 1.7; margin-top: 14px; }

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    align-items: stretch;
}
.demo-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 10px 28px -18px rgba(13,18,28,.35);
    transition: transform .3s ease, box-shadow .3s ease;
}
.demo-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(13,18,28,.4); }
.demo-card-icon {
    width: 50px; height: 50px;
    border-radius: 13px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 21px;
    flex: none;
}
.demo-card h3 { font-size: 20px; font-weight: 700; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.demo-card-desc { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; flex: 1 0 auto; }
.demo-card .btn { margin-top: 8px; margin-bottom: 0; }

.demo-cred {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    padding: 12px;
    background: var(--brand-soft);
    border: 1px dashed rgba(225, 29, 42, 0.22);
    border-radius: 10px;
}
.demo-cred .cred-row { display: flex; flex-direction: column; gap: 4px; }
.demo-cred .cred-row label { font-size: 12px; color: var(--muted); font-weight: 600; }
.demo-cred .cred-row code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 10px;
    border-radius: 7px;
    word-break: break-all;
}

.demo-qr-block { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 8px; }
.demo-qr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 22px -16px rgba(13,18,28,.45);
}
.demo-qr img { display: block; width: 140px; height: 140px; }

.demo-login {
    background: linear-gradient(135deg, #16191f, #20242e);
    color: #fff;
    padding: 84px 0 76px;
}
.demo-login .section-title.light, .demo-login .section-sub.light { color: #fff; }
.demo-login .section-sub.light { color: rgba(255,255,255,.72); }
.cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.cred-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s ease, background .25s ease;
}
.cred-card:hover { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.07); }
.cred-module { font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #ff8a3d; }
.cred-row { display: flex; flex-direction: column; gap: 3px; }
.cred-row label { font-size: 12px; color: rgba(255,255,255,.55); }
.cred-row code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13.5px;
    color: #ffd66b;
    background: rgba(255,255,255,.06);
    padding: 6px 9px;
    border-radius: 7px;
    word-break: break-all;
}
.cred-card .btn { margin-top: auto; }

.demo-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Sayfa başlığı (iç sayfalar)
   ========================================================================== */
.page-hero { text-align: center; padding: 84px 20px 40px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-hero .intro { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 17px; font-weight: 400; }

/* ==========================================================================
   Formlar
   ========================================================================== */
.contact-wrap { max-width: 640px; margin: 0 auto; }
.contact-card { background: var(--card); border: 1px solid var(--line-strong); padding: 36px; box-shadow: var(--shadow); }
.contact-card h2 { font-size: 28px; margin-bottom: 6px; letter-spacing: -0.01em; }

.form-card { background: var(--card); border: 1px solid var(--line-strong); padding: 36px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 28px; margin-bottom: 6px; }

/* Kayıt (Hemen Al) formu — iki sütunlu kutucuklar */
.signup-wrap { max-width: 1040px; margin: 0 auto; }
.signup-form { display: flex; flex-direction: column; gap: 24px; }
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.signup-grid .form-card { box-shadow: var(--shadow-sm); }
.signup-grid .form-card h3 { font-size: 17px; font-weight: 600; padding-bottom: 12px; border-bottom: 2px solid var(--brand); margin-bottom: 20px; display: flex; align-items: center; gap: 9px; }
.signup-grid .form-card h3 i { color: var(--brand); font-weight: 400; }
.signup-grid .form-card .step-desc {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted);
    background: rgba(225, 29, 42, 0.05);
    border-left: 3px solid var(--brand);
    padding: 11px 13px;
    margin: -6px 0 18px;
}
.signup-grid .form-card .step-desc i { color: var(--brand); margin-top: 2px; font-weight: 400; }
.signup-security {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    background: var(--card);
    border: 1px dashed var(--line-strong);
    padding: 12px 16px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}
.signup-security i { color: var(--brand); font-weight: 400; }
.signup-agreements {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.agree-item {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: start;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--line-strong);
    padding: 13px 14px;
    cursor: pointer;
    transition: border-color .15s;
}
.agree-item:hover { border-color: var(--brand); }
.agree-item input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px;
    accent-color: var(--brand);
    cursor: pointer;
}
.agree-item span {
    display: flex; flex-direction: column; gap: 3px;
    font-size: 14px; font-weight: 600; line-height: 1.3;
}
.agree-item small { font-size: 12px; color: var(--muted); font-weight: 400; line-height: 1.45; }
.agree-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--brand);
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 5px;
}
.agree-link i { font-weight: 400; }
.agree-error {
    display: flex; align-items: center; gap: 8px;
    background: rgba(225, 29, 42, 0.08);
    border: 1px solid var(--brand);
    color: var(--brand);
    font-size: 13px;
    padding: 10px 13px;
}
.agree-error[hidden] { display: none; }

/* Sözleşme sayfası */
.terms-wrap { max-width: 860px; margin: 0 auto; }
.terms-card { padding: 32px 36px; }
.terms-updated {
    font-size: 12.5px;
    color: var(--muted);
    padding-bottom: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line-strong);
}
.terms-body { line-height: 1.7; font-size: 15px; color: var(--text); }
.terms-body h1, .terms-body h2, .terms-body h3 { font-size: 18px; margin: 22px 0 8px; color: var(--ink); }
.terms-body h1:first-child, .terms-body h2:first-child, .terms-body h3:first-child { margin-top: 0; }
.terms-body p { margin: 8px 0; }
.signup-submit { max-width: 400px; margin: 0 auto; width: 100%; }

.field { margin-bottom: 16px; }
.map-search { position: relative; margin-bottom: 8px; }
.map-search i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 14px; font-weight: 400; }
.map-search input { padding-left: 40px; }
.map-canvas { height: 220px; border: 1px solid var(--line-strong); border-radius: 10px; margin: 10px 0 8px; }
.btn-ghost { background: var(--brand-soft); color: var(--brand-dark); border: 1px solid rgba(225, 29, 42, 0.25); }
.btn-ghost:hover { background: rgba(225, 29, 42, 0.12); }
.btn-sm { padding: 8px 14px; font-size: 13px; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 6px; }
.btn-sm:hover { transform: translateY(-1px); }
label { display: block; font-size: 14px; font-weight: 600; margin: 0 0 6px; }
.input-wrap { position: relative; }
.input-wrap i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 14px; font-weight: 400; }
.input-wrap input { padding-left: 42px; }
input, select, textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line-strong);
    font-family: 'Titillium Web', sans-serif;
    font-size: 15px;
    font-weight: 400;
    background: #fff;
    color: var(--ink);
    transition: border-color .18s, box-shadow .18s;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }

/* Honeypot: yalnızca bot görür/doldurur. */
.honey-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

.muted { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; font-weight: 400; }
.alert { padding: 14px 16px; margin: 0 0 18px; font-size: 14.5px; }
.alert-error { background: var(--brand-soft); color: var(--brand-dark); border: 1px solid rgba(225, 29, 42, 0.25); }

.result-icon { font-size: 52px; margin-bottom: 14px; }
.result-icon.success { color: #22c55e; }
.result-icon.error { color: var(--brand); }

/* ==========================================================================
   SSS
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--line-strong); padding: 24px 26px; margin-bottom: 14px; transition: border-color .18s, transform .18s, box-shadow .2s; }
.faq-item:hover { border-color: rgba(225, 29, 42, 0.4); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.faq-item h3 { font-size: 17px; margin-bottom: 6px; }
.faq-item p { font-weight: 400; }

/* ==========================================================================
   Footer — koyu antrasit + dengeli kırmızı (sağ üst → sol alt)
   ========================================================================== */
.site-footer {
    margin-top: 72px;
    background: linear-gradient(225deg, #1a1d23 40%, #2a1114 78%, #c00f1c 130%);
    color: #fff;
    padding: 56px 0 0;
}
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { color: rgba(255, 255, 255, 0.72); max-width: 320px; font-weight: 400; }
.footer-col .footer-title { font-weight: 600; font-size: 15px; margin: 0 0 10px; padding: 0; line-height: 1.3; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.95); }
.footer-col a { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.72); font-size: 14.5px; padding: 5px 0; transition: color .18s, padding .18s; }
.footer-col a i { font-weight: 400; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { text-align: center; padding: 22px 0; color: rgba(255, 255, 255, 0.62); font-size: 14px; border-top: 1px solid rgba(255, 255, 255, 0.10); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; gap: 0; max-width: 520px; margin: 0 auto; }
    .step-arrow { transform: rotate(90deg); padding: 10px 0; }
    .hw-figure img { height: 260px; }
    .hw-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
    .top-bar-inner { justify-content: center; }
    /* Mobil: logo üstte, ana menü ve hamburger gizli (alt tab bar menüyü yönetir) */
    .site-nav, .nav-toggle { display: none; }
    .header-inner { justify-content: space-between; padding: 12px 16px; }
    .header-actions .btn { padding: 9px 16px; font-size: 13px; }
    .hero { min-height: 520px; }
    .hero-content { padding: 48px 16px; }
    .hero h1 { font-size: 34px; }
    .hero-stats .stat { padding: 14px 20px; }
    .hero-stats .stat-num { font-size: 24px; }
    .hero-stats .stat-label { font-size: 12px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; gap: 28px; }
    .signup-grid { grid-template-columns: 1fr; }
    .btn-pill { display: none; }

    /* Alt tab çubuğuna yer aç */
    .site-footer { margin-bottom: 60px; }
}

/* ==========================================================================
   Mobil alt menü çubuğu (uygulama tarzı tab bar)
   ========================================================================== */
.mobile-tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: none;
    background: #ffffff;
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -6px 20px rgba(26, 29, 35, 0.10);
}
.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    padding: 9px 4px 8px;
    font-size: 11px;
    color: var(--muted);
    transition: color .15s;
}
.tab-item i { font-size: 20px; font-weight: 400; }
.tab-item:hover { color: var(--brand); }
.tab-item.active { color: var(--brand); }
.tab-cta { color: var(--brand); }
.tab-cta i { font-weight: 400; }

@media (max-width: 768px) {
    .mobile-tabbar { display: flex; }
}

/* ==========================================================================
   İkon garanti kuralları (Font Awesome kit ile uyumlu)
   ========================================================================== */
i.fa, i.fas, i.fa-solid, i.fa-regular, i.fa-brands, i[class^="fa-"], i[class^="fa "] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", FontAwesome;
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
i.fa-regular { font-weight: 400; }

/* ==========================================================================
   Premium Signup � turuncu/kirmizi gradient
   ========================================================================== */
.signup-hero {
    background: linear-gradient(135deg, #ff512f 0%, #dd2476 100%);
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    color: #fff;
}
.signup-hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px; width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
}
.signup-hero::after {
    content: "";
    position: absolute; bottom: -140px; left: -80px; width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(0,0,0,.10);
}
.signup-hero-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    flex-wrap: wrap;
}
.signup-hero-copy { flex: 1 1 480px; }
.signup-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.35);
    padding: 6px 14px; border-radius: 999px;
    font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.signup-hero-h1 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900; line-height: 1.15; margin: 16px 0 12px;
    text-shadow: 0 2px 14px rgba(0,0,0,.18);
}
.signup-hero-p { font-size: 17px; opacity: .96; max-width: 560px; margin: 0; }
.signup-hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.signup-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
    backdrop-filter: blur(4px);
}
.signup-hero-price { flex: 0 0 auto; }
.price-card {
    background: #fff; color: #1c1c1e;
    border-radius: 18px; padding: 22px 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    min-width: 240px;
}
.price-card-top { display: flex; align-items: center; gap: 16px; }
.price-wallet {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: #fff; display: grid; place-items: center; font-size: 22px;
}
.price-card-label { font-size: 13px; color: #6b6b6f; font-weight: 600; }
.price-card-value { font-size: 34px; font-weight: 900; line-height: 1; }
.price-card-footer {
    margin-top: 14px; padding-top: 12px; border-top: 1px dashed #e3e3e6;
    color: #7a7a7e; font-size: 13px;
}

.signup-section { background: #f7f7fa; padding-bottom: 72px; }

/* Stepper */
.signup-stepper {
    list-style: none; margin: 0 0 30px; padding: 0;
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
}
.stepper-item {
    display: flex; align-items: center; gap: 9px;
    color: #9a9aa0; font-weight: 600; font-size: 14px;
}
.stepper-item.active, .stepper-item.active .stepper-dot { color: #dd2476; }
.stepper-dot {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: #efeff2; color: #9a9aa0; font-size: 15px;
    transition: .25s;
}
.stepper-item.active .stepper-dot {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: #fff;
    box-shadow: 0 6px 16px rgba(221,36,118,.35);
}
.stepper-line {
    flex: 1 1 24px; min-width: 20px; height: 2px;
    background: #e2e2e6; border-radius: 2px;
}

/* Kartlar */
.signup-form { max-width: 860px; margin: 0 auto; }
.signup-card {
    background: #fff; border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,.07);
    padding: 26px 28px; margin-bottom: 18px;
    border: 1px solid #f0f0f2;
}
.signup-card-head {
    display: flex; align-items: flex-start; gap: 16px;
    padding-bottom: 18px; margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f2;
}
.signup-card-step {
    font-weight: 900; font-size: 30px; line-height: 1;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.signup-card-head h3 { margin: 0 0 4px; font-size: 19px; }
.signup-card-sub { margin: 0; color: #7a7a7e; font-size: 14px; }
.signup-card-body { display: flex; flex-direction: column; gap: 16px; }
.signup-card-foot {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    margin-top: 22px; padding-top: 18px; border-top: 1px solid #f0f0f2;
}
.signup-fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.signup-field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: 14px; color: #2d2d30; }
.signup-field .input-wrap { position: relative; }
.signup-field .input-wrap i {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: #c2c2c8; pointer-events: none;
}
.signup-field .input-wrap input { padding-left: 42px; }
.signup-field input, .signup-field textarea, .signup-field select {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid #e2e2e6; border-radius: 12px;
    font-size: 15px; transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.signup-field input:focus, .signup-field textarea:focus, .signup-field select:focus {
    outline: none; border-color: #dd2476;
    box-shadow: 0 0 0 3px rgba(221,36,118,.14);
}
.signup-field textarea.map-canvas { min-height: 0; }

.map-search { position: relative; margin-bottom: 10px; }
.map-search i {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: #c2c2c8;
}
.map-search input { padding-left: 42px; }
.map-canvas {
    width: 100%; height: 220px; border-radius: 12px;
    border: 1.5px solid #e2e2e6; background: #f2f2f5;
    margin: 10px 0 2px;
}

.useinfo-btn { margin-bottom: 4px; }

/* �ifre g�stergesi */
.password-meter { height: 6px; background: #efeff2; border-radius: 999px; margin-top: 8px; overflow: hidden; }
.meter-bar { display: block; height: 100%; width: 0; border-radius: 999px; transition: width .25s; }
.meter-bar.weak { background: #ff512f; }
.meter-bar.medium { background: #ff9f43; }
.meter-bar.strong { background: #2ecc71; }
.password-hint { font-size: 12.5px; color: #9a9aa0; margin-top: 5px; }

/* Anla�malar */
.signup-agreements { display: flex; flex-direction: column; gap: 12px; }
.agree-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 14px; border: 1.5px solid #e8e8ec; border-radius: 12px;
    cursor: pointer; background: #fafafc;
}
.agree-item:hover { border-color: #dd2476; }
.agree-item input { margin-top: 3px; width: 18px; height: 18px; accent-color: #dd2476; }
.agree-item span { flex: 1; font-size: 14px; color: #3a3a3e; }
.agree-item small { display: block; color: #9a9aa0; margin-top: 3px; font-size: 12.5px; }
.agree-link { color: #dd2476; font-weight: 600; font-size: 13px; white-space: nowrap; }
.agree-error {
    display: flex; align-items: center; gap: 8px;
    color: #c0392b; font-size: 14px; font-weight: 600;
    background: #fdecea; border: 1px solid #f5c6cb;
    padding: 10px 14px; border-radius: 10px;
}

/* Period se�ici */
.period-group { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.period-option input { display: none; }
.period-card {
    display: block; padding: 16px; border: 1.5px solid #e2e2e6; border-radius: 12px;
    text-align: center; cursor: pointer; transition: .2s; background: #fff;
}
.period-option input:checked + .period-card {
    border-color: #dd2476;
    box-shadow: 0 0 0 3px rgba(221,36,118,.14);
    background: linear-gradient(135deg, rgba(255,81,47,.05), rgba(221,36,118,.05));
}
.period-card strong { display: block; font-size: 16px; }
.period-card small { color: #7a7a7e; font-size: 12.5px; }

/* Kutlama (şampiyonluk/karşılama) hero banner + havai fişek */
.celebration {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(160deg, #0b1026 0%, #1b1240 45%, #250f2e 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}
#fireworks {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}
.hero-banner {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 52px 36px 56px; color: #fff;
}
.hero-badges {
    display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; justify-content: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(4px);
    font-size: 12.5px; font-weight: 600; letter-spacing: .3px; color: #ffe8a3;
}
.hero-badge.live { color: #a7f3d0; }
.hero-badge.live i { color: #34d399; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero-icon {
    width: 96px; height: 96px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 42px; color: #ffd166;
    background: radial-gradient(circle at 30% 30%, #ffd166 0%, #f97316 70%);
    box-shadow: 0 0 0 8px rgba(249, 115, 22, .18), 0 12px 30px rgba(249, 115, 22, .45);
    margin-bottom: 20px; color: #1b1240;
}
.hero-title {
    margin: 0 0 10px; font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.hero-sub { margin: 0 auto 20px; max-width: 520px; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.82); }
.hero-pill {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    padding: 10px 20px; border-radius: 999px;
    background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .16);
    margin-bottom: 28px; font-size: 13.5px; color: #ffe8a3; font-weight: 600;
}
.hero-pill i { margin-right: 5px; color: #ffd166; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.btn.btn-lg { padding: 14px 26px; font-size: 15.5px; border-radius: 10px; }
.hero-actions .btn-ghost {
    background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.28);
}
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #ffd166; color: #ffd166; }
.hero-foot { margin: 0; font-size: 12.5px; color: rgba(255,255,255,.55); }

/* Butonlar */
.btn.btn-ghost {
    background: #fff; color: #3a3a3e; border: 1.5px solid #e2e2e6;
}
.btn.btn-ghost:hover { border-color: #dd2476; color: #dd2476; }
.btn.btn-primary {
    background: linear-gradient(135deg, #ff512f 0%, #dd2476 100%);
    border: none; color: #fff;
    box-shadow: 0 8px 20px rgba(221,36,118,.28);
}
.btn.btn-primary:hover {
    background: linear-gradient(135deg, #f0472a 0%, #c81c68 100%);
    transform: translateY(-1px);
}
.btn-signup-submit, .signup-submit-btn { min-width: 210px; }
.btn.btn-sm { padding: 8px 14px; font-size: 13px; }

.signup-security {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #9a9aa0; font-size: 13.5px; margin-top: 18px;
}
.signup-security i { color: #2ecc71; }
.signup-alert { border-radius: 12px; max-width: 860px; margin: 0 auto 18px; }

/* �leti�im */
.contact-privacy {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #9a9aa0; font-size: 13px; margin-top: 12px;
}
.contact-privacy i { color: #2ecc71; }

@media (max-width: 640px) {
    .signup-fields-2, .period-group { grid-template-columns: 1fr; }
    .stepper-item span { display: none; }
    .stepper-item.active span { display: inline; }
    .signup-card-foot { flex-direction: column-reverse; align-items: stretch; }
    .signup-card-foot .btn { width: 100%; }
    .signup-hero-inner { flex-direction: column; align-items: flex-start; }
}

/* Checkout: banka havalesi / EFT */
.bank-list { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.bank-card {
    border: 1.5px solid #e8e8ec; border-radius: 14px;
    padding: 16px 18px; background: #fafafc;
}
.bank-card:hover { border-color: #dd2476; }
.bank-head {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; margin-bottom: 12px; color:#2d2d30;
}
.bank-head i { color: #dd2476; font-size: 20px; }
.bank-row {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 7px 0; border-bottom: 1px dashed #ececef; font-size: 14px;
}
.bank-row:last-child { border-bottom: none; }
.bank-label { color: #9a9aa0; font-weight: 600; }
.bank-iban { font-weight: 700; letter-spacing: .02em; color:#1c1c1e; }
.alert-warning {
    background:#fff7e6; border:1px solid #ffe1a8; color:#7a5c00;
    border-radius:10px; padding:12px 14px;
}
.alert-info {
    background:#eef6ff; border:1px solid #cce4ff; color:#0a4a8f;
    border-radius:10px; padding:12px 14px; font-size:14px;
}
