/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.125rem; font-weight: 600; }
p  { margin: 0 0 .8em; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sub { color: #555; margin-bottom: 32px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 0; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary { background: #3b0764; color: #fff; box-shadow: 0 6px 18px rgba(59,7,100,.25); }
.btn-primary:hover { background: #2d0550; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #3b0764; border: 1.5px solid #3b0764; }
.btn-ghost:hover { background: #3b0764; color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }
.logo-img--footer { height: 32px; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: .95rem; }
.nav a { color: #444; }
.nav a:hover { color: #1a1a1a; }
.nav-cta {
  padding: 10px 18px; border-radius: 999px; background: #3b0764; color: #fff !important;
}
.nav-cta:hover { background: #2d0550; }

@media (max-width: 720px) {
  .nav a:not(.nav-cta) { display: none; }
}

/* ===== Hero ===== */
.hero { padding: 56px 0 72px; background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: center;
}
.badge {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: rgba(59,7,100,.1); color: #3b0764;
  font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 16px;
}
.lead { font-size: 1.125rem; color: #444; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 32px; }
.hero-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 32px; flex-wrap: wrap;
  font-size: .95rem; color: #555;
}
.hero-meta strong { display: block; font-size: 1.5rem; color: #1a1a1a; font-weight: 800; }
.hero-image {
  border-radius: 24px;
  background: linear-gradient(160deg, #f5f5f7 0%, #ececef 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.hero-image img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
/* Fallback when hero image can't load */
.hero-image--fallback {
  aspect-ratio: 3/4;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,45,85,.18), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(26,26,26,.12), transparent 55%),
    linear-gradient(160deg, #f5f5f7 0%, #ececef 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-image--fallback::before {
  content: 'PULSE';
  font-weight: 800; font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: .15em; color: rgba(26,26,26,.08);
}
.hero-image--fallback::after {
  content: '👥';
  position: absolute; font-size: clamp(4rem, 12vw, 7rem);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.15));
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { max-width: 460px; margin: 0 auto; }
}

/* ===== Vacancy ===== */
.vacancy-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 28px;
}
.vac-card {
  padding: 24px; border: 1px solid #eee; border-radius: 16px;
  background: #fff; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vac-card:hover { border-color: #3b0764; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.vac-card h3 { margin-bottom: 8px; }
.vac-card p { color: #555; font-size: .95rem; margin: 0; }
.vacancy-note { color: #555; font-size: 1.05rem; }

@media (max-width: 720px) {
  .vacancy-cards { grid-template-columns: 1fr; }
}

/* ===== Offer ===== */
.offer { background: #fafafa; }
.offer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.offer-card {
  background: #fff; padding: 22px; border-radius: 16px; border: 1px solid #eee;
}
.offer-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(59,7,100,.1); color: #3b0764;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 12px;
}
.offer-card h3 { margin-bottom: 4px; font-size: 1rem; }
.offer-card p { font-size: .9rem; color: #555; margin: 0; }

@media (max-width: 960px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .offer-grid { grid-template-columns: 1fr; } }

/* ===== Apply form ===== */
.apply-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start;
}
.apply-intro p { color: #555; }
.apply-perks { list-style: none; padding: 0; margin: 24px 0 0; }
.apply-perks li { padding: 6px 0; color: #1a1a1a; font-weight: 500; }

.apply-form {
  background: #fff; border: 1px solid #eee; border-radius: 20px;
  padding: 28px; box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.form-row { margin-bottom: 16px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row label {
  display: block; font-size: .875rem; font-weight: 600;
  margin-bottom: 6px; color: #333;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: 1rem;
  border: 1.5px solid #e5e5e5; border-radius: 12px;
  background: #fff; color: #1a1a1a;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: #3b0764; box-shadow: 0 0 0 3px rgba(59,7,100,.15);
}
.checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: #555; margin: 8px 0 18px;
  cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: #3b0764; }

.form-status { margin: 14px 0 0; font-size: .95rem; min-height: 1.2em; }
.form-status.success { color: #16a34a; }
.form-status.error   { color: #dc2626; }

@media (max-width: 880px) {
  .apply-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row.two { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { background: #fafafa; }
.faq-list { max-width: 800px; }
.faq-list details {
  background: #fff; border: 1px solid #eee; border-radius: 14px;
  padding: 16px 20px; margin-bottom: 10px;
}
.faq-list summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 400; color: #3b0764;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 10px 0 0; color: #555; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid #eee; padding: 28px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-brand { display: inline-flex; align-items: center; }
.site-footer p { color: #777; font-size: .9rem; margin: 0; }
