/* ═══════════════════════════════════════════════════
   SahaShift — Professional Website Styles
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2D6BE4;
  --primary-dark: #1A4FC0;
  --primary-light: #EBF1FD;
  --accent: #FF9500;
  --accent-light: #FFF4E5;
  --success: #2ECC71;
  --danger: #FF3B30;
  --dark: #1A1D26;
  --text: #374151;
  --text-light: #6B7280;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --card: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}
button { cursor: pointer; }

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

/* ── Typography ─────────────────────────────────── */
h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--dark); }
h2 { font-size: 2.2rem; font-weight: 700; line-height: 1.2; color: var(--dark); }
h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--dark); }
p { color: var(--text-light); line-height: 1.7; }
.text-center { text-align: center; }
.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 600px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,107,228,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,107,228,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,149,0,0.3);
}
.btn-accent:hover {
  background: #E68600;
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── Navbar ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.nav-logo span { color: var(--primary); }
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  font-size: 1.5rem;
  color: var(--dark);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,107,228,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,149,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.15rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: left; }
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-light); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-phone {
  width: 300px;
  height: 600px;
  background: var(--dark);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-phone-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a2744 0%, #0f172a 100%);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  padding: 40px 20px;
}
.hero-phone-inner .app-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 8px;
}
.hero-phone-inner h3 { color: white; font-size: 1.3rem; }
.hero-phone-inner p { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-align: center; }
.hero-phone-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
}
.phone-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.phone-card-text { flex: 1; }
.phone-card-text strong { font-size: 0.8rem; color: white; display: block; }
.phone-card-text span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.floating-card.card-1 { top: 80px; right: -20px; animation-delay: 0s; }
.floating-card.card-2 { bottom: 120px; left: -30px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.floating-card strong { font-size: 0.85rem; color: var(--dark); display: block; }
.floating-card span { font-size: 0.75rem; color: var(--text-light); }

/* ── Features ───────────────────────────────────── */
.features { padding: 100px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { font-size: 0.92rem; }

/* ── Stats Bar ──────────────────────────────────── */
.stats-bar {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ── How It Works ───────────────────────────────── */
.how-it-works { padding: 100px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step {
  text-align: center;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--border);
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.88rem; }

/* ── Job Listings Section ───────────────────────── */
.job-listings { padding: 100px 0; background: var(--white); }
.job-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-input, .filter-select {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  font-size: 0.9rem;
}
.filter-input { flex: 1; min-width: 200px; }
.filter-select { min-width: 160px; }
.filter-input:focus, .filter-select:focus { border-color: var(--primary); }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.job-card-header h3 { font-size: 1.05rem; flex: 1; margin-right: 12px; }
.job-wage {
  font-weight: 800;
  color: var(--success);
  white-space: nowrap;
  font-size: 1rem;
}
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.job-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.job-tag.location { background: rgba(45,107,228,0.1); color: var(--primary); }
.job-tag.profession { background: rgba(255,149,0,0.1); color: var(--accent); }
.job-tag.workers { background: rgba(46,204,113,0.1); color: var(--success); }
.job-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.job-card-meta { font-size: 0.8rem; color: var(--text-light); }
.job-card-meta span { margin-right: 14px; }

.jobs-loading, .jobs-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.load-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ── CTA Section ────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(45,107,228,0.15) 0%, transparent 60%);
}
.cta h2 { color: var(--white); position: relative; z-index: 1; }
.cta p { color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.cta .hero-actions { justify-content: center; position: relative; z-index: 1; }
.store-badges { display: flex; gap: 16px; justify-content: center; margin-top: 24px; position: relative; z-index: 1; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: white;
  transition: var(--transition);
}
.store-badge:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.store-badge .store-icon { font-size: 1.5rem; }
.store-badge .store-text { text-align: left; }
.store-badge .store-text small { font-size: 0.65rem; opacity: 0.7; display: block; }
.store-badge .store-text strong { font-size: 0.9rem; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  padding: 60px 0 30px;
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo, .footer-brand .nav-logo span { color: white; }
.footer-brand p { font-size: 0.88rem; max-width: 300px; }
.footer-col h4 { color: white; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: white; }

/* ── Auth Modal ─────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal h2 { margin-bottom: 8px; font-size: 1.5rem; }
.modal p { margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-light);
  transition: var(--transition);
}
.modal-close:hover { background: var(--border); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: var(--transition);
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.google-btn {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 16px;
}
.google-btn:hover { border-color: var(--primary); background: var(--primary-light); }
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--text-light);
  font-size: 0.82rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Page: İlan Ver ─────────────────────────────── */
.page-header {
  padding: 110px 0 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: 2rem; }
.page-content { padding: 40px 0 80px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 700px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wage-options { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.wage-chip {
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.wage-chip.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.wage-chip:hover:not(.active) { border-color: var(--primary); }

/* ── Panel ──────────────────────────────────────── */
.panel-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}
.panel-sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 24px 0;
}
.panel-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}
.panel-sidebar-nav a:hover { background: var(--bg); color: var(--primary); }
.panel-sidebar-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  border-right: 3px solid var(--primary);
}
.panel-main { padding: 32px; background: var(--bg); }
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.panel-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.panel-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel-card .pc-label { font-size: 0.82rem; color: var(--text-light); margin-bottom: 8px; }
.panel-card .pc-value { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.panel-card .pc-change { font-size: 0.78rem; margin-top: 4px; }
.panel-card .pc-change.up { color: var(--success); }
.panel-card .pc-change.down { color: var(--danger); }

.panel-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-table table { width: 100%; border-collapse: collapse; }
.panel-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.panel-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.panel-table tr:hover { background: var(--bg); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
}
.badge-active { background: rgba(46,204,113,0.12); color: var(--success); }
.badge-closed { background: rgba(255,59,48,0.12); color: var(--danger); }
.badge-pending { background: rgba(255,149,0,0.12); color: var(--accent); }

/* ── Toast ──────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .panel-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 20px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .panel-layout { grid-template-columns: 1fr; }
  .panel-sidebar { display: none; }
  .panel-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ── Spinner ────────────────────────────────────── */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll to top ──────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(45,107,228,0.3);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-2px); }

/* ── Utility ────────────────────────────────────── */
.hidden { display: none !important; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
