@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prata";
  src: url("assets/fonts/prata-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6efe5;
  --bg-soft: #fbf7f2;
  --surface: rgba(255, 251, 246, 0.94);
  --surface-elevated: rgba(252, 247, 241, 0.98);
  --surface-dark: rgba(37, 27, 21, 0.72);
  --line: rgba(91, 65, 46, 0.1);
  --line-strong: rgba(91, 65, 46, 0.18);
  --text: #30231b;
  --muted: #6d5f54;
  --accent: #c67a4d;
  --accent-deep: #9d5933;
  --accent-soft: rgba(198, 122, 77, 0.14);
  --shadow: 0 28px 70px rgba(83, 57, 38, 0.1);
  --shadow-soft: 0 14px 30px rgba(83, 57, 38, 0.07);
  --shell: 1220px;
  --header-offset: 104px;
  --hero-shift: 0px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(210, 169, 132, 0.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(187, 168, 148, 0.16), transparent 20%),
    linear-gradient(180deg, #f5eee5 0%, #f3ebdf 42%, #fbf7f2 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 18px 0;
}

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(251, 244, 235, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

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

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

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.03em;
}

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

.site-nav {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.24s ease;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-deep);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.button,
.back-button,
.quiz-option {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d38656 0%, #b8683d 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(184, 104, 61, 0.22);
}

.button:hover,
.button:focus-visible,
.back-button:hover,
.back-button:focus-visible,
.lead-submit:hover,
.lead-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(184, 104, 61, 0.22);
  outline: none;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(91, 65, 46, 0.1), 0 10px 22px rgba(83, 57, 38, 0.05);
}

.button-secondary {
  background: linear-gradient(135deg, #7c8b72 0%, #a28a69 100%);
  box-shadow: 0 18px 36px rgba(110, 95, 69, 0.18);
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: center;
  padding: 132px 0 64px;
  overflow: clip;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.12), rgba(10, 7, 5, 0.24)),
    url("assets/images/hero-premium-chauffeur.webp") 68% calc(48% + var(--hero-shift)) / cover no-repeat;
  transform: scale(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 18% 26%, rgba(246, 219, 186, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(23, 15, 11, 0.84) 0%, rgba(23, 15, 11, 0.56) 36%, rgba(23, 15, 11, 0.28) 64%, rgba(23, 15, 11, 0.5) 100%),
    linear-gradient(180deg, rgba(14, 9, 7, 0.14), rgba(14, 9, 7, 0.4) 62%, rgba(14, 9, 7, 0.62) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  align-items: center;
  gap: 0;
}

.hero-grid > * {
  width: min(100%, 640px);
}

.hero-panel,
.service-card,
.trust-copy,
.vacancy-card,
.suitable-copy,
.process-copy,
.review-card,
.faq-item,
.info-card,
.quiz-frame,
.quiz-noscript,
.footer-card,
.inner-card,
.inner-hero,
.legal-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
}

.hero-panel,
.quiz-frame {
  background: rgba(247, 238, 228, 0.16);
}

.hero-panel {
  position: relative;
  padding: 40px 40px 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(43, 31, 24, 0.78), rgba(51, 38, 30, 0.6));
  color: #fff7ef;
  box-shadow: 0 30px 80px rgba(11, 7, 5, 0.28);
  backdrop-filter: blur(10px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero-panel h1,
.section-head h2,
.trust-copy h2,
.suitable-copy h2,
.process-copy h2,
.info-card h2,
.quiz-question-head h3,
.loading-state h3,
.result-state h3,
.inner-hero h1,
.legal-copy h1,
.legal-copy h2,
.quiz-noscript h3 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-panel h1 {
  margin-top: 20px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  max-width: 10ch;
}

.eyebrow,
.section-kicker,
.country-pill,
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff7ef;
}

.hero-subtitle,
.hero-points,
.hero-income,
.section-head p,
.service-card p,
.trust-copy p,
.vacancy-note,
.suitable-copy-note,
.process-list span,
.review-card p,
.quiz-question-hint,
.summary-head small,
.result-notes,
.quiz-noscript p,
.footer-meta p,
.inner-copy p,
.legal-copy p,
.legal-copy li {
  line-height: 1.72;
}

.hero-subtitle {
  display: grid;
  gap: 4px;
  margin: 20px 0 0;
  color: rgba(255, 247, 239, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points,
.hero-income {
  margin: 14px 0 0;
  color: rgba(255, 247, 239, 0.82);
  font-size: 14px;
}

.hero-points {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 33rem;
}

.hero-income {
  color: rgba(255, 247, 239, 0.68);
}

.trust-list li::before,
.suitable-list li::before,
.info-list li::before,
.result-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efc18c 0%, #d88755 100%);
  transform: translateY(-50%);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 122, 77, 0.05), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head h2,
.trust-copy h2,
.suitable-copy h2,
.process-copy h2,
.info-card h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.section-head h2 {
  max-width: 13ch;
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

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

.section-head-centered h2,
.section-head-centered p {
  max-width: 18ch;
}

.section-head-centered p {
  max-width: 560px;
}

.section-kicker {
  width: fit-content;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

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

.service-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 231, 0.92));
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, rgba(198, 122, 77, 0.74), rgba(228, 194, 150, 0.36));
}

.service-card:nth-child(2n),
.service-card:nth-child(3n) {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 231, 0.92));
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(198, 122, 77, 0.12), rgba(146, 124, 97, 0.12));
  color: var(--accent-deep);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card strong,
.vacancy-body h3,
.summary-head span,
.field span,
.faq-item summary,
.review-card blockquote,
.process-list strong,
.legal-copy h2 {
  font-weight: 700;
}

.service-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.5;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.trust-layout,
.suitable-layout,
.process-layout {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

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

.trust-photo,
.suitable-photo,
.process-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.trust-photo img,
.suitable-photo img,
.process-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.trust-photo img {
  min-height: 540px;
  object-position: center 42%;
}

.trust-copy,
.suitable-copy,
.process-copy,
.info-card,
.quiz-frame,
.quiz-noscript,
.footer-card,
.inner-hero,
.legal-copy {
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--surface-elevated), rgba(247, 239, 231, 0.94));
}

.trust-copy p,
.suitable-copy-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.trust-list,
.suitable-list,
.info-list,
.result-notes {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.trust-list li,
.suitable-list li,
.info-list li,
.result-notes li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.6;
}

.vacancies-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

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

.vacancy-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 231, 0.94));
}

.vacancy-image {
  overflow: hidden;
  aspect-ratio: 1.04 / 1;
}

.vacancy-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.vacancy-image-germany img {
  object-position: center 18%;
}

.vacancy-image-france img {
  object-position: center 44%;
}

.vacancy-image-spain img {
  object-position: center 50%;
}

.vacancy-image-italy img {
  object-position: center 44%;
}

.vacancy-body {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-top: 1px solid rgba(91, 65, 46, 0.08);
}

.country-pill {
  width: fit-content;
  background: rgba(233, 225, 216, 0.8);
  color: #6f5645;
}

.vacancy-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.vacancy-income {
  margin: 0;
  color: var(--accent-deep);
  font-size: 16px;
  font-weight: 700;
}

.vacancy-note {
  margin: 0;
  color: var(--muted);
}

.vacancy-card:hover,
.vacancy-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(83, 57, 38, 0.14);
}

.vacancy-card:hover .vacancy-image img,
.vacancy-card:focus-within .vacancy-image img {
  transform: scale(1.05) translateY(-1.5%);
  filter: saturate(1.05);
}

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

.disclaimer {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.disclaimer span {
  color: var(--text);
}

.suitable-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.suitable-photo img {
  min-height: 480px;
  object-position: center 52%;
}

.process-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.process-photo img {
  min-height: 620px;
  object-position: 34% 52%;
}

.process-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 0 0 16px 72px;
  border-bottom: 1px solid rgba(91, 65, 46, 0.1);
  counter-increment: process;
}

.process-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(198, 122, 77, 0.12), rgba(255, 255, 255, 0.82));
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
}

.process-list strong {
  font-size: 18px;
  line-height: 1.45;
}

.process-list span {
  color: var(--muted);
}

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

.review-card {
  display: grid;
  align-content: start;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 231, 0.94));
}

.review-photo {
  overflow: hidden;
  margin: 0 0 18px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
}

.review-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

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

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

.review-card blockquote {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
}

.review-card p {
  margin: 16px 0 0;
  color: var(--accent-deep);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-photo:hover img,
.suitable-photo:hover img,
.process-photo:hover img,
.review-card:hover .review-photo img {
  transform: scale(1.04);
}

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

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 231, 0.94));
}

.faq-item summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.4;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

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

.faq-item div {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.info-card {
  background:
    radial-gradient(circle at top right, rgba(198, 122, 77, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 231, 0.94));
}

.section-quiz {
  background:
    radial-gradient(circle at 18% 14%, rgba(198, 122, 77, 0.08), transparent 18%),
    linear-gradient(180deg, #f4ecdf 0%, #efe4d6 100%);
}

.quiz-app {
  max-width: 860px;
  margin: 0 auto;
}

.quiz-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.step-badge {
  background: rgba(225, 215, 202, 0.72);
  color: #715947;
}

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

.progress-track {
  margin-top: 20px;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(91, 65, 46, 0.08);
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c67a4d 0%, #ddaf72 52%, #829172 100%);
  transition: width 0.34s ease;
}

.quiz-state {
  margin-top: 28px;
}

.quiz-question-head {
  display: grid;
  gap: 10px;
}

.quiz-question-count {
  margin: 0;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-question-head h3,
.loading-state h3,
.result-state h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
}

.quiz-question-hint {
  margin: 0;
  color: var(--muted);
}

.quiz-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.quiz-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(91, 65, 46, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.quiz-option:hover,
.quiz-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(198, 122, 77, 0.38);
  outline: none;
}

.quiz-option.is-selected {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 215, 200, 0.52));
  border-color: rgba(198, 122, 77, 0.45);
}

.quiz-option-marker {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(113, 89, 71, 0.28);
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.quiz-option.is-selected .quiz-option-marker {
  border-color: rgba(198, 122, 77, 0.62);
  background: radial-gradient(circle at center, var(--accent) 0 43%, transparent 46%);
  transform: scale(1.05);
}

.quiz-next-button {
  margin-top: 18px;
}

.quiz-summary-box {
  margin-top: 26px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 65, 46, 0.08);
}

.quiz-summary-box-result {
  margin-top: 24px;
}

.summary-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.summary-head span {
  font-size: 15px;
}

.summary-head small {
  color: var(--muted);
}

.quiz-summary-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.quiz-summary-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(91, 65, 46, 0.08);
}

.quiz-summary-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quiz-summary-list strong {
  font-size: 13px;
  color: var(--accent-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quiz-summary-list span {
  color: var(--text);
  line-height: 1.55;
}

.quiz-summary-list .summary-empty {
  color: var(--muted);
  font-style: italic;
  border-bottom: 0;
  padding-bottom: 0;
}

.loading-state,
.result-state {
  display: grid;
  gap: 16px;
}

.loading-state {
  justify-items: center;
  text-align: center;
  padding: 30px 0 24px;
}

.loading-state p,
.result-state p {
  margin: 0;
  color: var(--muted);
}

.loading-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(198, 122, 77, 0.14);
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}

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

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

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

.field input {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(91, 65, 46, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.field input:focus-visible {
  outline: 2px solid rgba(198, 122, 77, 0.24);
  outline-offset: 2px;
}

.result-notes {
  margin-top: 6px;
}

.quiz-noscript h3,
.inner-hero h1,
.legal-copy h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

.site-footer {
  padding: 18px 0 56px;
}

.footer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 24px;
}

.footer-meta p {
  margin: 0;
  color: var(--muted);
}

.footer-meta p + p {
  margin-top: 10px;
}

.footer-links {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 12px;
}

.brand-footer .brand-copy span {
  max-width: 240px;
}

.reveal-block,
.stagger-grid .stagger-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.64s ease, transform 0.64s ease;
}

.reveal-block.is-visible,
.stagger-grid.is-visible .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.stagger-grid.is-visible .stagger-item:nth-child(1) { transition-delay: 0.02s; }
.stagger-grid.is-visible .stagger-item:nth-child(2) { transition-delay: 0.08s; }
.stagger-grid.is-visible .stagger-item:nth-child(3) { transition-delay: 0.14s; }
.stagger-grid.is-visible .stagger-item:nth-child(4) { transition-delay: 0.2s; }
.stagger-grid.is-visible .stagger-item:nth-child(5) { transition-delay: 0.26s; }

.inner-page .site-header {
  position: static;
}

.inner-page .header-bar {
  margin-top: 18px;
}

.inner-page {
  min-height: 100svh;
}

.inner-main {
  padding: 28px 0 72px;
}

.inner-layout,
.legal-layout {
  display: grid;
  gap: 24px;
}

.inner-hero {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.inner-copy p {
  margin: 0;
  color: var(--muted);
}

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

.legal-copy {
  color: var(--text);
}

.legal-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.legal-copy h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
}

.legal-copy p + p,
.legal-copy ul + p,
.legal-copy h2 + p,
.legal-copy ul + h2 {
  margin-top: 12px;
}

.legal-copy ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .reveal-block,
  .stagger-grid .stagger-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .trust-layout,
  .suitable-layout,
  .process-layout,
  .footer-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  :root {
    --header-offset: 92px;
  }

  .site-nav {
    display: none;
  }

  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .advantages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .section,
  .inner-main {
    padding: 78px 0;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 36px;
  }

  .hero-panel,
  .trust-copy,
  .suitable-copy,
  .process-copy,
  .info-card,
  .quiz-frame,
  .quiz-noscript,
  .inner-hero,
  .legal-copy,
  .footer-card {
    padding: 26px;
  }

  .trust-photo img,
  .suitable-photo img,
  .process-photo img {
    min-height: 420px;
  }
}

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

  .site-header {
    padding: 12px 0;
  }

  .header-bar {
    padding: 10px 12px;
    gap: 12px;
    border-radius: 24px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .button,
  .button-ghost,
  .quiz-next-button,
  .lead-submit {
    width: 100%;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-panel {
    border-radius: 26px;
  }

  .hero-panel h1,
  .section-head h2,
  .trust-copy h2,
  .suitable-copy h2,
  .process-copy h2,
  .info-card h2,
  .quiz-question-head h3,
  .loading-state h3,
  .result-state h3,
  .inner-hero h1,
  .legal-copy h1 {
    max-width: none;
  }

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

  .service-card,
  .vacancy-card,
  .review-card,
  .faq-item,
  .trust-copy,
  .suitable-copy,
  .process-copy,
  .info-card,
  .quiz-frame,
  .quiz-noscript,
  .inner-hero,
  .legal-copy,
  .footer-card {
    border-radius: 24px;
  }

  .faq-item summary {
    padding: 20px 54px 20px 20px;
    font-size: 17px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .faq-item div {
    padding: 0 20px 20px;
  }

  .quiz-frame,
  .quiz-noscript {
    padding: 22px;
  }

  .quiz-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-head {
    display: grid;
  }
}
