.hero {
  background: var(--brand-dark);
  color: white;
  padding: 88px 20px 64px;
  text-align: center;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px), radial-gradient(circle at 80% 30%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 18px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 18px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Search Card */
.hero-search-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 36px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  transition: border-color 0.3s ease;
}

.hero-search-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-search-form {
  width: 100%;
}

.hero-search-fields {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.hero-search-field {
  flex: 1;
  min-width: 0;
}

.hero-search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.hero-search-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  text-align: left;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.hero-search-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.hero-search-field input:focus {
  border-color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.12);
}

.hero-search-field select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.hero-search-field select:focus {
  border-color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.12);
}

.hero-search-field select option {
  background: #2d1f1a;
  color: white;
}

.hero-search-field-radius {
  flex: 0 1 auto;
  min-width: 130px;
  max-width: 160px;
}

.hero-search-field-btn {
  flex: 0 0 auto;
}

.hero-search-field-btn .btn {
  height: 100%;
  min-height: 48px;
}

/* Hero autocomplete shared styles */
.hero-search-field-city,
.hero-search-field-skill {
  position: relative;
}

.hero-search-field-city .autocomplete-wrapper,
.hero-search-field-skill .autocomplete-wrapper {
  position: relative;
}

.hero-search-field-city .autocomplete-dropdown,
.hero-search-field-skill .autocomplete-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #2d1f1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  max-height: 250px;
  overflow-y: auto;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-search-field-city .autocomplete-dropdown .autocomplete-item,
.hero-search-field-skill .autocomplete-dropdown .autocomplete-item {
  padding: 10px 16px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  transition: background 0.15s;
}

.hero-search-field-city .autocomplete-dropdown .autocomplete-item:hover,
.hero-search-field-skill .autocomplete-dropdown .autocomplete-item:hover {
  background: rgba(212, 96, 58, 0.2);
  color: white;
}

.hero-search-field-city .autocomplete-dropdown .autocomplete-item.empty-result,
.hero-search-field-skill .autocomplete-dropdown .autocomplete-item.empty-result {
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
}

.hero-search-field-city .autocomplete-loader,
.hero-search-field-skill .autocomplete-loader {
  padding: 12px;
  text-align: center;
}

.hero-search-field-city .loader-spinner,
.hero-search-field-skill .loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.hero-stat:hover {
  opacity: 0.85;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-search-card {
    padding: 20px;
  }

  .hero-search-fields {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-value {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 48px 16px 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
}
.featured-section {
  padding: 80px 0;
  background: white;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.empty-card {
  text-align: center;
  padding: 48px;
  background: #f9f9f9;
  border-radius: 12px;
  color: #888;
}

.empty-card a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
}
.profile-card-wrapper {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.profile-card-wrapper:hover {
  border-color: rgba(212, 96, 58, 0.2);
}

.profile-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Type badge */
.fav-card-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #aaa;
  margin-bottom: 6px;
}

/* Card Top Section */
.card-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

/* Avatar */
.card-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  background: var(--brand-gradient);
}

/* Card Info */
.card-info {
  flex: 1;
  min-width: 0;
}

.card-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-name-row h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #222;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.online-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.card-city {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #888;
}

.card-listings-badge {
  display: inline-block;
  margin: 6px 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #166534;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Card Skills */
.card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.skill-tag {
  background: var(--brand-primary);
  color: white;
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Card Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 10px 24px 12px;
  border-top: 1px solid #f0f0f0;
}

.card-contact-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.card-contact-icon {
  font-size: 1.1rem;
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f7f0;
  transition: background 0.2s, transform 0.2s;
}

.card-contact-icon:hover {
  background: #e0f0e0;
}

.status-dot {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.status-dot.online {
  background: #dcfce7;
  color: #166534;
}

.status-dot:not(.online) {
  background: #f3f4f6;
  color: #9ca3af;
}

.skills-section {
  padding: 80px 0;
  background: #faf5f0;
}

.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.skill-item {
  background: white;
  color: #4b5563;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-weight: 500;
}

.skill-item:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.jobs-section {
  padding: 80px 0;
  background: white;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #f9fafb;
  border-radius: 10px;
  padding: 22px 28px;
  transition: border-color 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}

.job-card:hover {
  border-color: var(--brand-primary);
  background: #fdf6f0;
}

.job-info {
  flex: 1;
  min-width: 0;
}

.job-info h3 {
  font-size: 1.05rem;
  color: #111827;
  margin-bottom: 6px;
  font-weight: 600;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tag {
  font-size: 0.8rem;
  color: #666;
  background: #f0f0f0;
  padding: 3px 10px;
  border-radius: 6px;
}

/* Home page job skills tags */
.home-job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.home-job-skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  background: #fdf0e8;
  color: #d4603a;
  border: 1px solid #f5e0d0;
  line-height: 1.4;
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.home-job-skill-tag:hover {
  background: #f5e0d0;
}

@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.how-it-works {
  padding: 80px 0;
  background: #faf5f0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e8e0d8;
  transition: border-color 0.2s ease;
  position: relative;
}

.step-card:hover {
  border-color: var(--brand-primary);
}

.step-number {
  position: absolute;
  top: 12px;
  left: 16px;
  width: 28px;
  height: 28px;
  background: #fdf0e8;
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 10px;
}

.step-card p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
.cta-section {
  padding: 80px 0;
  background: #fdf6f0;
}

.cta-card {
  background: var(--brand-dark);
  border-radius: 16px;
  padding: 64px 40px;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-card h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.cta-card p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card .btn {
  background: var(--brand-primary);
  color: white;
  box-shadow: none;
}

.cta-card .btn:hover {
  background: #c05432;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 40px 24px;
  }

  .cta-card h2 {
    font-size: 1.5rem;
  }
}
.verify-banner {
  background: #fff3cd;
  border-bottom: 1px solid #ffc107;
  padding: 0.5rem 1rem;
}

.verify-banner-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.verify-banner-content span {
  font-size: 0.85rem;
  color: #856404;
}

.verify-banner-content a {
  color: #856404;
  font-weight: 600;
  text-decoration: underline;
}

.verify-banner-close {
  background: none;
  border: none;
  color: #856404;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  opacity: 0.6;
}

.verify-banner-close:hover {
  opacity: 1;
}

.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 0;
  flex-shrink: 0;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.footer-trust {
  display: flex;
  gap: 12px;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
