/* Exact Temu-style design based on photos */
:root {
  --temu-orange: #ff6b00;
  --temu-orange-light: #ff8f00;
  --temu-red: #ff4757;
  --temu-dark: #2c2c54;
  --temu-gray: #747d8c;
  --white: #ffffff;
  --black: #000000;
  --light-gray: #f8f9fa;
  --border-gray: #e9ecef;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.4;
  color: var(--black);
  background: linear-gradient(135deg, #ff6b00 0%, #ff8f00 50%, #ff4757 100%);
  min-height: 100vh;
  overflow-x: hidden;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  -webkit-text-size-adjust: 100%; /* Prevent text scaling on iOS */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main content wrapper with white background */
.main-wrapper {
  background: var(--white);
  min-height: 100vh;
  border-radius: 0;
  box-shadow: 0 0 0;
}

/* Header - exact Temu style */
.header {
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-gray);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  gap: 12px;
  min-height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 24px;
  color: var(--temu-orange);
}

.logo-img {
  width: 240px;
  height: 60px;
  object-fit: contain;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 45px 10px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  background: var(--light-gray);
  transition: all 0.3s;
}

.search-input:focus {
  border-color: var(--temu-orange);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--temu-orange);
  border: none;
  border-radius: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.action-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s;
  color: var(--temu-dark);
}

.action-btn:hover {
  background: var(--light-gray);
}

/* Navigation - Temu style */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  padding: 0;
}

.nav-items {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-items::-webkit-scrollbar {
  display: none;
}

.nav-item {
  color: var(--temu-dark);
  text-decoration: none;
  padding: 12px 16px;
  white-space: nowrap;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
  color: var(--temu-orange);
  border-bottom-color: var(--temu-orange);
  background: rgba(255, 107, 0, 0.05);
}

/* Hero Banner - Temu style */
.hero-banner {
  background: var(--white);
  padding: 40px 0;
  margin-bottom: 0;
}
/* Subtle motion for header logo */
.shine { position: relative; }
.shine:after { content: ""; position: absolute; left: -150%; top: 0; height: 100%; width: 120px; transform: skewX(-20deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%); animation: shine 3.5s ease-in-out infinite; }
@keyframes shine { 0% { left: -150%; } 60% { left: 130%; } 100% { left: 130%; } }

.logo-badge { margin-left: 10px; display: inline-flex; align-items: center; gap: 6px; background: rgba(46, 213, 115, .12); color: #19a463; border: 1px solid rgba(46, 213, 115, .25); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.logo-badge .dot { width: 6px; height: 6px; background: #2ed573; border-radius: 50%; box-shadow: 0 0 0 6px rgba(46, 213, 115, .15); display: inline-block; }

.brand-ribbon { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(90deg, var(--temu-orange), var(--temu-orange-light)); color: #fff; font-weight: 700; padding: 6px 12px; border-radius: 999px; margin-bottom: 10px; box-shadow: 0 6px 16px rgba(255,107,0,.25); }

.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.banner-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.banner-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--black);
}

.banner-text p {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--temu-gray);
  line-height: 1.5;
}

.cta-btn {
  background: var(--temu-orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.cta-btn:hover {
  background: var(--temu-orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.banner-image {
  text-align: center;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Stats */
.stats-section { background: var(--white); padding: 20px 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; padding: 0 20px 20px; }
.stat { background: var(--light-gray); border: 1px solid var(--border-gray); border-radius: 12px; padding: 16px; text-align: center; }
.stat-value { font-size: 22px; font-weight: 800; color: var(--temu-orange); }
.stat-label { color: var(--temu-gray); font-size: 13px; }

/* Vacancies Section */
.vacancies-section {
  padding: 40px 0;
  background: var(--white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgent-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--temu-red);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.vacancy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid var(--border-gray);
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--temu-orange);
}

.vacancy-icon {
  font-size: 24px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--temu-orange), var(--temu-orange-light));
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.vacancy-info {
  flex: 1;
}

.vacancy-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.vacancy-info p {
  font-size: 14px;
  color: var(--temu-gray);
  margin-bottom: 12px;
}

.vacancy-details {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.salary {
  background: var(--temu-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.experience {
  background: var(--light-gray);
  color: var(--temu-dark);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

/* Benefits Section */
.benefits-section {
  padding: 40px 0;
  background: var(--light-gray);
  border-top: 1px solid var(--border-gray);
}

.benefits-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--black);
  padding: 0 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 0 20px;
}

.benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gray);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--temu-orange);
}

.benefit-icon { width: 56px; height: 56px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--temu-orange), var(--temu-orange-light)); color: #fff; margin-bottom: 12px; font-size: 28px; box-shadow: var(--shadow); }

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.benefit-card p {
  font-size: 14px;
  color: var(--temu-gray);
  line-height: 1.5;
}

/* Gallery */
.gallery-section { background: var(--white); padding: 40px 0; border-top: 1px solid var(--border-gray); }
.gallery-section h2 { font-size: 24px; font-weight: 700; text-align: center; margin: 0 0 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.gallery-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }

/* Jobs Section - Temu style */
.jobs-section {
  padding: 40px 0;
  background: var(--light-gray);
  border-top: 1px solid var(--border-gray);
}

.jobs-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 20px;
}

.jobs-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.jobs-header p {
  font-size: 16px;
  color: var(--temu-gray);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.job-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border-gray);
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--temu-orange);
}

.job-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.job-card p {
  color: var(--temu-gray);
  margin-bottom: 12px;
  font-size: 14px;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: var(--temu-orange);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

/* Apply Form - Temu style */
.apply-section {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin: 0 20px;
  border: 1px solid var(--border-gray);
}

.apply-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  text-align: center;
}

.apply-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
  background: var(--white);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--temu-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.file-upload {
  margin-bottom: 20px;
  text-align: center;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload span {
  display: inline-block;
  background: var(--light-gray);
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
  color: var(--temu-gray);
  border: 1px solid var(--border-gray);
}

.file-upload span:hover {
  background: var(--border-gray);
}

.apply-btn {
  width: 100%;
  background: var(--temu-orange);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.apply-btn:hover {
  background: var(--temu-orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.form-status {
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

/* Footer - Temu style */
.footer {
  background: var(--white);
  color: var(--temu-gray);
  padding: 40px 0 20px;
  border-top: 1px solid var(--border-gray);
}

/* About / Process / FAQ */
.about-section { background: var(--white); padding: 40px 0; border-top: 1px solid var(--border-gray); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.about-card { background: var(--white); border: 1px solid var(--border-gray); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); }
.about-card h3 { font-size: 18px; margin: 0 0 12px; }
.about-card p { color: var(--temu-gray); margin: 0 0 10px; }
.about-card ul, .about-card ol { margin: 0 0 0 16px; color: var(--temu-dark); }
.about-card li { margin: 6px 0; }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
  padding: 0 20px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

.footer-section a {
  display: block;
  color: var(--temu-gray);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--temu-orange);
}

.footer-section p {
  color: var(--temu-gray);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-gray);
  color: var(--temu-gray);
  font-size: 12px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal-content {
  background: var(--white);
  margin: 3% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  animation: modalSlideIn 0.25s ease-out;
  border: 1px solid #e0e0e0;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close {
  color: var(--gray);
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10001;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f5f5f5;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.close:hover {
  color: var(--temu-red);
  background: #ffe6e6;
}

.modal-content-text {
  padding: 40px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.modal-content-text h2 {
  background: linear-gradient(135deg, var(--temu-orange), #ff8f00, var(--temu-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding-bottom: 15px;
}

.modal-content-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--temu-orange), var(--temu-red));
  border-radius: 2px;
}

.modal-content-text h3 {
  color: var(--black);
  margin: 25px 0 18px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.modal-content-text p {
  color: #444444;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.modal-content-text ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.modal-content-text li {
  margin: 12px 0;
  line-height: 1.6;
  color: #444444;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.modal-content-text li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--temu-orange);
  font-weight: bold;
  font-size: 20px;
}

/* Process Steps */
.process-steps {
  margin: 20px 0;
}

.step {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
}

.step-number {
  background: var(--temu-orange);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content h3 {
  margin: 0 0 10px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.step-content p {
  margin: 0 0 10px 0;
  color: var(--gray);
  line-height: 1.5;
  font-size: 14px;
}

.step-time {
  background: var(--temu-orange-light);
  color: var(--temu-orange);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.process-note {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  border-left: 4px solid #2196f3;
}

/* FAQ Styles */
.faq-item {
  margin: 15px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
}

.faq-item h3 {
  margin: 0 0 15px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
  line-height: 1.5;
  color: var(--gray);
  font-size: 14px;
}

/* Vacancy Modal Styles */
.vacancy-header-modal {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
}

.salary-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid #ececec;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  margin-bottom: 18px;
}

.salary-icon { color: var(--temu-orange); font-size: 22px; margin-right: 2px; }
.salary-prefix { color: var(--temu-gray); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.salary-value { color: var(--black); font-size: 34px; font-weight: 800; line-height: 1; }
.salary-currency { color: var(--temu-orange); font-size: 18px; font-weight: 800; line-height: 1; }
.salary-period { color: var(--temu-gray); font-size: 13px; font-weight: 600; }

.vacancy-description {
  font-size: 18px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

.vacancy-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 30px 0;
}

.vacancy-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--temu-orange);
}

.vacancy-section h3 {
  margin: 0 0 15px 0;
  color: var(--black);
  font-size: 18px;
}

.vacancy-section ul {
  margin: 0;
  padding-left: 20px;
}

.vacancy-section li {
  margin: 10px 0;
  line-height: 1.5;
  color: var(--gray);
}

.vacancy-apply {
  text-align: center;
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  border-radius: 12px;
  border: 2px dashed var(--temu-orange);
}

.vacancy-apply p {
  margin: 0 0 20px 0;
  font-size: 18px;
  color: var(--black);
}

.apply-vacancy-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.apply-vacancy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* WhatsApp Modal */
.whatsapp-modal {
  max-width: 500px;
}

.whatsapp-content {
  text-align: center;
  padding: 40px;
}

.whatsapp-icon {
  font-size: 64px;
  color: #25d366;
  margin-bottom: 20px;
}

.whatsapp-content h2 {
  background: linear-gradient(135deg, var(--temu-orange), #ff8f00, var(--temu-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}

.whatsapp-content p {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

.whatsapp-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  text-align: left;
}

.whatsapp-info p {
  margin: 0 0 15px 0;
  font-weight: 600;
  color: var(--black);
}

.whatsapp-info ul {
  margin: 0;
  padding-left: 20px;
}

.whatsapp-info li {
  margin: 8px 0;
  color: var(--gray);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  color: white;
  text-decoration: none;
}

/* Interactive Card Styles */
.vacancy-card, .about-card {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  will-change: transform;
  touch-action: pan-y; /* Allow vertical scrolling through cards */
}

.vacancy-card:hover, .about-card:hover,
.vacancy-card:active, .about-card:active {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.vacancy-cta, .card-cta {
  color: var(--temu-orange);
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 107, 53, 0.1);
  display: inline-block;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.vacancy-card:hover .vacancy-cta,
.about-card:hover .card-cta,
.vacancy-card:active .vacancy-cta,
.about-card:active .card-cta {
  opacity: 1;
  transform: translateX(5px);
  background: rgba(255, 107, 53, 0.2);
}

.vacancy-cta:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-1px);
}

.vacancy-cta:active {
  transform: translateY(0);
  background: rgba(255, 107, 53, 0.3);
}

/* Mobile touch styles */
@media (max-width: 768px) {
  .vacancy-card, .about-card {
    -webkit-tap-highlight-color: rgba(255, 107, 0, 0.1);
    touch-action: manipulation;
  }
  
  .vacancy-card:active, .about-card:active {
    background-color: rgba(255, 107, 0, 0.05);
  }
  
  .vacancy-cta, .card-cta {
    touch-action: manipulation;
    -webkit-touch-callout: none;
  }
  
  /* Prevent accidental touches during scroll */
  body {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  
  
}

/* Small Download Button */
.download-small {
  background: #f8f9fa;
  padding: 20px 0;
  border-top: 1px solid #e9ecef;
}

.download-small-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--temu-orange) 0%, var(--temu-orange-light) 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.download-small-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  color: white;
  text-decoration: none;
}

.download-small-btn i {
  font-size: 16px;
}

.download-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Mobile styles for small download button */
@media (max-width: 768px) {
  .download-small {
    padding: 15px 0;
  }
  
  .download-small-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Benefits Modal Styles */
.benefits-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 0;
}

.benefit-modal-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid var(--temu-orange);
  transition: all 0.3s ease;
}

.benefit-modal-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.benefit-modal-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--temu-orange), var(--temu-orange-light));
  color: white;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-modal-content h3 {
  margin: 0 0 8px 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}

.benefit-modal-content p {
  margin: 0;
  color: var(--gray);
  line-height: 1.5;
  font-size: 14px;
}

/* Contacts Modal Styles */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid var(--temu-orange);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--temu-orange), var(--temu-orange-light));
  color: white;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info h3 {
  margin: 0 0 8px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.contact-info p {
  margin: 0 0 12px 0;
  color: var(--gray);
  font-size: 14px;
}

.contact-btn {
  background: var(--temu-orange);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  background: var(--temu-red);
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.contact-note {
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  border-left: 4px solid #25d366;
}

.contact-note p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  line-height: 1.5;
}

/* Compact Modal Styles */
.modal-content {
  max-height: 85vh;
  overflow-y: auto;
}

.modal-content-text {
  padding: 30px;
}

.modal-content-text h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.modal-content-text h3 {
  font-size: 18px;
  margin: 20px 0 10px 0;
}

/* Navigation Styles */
.nav-item {
  transition: all 0.3s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav-item:hover, .nav-item:active {
  color: var(--temu-orange);
  transform: translateY(-1px);
}

.nav-item.active {
  color: var(--temu-orange);
  font-weight: 600;
}

/* Убрана оранжевая подводка под кнопками навигации */

/* Mobile navigation styles */
@media (max-width: 768px) {
  .nav-item {
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 8px;
    -webkit-tap-highlight-color: rgba(255, 107, 0, 0.1);
  }
  
  .nav-item:active {
    background-color: rgba(255, 107, 0, 0.1);
  }
}

/* Modal Section Styles */
.mission-section, .work-section, .achievements-section {
  margin: 30px 0;
  padding: 25px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--temu-orange), #ff8f00);
  color: white;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.mission-section h3, .work-section h3, .achievements-section h3 {
  margin: 0 0 18px 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.mission-section p, .work-section p, .achievements-section p {
  margin: 0 0 15px 0;
  color: #444444;
  line-height: 1.6;
  font-size: 16px;
}

.mission-section ul, .work-section ul, .achievements-section ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.mission-section li, .work-section li, .achievements-section li {
  margin: 12px 0;
  color: #444444;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.mission-section li::before, .work-section li::before, .achievements-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--temu-orange);
  font-weight: bold;
  font-size: 18px;
}

/* Simple Apply Form Styles */
.simple-apply {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 16px;
  border: 2px dashed var(--temu-orange);
}

.apply-form-simple {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto 20px;
}

.apply-form-simple input {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.apply-form-simple input:focus {
  outline: none;
  border-color: var(--temu-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.apply-btn-simple {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.apply-btn-simple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.apply-note {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Responsive - Mobile first like Temu */
@media (max-width: 768px) {
  .modal {
    padding: 15px;
  }
  
  .modal-content {
    margin: 0;
    width: 100%;
    max-height: 95vh;
    border-radius: 12px;
  }
  
  .modal-content-text {
    padding: 25px 20px;
  }
  
  .modal-content-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .modal-content-text h3 {
    font-size: 18px;
    margin: 20px 0 15px 0;
  }
  
  .modal-content-text p {
    font-size: 15px;
  }
  
  .modal-content-text li {
    font-size: 15px;
  }
  
  .mission-section, .work-section, .achievements-section {
    padding: 20px;
    margin: 20px 0;
  }
  
  .section-icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .step {
    padding: 18px;
    margin: 15px 0;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-right: 12px;
  }
  
  .faq-item {
    padding: 18px;
    margin: 15px 0;
  }
  
  .faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 12px;
    padding: 6px 0;
  }
  
  .search-bar {
    order: 2;
    max-width: 100%;
  }
  
  .banner-content { grid-template-columns: 1fr; text-align: center; padding: 18px; }
  
  .banner-text h1 { font-size: 28px; }
  
  .section-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .nav-items {
    padding: 0 20px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
  }
  
  .apply-section { margin: 0 12px; padding: 20px; }

  /* Reduce header image height on mobile */
  .header { background-size: cover; background-position: center; }
  .logo-img { width: 200px; height: 50px; }
}
