:root {
  --bg: #f6f5f1;
  --panel: #ffffff;
  --text: #111318;
  --muted: #616975;
  --line: #e3dfd6;
  --brand: #111827;
  --brand-soft: #f0f1f4;
  --surface: #fbfaf7;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 34px 90px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,0.92), transparent 32%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 38%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(227, 223, 214, 0.78);
  backdrop-filter: blur(18px);
}

.logo {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.header-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16);
}

.button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.button-secondary {
  background: var(--brand-soft);
  color: var(--text);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  min-height: calc(100vh - 65px);
  padding-top: 26px;
  padding-bottom: 42px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.8vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.hero-text,
.wide-text,
.section-heading p,
.final-cta p {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
}

.hero-text {
  margin-bottom: 28px;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.trust-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #303741;
  font-size: 17px;
  font-weight: 750;
}

.trust-list span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  flex: 0 0 auto;
}

.section-heading {
  margin-bottom: 34px;
}

.cards,
.benefits {
  display: grid;
  gap: 18px;
}

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

.card,
.request-form,
details,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
}

.card p,
.benefits p,
details p {
  color: var(--muted);
}

.step {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 850;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-weight: 650;
}

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

.benefits p {
  min-height: 116px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  font-weight: 650;
}

.request-form {
  scroll-margin-top: 92px;
  padding: clamp(26px, 4vw, 40px);
}

.hero-form {
  position: relative;
  align-self: center;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

.hero-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(17,24,39,0.12));
}

.progress {
  margin-bottom: 22px;
}

.progress span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 850;
}

.progress-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--brand-soft);
}

.progress-bar span {
  display: block;
  width: 50%;
  height: 100%;
  margin: 0;
  background: var(--brand);
  transition: width 0.22s ease;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 7px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.form-intro,
.form-note,
.form-message {
  color: var(--muted);
}

.form-intro {
  margin-bottom: 18px;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: grid;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(17, 24, 39, 0.12);
  border-color: var(--brand);
}

.form-note,
.form-message {
  font-size: 14px;
}

.form-message {
  margin: 16px 0 0;
  font-weight: 750;
}

.form-message.is-error {
  color: #9f1239;
}

.form-message.is-success {
  color: #166534;
}

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

details {
  padding: 20px 24px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 32px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

@media (max-height: 820px) and (min-width: 921px) {
  .hero {
    align-items: start;
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .hero-text {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .trust-list {
    gap: 9px;
  }

  .request-form {
    padding: 28px;
  }

  legend {
    font-size: 27px;
  }

  .form-step.is-active {
    gap: 13px;
  }

  input,
  select,
  textarea {
    min-height: 47px;
  }

  textarea {
    min-height: 84px;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 760px;
  }

  .cards.three,
  .benefits {
    grid-template-columns: 1fr;
  }
}

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

  .section {
    width: min(100% - 28px, 1160px);
    padding: 48px 0;
  }

  .hero {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(38px, 14vw, 56px);
  }

  .hero-text {
    font-size: 18px;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}


.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.locale-switcher a {
  color: var(--muted);
}

.locale-switcher a:hover {
  color: var(--text);
}
