:root {
  --bg: #fff9f3;
  --bg-alt: #fff2e6;
  --surface: #ffffff;
  --surface-soft: #fff8f1;
  --text: #1f1720;
  --muted: #6b6570;
  --border: #eedfd0;
  --primary: #f67c18;
  --primary-dark: #df6c0f;
  --success: #17795c;
  --warning-bg: #fff0dd;
  --shadow: 0 18px 50px rgba(31, 23, 32, 0.08);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #fffdf9 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 249, 243, 0.85);
  border-bottom: 1px solid rgba(238, 223, 208, 0.85);
}

.topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav__cta {
  color: var(--text);
  font-weight: 700;
}

.hero,
.section {
  padding: 78px 0;
}

.hero__grid,
.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero__grid {
  grid-template-columns: 1.2fr 0.8fr;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  margin-top: 18px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin: 0;
}

.hero__lead,
.section-heading p,
.card p,
.list-card p,
.highlight-box p,
.offer-card p,
.footer p,
.footer__disclaimer {
  color: var(--muted);
}

.hero__lead {
  font-size: 1.08rem;
  margin-top: 18px;
  max-width: 60ch;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(246, 124, 24, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.pill--soft {
  background: rgba(23, 121, 92, 0.1);
  color: var(--success);
}

.pill--warning {
  background: #ffe8c8;
  color: #9a5b08;
}

.hero__list {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature,
.mini-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature {
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.feature__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(23, 121, 92, 0.12);
  color: var(--success);
  font-weight: 900;
}

.alert,
.price-card,
.summary-card,
.card,
.list-card,
.highlight-box,
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.alert {
  padding: 18px 20px;
  background: #fff6ec;
  border-color: #ffd8b5;
  color: #7b4b1f;
  margin-bottom: 22px;
}

.price-card {
  padding: 22px;
}

.price-card__label {
  font-weight: 800;
  margin-bottom: 8px;
}

.price-card__values {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}

.price-card__old {
  color: var(--muted);
  text-decoration: line-through;
}

.price-card__current {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.price-card__note {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-flow: column;
  align-items: center;
  width: 100%;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(246, 124, 24, 0.24);
}

.button--primary:hover {
  background: var(--primary-dark);
}

.button--ghost {
  background: #fff;
  border: 1px solid var(--border);
}

.button--full {
  width: 100%;
}

.summary-card {
  padding: 28px;
}

.summary-card__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.summary-card__header h2 {
  font-size: 1.8rem;
}

.summary-card__list {
  margin: 20px 0;
  padding-left: 20px;
  color: var(--muted);
}

.summary-card__list li + li {
  margin-top: 10px;
}

.summary-card__price {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.summary-card__price small,
.summary-card__price span {
  color: var(--muted);
}

.summary-card__price strong {
  font-size: 2.2rem;
  line-height: 1.1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2,
.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 26px;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 242, 230, 0.6) 0%, rgba(255, 248, 241, 0.7) 100%);
  border-top: 1px solid rgba(238, 223, 208, 0.5);
  border-bottom: 1px solid rgba(238, 223, 208, 0.5);
}

.list-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.mini-feature__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  font-size: 1.1rem;
}

.check-list {
  margin: 0;
  padding-left: 22px;
}

.check-list li + li {
  margin-top: 10px;
}

.section--highlight {
  padding-top: 20px;
}

.highlight-box {
  padding: 36px;
  text-align: center;
  background: var(--warning-bg);
  border-color: #ffd7ac;
}

.section--offer {
  padding-top: 34px;
}

.offer-card {
  padding: 34px;
}

.offer-grid {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.offer-item {
  padding: 16px 18px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.offer-price {
  margin-top: 16px;
  padding: 22px;
  background: linear-gradient(180deg, #fff6ec 0%, #fffaf5 100%);
  border: 1px solid #ffd8b5;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.offer-price__text {
  display: flex;
  flex-direction: column;
}

.offer-price__text span,
.offer-price__text small {
  color: var(--muted);
}

.offer-price__text span {
  text-decoration: line-through;
}

.offer-price__text strong {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.trust-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
  font-weight: 600;
}

.offer-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #fff7ef;
  border: 1px solid var(--border);
  color: #5e534f;
}

.footer {
  padding: 36px 0 46px;
  border-top: 1px solid rgba(238, 223, 208, 0.9);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer__disclaimer {
  max-width: 460px;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .grid--3,
  .grid--2,
  .split,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-price,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 56px 0;
  }

  .hero__list {
    grid-template-columns: 1fr;
  }

  .button,
  .button--full {
    width: 100%;
  }

  .topbar__inner {
    min-height: 66px;
  }

  .summary-card,
  .card,
  .list-card,
  .offer-card,
  .highlight-box {
    padding: 22px;
  }
}


.vacancy-counter {
  margin: 18px 0 8px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #ffd7ac;
  background: linear-gradient(180deg, #fff4e7 0%, #fffaf5 100%);
  box-shadow: var(--shadow);
}

.vacancy-counter__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.vacancy-counter__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffe3bf;
  color: #9a5b08;
  font-size: 0.84rem;
  font-weight: 800;
}

.vacancy-counter__header strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.vacancy-counter__bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #ffe8cf;
  border: 1px solid #ffd8b5;
}

.vacancy-counter__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f67c18 0%, #df6c0f 100%);
  transition: width 0.6s ease;
}

.vacancy-counter__note {
  margin-top: 10px;
  color: #7b4b1f;
  font-size: 0.95rem;
}

.offer-urgency {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px dashed #f0b06c;
  border-radius: var(--radius-sm);
  background: #fff6ec;
  color: #7b4b1f;
}

@media (max-width: 640px) {
  .vacancy-counter__header {
    align-items: flex-start;
  }
}
