@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;700;800&display=swap");

:root {
  --text: #050505;
  --muted: #737373;
  --line: #e9e2ca;
  --paper: #ffffff;
  --cream: #fffae8;
  --cream-strong: #fff8e1;
  --gold: #fece00;
  --gold-deep: #ff8601;
  --ink: #121212;
  --shadow: 0 28px 90px rgba(92, 72, 0, 0.09);
  --container: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

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

button,
input {
  font: inherit;
}

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

.hero {
  position: relative;
  min-height: 649px;
  overflow: hidden;
  background: #fff url("./assets/hero-bg-figma.png") center top / 100% 100% no-repeat;
}

.hero::before,
.hero::after {
  display: none;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(250, 197, 0, 0.44) 1px, transparent 1.4px),
    repeating-radial-gradient(ellipse at center, transparent 0 17px, rgba(250, 197, 0, 0.25) 18px 19px, transparent 20px 34px);
  background-size: 12px 12px, 100% 100%;
}

.nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  align-items: center;
  width: min(1354px, calc(100% - 56px));
  margin: 0 auto;
  padding: 19px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  display: block;
  width: 110px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.login-link {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  transform: translateX(11px);
  min-width: 65px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
}

.nav-toggle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  margin: 62px auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 3px 12px;
  border: 1px dashed #fdd134;
  border-radius: 108px;
  background: transparent;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.coin {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.hero h1 {
  max-width: 1040px;
  margin: 28px auto 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(40px, 3.611vw, 52px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.hero-content p {
  width: min(506px, 100%);
  margin: 28px auto 0;
  font-size: 16px;
  line-height: 1.25;
}

.hero-actions,
.workflow-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 27px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 24px;
  cursor: pointer;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  box-shadow: none;
}

.button-primary:hover {
  background: #ffdc26;
}

.button-secondary {
  background: #fafafa;
  box-shadow: none;
}

.hero-actions .button {
  width: 208px;
}

.button-compact {
  width: 129px;
  padding: 0 23px;
  border: 1px solid var(--gold);
  background: #fff;
  white-space: nowrap;
}

.stats {
  position: relative;
  z-index: 4;
  margin-top: -85px;
}

.stats-card {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(var(--container), calc(100% - 48px));
  height: 124px;
  padding: 32px 45px;
  margin: 0 auto;
  transform: translateX(14px);
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.stats-card article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  flex: 0 0 300px;
  gap: 10px;
  padding: 0;
  isolation: isolate;
}

.stats-card article::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8px;
  left: 5px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 134, 1, 0.34), rgba(254, 206, 0, 0.44));
  filter: blur(30px);
  pointer-events: none;
}

.stats-card article:nth-child(3)::before {
  top: 1px;
  left: 2px;
}

.stats-card strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.stats-card span {
  width: 213px;
  font-size: 16px;
  line-height: 1.25;
}

.stats-card article:nth-child(2) span {
  width: 184px;
}

.stats-card article:nth-child(3) span {
  width: 189px;
}

.section {
  padding: 120px 0;
}

.problems {
  padding-top: 78px;
  padding-bottom: 84px;
}

h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.section h2,
.audience h2,
.expert h2 {
  margin-bottom: 58px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.problems h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 3.056vw, 44px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.problem-list {
  width: min(704px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 37px;
}

.problem-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 20px;
}

.problem-item span {
  font-family: Manrope, Inter, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.problem-item h3 {
  margin-bottom: 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.problem-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.audience {
  padding: 0 45px;
}

.audience-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 430px 532px;
  justify-content: start;
  align-items: start;
  column-gap: 69px;
  width: min(1354px, 100%);
  min-height: 1162px;
  margin: 0 auto;
  padding: 80px 126px 80px 197px;
  border-radius: 64px;
  background: var(--cream);
}

.audience-panel::before {
  content: "";
  position: absolute;
  left: -515px;
  top: -35px;
  width: 1250px;
  height: 610px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    ellipse at center,
    transparent 0 25px,
    rgba(255, 255, 255, 0.64) 26px 27px,
    transparent 28px 40px
  );
  transform: rotate(-8deg);
}

.audience-panel::after {
  content: "";
  position: absolute;
  left: -590px;
  bottom: -145px;
  width: 1260px;
  height: 820px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    ellipse at center,
    transparent 0 27px,
    rgba(255, 255, 255, 0.66) 28px 29px,
    transparent 30px 43px
  );
  transform: rotate(17deg);
}

.audience-copy,
.audience-groups {
  position: relative;
  z-index: 1;
}

.audience-copy h2 {
  width: 430px;
  margin-bottom: 32px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.audience-copy p {
  width: 430px;
  margin-bottom: 48px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.report-preview {
  display: grid;
  width: 361px;
  height: 272px;
  align-content: start;
  gap: 20px;
  padding: 24px;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  background: #fff;
}

.preview-folder {
  display: block;
  width: 313px;
  height: 121px;
}

.report-preview span {
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.report-preview b {
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.audience-groups {
  display: grid;
  width: 532px;
  gap: 52px;
}

.audience-groups article {
  display: grid;
  gap: 24px;
}

.audience-groups h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.audience-groups ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.audience-groups li {
  position: relative;
  padding-left: 21px;
}

.audience-groups li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 15px;
  background: url("./assets/star.svg") center / contain no-repeat;
}

.cases {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cases h2 {
  width: min(723px, 100%);
  margin-bottom: 48px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 3.056vw, 44px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card {
  min-width: 0;
}

.case-visual {
  position: relative;
  height: 273px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 210, 0, 0.35), transparent 24%),
    linear-gradient(135deg, #fff8d9, #fff2bd);
}

.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 210, 0, 0.35);
}

.case-visual::before {
  width: 250px;
  height: 250px;
  left: 54px;
  top: 45px;
}

.case-visual::after {
  width: 160px;
  height: 160px;
  right: 66px;
  bottom: -55px;
}

.case-visual span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.case-visual span:nth-child(1) {
  width: 170px;
  height: 18px;
  left: 48px;
  top: 52px;
}

.case-visual span:nth-child(2) {
  width: 230px;
  height: 18px;
  left: 48px;
  top: 86px;
}

.case-visual span:nth-child(3) {
  width: 115px;
  height: 115px;
  right: 64px;
  top: 62px;
  background: var(--gold);
}

.case-visual-alt {
  background:
    radial-gradient(circle at 73% 31%, rgba(255, 210, 0, 0.35), transparent 22%),
    linear-gradient(135deg, #fff4be, #fff9dd);
}

.case-meta {
  margin-bottom: 16px;
  color: #909090;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
}

.case-card h3 {
  min-height: 88px;
  margin-bottom: 16px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

.workflow {
  padding-top: 80px;
  padding-bottom: 80px;
}

.workflow .container {
  width: min(1064px, calc(100% - 48px));
}

.workflow-head {
  width: min(692px, 100%);
  margin-bottom: 40px;
}

.workflow-head h2 {
  margin-bottom: 24px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(36px, 3.37vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.workflow-head p {
  width: min(692px, 100%);
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  align-items: center;
  gap: 52px;
  height: 251px;
}

.step-card {
  position: relative;
  display: grid;
  align-content: start;
  width: 320px;
}

.step-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--gold);
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.step-card time {
  display: inline-flex;
  width: max-content;
  height: 19px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 0 4px;
  border: 2px solid #ebebeb;
  border-radius: 4px;
  color: #b8b8b8;
  font-family: "Google Sans", Manrope, Inter, sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.step-card h3 {
  min-height: 58px;
  margin-bottom: 8px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.step-card p {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}

.workflow-actions {
  justify-content: flex-start;
  margin-top: 40px;
}

.workflow-actions .button {
  height: 38px;
  font-weight: 400;
  white-space: nowrap;
}

.workflow-actions .button-primary {
  width: 208px;
  border: 1px solid var(--gold-deep);
}

.workflow-actions .button-secondary {
  width: 147px;
  border: 1px solid var(--gold);
  background: #fafafa;
}

.expert {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 14px;
  background: #fff;
}

.expert .container {
  width: min(1084px, calc(100% - 48px));
}

.expert-layout {
  display: grid;
  grid-template-columns: 589px 453px;
  align-items: start;
  gap: 48px;
  min-height: 401px;
}

.expert-copy {
  width: 589px;
}

.expert-copy h2 {
  width: 589px;
  margin-bottom: 34px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
}

.expert-copy h3 {
  width: 504px;
  margin: 46px 0 13px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.expert-copy p {
  max-width: min(491px, 100%);
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.expert-copy p:first-of-type {
  max-width: min(479px, 100%);
}

.expert-portrait {
  position: relative;
  width: 453px;
  height: 401px;
  transform: translateY(-52px);
}

.portrait-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 453px;
  height: 453px;
  border-radius: 50%;
  background: var(--cream-strong);
}

.expert-portrait img {
  position: absolute;
  top: 8px;
  left: -63px;
  width: 413px;
  height: 445px;
  object-fit: contain;
}

.achievement-band {
  margin-top: 0;
  padding: 50px 0 75px;
  background: linear-gradient(to bottom, #fff9e2 0%, #ffffff 100%);
}

.achievements {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 44px;
}

.achievements article {
  display: grid;
  align-content: start;
  width: 320px;
}

.star {
  width: 16px;
  height: 15px;
  margin-bottom: 22px;
  background: url("./assets/star.svg") center / contain no-repeat;
}

.achievements h3 {
  margin-bottom: 22px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.achievements p {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 0 0 28px;
  background: #fff;
}

.final-cta::before {
  z-index: 0;
  top: 384px;
  left: -90px;
  width: 1648px;
  height: 640px;
  border-radius: 50%;
  opacity: 0.58;
  background: linear-gradient(104deg, #fece00 0%, #ffd400 56%, #ffe76a 100%);
  filter: blur(120px);
}

.final-cta::after {
  z-index: 1;
  top: auto;
  right: 0;
  bottom: 0;
  width: 544px;
  height: 220px;
  opacity: 1;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0) calc(100% - 50px), #fff 100%),
    url("./assets/footer-grid.png") right bottom / 544px 459px no-repeat;
}

.cta-form {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(710px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 64px;
  border: 1px solid #d9d9d9;
  border-radius: 32px;
  background: #fff;
  box-shadow: none;
}

.cta-form h2 {
  width: min(582px, 100%);
  margin: 0 auto 16px;
  text-align: center;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1;
  font-weight: 700;
}

.cta-form > p {
  margin: 0 0 40px;
  text-align: center;
  font-size: 16px;
}

.cta-form label:not(.checkbox) {
  position: relative;
  display: grid;
  margin-bottom: 16px;
}

.cta-form label:not(.checkbox) span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8f8f8f;
  font-family: "Google Sans", Manrope, Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  pointer-events: none;
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}

.cta-form label:nth-of-type(2) span {
  font-family: Manrope, Inter, sans-serif;
}

.cta-form input[type="text"],
.cta-form input[type="email"] {
  width: 100%;
  height: 42px;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  padding: 0 20px;
  outline: 0;
  background: #fff;
}

.cta-form input:focus {
  border-color: var(--gold-deep);
}

.cta-form label:not(.checkbox):has(input:not(:placeholder-shown)) span,
.cta-form label:not(.checkbox):focus-within span {
  opacity: 0;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-family: "Google Sans", Manrope, Inter, sans-serif;
  font-size: 12px;
  line-height: 15px;
}

.checkbox input {
  display: grid;
  flex: 0 0 auto;
  place-content: center;
  width: 16px;
  height: 16px;
  margin: 0;
  appearance: none;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  background: #fff;
}

.checkbox input::before {
  content: "";
  width: 7px;
  height: 5px;
  background: #000;
  clip-path: polygon(14% 44%, 0 58%, 38% 100%, 100% 16%, 86% 0, 36% 67%);
  transform: scale(0);
}

.checkbox input:checked::before {
  transform: scale(1);
}

.cta-form .button {
  width: 100%;
}

.form-message {
  min-height: 0;
  margin-top: 0;
  text-align: center;
  color: #5d4a00;
  font-size: 13px;
}

.form-message:not(:empty) {
  min-height: 18px;
  margin-top: 12px;
}

.footer {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 34px;
  margin-top: 40px;
}

.contacts {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}

@media (max-width: 1020px) {
  .nav {
    grid-template-columns: 1fr auto auto;
    width: calc(100% - 36px);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 34px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #000;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    right: 0;
    left: auto;
    display: none;
    width: min(280px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid #eee1b1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    transform: none;
  }

  .nav-links.is-open {
    display: grid;
    gap: 14px;
  }

  .login-link {
    margin-left: 10px;
    transform: none;
  }

  .stats-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
    padding: 0;
    transform: none;
  }

  .stats-card article {
    flex: initial;
    width: 100%;
    padding: 24px 45px;
  }

  .stats-card article + article {
    border-left: 0;
    border-top: 1px solid #f1ead1;
  }

  .stats-card article::before,
  .stats-card article:nth-child(3)::before {
    top: 16px;
    left: 50px;
  }

  .audience {
    padding-inline: 24px;
  }

  .audience-panel {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: 0;
    padding: 56px 40px;
  }

  .audience-copy p {
    width: 100%;
  }

  .audience-copy,
  .audience-groups {
    width: 100%;
    min-width: 0;
  }

  .audience-copy h2,
  .report-preview {
    width: 100%;
  }

  .report-preview {
    max-width: 361px;
    height: auto;
  }

  .preview-folder {
    width: 100%;
    max-width: 313px;
    height: auto;
  }

  .case-grid,
  .step-grid,
  .expert-layout,
  .achievements {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-grid {
    height: auto;
  }

  .step-card {
    width: min(320px, 100%);
  }

  .expert-layout {
    gap: 36px;
  }

  .expert-copy,
  .expert-portrait {
    min-width: 0;
  }

  .expert-copy,
  .expert-copy h2,
  .expert-copy h3 {
    width: 100%;
  }

  .expert-portrait {
    justify-self: center;
    width: 453px;
    max-width: 100%;
    height: 453px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 675px;
  }

  .hero-content {
    margin-top: 72px;
  }

  .hero h1 {
    width: min(320px, 100%);
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    max-width: 100%;
    padding-inline: 12px;
    font-size: 13px;
  }

  .coin {
    flex: 0 0 auto;
  }

  .hero-content p {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .workflow-actions,
  .contacts {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .workflow-actions .button-primary,
  .workflow-actions .button-secondary {
    width: 100%;
  }

  .stats {
    margin-top: -58px;
  }

  .stats-card article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 24px;
  }

  .stats-card strong {
    font-size: 42px;
  }

  .section {
    padding: 80px 0;
  }

  .problems {
    padding-top: 90px;
  }

  .section h2,
  .audience h2,
  .expert h2 {
    margin-bottom: 36px;
  }

  .problem-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .problem-item h3 {
    font-size: 20px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .audience {
    padding-inline: 12px;
  }

  .audience-panel {
    border-radius: 28px;
    padding: 44px 24px;
  }

  .report-preview {
    width: 100%;
  }

  .cases {
    padding-top: 80px;
  }

  .cases h2 {
    margin-bottom: 42px;
  }

  .case-visual {
    height: 190px;
  }

  .workflow-head {
    margin-bottom: 52px;
  }

  .step-grid {
    gap: 38px;
  }

  .step-card h3 {
    min-height: 0;
  }

  .expert {
    padding-top: 60px;
  }

  .expert-portrait {
    height: 360px;
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -72px;
  }

  .achievement-band {
    padding-top: 48px;
  }

  .cta-form {
    padding: 42px 22px;
    border-radius: 16px;
  }
}
