:root {
  --primary: #dc2626;
  --primary-light: #fecaca;
  --primary-dark: #991b1b;
  --secondary: #64748b;
  --accent: #059669;
  --warning: #d97706;
  --background: #f8fafc;
  --surface: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --success: #059669;
  --error: #dc2626;
  
  /* New softer colors for better balance */
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --amber-dark: #d97706;
  --yellow: #eab308;
  --yellow-light: #fefce8;
  --yellow-dark: #ca8a04;
  --orange: #ea580c;
  --orange-light: #fed7aa;
  --orange-dark: #c2410c;
  --green: #059669;
  --green-light: #dcfce7;
  --green-dark: #047857;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --purple-dark: #5b21b6;
  --teal: #0d9488;
  --teal-light: #ccfbf1;
  --teal-dark: #0f766e;
  --black: #1f2937;
  --black-light: #374151;
  --black-dark: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

/* Hero animations */
.hero-title {
  animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.search-form-container {
  animation: slideInUp 0.8s ease-out 0.6s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Auth Pages */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 500px;
}

/* Desktop layout for auth pages */
@media (min-width: 1024px) {
  .auth-container {
    padding: 2rem;
  }
  
  .auth-card {
    max-width: 800px;
    padding: 3rem;
  }
  
  /* Two-column layout for register page */
  .auth-card.register-card {
    max-width: 900px;
  }
  
  .register-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  
  .register-form-left,
  .register-form-right {
    display: flex;
    flex-direction: column;
  }
  
  .auth-header.register-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .user-type-selector.desktop {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }
  
  .register-submit-section {
    grid-column: 1 / -1;
    margin-top: 1rem;
    text-align: center;
  }
  
  .register-form-left {
    padding-right: 1rem;
  }
  
  .register-form-right {
    padding-left: 1rem;
  }
  
  /* Desktop login improvements */
  .auth-card:not(.register-card) {
    max-width: 550px;
  }
  
  .auth-card:not(.register-card) .form-group {
    margin-bottom: 1.75rem;
  }
  
  .auth-card:not(.register-card) .form-input {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .auth-card:not(.register-card) .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input.error {
  border-color: var(--error);
}

.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--surface);
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.success-message {
  color: var(--success);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.alert-success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-info {
  background-color: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #475569;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* New Colored Button Variations */
.btn-amber {
  background-color: var(--amber);
  color: white;
}

.btn-amber:hover {
  background-color: var(--amber-dark);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--text-primary);
  font-weight: 600;
}

.btn-yellow:hover {
  background-color: var(--yellow-dark);
  color: white;
}

.btn-green {
  background-color: var(--green);
  color: white;
}

.btn-green:hover {
  background-color: var(--green-dark);
}

.btn-orange {
  background-color: var(--orange);
  color: white;
}

.btn-orange:hover {
  background-color: var(--orange-dark);
}

.btn-purple {
  background-color: var(--purple);
  color: white;
}

.btn-purple:hover {
  background-color: var(--purple-dark);
}

.btn-teal {
  background-color: var(--teal);
  color: white;
}

.btn-teal:hover {
  background-color: var(--teal-dark);
}

.btn-black {
  background-color: var(--black);
  color: white;
}

.btn-black:hover {
  background-color: var(--black-dark);
}

/* Button Size Variations */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 36px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-height: 52px;
}

/* Specific Button Types for Better UX */
.btn-login {
  background-color: var(--amber);
  color: white;
  font-weight: 600;
}

.btn-login:hover {
  background-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.btn-register {
  background-color: var(--green);
  color: white;
  font-weight: 600;
}

.btn-register:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.btn-apply-job {
  background-color: var(--yellow);
  color: var(--text-primary);
  font-weight: 600;
}

.btn-apply-job:hover {
  background-color: var(--yellow-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.25);
}



.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.form-check input {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}

.form-check label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.auth-footer p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.user-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-type-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.user-type-option:hover {
  border-color: var(--primary-light);
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.user-type-option.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.user-type-option input {
  display: none;
}

.user-type-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.user-type-label {
  font-weight: 500;
  color: var(--text-primary);
}

.user-type-description {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.loading {
  display: inline-flex;
  align-items: center;
}

.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1023px) {
  .register-form-container {
    display: block !important;
  }
  
  .auth-header.register-header {
    grid-column: unset !important;
  }
  
  .user-type-selector.desktop {
    grid-column: unset !important;
    margin: 0 0 1.5rem 0 !important;
  }
  
  .register-submit-section {
    grid-column: unset !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .auth-container {
    padding: 1rem;
  }
  
  .auth-card {
    max-width: none !important;
    padding: 1.5rem;
    margin: 0;
  }
  
  .user-type-selector {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .auth-header h1 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .auth-card {
    max-width: 600px;
  }
  
  .auth-card.register-card {
    max-width: 1000px;
  }
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0rem 0;
  margin-bottom: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  margin: 0px;
  margin-top: -50px;
  margin-bottom: -50px;
  padding: 0px;
}

.site-logo-img {
  height: 50px;
  width: auto;
  max-width: 150px;
}

/* Dashboard Styles */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-content h3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 0.25rem 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-change {
  font-size: 0.75rem;
  font-weight: 500;
}

.stat-change.positive { color: var(--success); }
.stat-change.negative { color: var(--error); }
.stat-change.neutral { color: var(--text-secondary); }

.dashboard-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.dashboard-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.view-all {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.view-all:hover {
  text-decoration: underline;
}

.ai-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Profile Summary */
.profile-summary .card-header {
  border-bottom: none;
  padding-bottom: 0;
}

.profile-info {
  padding: 0 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.profile-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.profile-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.profile-title {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
}

.profile-location {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}

.profile-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.profile-progress {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.progress-header span:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.progress-header span:last-child {
  font-weight: 600;
  color: var(--primary);
}

.progress-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-tip {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

/* Status Badges */
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-badge.verified {
  background: #dcfce7;
  color: #166534;
}

.status-badge.unverified {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.viewed {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge.shortlisted {
  background: #dcfce7;
  color: #166534;
}

.status-badge.applied {
  background: #f3f4f6;
  color: #374151;
}

/* Quick Actions */
.quick-actions {
  padding: 1.5rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background-color 0.2s ease;
  margin-bottom: 0.75rem;
}

.action-btn:last-child {
  margin-bottom: 0;
}

.action-btn:hover {
  background: var(--background);
}

.action-btn.primary {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.action-btn.primary:hover {
  background: var(--primary);
  color: white;
}

.action-btn.upgrade {
  border: 2px dashed var(--primary);
  background: var(--primary-light);
}

.action-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn.primary .action-icon {
  background: var(--primary);
  color: white;
}

.action-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.action-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Applications List */
.applications-list {
  padding: 1.5rem;
}

.application-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.application-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.application-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.company {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0 0 0.25rem 0;
}

.application-date {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* Jobs List */
.jobs-list {
  padding: 1.5rem;
}

.job-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.job-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.job-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.match-score {
  background: var(--success);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.job-company, .job-location {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0 0 0.25rem 0;
}

.job-details {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
}

.job-salary {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.job-type {
  background: var(--background);
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.job-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-apply {
  background: var(--yellow);
  color: var(--text-primary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-apply:hover {
  background: var(--yellow-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.25);
}

.btn-save {
  background: var(--teal-light);
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-save:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
}

/* Activity List */
.activity-list {
  padding: 1.5rem;
}

.activity-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.activity-icon.viewed { background: #dbeafe; }
.activity-icon.applied { background: #f3f4f6; }
.activity-icon.match { background: #dcfce7; }

.activity-content p {
  margin: 0 0 0.25rem 0;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.activity-time {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }
  
  .dashboard-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .profile-info {
    flex-direction: column;
    text-align: center;
  }
  
  .job-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .job-actions {
    flex-direction: column;
  }
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none; }

/* Site Header */
.site-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dev-email-btn {
    margin-right: 0.5rem;
}

/* Homepage Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #7c2d12 100%);
    color: white;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Homepage Search Form */
.search-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.search-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-form-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.search-form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.job-search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-inputs {
    display: flex;
    gap: 1rem;
}

.search-input-group {
    flex: 1;
    position: relative;
}

.search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    color: var(--text-secondary);
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1rem 1.25rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: var(--text-primary);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #7f1d1d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn-icon {
    font-size: 1.25rem;
}

.popular-searches {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.popular-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.popular-tag {
    background: var(--background);
    color: var(--text-primary);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--border);
}

.popular-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-nav {
        padding: 0.75rem 0;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
    }
    
    .dev-email-btn {
        display: none;
    }
    
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .search-form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .search-form-header h2 {
        font-size: 1.375rem;
    }
    
    .job-search-form {
        gap: 1.25rem;
    }
    
    .search-inputs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input {
        padding: 1.125rem 1rem 1.125rem 3rem;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
    
    .popular-searches {
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .site-nav {
        padding: 0.5rem 0;
    }
    
    .site-logo {
        font-size: 1.25rem;
    }
    
    .nav-actions {
        gap: 0.375rem;
    }
    
    .nav-actions .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .hero-section {
        padding: 3rem 0 2.5rem;
        min-height: 85vh;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 0.875rem;
        padding: 0 0.5rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.75rem;
        padding: 0 0.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .search-form-container {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .search-form-header h2 {
        font-size: 1.25rem;
    }
    
    .search-form-header p {
        font-size: 0.9rem;
    }
    
    .search-input {
        padding: 1rem 0.875rem 1rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .search-input-icon {
        left: 0.875rem;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .popular-searches {
        margin-top: 1rem;
    }
    
    .popular-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.625rem;
    }
}

/* PWA Styles - Android App Feel */
.pwa-installed {
    /* Hide browser UI elements when installed */
    user-select: none;
    -webkit-touch-callout: none;
}

.pwa-installed .site-header {
    padding-top: env(safe-area-inset-top);
}

/* Bottom Navigation Bar (Android App Style) */
.app-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .app-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--surface);
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 64px;
        z-index: 1001;
        box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .app-bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.25rem;
        text-decoration: none;
        color: var(--text-secondary);
        transition: all 0.2s ease;
        border-radius: 12px;
        margin: 0 0.125rem;
    }
    
    .app-bottom-nav-item:hover,
    .app-bottom-nav-item.active {
        color: var(--primary);
        background: var(--primary-light);
    }
    
    .app-bottom-nav-icon {
        font-size: 1.25rem;
        margin-bottom: 0.125rem;
    }
    
    .app-bottom-nav-label {
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 1;
    }
    
    /* Add bottom padding to main content when bottom nav is present */
    body.has-bottom-nav {
        padding-bottom: 64px;
    }
    
    /* Android-style cards and components */
    .auth-card,
    .dashboard-card,
    .stat-card,
    .search-form-container {
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    
    /* Material Design ripple effect for buttons */
    .btn {
        position: relative;
        overflow: hidden;
        transform: translateZ(0);
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s;
    }
    
    .btn:active::before {
        width: 300px;
        height: 300px;
    }
}

/* PWA Notifications */
.pwa-notification {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.pwa-notification.success {
    border-left: 4px solid var(--success);
}

.pwa-notification.warning {
    border-left: 4px solid var(--warning);
}

.pwa-notification.update {
    border-left: 4px solid var(--primary);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.notification-icon {
    font-size: 1.25rem;
}

.notification-text {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background: var(--background);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* PWA Install Prompt */
.pwa-install-prompt {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 1000;
    animation: slideUp 0.3s ease;
    display: none;
}

/* Install Banner - Top Positioned */
.install-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.install-banner.show {
    transform: translateY(0);
}

.install-banner.hiding {
    transform: translateY(-100%);
}

.install-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.install-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.install-banner-icon img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.install-banner-text {
    flex: 1;
    min-width: 0;
}

.install-banner-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: white;
}

.install-banner-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.install-banner-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.install-banner-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.install-banner-close:hover {
    opacity: 1;
}

/* Adjust body padding when banner is shown */
body.install-banner-active {
    padding-top: 80px;
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.pwa-install-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pwa-install-text {
    flex: 1;
}

.pwa-install-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pwa-install-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pwa-install-actions {
    display: flex;
    gap: 0.5rem;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Offline indicator */
.offline {
    filter: grayscale(0.3);
}

.offline::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--warning);
    z-index: 1001;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Safe area support for devices with notches */
@supports (padding: max(0px)) {
    .site-header {
        padding-top: max(0rem, env(safe-area-inset-top));
    }
    
    .app-bottom-nav {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
        height: calc(64px + max(0px, env(safe-area-inset-bottom)));
    }
    
    body.has-bottom-nav {
        padding-bottom: calc(64px + max(0px, env(safe-area-inset-bottom)));
    }
}

/* ==============================
   Additional Page Styles
   ============================== */

/* CV Creator Template Styles */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.template-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.template-preview {
    padding: 20px;
    background: #f8fafc;
}

.template-thumb {
    width: 100%;
    height: 200px;
    background: white;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.template-mock {
    width: 100%;
    height: 100%;
    background: white;
}

.mock-header {
    height: 20px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 12px;
}

.mock-header.colored {
    background: var(--primary);
}

.mock-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.mock-line.short {
    width: 60%;
}

.template-info {
    padding: 20px;
}

.template-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.template-desc {
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.template-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.template-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-select-template {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-template:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.feature-card {
    background: var(--surface);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.pricing-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.plan-price {
    margin-bottom: 24px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 4px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-secondary);
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-select-plan {
    width: 100%;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-plan.primary {
    background: var(--primary);
}

.btn-select-plan:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.btn-select-plan.primary:hover {
    background: var(--primary-dark);
}

/* Job Form Styles */
.form-section {
    margin-top: 32px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-section-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.form-section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.form-section-header p {
    color: var(--text-secondary);
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Boost Options */
.boost-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.boost-card {
    background: var(--surface);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.boost-card.featured {
    border-color: var(--primary);
}

.boost-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.boost-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.boost-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.boost-header {
    margin-bottom: 16px;
}

.boost-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.boost-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.boost-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.boost-features li {
    padding: 6px 0;
    color: var(--text-secondary);
}

.boost-card input[type="radio"] {
    display: none;
}

.boost-select {
    display: block;
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.boost-card input[type="radio"]:checked + .boost-select {
    background: var(--primary);
}

.boost-select:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Employer themed styles */
.employer-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.employer-hero .hero-title,
.employer-hero .hero-subtitle {
    color: white;
}

/* Job browsing styles */
.jobs-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.job-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.job-card-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.company-name {
    color: var(--text-secondary);
    margin: 0 0 4px 0;
}

.job-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.job-card-body {
    margin-bottom: 16px;
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.job-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-posted {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.load-more-section {
    text-align: center;
    margin-top: 32px;
}

.btn-load-more {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* Mobile adjustments for new pages */
@media (max-width: 768px) {
    .templates-grid,
    .features-grid,
    .pricing-grid,
    .boost-options {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 20px;
        margin: 0 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    /* Mobile install banner styles */
    .install-banner-content {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }

    .install-banner-icon {
        width: 40px;
        height: 40px;
    }

    .install-banner-icon img {
        width: 28px;
        height: 28px;
    }

    .install-banner-text h4 {
        font-size: 1rem;
    }

    .install-banner-text p {
        font-size: 0.85rem;
    }

    .install-banner-actions {
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.5rem;
        justify-content: center;
    }

    .install-banner-actions button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    body.install-banner-active {
        padding-top: 100px;
    }
}