@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/prata-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4ede3;
  --bg-soft: #fbf7f0;
  --surface: rgba(255, 251, 245, 0.92);
  --surface-strong: #fffaf4;
  --line: rgba(98, 71, 53, 0.14);
  --text: #2f241d;
  --muted: #75665a;
  --accent: #b97c50;
  --accent-deep: #925736;
  --accent-soft: rgba(185, 124, 80, 0.12);
  --shadow-soft: 0 18px 44px rgba(93, 66, 45, 0.1);
  --shadow: 0 30px 70px rgba(93, 66, 45, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 124, 80, 0.14), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(201, 180, 148, 0.22), transparent 24%),
    linear-gradient(180deg, #faf5ee 0%, #f4ede3 38%, #f9f4ec 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(185, 124, 80, 0.35);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 30;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: block;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(98, 63, 39, 0.14));
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-note {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button,
.back-button,
.text-link {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #cc9162 100%);
  color: #fffdf8;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(146, 87, 54, 0.26);
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.back-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 48px;
  padding-inline: 22px;
}

.button-submit {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 56px;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  scroll-margin-top: 120px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background:
    linear-gradient(96deg, rgba(24, 20, 17, 0.88) 0%, rgba(24, 20, 17, 0.72) 34%, rgba(24, 20, 17, 0.24) 60%, rgba(24, 20, 17, 0.48) 100%),
    radial-gradient(circle at 20% 28%, rgba(218, 188, 158, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(96, 72, 57, 0.12) 0%, rgba(38, 28, 23, 0.12) 100%),
    url("assets/images/hero-airport.jpg") 82% 60% / 112% auto no-repeat;
  transform: translateY(var(--hero-shift, 0px)) scale(1.05);
}

.hero::after {
  background:
    radial-gradient(circle at left center, rgba(226, 201, 165, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(14, 12, 10, 0.14) 0%, rgba(14, 12, 10, 0.02) 22%, rgba(14, 12, 10, 0.18) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.hero-card,
.metric-card,
.editorial-frame,
.quiz-panel,
.vacancy-card,
.trust-item,
.process-item,
.faq-item,
.review-card,
.info-card,
.footer-card,
.page-panel,
.policy-panel,
.noscript-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-card,
.quiz-panel,
.audience-surface,
.footer-card,
.page-panel,
.policy-panel {
  backdrop-filter: blur(18px);
}

.hero-card {
  max-width: 580px;
  padding: clamp(24px, 3.6vw, 34px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(51, 38, 30, 0.56) 0%, rgba(43, 31, 24, 0.42) 100%);
  border-color: rgba(255, 255, 255, 0.14);
}

.eyebrow,
.section-kicker,
.step-badge,
.vacancy-salary {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  max-width: 12ch;
  color: #fffaf5;
  text-shadow: 0 10px 28px rgba(17, 10, 7, 0.14);
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 31rem;
  color: rgba(255, 247, 240, 0.92);
  font-size: clamp(1rem, 1.38vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
}

.hero-meta,
.hero-caption,
.section-text,
.trust-item p,
.vacancy-body p,
.process-item p,
.faq-item p,
.review-label,
.disclaimer,
.footer-col span,
.footer-link,
.field span,
.form-note,
.policy-panel p,
.policy-panel li,
.thanks-copy,
.brand-note,
.metric-card span,
.page-note,
.noscript-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-meta {
  margin: 16px 0 0;
  color: rgba(255, 247, 240, 0.9);
  font-weight: 600;
}

.hero-caption {
  margin: 10px 0 0;
  color: rgba(255, 247, 240, 0.76);
  font-size: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}

.metric-card {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.64);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-size: 18px;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 110px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading-center {
  text-align: center;
  justify-items: center;
}

.section-copyblock {
  display: grid;
  align-content: start;
  gap: 18px;
}

.section-copyblock h2,
.section-heading h2,
.quiz-panel h2,
.policy-panel h1,
.page-panel h1 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.trust-layout,
.audience-layout,
.process-layout {
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.trust-layout,
.process-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.trust-section {
  background:
    radial-gradient(circle at 10% 24%, rgba(196, 155, 113, 0.12), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(196, 155, 113, 0.08), transparent 18%);
}

.process-section {
  background:
    radial-gradient(circle at 86% 22%, rgba(196, 155, 113, 0.1), transparent 18%),
    radial-gradient(circle at 8% 72%, rgba(196, 155, 113, 0.08), transparent 18%);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "visual intro"
    "visual grid";
  gap: clamp(24px, 4vw, 38px);
  align-items: start;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.95) 0%, rgba(247, 239, 228, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.trust-portrait {
  grid-area: visual;
  margin: 0;
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.trust-portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 26%;
}

.trust-caption {
  display: grid;
  gap: 8px;
  padding: 0 6px 2px;
}

.trust-caption strong,
.trust-highlight strong,
.trust-feature strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.trust-caption span {
  color: var(--muted);
  line-height: 1.7;
}

.trust-intro {
  grid-area: intro;
  display: grid;
  align-content: start;
  gap: 18px;
}

.trust-highlight {
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.88) 0%, rgba(249, 242, 232, 0.9) 100%);
  border: 1px solid rgba(98, 71, 53, 0.1);
  box-shadow: 0 20px 44px rgba(93, 66, 45, 0.07);
}

.trust-highlight p,
.trust-feature p {
  margin: 10px 0 0;
}

.trust-grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-feature {
  min-height: 100%;
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(98, 71, 53, 0.1);
  box-shadow: 0 16px 34px rgba(93, 66, 45, 0.05);
}

.trust-feature-wide {
  grid-column: 1 / -1;
}

.process-copyblock {
  gap: 20px;
}

.process-lead {
  max-width: 42rem;
}

.process-aside {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.94) 0%, rgba(247, 239, 228, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.process-visual {
  margin: 0;
  padding: 12px;
  border-radius: 28px;
}

.process-visual img {
  aspect-ratio: 5 / 4;
  object-position: center 58%;
}

.process-note {
  padding: 8px 6px 4px;
}

.process-note strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.process-note p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-note-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.process-note-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
}

.process-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.audience-surface {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(250, 244, 236, 0.96) 100%);
  box-shadow: var(--shadow);
}

.audience-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.editorial-frame {
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.92) 0%, rgba(248, 238, 227, 0.92) 100%);
}

.editorial-frame img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  transition: transform 0.9s ease;
}

.editorial-frame:hover img {
  transform: scale(1.04);
}

.editorial-frame img,
.vacancy-photo img,
.review-photo img {
  object-fit: cover;
}

.editorial-frame:not(.editorial-frame-horizontal) img {
  aspect-ratio: 5 / 6;
}

.editorial-frame-horizontal img {
  aspect-ratio: 16 / 10;
  object-position: center 38%;
}

.audience-frame img {
  object-position: center 34%;
}

.editorial-frame-tall img {
  aspect-ratio: 5 / 6;
  object-position: center 34%;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-item,
.process-item,
.faq-item,
.info-card,
.vacancy-card,
.review-card,
.noscript-card {
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.trust-item {
  padding: 18px 20px;
}

.trust-item strong,
.process-item strong,
.vacancy-body h3,
.info-card strong,
.page-panel strong,
.policy-panel strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.quiz-section {
  background:
    radial-gradient(circle at top left, rgba(185, 124, 80, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.88) 0%, rgba(244, 236, 226, 0.88) 100%);
}

.quiz-panel {
  max-width: 870px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 38px;
  background: rgba(255, 250, 244, 0.9);
}

.quiz-topbar {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.step-badge {
  padding: 10px 14px;
  background: rgba(185, 124, 80, 0.14);
  color: var(--accent-deep);
  font-size: 13px;
}

.back-button {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.progress-track {
  height: 7px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(146, 87, 54, 0.12);
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent) 0%, #d8a072 100%);
  transition: width 0.32s ease;
}

.quiz-stage {
  margin-top: 24px;
}

.quiz-stage-inner {
  animation: fade-up 0.42s ease both;
}

.question-card,
.loading-card,
.result-card {
  display: grid;
  gap: 20px;
}

.question-card h3,
.loading-card h3,
.result-card h3,
.noscript-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-button {
  position: relative;
  width: 100%;
  padding: 18px 18px 18px 56px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(93, 66, 45, 0.05);
}

.option-button::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(146, 87, 54, 0.35);
  background: #fff;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.option-button:hover,
.option-button:focus-visible {
  border-color: rgba(146, 87, 54, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(93, 66, 45, 0.08);
}

.option-button.is-selected {
  border-color: rgba(146, 87, 54, 0.46);
  background: rgba(250, 241, 231, 0.98);
}

.option-button.is-selected::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.04);
}

.loading-card p,
.result-card > p {
  margin: 0;
}

.loading-meter {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(146, 87, 54, 0.12);
  overflow: hidden;
}

.loading-meter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 30%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(185, 124, 80, 0) 0%, rgba(185, 124, 80, 0.95) 46%, rgba(236, 191, 145, 0.2) 100%);
  animation: loading-slide 1.1s ease-in-out infinite;
}

.summary-list {
  display: grid;
  gap: 10px;
}

.summary-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.summary-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.field input::placeholder {
  color: #9a8c80;
}

.form-note {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-note li {
  position: relative;
  padding-left: 18px;
}

.form-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vacancy-card {
  overflow: hidden;
}

.vacancy-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0e7db;
}

.vacancy-photo img {
  width: 100%;
  height: 100%;
  transition: transform 0.75s ease;
}

.vacancy-card:hover .vacancy-photo img {
  transform: scale(1.06);
}

.photo-security img {
  object-position: center 18%;
}

.photo-production img {
  object-position: center;
}

.photo-universal img {
  object-position: center 24%;
}

.vacancy-body {
  display: grid;
  gap: 10px;
  padding: 20px 20px 22px;
}

.vacancy-salary {
  padding: 8px 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 14px;
}

.vacancy-footer {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-top: 28px;
}

.disclaimer {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 17px 18px 17px 54px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(185, 124, 80, 0.14);
  transform: translateY(-50%);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 25px;
  top: calc(50% - 1px);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: translateY(-50%) rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--accent-deep);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
}

.process-number {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(185, 124, 80, 0.14);
  color: var(--accent-deep);
  font-weight: 800;
}

.faq-section {
  background:
    radial-gradient(circle at 94% 12%, rgba(185, 124, 80, 0.14), transparent 16%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.8) 0%, rgba(247, 239, 229, 0.88) 100%);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--accent);
  font-size: 26px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-photo {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #ece3d7;
}

.review-photo img {
  width: 100%;
  height: 100%;
}

.review-photo-woman img {
  object-position: center 24%;
}

.review-photo-man-one img {
  object-position: center 16%;
}

.review-photo-man-two img {
  object-position: center 18%;
}

.review-body {
  display: grid;
  gap: 12px;
  padding: 20px;
  flex: 1;
}

.review-text {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.review-label {
  color: var(--accent-deep);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 22px;
}

.footer {
  padding: 16px 0 54px;
}

.footer-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 28px;
  border-radius: 34px;
  background: rgba(53, 38, 30, 0.94);
}

.footer-col {
  display: grid;
  gap: 4px;
}

.footer-col strong {
  color: #fff8f0;
  font-size: 18px;
}

.footer-col span,
.footer-link {
  color: rgba(255, 245, 234, 0.76);
}

.footer-col-right {
  justify-items: end;
  text-align: right;
}

.footer-link {
  font-weight: 700;
}

.secondary-page {
  min-height: 100svh;
  padding: 120px 0 56px;
}

.page-panel,
.policy-panel {
  border-radius: 34px;
  background: rgba(255, 251, 245, 0.92);
}

.page-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  gap: 20px;
}

.page-panel h1 {
  margin-top: 0;
  max-width: 14ch;
  color: var(--text);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-note {
  font-size: 14px;
}

.policy-page {
  padding-top: 120px;
  padding-bottom: 56px;
}

.policy-panel {
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  gap: 28px;
}

.policy-section {
  display: grid;
  gap: 12px;
}

.policy-section h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.policy-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--delay, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quiz-panel.is-focused {
  box-shadow: 0 0 0 2px rgba(185, 124, 80, 0.18), var(--shadow);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-slide {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(460%);
  }
}

@media (max-width: 1120px) {
  .hero-metrics,
  .vacancy-grid,
  .review-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-layout,
  .audience-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "grid";
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .header-bar {
    gap: 12px;
  }

  .brand-note {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-metrics,
  .form-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

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

  .footer-col-right {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header-bar {
    padding: 10px 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 14px;
  }

  .button-small {
    min-height: 42px;
    padding-inline: 16px;
  }

  .section {
    padding: 74px 0;
  }

  .hero-card,
  .quiz-panel,
  .audience-surface,
  .footer-card,
  .page-panel,
  .policy-panel {
    border-radius: 28px;
  }

  .vacancy-grid,
  .review-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    padding: 22px;
    border-radius: 30px;
  }

  .trust-highlight,
  .trust-feature {
    border-radius: 22px;
  }

  .vacancy-footer {
    justify-items: stretch;
  }

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

  .faq-item summary {
    padding-right: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
