.join-prototype {
  --primary: #f97316;
  --primary-hover: #ea580c;
  --primary-soft: rgba(249, 115, 22, 0.1);
  --secondary: #6366f1;
  --secondary-soft: rgba(99, 102, 241, 0.1);
  --bg: #f8fafc;
  --bg-warm: #fffaf5;
  --bg-dark: #0f172a;
  --white: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: rgba(226, 232, 240, 0.8);
  --glass: rgba(255, 255, 255, 0.85);
  --success: #22c55e;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.join-prototype {
  font-family: 'Plus Jakarta Sans', 'Noto Sans SC', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
}

.join-prototype a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.join-prototype ul { list-style: none; }

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

.join-prototype main { padding-top: 0px; }

/* ========== Hero Section ========== */
.hero-section {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  min-height: 75vh;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/images/prototypes/join/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 250, 245, 0.4) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 14px; }
.hero-title {
  display: block;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.06;
  margin: 0 auto 32px;
  letter-spacing: -0.05em;
  position: relative;
}
.hero-title .title-top {
  display: block;
  margin-right: 0;
  color: #0f172a;
}
.hero-title .highlight { 
  color: var(--primary);
  position: relative;
  display: block;
  margin-top: 16px;
}
@keyframes textGradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-desc {
  font-size: 20px;
  color: #334155;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 500;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  backdrop-filter: blur(16px);
  min-width: 160px;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.1);
}
.hero-stat strong {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}
.hero-stat span {
  font-size: 15px;
  color: #475569;
  font-weight: 700;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.join-prototype .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}
.join-prototype .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
}
.join-prototype .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.join-prototype .btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ========== Benefits Section (Horizontal Layout) ========== */
.benefits-section { 
  padding: 120px 0; 
  background: var(--bg-warm); 
}
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}
.benefits-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.benefits-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 0 20px;
}

.benefit-circle-item {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  text-align: left;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-circle-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

.benefit-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  margin-bottom: 20px;
}
.benefit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.benefit-circle-item:hover .benefit-img img {
  transform: scale(1.08);
}

.benefit-circle-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 20px 12px;
  color: var(--text);
}
.benefit-circle-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 20px 24px;
}

@media (max-width: 1200px) {
  .benefits-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .benefits-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .benefits-section { perspective: none; }
  .benefits-wrapper { height: auto; }
  .benefits-ring {
    width: 100%;
    height: auto;
    animation: none;
    transform: none !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .benefit-circle-item {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transform: none !important;
    backface-visibility: visible;
  }
}

/* ========== Culture Section ========== */
.culture-section { padding: 120px 0; background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 10%, var(--white) 90%, var(--bg-warm) 100%); }
.culture-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.culture-header h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.culture-header h2 .highlight { color: var(--primary); }
.culture-header .culture-intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}
.culture-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.culture-values-new { 
  display: grid; 
  gap: 24px; 
}
.culture-card-new {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 107, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.culture-card-new::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.culture-card-new:hover {
  background: var(--white);
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 20px 40px -10px rgba(255, 107, 0, 0.1);
  transform: translateY(-4px);
}
.culture-card-new:hover::before {
  opacity: 1;
}
.culture-icon-new {
  width: 64px;
  height: 64px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.culture-card-new:hover .culture-icon-new {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(-10deg);
}
.culture-text-new h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.culture-text-new p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.culture-slider-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.culture-slider-track {
  display: flex;
  width: 500%;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.5s ease;
}
.slide-item {
  width: 20%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.culture-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 12;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.42);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  opacity: 0.78;
  transform: translateY(-50%);
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
}
.culture-carousel-prev { left: 14px; }
.culture-carousel-next { right: 14px; }
.culture-carousel-nav .material-symbols-outlined {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 32;
}
.culture-slider-container:hover .culture-carousel-nav,
.culture-carousel-nav:focus-visible {
  opacity: 1;
}
.culture-carousel-nav:hover,
.culture-carousel-nav:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
  outline: none;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.dot.active {
  width: 24px;
  background: #fff;
}

.culture-images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 16px;
  height: 600px;
}
.culture-img {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 64px;
  border: 1px solid var(--border-light);
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.culture-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.culture-img:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.culture-img:hover::before { opacity: 1; }
.culture-img:nth-child(1) { grid-area: 1 / 1 / 5 / 4; }
.culture-img:nth-child(2) { grid-area: 1 / 4 / 4 / 7; }
.culture-img:nth-child(3) { grid-area: 5 / 1 / 7 / 3; }
.culture-img:nth-child(4) { grid-area: 5 / 3 / 7 / 5; }
.culture-img:nth-child(5) { grid-area: 4 / 5 / 7 / 7; }

/* ========== Jobs Section ========== */
.jobs-section { padding: 120px 0; background: var(--bg-warm); transition: background-image 0.5s ease; position: relative; }
.jobs-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.jobs-section .container > .culture-header {
  position: relative;
  z-index: 1;
}
.jobs-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.jobs-type-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
.type-tab {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
.type-tab:hover {
  color: var(--primary);
  background: rgba(255, 107, 0, 0.05);
}
.type-tab.active {
  color: var(--primary);
  background: var(--primary-soft);
}
.jobs-filters-wrapper {
  display: flex;
  flex-direction: column;
}
.jobs-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  color: var(--primary);
  background: rgba(255, 107, 0, 0.05);
}
.filter-btn.active {
  background: var(--primary-soft);
  color: var(--primary);
}
.jobs-list-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}
.jobs-list {
  display: grid;
  gap: 16px;
  align-content: start;
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 0, 0.05);
}
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg);
}
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.job-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 16px 32px -8px rgba(255, 107, 0, 0.1);
  transform: translateX(6px);
}
.job-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.job-meta-item .material-symbols-outlined { color: var(--primary); font-size: 15px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  padding: 4px 12px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.job-card:hover .job-tag {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: transparent;
}
.job-apply-btn {
  padding: 12px 28px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.job-apply-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25);
}

/* ========== CTA Section ========== */
.cta-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
}
.cta-content {
  max-width: 900px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 850px;
  margin: 0 auto 64px;
  line-height: 1.8;
}
.cta-single-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.4s ease;
}
.cta-single-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.2);
}
.cta-single-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta-single-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-soft);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
}
.cta-single-text {
  text-align: left;
}
.cta-single-text .label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.cta-single-text .email {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.cta-single-action {
  padding: 14px 32px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-single-action:hover {
  background: var(--primary-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25);
}
@media (max-width: 768px) {
  .cta-single-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }
  .cta-single-info {
    flex-direction: column;
    gap: 16px;
  }
  .cta-single-text {
    text-align: center;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-images-marquee { padding: 10px 0; }
  .marquee-img { width: 300px; height: 200px; }
}

@media (max-width: 768px) {
  .hero-section { padding: 150px 0 90px; }
  .join-prototype .hero-title {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.08;
  }
  .hero-stat strong { font-size: 36px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .culture-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .culture-values-new { grid-template-columns: 1fr; }
  .culture-slider-container { aspect-ratio: 16 / 9; height: auto; max-height: none; }
  .culture-values-new { grid-template-columns: 1fr; gap: 24px; }
  .jobs-layout { grid-template-columns: 1fr; }
  .jobs-sidebar { position: static; margin-bottom: 24px; padding: 24px; }
  .job-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .apply-form-card { padding: 32px 24px; }
  .section-header h2 { font-size: 32px; }
  .culture-content h2 { font-size: 32px; }
  .cta-content h2 { font-size: 32px; }
}

.fade-in { animation: fadeIn .32s ease; }

@media (max-width: 768px) {
  .benefits-grid,
  .culture-wrapper,
  .culture-images,
  .job-card,
  .form-grid,
  .cta-contact {
    grid-template-columns: 1fr !important;
  }
}
