:root {
  --red: #B01116;
  --red-dark: #8E0D11;
  --green: #0E8F52;
  --green-dark: #0A6B3E;
  --white: #FFFFFF;
  --text-dark: #2B2B2B;
  --card: #FAF7F2;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  background-color: var(--red);
  background-image:
    radial-gradient(circle at 50% 100%, transparent 25%, rgba(255,255,255,.08) 26%, rgba(255,255,255,.08) 32%, transparent 33%, transparent 44%, rgba(255,255,255,.08) 45%, rgba(255,255,255,.08) 51%, transparent 52%),
    radial-gradient(circle at 0 100%, transparent 25%, rgba(255,255,255,.08) 26%, rgba(255,255,255,.08) 32%, transparent 33%, transparent 44%, rgba(255,255,255,.08) 45%, rgba(255,255,255,.08) 51%, transparent 52%),
    radial-gradient(circle at 100% 100%, transparent 25%, rgba(255,255,255,.08) 26%, rgba(255,255,255,.08) 32%, transparent 33%, transparent 44%, rgba(255,255,255,.08) 45%, rgba(255,255,255,.08) 51%, transparent 52%),
    radial-gradient(circle at 40% 0%, rgba(0,0,0,0.10), transparent 60%);
  background-size: 200px 100px, 200px 100px, 200px 100px, 100% 100%;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
  overflow-x: hidden;
}

.flyer {
  width: 100%;
  max-width: 640px;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Decorative megaphones */
.megaphone {
  position: fixed;
  font-size: 140px;
  line-height: 1;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  filter: grayscale(1) brightness(1.6) sepia(1) hue-rotate(60deg) saturate(3.5) drop-shadow(0 6px 10px rgba(0,0,0,0.25));
}

.megaphone--top {
  top: 2%;
  left: -20px;
  transform: rotate(-18deg);
}

.megaphone--bottom {
  bottom: 8%;
  right: -20px;
  transform: rotate(18deg) scaleX(-1);
  opacity: 0.55;
}

@media (max-width: 700px) {
  .megaphone {
    font-size: 90px;
  }
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.brand__img {
  width: min(60%, 260px);
  height: auto;
  display: block;
}

/* Hero */
.hero {
  margin-bottom: 28px;
}

.hero__eyebrow {
  letter-spacing: 8px;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: 500;
  margin: 0 0 8px;
  opacity: 0.95;
}

.hero__title {
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero__line {
  display: block;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 12.5vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__desc {
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
}

.hero__desc strong {
  font-weight: 700;
}

/* Vacancies card */
.vacancies {
  background: var(--card);
  color: var(--text-dark);
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 32px 24px;
  margin-bottom: 28px;
  text-align: left;
}

.vacancies__title {
  color: var(--green-dark);
  font-size: clamp(1.4rem, 4.5vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-align: center;
}

.vacancies__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.vacancies__list li {
  font-weight: 400;
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vacancies__list .marker {
  color: var(--text-dark);
  font-size: 0.7em;
}

@media (max-width: 480px) {
  .vacancies__list {
    grid-template-columns: 1fr;
  }
}

/* Highlight */
.highlight {
  font-size: clamp(1.3rem, 4.5vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 24px;
}

.highlight strong {
  font-weight: 700;
}

.divider {
  border: none;
  border-top: 2px solid rgba(255,255,255,0.7);
  width: 80%;
  max-width: 360px;
  margin: 0 auto 24px;
}

/* Apply */
.apply {
  margin-bottom: 32px;
}

.apply__line {
  font-size: clamp(1.1rem, 3.6vw, 1.4rem);
  font-weight: 400;
  margin: 0 0 6px;
}

.apply__line strong {
  font-weight: 700;
}

.apply__phone {
  font-weight: 900;
  font-size: 1.15em;
  white-space: nowrap;
}

.apply__note {
  font-size: clamp(0.85rem, 2.6vw, 0.95rem);
  font-weight: 400;
  opacity: 0.95;
  margin: 0 0 24px;
}

.apply__note strong {
  font-weight: 700;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.whatsapp-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.whatsapp-btn:active {
  transform: translateY(0);
}

.whatsapp-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-btn.copied {
  background: var(--green-dark);
}

/* Address */
.address {
  padding-top: 8px;
}

.address__label {
  font-weight: 700;
  margin: 0 0 4px;
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
}

.address__value {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
}

.address__value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.address__value a:hover {
  color: var(--green);
}
