/* ============================================
   PDFix – style.css
   Font: Syne (display) + DM Sans (body)
   Tema: Koyu zemin, sarı/turuncu aksanlar
============================================ */

:root {
  --bg: #0e0e10;
  --bg2: #16161a;
  --bg3: #1e1e24;
  --accent: #f5c542;
  --accent2: #ff7f3e;
  --text: #f0f0f0;
  --muted: #888899;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -1px;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.btn-pro {
  background: var(--accent) !important;
  color: #111 !important;
  font-weight: 600 !important;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.9rem !important;
  transition: opacity 0.2s !important;
}

.btn-pro:hover {
  opacity: 0.85;
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  padding: 1rem 1.5rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.mobile-nav a:hover {
  color: var(--text);
}

.mobile-nav.open {
  display: flex;
}

/* ===== HERO ===== */
.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 197, 66, 0.06) 0%, transparent 70%);
}

.hero-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 197, 66, 0.12);
  color: var(--accent);
  border: 1px solid rgba(245, 197, 66, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-top h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.hero-top h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-top p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Hero drop - tüm child'lar drag eventini bloklamasın, tıklama JS ile yönetilir */
.hero-drop {
  max-width: 640px;
  margin: 0 auto 2rem;
  border: 2px dashed rgba(245, 197, 66, 0.3);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(245, 197, 66, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.hero-drop * {
  pointer-events: none;
}

.hero-drop input[type="file"] {
  pointer-events: auto;
}

.hero-drop:hover,
.hero-drop.dragover {
  border-color: var(--accent);
  background: rgba(245, 197, 66, 0.06);
}

.hero-drop svg {
  color: var(--accent);
  opacity: 0.7;
}

.hero-drop>p {
  font-size: 1rem;
  color: var(--text);
}

.hero-drop>span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-drop .drop-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-file-label {
  display: inline-block;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.hero-file-label:hover {
  opacity: 0.85;
}

.hero-file-label input {
  display: none;
}

/* BETA BANNER */
.beta-banner {
  background: #f59e0b;
  color: #1a1a1a;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* QUICK TOOLS */
.quick-tools {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-label {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

.quick-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.15s, background 0.15s;
}

.quick-btn:hover {
  border-color: rgba(245, 197, 66, 0.4);
  background: var(--bg3);
  color: var(--accent);
}

/* ===== QUOTA BANNER ===== */
.quota-banner {
  background: rgba(245, 197, 66, 0.06);
  border-top: 1px solid rgba(245, 197, 66, 0.15);
  border-bottom: 1px solid rgba(245, 197, 66, 0.15);
  padding: 0.7rem 0;
}

.quota-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.quota-inner strong {
  color: var(--accent);
}

.quota-upgrade {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.quota-upgrade:hover {
  text-decoration: underline;
}

/* ===== AD PLACEHOLDER ===== */
.ad-placeholder {
  background: var(--bg3);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin: 1.5rem 0;
}

/* ===== TOOLS GRID ===== */
.tools-section {
  padding: 3rem 0 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.tool-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.2s;
}

.tool-card:hover {
  border-color: rgba(245, 197, 66, 0.3);
  transform: translateY(-3px);
  background: var(--bg3);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 197, 66, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.tool-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.tool-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tool-tag.free {
  background: rgba(61, 200, 130, 0.15);
  color: #3dc882;
}

.tool-tag.pro {
  background: rgba(245, 197, 66, 0.15);
  color: var(--accent);
}

/* ===== WORKSPACE ===== */
#workspace {
  padding: 2rem 0;
}

.workspace-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.back-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: color 0.2s, border-color 0.2s;
}

.back-btn:hover {
  color: var(--text);
  border-color: var(--muted);
}

.workspace-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

/* Dropzone child elementler drag eventini bloklamasın */
.dropzone * {
  pointer-events: none;
}

.dropzone input[type="file"],
.dropzone label {
  pointer-events: auto;
}

/* DROP ZONE */
.dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, padding 0.25s;
  cursor: pointer;
  background: var(--bg);
}

.dropzone.dragover {
  border-color: var(--accent);
  background: rgba(245, 197, 66, 0.04);
}

/* Küçük "Dosya Ekle" buton hali */
.dropzone.dropzone-mini {
  padding: 0.6rem 1rem;
  border-style: dashed;
  border-color: var(--border);
  background: transparent;
  display: inline-flex;
  align-items: center;
  width: auto;
  cursor: default;
}

.dropzone-mini-label {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 1rem !important;
  font-size: 0.85rem !important;
  border-radius: 99px;
  cursor: pointer;
}

.dropzone-mini-label svg {
  flex-shrink: 0;
}

.drop-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.drop-inner svg {
  color: var(--muted);
}

.drop-inner p {
  font-size: 1rem;
  color: var(--muted);
}

.drop-inner span {
  font-size: 0.85rem;
  color: var(--muted);
}

.file-label {
  display: inline-block;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.file-label:hover {
  opacity: 0.85;
}

.file-label input {
  display: none;
}

.drop-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* FILE LIST */
.file-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.file-item-icon {
  font-size: 1.4rem;
}

.file-item-info {
  flex: 1;
}

.file-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 350px;
}

.file-item-size {
  font-size: 0.78rem;
  color: var(--muted);
}

.file-item-note {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 2px;
  opacity: 0.85;
}

.file-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s;
}

.file-item-remove:hover {
  color: #ff5c5c;
}

/* TOOL OPTIONS */
.tool-options {
  margin-top: 1.5rem;
}

.option-group {
  margin-bottom: 1rem;
}

.option-group label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.option-group input[type="text"],
.option-group input[type="number"],
.option-group select {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  width: 100%;
  max-width: 320px;
  outline: none;
  transition: border-color 0.2s;
}

.option-group input:focus,
.option-group select:focus {
  border-color: var(--accent);
}

/* ACTION */
.action-area {
  margin-top: 2rem;
}

.action-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
  transition: transform 0.2s, box-shadow 0.2s;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 197, 66, 0.3);
}

.action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* PROGRESS */
.progress-area {
  margin-top: 2rem;
}

.progress-bar {
  background: var(--bg3);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 99px;
  width: 0%;
  transition: width 0.4s ease;
}

.progress-area p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* RESULT */
.result-area {
  margin-top: 2rem;
}

.result-card {
  background: var(--bg3);
  border: 1px solid rgba(61, 200, 130, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.result-icon {
  width: 60px;
  height: 60px;
  background: rgba(61, 200, 130, 0.15);
  color: #3dc882;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.result-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.result-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.download-btn {
  display: inline-block;
  background: #3dc882;
  color: #0a1a10;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
  margin-right: 0.75rem;
  transition: opacity 0.2s;
}

.download-btn:hover {
  opacity: 0.85;
}

.again-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.85rem 1.5rem;
  border-radius: 99px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s, border-color 0.2s;
}

.again-btn:hover {
  color: var(--text);
  border-color: var(--muted);
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 4rem 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--muted);
  padding-top: 2rem;
  flex-shrink: 0;
}

/* ===== TRUST ===== */
.trust-section {
  padding: 3rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.trust-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.modal-box p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Modal boyutları */
.modal-md {
  max-width: 440px;
  text-align: left;
}

.modal-lg {
  max-width: 560px;
  text-align: left;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-box {
  position: relative;
}

/* ===== AUTH FORM ===== */
.auth-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: var(--font-body);
  padding: 0.75rem;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.auth-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.auth-form.active {
  display: flex;
}

.auth-error {
  background: rgba(255, 92, 92, 0.1);
  border: 1px solid rgba(255, 92, 92, 0.3);
  color: #ff7070;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: none;
}

.auth-error.visible {
  display: block;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-group input {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus {
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.full-btn {
  width: 100%;
  justify-content: center;
}

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.auth-switch button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: underline;
}

/* ===== HEADER USER ===== */
.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  cursor: pointer;
  color: var(--text);
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: border-color 0.15s;
  position: relative;
}

.user-avatar-btn:hover {
  border-color: var(--muted);
}

.avatar-circle {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-name {
  font-weight: 500;
}

.avatar-circle-lg {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.user-dropdown.open {
  display: flex;
}

.dropdown-header {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-header strong {
  font-size: 0.9rem;
}

.dropdown-header span {
  font-size: 0.78rem;
  color: var(--muted);
}

.dropdown-item {
  background: none;
  border: none;
  color: var(--text);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s;
}

.dropdown-item:hover {
  background: var(--bg3);
}

.dropdown-item.accent {
  color: var(--accent);
}

.dropdown-item.danger {
  color: #ff7070;
}

.btn-nav-outline {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-nav-outline:hover {
  color: var(--text);
  border-color: var(--muted);
}

.pro-badge-nav {
  background: rgba(245, 197, 66, 0.15);
  color: var(--accent);
  border: 1px solid rgba(245, 197, 66, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
}

.plan-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-free {
  background: rgba(136, 135, 128, 0.15);
  color: var(--muted);
}

.plan-pro {
  background: rgba(245, 197, 66, 0.15);
  color: var(--accent);
}

.quota-expiry {
  font-size: 0.82rem;
  color: rgba(61, 200, 130, 0.7);
}

/* ===== PRO MODAL ===== */
.pro-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pro-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.pro-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.pro-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.pro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pro-feat {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.pro-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pro-plan {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  position: relative;
}

.pro-plan.featured {
  border-color: rgba(245, 197, 66, 0.4);
  background: rgba(245, 197, 66, 0.04);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

.plan-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.pro-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== ÖDEME MODAL ===== */
.pay-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.pay-plan-label {
  background: rgba(245, 197, 66, 0.1);
  color: var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.pay-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.pay-note {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== HESAP MODAL ===== */
.account-avatar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.account-avatar h3 {
  font-size: 1.1rem;
  margin: 0 0 2px;
}

.account-avatar span {
  font-size: 0.85rem;
  color: var(--muted);
}

.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.account-stat {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.stat-val {
  font-size: 0.95rem;
  font-weight: 500;
}

.account-upgrade-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(245, 197, 66, 0.06);
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.account-upgrade-bar strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.account-upgrade-bar p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.account-actions {
  display: flex;
  justify-content: flex-end;
}

.danger-btn {
  color: #ff7070 !important;
  border-color: rgba(255, 112, 112, 0.3) !important;
}

.danger-btn:hover {
  background: rgba(255, 112, 112, 0.08) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

  .quota-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-drop {
    padding: 2rem 1.25rem;
  }

  .pro-plans {
    grid-template-columns: 1fr;
  }

  .pro-features {
    grid-template-columns: 1fr;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}