/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === LIGHT (DEFAULT) === */
  --bg: #f8f8f8;
  --card: #ffffff;
  --border: #e5e7eb;
  --primary: #f97316;
  --primary-fg: #ffffff;
  --muted: #6b7280;
  --fg: #111111;
  --secondary: #f3f4f6;
  --radius: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--fg); line-height: 1.6; min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
a { text-decoration: none; color: inherit; }
img { display: block; }
.primary { color: var(--primary); }
.fw-600 { font-weight: 600; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.h-12 { height: 48px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: #e5e5e5; }
.btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--secondary); border-color: #3f3f3f; }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--fg); background: var(--secondary); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 13px 26px; font-size: 15px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; }
.logo-icon { width: 32px; height: 32px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary-fg); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 6px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all 0.2s; }
.nav-link:hover { color: var(--fg); background: var(--secondary); }
.nav-link.active { background: var(--primary); color: var(--primary-fg); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--fg); cursor: pointer; padding: 4px; }
.mobile-menu { display: none; flex-direction: column; padding: 12px 16px 16px; border-top: 1px solid var(--border); gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-nav-link { padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--muted); transition: all 0.2s; }
.mobile-nav-link.active, .mobile-nav-link:hover { color: var(--fg); background: var(--secondary); }
.mobile-nav-btns { display: flex; gap: 8px; margin-top: 8px; }
.mobile-nav-btns .btn { flex: 1; justify-content: center; }
@media (max-width: 768px) { .nav-links { display: none; } .mobile-menu-btn { display: block; } .nav-right .btn:not(.mobile-menu-btn) { display: none; } }

/* SECTIONS */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 12px; }
.section-desc { color: var(--muted); font-size: 16px; }

/* HERO */
.hero-section { position: relative; padding: 60px 0 80px; overflow: hidden; }
.hero-bg-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.04) 0%, transparent 60%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-left { display: flex; flex-direction: column; gap: 24px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; }
.hero-desc { font-size: 17px; color: var(--muted); max-width: 480px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-right { display: flex; justify-content: center; }
.iphone-wrap { position: relative; width: 280px; }
.hero-glow { position: absolute; inset: -60px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); pointer-events: none; border-radius: 50%; }
.iphone-outer { background: linear-gradient(160deg, #555 0%, #222 50%, #111 100%); border-radius: 44px; padding: 3px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.iphone-bezel { background: #111; border-radius: 41px; padding: 8px; }
.iphone-screen { background: #000; border-radius: 33px; overflow: hidden; position: relative; min-height: 500px; display: flex; flex-direction: column; }
.dynamic-island { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 90px; height: 28px; background: #000; border-radius: 20px; z-index: 20; display: flex; align-items: center; justify-content: center; border: 1px solid #1a1a1a; }
.di-dot-l { width: 8px; height: 8px; background: #1a1a1a; border-radius: 50%; margin-right: 28px; }
.di-dot-r { width: 10px; height: 10px; background: #1a1a1a; border-radius: 50%; position: absolute; right: 12px; }
.status-bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px 4px; font-size: 11px; font-weight: 700; color: #fff; margin-top: 28px; }
.status-icons { display: flex; align-items: center; gap: 4px; }
.battery-icon { width: 22px; height: 11px; border: 1.5px solid rgba(255,255,255,0.6); border-radius: 3px; position: relative; display: flex; align-items: center; padding: 1.5px; }
.battery-fill { width: 70%; height: 100%; background: #fff; border-radius: 1px; }
.msg-header { text-align: center; padding: 8px; border-bottom: 1px solid #1a1a1a; font-size: 14px; font-weight: 600; color: #fff; }
.msg-list { flex: 1; padding: 10px 8px; display: flex; flex-direction: column; gap: 8px; background: #000; min-height: 380px; overflow: hidden; }
.msg-item { display: flex; align-items: flex-start; gap: 8px; padding: 10px; border-radius: 12px; background: #111; }
.msg-anim { animation: slideUp 0.4s ease-out both; }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.msg-app-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.msg-body { flex: 1; min-width: 0; }
.msg-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.msg-app-name { font-size: 11px; font-weight: 700; color: #fff; }
.msg-time { font-size: 9px; color: #555; }
.msg-text { font-size: 10px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-code { display: inline-flex; align-items: center; gap: 4px; margin-top: 5px; background: rgba(255,255,255,0.08); padding: 3px 8px; border-radius: 6px; }
.code-text { font-family: monospace; font-weight: 700; font-size: 12px; color: #fff; letter-spacing: 1px; }
.home-indicator { display: flex; justify-content: center; padding: 6px 0 4px; background: #000; }
.home-bar { width: 100px; height: 4px; background: rgba(255,255,255,0.25); border-radius: 4px; }
.side-btn-l1,.side-btn-l2,.side-btn-l3,.side-btn-r { position: absolute; background: #333; border-radius: 2px; }
.side-btn-l1 { left: -2px; top: 90px; width: 3px; height: 28px; }
.side-btn-l2 { left: -2px; top: 135px; width: 3px; height: 42px; }
.side-btn-l3 { left: -2px; top: 190px; width: 3px; height: 42px; }
.side-btn-r  { right: -2px; top: 120px; width: 3px; height: 56px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-right { order: -1; } .iphone-wrap { width: 240px; } }

/* STATS */
.stats-section { position: relative; padding: 80px 0; overflow: hidden; }
.stats-bg1 { position: absolute; top: 0; left: 25%; width: 400px; height: 400px; background: rgba(255,255,255,0.03); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.stats-bg2 { position: absolute; bottom: 0; right: 25%; width: 400px; height: 400px; background: rgba(255,165,0,0.03); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: border-color 0.3s; }
.stat-card:hover { border-color: rgba(255,255,255,0.15); }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.bg-green { background: rgba(34,197,94,0.12); color: #22c55e; }
.bg-yellow { background: rgba(234,179,8,0.12); color: #eab308; }
.bg-blue { background: rgba(59,130,246,0.12); color: #3b82f6; }
.bg-purple { background: rgba(168,85,247,0.12); color: #a855f7; }
.stat-value { font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; margin-bottom: 6px; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.green-grad { background-image: linear-gradient(135deg, #22c55e, #10b981); }
.yellow-grad { background-image: linear-gradient(135deg, #eab308, #f97316); }
.blue-grad { background-image: linear-gradient(135deg, #3b82f6, #06b6d4); }
.purple-grad { background-image: linear-gradient(135deg, #a855f7, #ec4899); }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* FEATURES */
.features-section { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); transition: border-color 0.2s; }
.feature-card:hover { border-color: rgba(255,255,255,0.2); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary); }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* HOW IT WORKS */
.how-section { padding: 80px 0; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-card { text-align: center; position: relative; }
.step-icon-wrap { position: relative; display: inline-flex; margin-bottom: 16px; }
.step-icon { width: 88px; height: 88px; border-radius: 20px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.step-num { position: absolute; top: -8px; right: -8px; width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: var(--primary-fg); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); }
.step-connector { display: none; position: absolute; top: 44px; left: 60%; width: 80%; height: 1px; background: linear-gradient(to right, rgba(255,255,255,0.2), transparent); }
@media (min-width: 769px) { .step-connector { display: block; } }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }

/* SERVICES */
.services-section { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.service-card { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 12px; background: #111; border: 1px solid var(--border); transition: all 0.2s; font-size: 13px; font-weight: 500; color: var(--fg); }
.service-card:hover { border-color: rgba(255,255,255,0.2); background: #1a1a1a; }
.service-icon-box { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-abbr { font-size: 11px; font-weight: 700; color: var(--muted); }
.services-cta { text-align: center; margin-top: 40px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* CTA */
.cta-section { padding: 80px 0; }
.cta-box { position: relative; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,255,255,0.1); background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, transparent 100%); padding: 60px 40px; }
.cta-glow-tr { position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cta-glow-bl { position: absolute; bottom: -50%; left: -10%; width: 280px; height: 280px; background: rgba(255,255,255,0.03); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 520px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
.cta-content p { color: var(--muted); margin-bottom: 32px; font-size: 16px; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); background: rgba(255,255,255,0.01); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-status { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* AUTH */
.auth-page { min-height: calc(100vh - 56px); display: flex; align-items: center; justify-content: center; padding: 48px 16px; position: relative; }
.auth-bg1 { position: absolute; top: 25%; left: 25%; width: 360px; height: 360px; background: rgba(255,255,255,0.06); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.auth-bg2 { position: absolute; bottom: 25%; right: 25%; width: 360px; height: 360px; background: rgba(255,165,0,0.04); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.auth-card { position: relative; z-index: 1; width: 100%; max-width: 460px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); }
.auth-tab { flex: 1; padding: 16px; font-size: 14px; font-weight: 600; background: none; border: none; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; }
.auth-tab.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(255,255,255,0.03); }
.auth-body { padding: 24px 28px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-form-header { text-align: center; margin-bottom: 4px; }
.auth-form-header h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.auth-form-header p { color: var(--muted); font-size: 14px; }
.form-error { padding: 10px 14px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); border-radius: 10px; color: #f87171; font-size: 13px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: var(--muted); font-weight: 500; }
.form-label-row { display: flex; justify-content: space-between; align-items: center; }
.form-link { color: var(--primary); font-size: 13px; }
.form-link:hover { opacity: 0.8; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap svg { position: absolute; left: 14px; color: var(--muted); pointer-events: none; flex-shrink: 0; }
.input-wrap input, .input-wrap textarea, .form-input { width: 100%; padding: 10px 14px 10px 40px; background: var(--secondary); border: 1px solid var(--border); border-radius: 10px; color: var(--fg); font-size: 14px; font-family: var(--font); outline: none; transition: border-color 0.2s; }
.form-input { padding: 10px 14px; }
.input-wrap input:focus, .form-input:focus { border-color: rgba(255,255,255,0.35); }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.terms-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.terms-row input { margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
.demo-box { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; }
.demo-title { font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.demo-box p { font-size: 11px; color: var(--muted); }
.bonus-box { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; }
.bonus-icon { font-size: 20px; width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bonus-title { font-size: 13px; font-weight: 600; color: var(--primary); }
.bonus-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
#toast-container { position: fixed; top: 72px; right: 16px; z-index: 999; display: flex; flex-direction: column; gap: 8px; max-width: 320px; }
.toast { padding: 14px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); animation: slideIn 0.3s ease; }
.toast strong { display: block; font-size: 13px; margin-bottom: 3px; }
.toast p { font-size: 12px; color: var(--muted); margin: 0; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* FIYATLAR & PANEL */
.fiyat-grid { display: grid; grid-template-columns: 280px 1fr; gap: 12px; }
.fiyat-col { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.panel-600 { height: 600px; }
.panel-search { padding: 10px; border-bottom: 1px solid var(--border); }
.panel-list { flex: 1; overflow-y: auto; }
.svc-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: background 0.15s; }
.svc-row:hover { background: rgba(255,255,255,0.04); }
.svc-row.active { background: rgba(255,255,255,0.07); border-left: 2px solid var(--primary); }
.svc-row-left { display: flex; align-items: center; gap: 10px; }
.svc-dot-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--muted); flex-shrink: 0; }
.svc-name { font-size: 13px; font-weight: 500; }
.trend-badge { font-size: 10px; color: #f97316; }
.star-btn { color: var(--muted); cursor: pointer; padding: 4px; font-size: 14px; }
.country-row { border-bottom: 1px solid rgba(255,255,255,0.04); }
.country-row-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; cursor: pointer; transition: background 0.15s; }
.country-row-head:hover { background: rgba(255,255,255,0.04); }
.country-alts { background: rgba(255,255,255,0.02); }
.alt-row { display: flex; justify-content: space-between; padding: 10px 16px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; padding: 32px; color: var(--muted); gap: 8px; }
.empty-state h3 { font-size: 15px; font-weight: 600; color: var(--fg); margin: 0; }
.empty-state p { font-size: 13px; margin: 0; }
.chev { transition: transform 0.2s; }

/* SSS */
.sss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.accord-item { border-bottom: 1px solid var(--border); }
.accord-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 0; background: none; border: none; color: var(--fg); cursor: pointer; font-size: 14px; font-weight: 500; text-align: left; }
.accord-body { padding: 0 0 14px; }
.accord-body p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* SERVİSLER */
.cat-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.cat-pill { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; background: var(--secondary); color: var(--muted); border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
.cat-pill.active, .cat-pill:hover { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

/* İLETİŞİM */
.iletisim-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }

/* BAKİYE */
.bakiye-grid { display: flex; gap: 24px; align-items: flex-start; }
.step-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.step-badge { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--primary); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.amount-btn { padding: 16px 8px; border-radius: 12px; border: 2px solid var(--border); background: rgba(255,255,255,0.04); font-size: 18px; font-weight: 700; color: var(--fg); cursor: pointer; transition: all 0.2s; }
.amount-btn.selected { border-color: var(--primary); background: rgba(255,255,255,0.1); color: var(--primary); }
.amount-btn:hover:not(.selected) { border-color: rgba(255,255,255,0.2); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.method-btn { padding: 18px 12px; border-radius: 14px; border: 2px solid var(--border); background: rgba(255,255,255,0.03); cursor: pointer; transition: all 0.2s; text-align: center; }
.method-btn.selected { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }
.method-icon { width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.method-name { font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.method-desc { font-size: 11px; color: var(--muted); }

/* STATUS BADGES */
.status-badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; border: 1px solid transparent; white-space: nowrap; }
.status-green  { background: rgba(34,197,94,0.15);  color: #22c55e; border-color: rgba(34,197,94,0.3); }
.status-yellow { background: rgba(234,179,8,0.15);  color: #eab308; border-color: rgba(234,179,8,0.3); }
.status-red    { background: rgba(239,68,68,0.15);   color: #ef4444; border-color: rgba(239,68,68,0.3); }
.status-blue   { background: rgba(59,130,246,0.15);  color: #3b82f6; border-color: rgba(59,130,246,0.3); }
.status-zinc   { background: rgba(113,113,122,0.15); color: #a1a1aa; border-color: rgba(113,113,122,0.3); }

/* SİPARİŞ */
.order-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.order-svc { display: flex; align-items: center; gap: 10px; min-width: 160px; }

/* HESAP */
.hesap-grid { display: flex; gap: 20px; align-items: flex-start; }
.hesap-tab { width: 100%; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; background: none; border: none; color: var(--muted); cursor: pointer; transition: all 0.2s; text-align: left; }
.hesap-tab.active { background: rgba(255,255,255,0.08); color: var(--primary); }
.hesap-tab:hover:not(.active) { background: rgba(255,255,255,0.04); color: var(--fg); }
.toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: var(--border); border-radius: 24px; transition: 0.3s; }
.toggle-slider:before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; }
.toggle input:checked + .toggle-slider { background: var(--primary); }
.toggle input:checked + .toggle-slider:before { transform: translateX(20px); background: #000; }

/* NUMARA AL */
.numara-grid { display: grid; grid-template-columns: 260px 1fr 280px; gap: 12px; }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 200; display: flex; align-items: center; justify-content: center; }
.modal-box { background: var(--card); border: 1px solid var(--border); border-radius: 18px; width: 100%; max-width: 420px; margin: 16px; box-shadow: 0 25px 60px rgba(0,0,0,0.5); }

/* POLICY */
.policy-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.07); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.policy-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.policy-text { color: var(--muted); font-size: 14px; line-height: 1.7; }
.policy-text p { margin-bottom: 10px; }
.policy-text ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.policy-text li { list-style: disc; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .fiyat-grid, .iletisim-grid { grid-template-columns: 1fr; }
  .panel-600 { height: 400px; }
  .numara-grid { grid-template-columns: 1fr; }
  .hesap-grid { flex-direction: column; }
  .hesap-grid > .card:first-child { width: 100%; }
  .bakiye-grid { flex-direction: column; }
  .bakiye-grid > .card:last-child { width: 100% !important; position: static !important; }
  .sss-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-grid2 { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: 1fr; }
  .order-inner { flex-direction: column; align-items: flex-start; }
}




/* ===== LIGHT MODE (default :root üstünde) ===== */
/* Light zaten :root, burada sadece navbar/iphone özel override */
.light .navbar { background: rgba(248,248,248,0.95); }
.light .iphone-screen, .light .msg-list { background: #f0f0f0; }
.light .msg-item { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.light .msg-app-name { color: #111; }
.light .code-text { color: #111; }
.light .logo-icon { background: #f97316; }
.light .nav-link.active { background: #f97316; color: #fff; }
.light .stat-card { background: #fff; }
.light .feature-card { background: #fff; }
.light .hdr-pill { background: #fff; border-color: #e5e7eb; color: #111; }
.light .hdr-icon-btn { background: #fff; border-color: #e5e7eb; color: #111; }
.light .lang-dropdown { background: #fff; }

/* ===== DARK MODE (turuncu + siyah) ===== */
.dark {
  --bg: #0a0a0a;
  --card: #111111;
  --border: #1f1f1f;
  --primary: #f97316;
  --primary-fg: #ffffff;
  --muted: #71717a;
  --fg: #fafafa;
  --secondary: #1a1a1a;
}

/* Dark'ta bazı özel overridelar */
.dark .navbar { background: rgba(10,10,10,0.95); }
.dark .logo-icon { background: #f97316; }
.dark .nav-link.active { background: #f97316; color: #fff; }
.dark .iphone-screen { background: #000; }
.dark .msg-list { background: #000; }
.dark .msg-item { background: #111; }
.dark .stat-value { -webkit-text-fill-color: transparent; }
.dark .hdr-pill { background: #1a1a1a; border-color: #2a2a2a; color: #fafafa; }
.dark .hdr-pill:hover { border-color: rgba(249,115,22,0.4); }
.dark .hdr-icon-btn { background: #1a1a1a; border-color: #2a2a2a; color: #fafafa; }
.dark .lang-dropdown { background: #111; border-color: #2a2a2a; }
.dark .lang-opt:hover { background: #1a1a1a; }
.dark .service-card { background: #111; border-color: #1f1f1f; }
.dark .service-card:hover { background: #1a1a1a; border-color: rgba(249,115,22,0.3); }
.dark .feature-card { background: #111; }
.dark .feature-card:hover { border-color: rgba(249,115,22,0.3); }
.dark .stat-card:hover { border-color: rgba(249,115,22,0.2); }
.dark .cta-box { border-color: rgba(249,115,22,0.2); }
.dark .btn-primary { background: #f97316; color: #fff; }
.dark .btn-primary:hover { background: #ea6d0c; }
.dark .btn-outline { border-color: #2a2a2a; }
.dark .btn-outline:hover { background: #1a1a1a; border-color: rgba(249,115,22,0.3); }

/* Turuncu gradient stat değerleri (dark'ta) */
.dark .green-grad  { background-image: linear-gradient(135deg, #f97316, #fb923c); }
.dark .yellow-grad { background-image: linear-gradient(135deg, #f97316, #fbbf24); }
.dark .blue-grad   { background-image: linear-gradient(135deg, #f97316, #fb923c); }
.dark .purple-grad { background-image: linear-gradient(135deg, #ea580c, #f97316); }

/* Dark footer */
.dark .footer { border-color: #1f1f1f; }
.dark .footer-col a:hover { color: #f97316; }

/* Dark card genel */
.dark .card { background: #111; border-color: #1f1f1f; }
.dark .auth-card { background: #111; border-color: #1f1f1f; }
.dark .fiyat-col { background: #111; border-color: #1f1f1f; }
.dark .accord-btn:hover { color: #f97316; }

/* === HDR PILLS === */
.hdr-pill {
  display: inline-flex; align-items: center; gap: 5px;
  height: 30px; padding: 0 10px; border-radius: 7px;
  border: 1px solid var(--border); background: var(--secondary);
  color: var(--fg); font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.hdr-pill:hover { border-color: #f97316; }
.hdr-pill-ico { display: flex; align-items: center; }
.hdr-pill-txt { font-size: 12px; }
@media (max-width: 1100px) { .hdr-pill-txt { display: none; } }

/* === LANG === */
.lang-wrap { position: relative; }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; padding: 4px; z-index: 300; min-width: 70px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lang-opt {
  display: block; width: 100%; padding: 6px 12px;
  border-radius: 6px; border: none; background: none;
  color: var(--fg); font-size: 13px; font-weight: 600;
  cursor: pointer; text-align: center; transition: background 0.15s;
}
.lang-opt:hover { background: var(--secondary); }
.lang-opt.active { color: #f97316; }

/* === NOTIF === */
.hdr-icon-btn {
  position: relative; width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid var(--border); background: var(--secondary);
  color: var(--fg); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.hdr-icon-btn:hover { border-color: #f97316; }
.notif-dot {
  position: absolute; top: 5px; right: 5px; width: 6px; height: 6px;
  background: #f97316; border-radius: 50%; border: 1.5px solid var(--bg);
}

/* === HERO sabit layout === */
.hero-left { display: flex; flex-direction: column; gap: 24px; min-height: 400px; justify-content: center; align-self: center; }
.hero-right { display: flex; justify-content: center; overflow: hidden; }
.iphone-screen { height: 540px; overflow: hidden; }
.msg-list { height: 380px; overflow: hidden !important; position: relative; display: flex; flex-direction: column; gap: 8px; padding: 10px 8px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .iphone-wrap { width: 240px; }
}

/* === FEATURE ICON dark'ta turuncu === */
.dark .feature-icon { background: rgba(249,115,22,0.12); color: #f97316; }
.dark .step-icon { background: rgba(249,115,22,0.08); color: #f97316; }
.dark .step-num { background: #f97316; color: #fff; }
.dark .status-dot { background: #f97316; }
.dark .msg-code { background: rgba(249,115,22,0.1); }
.dark .code-text { color: #f97316; }

/* Light'ta da turuncu primary butonu */
.btn-primary { background: #f97316; color: #fff; }
.btn-primary:hover { background: #ea6d0c; }

/* hidden */
.hidden { display: none !important; }

/* ===== LIGHT MODE (default) ===== */
:root {
  --bg: #f8f8f8; --card: #ffffff; --border: #e5e7eb;
  --primary: #f97316; --primary-fg: #ffffff;
  --muted: #6b7280; --fg: #111111; --secondary: #f3f4f6;
}
body { background: var(--bg); color: var(--fg); }
.navbar { background: rgba(248,248,248,0.96); border-color: var(--border); }
.btn-primary { background: #f97316; color: #fff; border: none; }
.btn-primary:hover { background: #ea6d0c; }
.nav-link.active { background: #f97316; color: #fff; }
.logo-icon { background: #f97316; color: #fff; }

/* ===== DARK MODE ===== */
.dark {
  --bg: #0a0a0a; --card: #111111; --border: #1f1f1f;
  --primary: #f97316; --primary-fg: #ffffff;
  --muted: #71717a; --fg: #fafafa; --secondary: #1a1a1a;
}
.dark body { background: #0a0a0a; color: #fafafa; }
.dark .navbar { background: rgba(10,10,10,0.96); border-color: #1f1f1f; }
.dark .nav-link { color: #71717a; }
.dark .nav-link:hover { color: #fafafa; background: #1a1a1a; }
.dark .nav-link.active { background: #f97316; color: #fff; }
.dark .logo-icon { background: #f97316; color: #fff; }
.dark .feature-card { background: #111; border-color: #1f1f1f; }
.dark .feature-card:hover { border-color: rgba(249,115,22,0.3); }
.dark .feature-icon { background: rgba(249,115,22,0.12); color: #f97316; }
.dark .stat-card { background: #111; border-color: #1f1f1f; }
.dark .stat-card:hover { border-color: rgba(249,115,22,0.2); }
.dark .service-card { background: #111; border-color: #1f1f1f; }
.dark .service-card:hover { background: #1a1a1a; border-color: rgba(249,115,22,0.3); }
.dark .cta-box { border-color: rgba(249,115,22,0.2); }
.dark .card { background: #111; border-color: #1f1f1f; }
.dark .footer { border-color: #1f1f1f; }
.dark .footer-col a:hover { color: #f97316; }
.dark .step-icon { background: rgba(249,115,22,0.08); color: #f97316; }
.dark .step-num { background: #f97316; color: #fff; }
.dark .iphone-screen { background: #000; }
.dark .msg-list { background: #000; }
.dark .msg-item { background: #111; }
.dark .msg-code { background: rgba(249,115,22,0.1); }
.dark .code-text { color: #f97316; }
.dark .status-dot { background: #f97316; }
.dark .stat-value { -webkit-text-fill-color: transparent; }
.dark .green-grad,.dark .yellow-grad,.dark .blue-grad,.dark .purple-grad { background-image: linear-gradient(135deg,#f97316,#fb923c); }
.dark .btn-outline { border-color: #2a2a2a; }
.dark .btn-outline:hover { background: #1a1a1a; border-color: rgba(249,115,22,0.3); }
.dark .fiyat-col { background: #111; border-color: #1f1f1f; }
.dark .auth-card { background: #111; border-color: #1f1f1f; }
.dark .hdr-pill { background: #1a1a1a; border-color: #2a2a2a; color: #fafafa; }
.dark .hdr-pill:hover { border-color: rgba(249,115,22,0.5); }
.dark .hdr-icon-btn { background: #1a1a1a; border-color: #2a2a2a; color: #fafafa; }
.dark .lang-dropdown { background: #111; border-color: #2a2a2a; }
.dark .lang-opt:hover { background: #1a1a1a; }
.dark .wallet-pill { background: #1a1a1a; border-color: #2a2a2a; }
.dark .wallet-amount { color: #f97316; }
.dark .user-pill { background: #1a1a1a; border-color: #2a2a2a; color: #fafafa; }
.dark .user-pill:hover { border-color: rgba(249,115,22,0.5); }
.dark .user-dropdown { background: #111; border-color: #2a2a2a; }
.dark .udrop-wallet { background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.2); }
.dark .udrop-item { color: #fafafa; }
.dark .udrop-item:hover { background: #1a1a1a; color: #f97316; }
.dark .udrop-divider { border-color: #2a2a2a; }
.dark .udrop-section-label { color: #555; }

/* ===== HEADER PILLS ===== */
.hdr-pill {
  display: inline-flex; align-items: center; gap: 5px;
  height: 30px; padding: 0 10px; border-radius: 7px;
  border: 1px solid var(--border); background: var(--secondary);
  color: var(--fg); font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.hdr-pill:hover { border-color: #f97316; }
.hdr-pill-txt { font-size: 12px; }
@media(max-width:1100px) { .hdr-pill-txt { display:none; } }

/* ===== LANG DROPDOWN ===== */
.lang-wrap { position: relative; }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; z-index: 300; min-width: 80px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.lang-opt {
  display: flex; align-items: center; gap: 7px; width: 100%;
  padding: 6px 10px; border-radius: 6px; border: none;
  background: none; color: var(--fg); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.15s;
}
.lang-opt:hover { background: var(--secondary); }
.lang-opt.active { color: #f97316; }

/* ===== NOTIF ===== */
.hdr-icon-btn {
  position: relative; width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid var(--border); background: var(--secondary);
  color: var(--fg); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.hdr-icon-btn:hover { border-color: #f97316; }
.notif-dot { position: absolute; top: 5px; right: 5px; width: 6px; height: 6px; background: #f97316; border-radius: 50%; border: 1.5px solid var(--bg); }

/* ===== WALLET PILL ===== */
.wallet-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 6px 0 12px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--secondary);
  cursor: default; white-space: nowrap;
}
.wallet-info { display: flex; flex-direction: column; line-height: 1.1; }
.wallet-label { font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.wallet-amount { font-size: 13px; font-weight: 700; color: #f97316; }
.wallet-add-btn {
  width: 26px; height: 26px; border-radius: 6px; background: #f97316;
  color: #fff; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s; flex-shrink: 0;
}
.wallet-add-btn:hover { background: #ea6d0c; }

/* ===== USER PILL ===== */
.user-wrap { position: relative; }
.user-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 10px 0 6px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--secondary);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.user-pill:hover { border-color: #f97316; }
.user-avatar {
  width: 26px; height: 26px; border-radius: 6px; background: #f97316;
  color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.user-info { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.user-name { font-size: 12px; font-weight: 600; color: var(--fg); }
.user-role { font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== USER DROPDOWN ===== */
.user-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 8px; z-index: 300; min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.udrop-wallet {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 8px;
  background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.15);
}
.udrop-wallet-label { font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.udrop-wallet-amount { font-size: 16px; font-weight: 700; color: #f97316; }
.udrop-yukle-btn {
  padding: 5px 12px; border-radius: 7px; background: #f97316; color: #fff;
  font-size: 12px; font-weight: 600; text-decoration: none; transition: background 0.2s; white-space: nowrap;
}
.udrop-yukle-btn:hover { background: #ea6d0c; }
.udrop-section-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 10px 6px; display: block; }
.udrop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px; font-size: 13px; font-weight: 500;
  color: var(--fg); text-decoration: none; transition: all 0.15s; cursor: pointer;
}
.udrop-item:hover { background: var(--secondary); color: #f97316; }
.udrop-item svg { flex-shrink: 0; opacity: 0.7; }
.udrop-lang-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; }
.udrop-flag-btn { background: none; border: 2px solid transparent; border-radius: 4px; padding: 2px; cursor: pointer; transition: all 0.15s; }
.udrop-flag-btn:hover { border-color: #f97316; }
.udrop-flag-btn.active { border-color: #f97316; }
.udrop-divider { height: 1px; background: var(--border); margin: 6px 0; }
.udrop-logout { color: #ef4444 !important; }
.udrop-logout:hover { background: rgba(239,68,68,0.08) !important; color: #ef4444 !important; }

/* ===== HERO SABIT ===== */
.hero-left { display: flex; flex-direction: column; gap: 24px; min-height: 400px; justify-content: center; align-self: center; }
.hero-right { display: flex; justify-content: center; overflow: hidden; }
.iphone-screen { height: 540px; overflow: hidden; }
.msg-list { height: 380px; overflow: hidden !important; position: relative; display: flex; flex-direction: column; gap: 8px; padding: 10px 8px; }
@media(max-width:900px) { .hero-grid { grid-template-columns: 1fr; } .hero-right { order:-1; } .iphone-wrap { width:240px; } }

/* ===== HIDDEN ===== */
.hidden { display: none !important; }
