/* ============================================================
   PROJECT FACTORY — CAREER FAIR 2026 — DESIGN SYSTEM
   Ankara Medipol Üniversitesi | 13-14 Mayıs 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

/* === TOKENS === */
:root {
  --primary: #2B5CE6;
  --primary-dark: #1a3fa0;
  --primary-light: #e8eeff;
  --accent: #22C55E;
  --accent-dark: #16a34a;
  --accent-light: #dcfce7;
  --yellow: #F59E0B;
  --purple: #7C3AED;
  --red: #EF4444;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-inverse: #ffffff;

  --bg-page: #F8FAFC;
  --bg-white: #ffffff;
  --bg-subtle: #F1F5F9;
  --border: #E2E8F0;
  --border-focus: #2B5CE6;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(43,92,230,.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-page); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p { color: var(--text-secondary); font-size: 1rem; }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* === NAVIGATION === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--text-primary);
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 8px; }
.navbar-links a {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-weight: 500; font-size: 0.9rem; color: var(--text-secondary);
  transition: var(--transition);
}
.navbar-links a:hover { color: var(--primary); background: var(--primary-light); }
.navbar-cta {
  background: var(--primary) !important; color: var(--text-inverse) !important;
  font-weight: 600 !important;
}
.navbar-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.navbar-mobile-btn { display: none; padding: 8px; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 1.5rem; }
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-mobile-btn { display: block; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 1rem; transition: var(--transition);
  cursor: pointer; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 20px rgba(43,92,230,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,92,230,0.45); }
.btn-accent {
  background: var(--accent); color: white;
  box-shadow: 0 4px 20px rgba(34,197,94,0.30);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-white {
  background: white; color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

/* === CARDS === */
.card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.card-icon.blue { background: var(--primary-light); }
.card-icon.green { background: var(--accent-light); }
.card-icon.yellow { background: #fef3c7; }
.card-icon.purple { background: #ede9fe; }
.card-icon.red { background: #fee2e2; }

/* === BADGES / TAGS === */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-accent { background: var(--accent-light); color: var(--accent-dark); }
.badge-yellow { background: #fef3c7; color: #92400e; }
.badge-purple { background: #ede9fe; color: #5b21b6; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-gray { background: var(--bg-subtle); color: var(--text-secondary); }
.badge-orange { background: #ffedd5; color: #9a3412; }

/* === SECTION HEADING === */
.section-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px; display: block;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 640px; line-height: 1.7; }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-weight: 600; font-size: 0.9rem;
  color: var(--text-primary); margin-bottom: 6px;
}
.form-label span { color: var(--red); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: var(--bg-white);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text-primary);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(43,92,230,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 0.8rem; color: var(--red); margin-top: 4px; display: none; }
.form-input.error, .form-select.error { border-color: var(--red); }

/* Multi-select checkboxes */
.checkbox-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px; margin-top: 8px;
}
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); cursor: pointer;
  transition: var(--transition); font-size: 0.9rem; font-weight: 500;
  user-select: none;
}
.checkbox-item:hover { border-color: var(--primary); background: var(--primary-light); }
.checkbox-item.selected { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.checkbox-item input { display: none; }
.checkbox-item .check-box {
  width: 18px; height: 18px; border-radius: 5px;
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); font-size: 0.7rem;
}
.checkbox-item.selected .check-box { background: var(--primary); border-color: var(--primary); color: white; }

/* File upload */
.file-upload {
  border: 2px dashed var(--border); border-radius: var(--radius-md);
  padding: 28px; text-align: center; cursor: pointer;
  transition: var(--transition); position: relative;
}
.file-upload:hover { border-color: var(--primary); background: var(--primary-light); }
.file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-icon { font-size: 2rem; margin-bottom: 8px; }
.file-upload-text { font-size: 0.9rem; color: var(--text-secondary); }
.file-upload-text strong { color: var(--primary); }

/* === FOOTER === */
.footer {
  background: var(--text-primary); color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-size: 0.9rem; line-height: 1.7; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.1rem; color: white; display: block; margin-bottom: 12px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; padding: 4px 0; transition: var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* === HERO === */
.hero {
  padding-top: 140px; padding-bottom: 80px;
  background: linear-gradient(135deg, #EEF2FF 0%, #F0FDF4 50%, #F8FAFC 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,92,230,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light); border: 1px solid rgba(43,92,230,0.2); color: var(--primary); padding: 6px 16px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; }
.hero-title { margin-bottom: 20px; }
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card-float {
  background: white; border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
}
.hero-card-float-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: 0.85rem; color: var(--text-secondary); }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
}

/* === PROGRESS / STEP === */
.step-indicator { display: flex; gap: 8px; margin-bottom: 32px; }
.step { flex: 1; height: 4px; border-radius: 2px; background: var(--border); transition: var(--transition); }
.step.active { background: var(--primary); }
.step.done { background: var(--accent); }

/* === TABLE === */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 12px 16px; background: var(--bg-subtle); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); text-align: left; border-bottom: 1px solid var(--border); }
tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-primary); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg-subtle); }

/* === TOAST === */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--text-primary); color: white;
  padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 0.9rem; box-shadow: var(--shadow-xl);
  transform: translateY(100px); opacity: 0;
  transition: var(--transition); display: flex; align-items: center; gap: 10px;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--accent-dark); }
.toast.error-toast { background: var(--red); }

/* === ADMIN SIDEBAR === */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--text-primary); color: white;
  padding: 0; position: fixed; top: 0; left: 0; bottom: 0;
  overflow-y: auto; z-index: 100;
  display: flex; flex-direction: column;
}
.sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
}
.sidebar-logo span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.2; }
.sidebar-logo small { display: block; font-size: 0.7rem; opacity: 0.6; font-weight: 400; }
.sidebar-nav { padding: 16px 12px; flex: 1; }
.sidebar-nav-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.4; padding: 8px 8px 4px; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-md);
  color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); cursor: pointer; margin-bottom: 2px;
}
.sidebar-link:hover { background: rgba(255,255,255,0.08); color: white; }
.sidebar-link.active { background: var(--primary); color: white; }
.sidebar-link .icon { font-size: 1.1rem; width: 20px; text-align: center; }
.admin-main { margin-left: 260px; flex: 1; min-height: 100vh; background: var(--bg-page); }
.admin-topbar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 16px 32px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar h1 { font-size: 1.2rem; font-weight: 700; }
.admin-content { padding: 32px; }
@media (max-width: 900px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
}

/* === STAT CARDS === */
.stat-card {
  background: white; border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
}
.stat-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.stat-info strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-primary); }
.stat-info span { font-size: 0.85rem; color: var(--text-secondary); }

/* === MODAL === */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
  padding: 20px;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  background: white; border-radius: var(--radius-xl);
  max-width: 680px; width: 100%; max-height: 85vh;
  overflow-y: auto; padding: 36px;
  transform: scale(0.95) translateY(20px); transition: var(--transition);
  box-shadow: var(--shadow-xl);
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.modal-close { font-size: 1.5rem; color: var(--text-muted); cursor: pointer; padding: 4px; flex-shrink: 0; transition: var(--transition); }
.modal-close:hover { color: var(--text-primary); }

/* === FILTER BAR === */
.filter-bar {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 20px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-bottom: 24px;
}
.filter-bar .form-input { margin-bottom: 0; }
.filter-select { padding: 8px 32px 8px 12px; border-radius: var(--radius-full); border: 1.5px solid var(--border); font-size: 0.85rem; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; cursor: pointer; }
.filter-search { flex: 1; min-width: 200px; padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-full); font-size: 0.9rem; outline: none; }
.filter-search:focus { border-color: var(--primary); }

/* === UTILITY === */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }

/* === QR SECTION === */
.qr-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white; padding: 60px 0;
}
.qr-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.qr-box {
  background: white; border-radius: var(--radius-lg);
  padding: 16px; display: inline-flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.qr-box canvas, .qr-box img { width: 140px; height: 140px; border-radius: var(--radius-sm); }
.qr-box span { font-size: 0.75rem; color: var(--text-secondary); font-weight: 600; }
@media (max-width: 768px) { .qr-inner { grid-template-columns: 1fr; text-align: center; } .qr-box { margin: 0 auto; } }

/* === OPPORTUNITY CARD SPECIALIZATIONS === */
.opp-card { transition: var(--transition); }
.opp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.opp-card-type { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.opp-card-who { font-size: 0.85rem; color: var(--text-secondary); }
.opp-gain-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.opp-gain-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); }
.opp-gain-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* === WHY US === */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; }

/* === STATUS BADGE === */
.status-yeni { background: #dbeafe; color: #1e40af; }
.status-incelenecek { background: #fef3c7; color: #92400e; }
.status-iletisim { background: #ede9fe; color: #5b21b6; }
.status-gorusme { background: #d1fae5; color: #065f46; }
.status-beklemede { background: #f1f5f9; color: #475569; }
.status-olumlu { background: #dcfce7; color: #166534; }
.status-uygun-degil { background: #fee2e2; color: #991b1b; }

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.animate-fadeup { animation: fadeUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ── FAQ (Sıkça Sorulan Sorular) ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(43,92,230,0.08); }
.faq-q {
  width: 100%; background: white; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.97rem; font-weight: 700; color: var(--text-primary);
  cursor: pointer; text-align: left; transition: var(--transition);
  font-family: inherit;
}
.faq-q:hover { background: var(--primary-light); color: var(--primary); }
.faq-q.open { background: var(--primary-light); color: var(--primary); border-bottom: 1.5px solid var(--border); }
.faq-icon { font-size: 1.4rem; font-weight: 400; flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75;
}
.faq-a.open { max-height: 600px; padding: 18px 24px 22px; }
.faq-a a { color: var(--primary); }
.faq-a ul { margin: 8px 0 0; padding-left: 20px; }
.faq-a li { margin-bottom: 4px; }

/* ═══════════════════════════════════════════════
   MOBILE / TABLET RESPONSIVE — Kapsamlı Düzeltme
   ═══════════════════════════════════════════════ */

/* Navbar logo subtitle — mobilde gizle */
@media (max-width: 768px) {
  .navbar-logo-sub { display: none; }
  .navbar-logo { font-size: 0.95rem; gap: 8px; }
  .navbar-logo img { height: 32px; }

  /* Hero butonları dikey */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }

  /* Kurucu Ortaklar - 2 sütundan 1 sütuna */
  .partners-grid {
    grid-template-columns: 1fr !important;
  }

  /* section padding küçült */
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* Kart başlıkları */
  .section-title { font-size: 1.4rem; }
  .section-header { margin-bottom: 32px; }

  /* Fırsat kartları — mobilde tek sütun */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }

  /* QR section */
  .qr-inner { grid-template-columns: 1fr; text-align: center; }
  .qr-box { margin: 0 auto; }

  /* FAQ buton yazı boyutu */
  .faq-q { font-size: 0.88rem; padding: 16px 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* PowerPoint iframe yükseklik düzelt */
  [src*="officeapps"] { min-height: 260px; }

  /* Buton boşlukları */
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
}

/* Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr !important; }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
}

/* Küçük telefon (max 480px) */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }

  /* Kurucu ortaklar kart içi boşluk */
  .partners-grid > div { padding: 16px !important; }

  /* Sunum başlık bar */
  [style*="padding:16px 24px"] {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Orta tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
