:root {
  --green: #00856d;
  --green-2: #007a63;
  --green-dark: #005442;
  --green-deep: #00483d;
  --yellow: #f4dc3b;
  --text: #1d2724;
  --muted: #66716d;
  --line: #00856d;
  --shadow: 0 22px 42px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 712px;
  overflow: hidden;
  color: #fff;
  background: #00836c url("assets/shiplace/green-section-bg.png") center / cover no-repeat;
}

.hero-bg,
.buy::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04), transparent 22rem);
  opacity: 0.7;
}

.topbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px 1fr auto auto;
  align-items: center;
  gap: 54px;
  padding-top: 34px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  display: block;
  height: 52px;
  width: auto;
}

.menu {
  justify-self: end;
  display: flex;
  gap: 58px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.phone {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.nav-pill {
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 14px 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 76px;
  align-items: center;
  min-height: 610px;
}

.hero-inner > *,
.benefits > *,
.reasons > *,
.advisor-inner > * {
  min-width: 0;
}

.hero-copy {
  padding-top: 48px;
}

.hero h1 {
  margin: 0 0 32px;
  font-size: 47px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.hero p {
  width: 650px;
  max-width: 100%;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 46px;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.btn-yellow {
  background: var(--yellow);
  color: #1d2a25;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-dark {
  background: #003a31;
  color: #fff;
}

.hero-product {
  position: relative;
  height: 480px;
}

.hero-composition {
  position: absolute;
  top: -41px;
  left: -62px;
  width: 430px;
  height: auto;
  filter: drop-shadow(0 28px 28px rgba(0, 55, 44, 0.2));
}

.section-white {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.section-white::before {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -56px;
  height: 220px;
  content: "";
  border-radius: 0 0 50% 50%;
  background: #f6f6f6;
  clip-path: ellipse(58% 34% at 50% 100%);
  opacity: 0.9;
}

.intro {
  padding: 72px 0 104px;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.section-head span,
.buy-head span {
  display: block;
  width: 70px;
  height: 4px;
  background: var(--line);
}

.intro-text {
  width: 760px;
  max-width: 100%;
  margin: 34px 0 42px;
  color: #333;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.condition-card {
  position: relative;
  overflow: hidden;
  height: 294px;
  border-radius: 7px;
  background: var(--green);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.condition-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) sepia(10%) hue-rotate(105deg) saturate(90%);
}

.condition-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 132, 109, 0.12), rgba(0, 124, 101, 0.86));
}

.condition-card b {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 26px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.consult-strip {
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-top: -20px;
  min-height: 186px;
  background: transparent;
}

.consult-art {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.consult-bush {
  position: absolute;
  z-index: 2;
  top: 5px;
  width: 142px;
  height: auto;
  max-width: none;
}

.consult-bush-left {
  left: -4px;
}

.consult-bush-right {
  right: -4px;
  transform: scaleX(-1);
}

.consult-cloud {
  position: absolute;
  z-index: 3;
  max-width: none;
  height: auto;
  opacity: 0.84;
}

.consult-cloud-left {
  left: -70px;
  bottom: -42px;
  width: 430px;
}

.consult-cloud-center {
  left: 23%;
  bottom: -86px;
  width: 620px;
}

.consult-cloud-right {
  right: -90px;
  bottom: -96px;
  width: 650px;
}

.strip-form {
  position: absolute;
  left: clamp(54px, 7.65vw, 110px);
  right: clamp(54px, 7.65vw, 110px);
  top: 31px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 1.18fr) auto;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  min-height: 52px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0 clamp(28px, 3.2vw, 46px);
}

.strip-title {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.strip-title strong {
  color: var(--yellow);
}

.strip-phone {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  border-radius: 999px;
  background: #fff;
}

.strip-phone img {
  position: absolute;
  left: 21px;
  z-index: 1;
  width: 24px;
  height: 17px;
  object-fit: cover;
}

.strip-phone input {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px 0 57px;
  color: #777;
  outline: 0;
}

.strip-phone:focus-within {
  box-shadow: 0 0 0 3px rgba(244, 220, 59, 0.48);
}

.strip-phone input::placeholder {
  color: #8b8b8b;
  opacity: 1;
}

.strip-form button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.strip-form button:hover {
  color: #fff;
  transform: translateX(2px);
}

.strip-form button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.strip-form button span {
  font-size: 27px;
  line-height: 0.6;
  font-weight: 400;
}

.benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 66px;
  align-items: center;
  padding: 62px 0 84px;
}

.benefit-product {
  justify-self: center;
  width: 336px;
}

.benefit-list {
  display: grid;
  gap: 38px;
}

.benefit-list p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.benefit-list.left p {
  justify-content: flex-end;
  text-align: right;
}

.benefit-list span {
  flex: 0 0 auto;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #e5f8e7;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 34px 0 128px;
}

.stats article {
  min-height: 160px;
  border-radius: 8px;
  background: #fff;
  padding: 22px 26px;
  box-shadow: var(--shadow);
}

.stats strong {
  display: inline-block;
  color: var(--green);
  font-size: 48px;
  line-height: 0.95;
  font-weight: 900;
}

.stats span {
  display: inline-block;
  width: 62px;
  height: 4px;
  margin: 0 0 12px 14px;
  background: var(--green);
}

.stats p {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.reasons {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: center;
  padding: 24px 0 148px;
}

.reasons .section-head h2 {
  max-width: 760px;
}

.reasons em {
  color: #f21321;
  font-style: normal;
  white-space: nowrap;
}

.reasons ul {
  display: grid;
  gap: 25px;
  margin: 46px 0 24px;
  padding: 0;
  list-style: none;
}

.reasons li {
  position: relative;
  padding-left: 32px;
  color: #39413e;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.reasons li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "+";
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}

.show-more {
  display: inline-block;
  margin-bottom: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
}

.show-more span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.extra-reason {
  display: none;
}

.reasons-copy.is-expanded .extra-reason {
  display: block;
}

.reasons-copy.is-expanded .show-more span {
  transform: rotate(180deg);
}

.reason-product {
  align-self: end;
  width: 420px;
  max-width: 100%;
}

.buy {
  position: relative;
  overflow: hidden;
  padding: 82px 0 86px;
  color: #fff;
  background: #00836c url("assets/shiplace/green-section-bg.png") center / cover no-repeat;
}

.buy .container {
  position: relative;
  z-index: 1;
}

.buy-head {
  display: grid;
  grid-template-columns: auto 70px;
  justify-content: start;
  align-items: center;
  column-gap: 28px;
}

.buy-head h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 900;
}

.buy-head span {
  background: var(--yellow);
}

.buy-head p {
  grid-column: 1 / -1;
  margin: 18px 0 72px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 68px;
  margin-bottom: 72px;
}

.steps-line::before {
  position: absolute;
  left: 8px;
  right: -300px;
  top: 30px;
  height: 2px;
  content: "";
  background: var(--yellow);
}

.steps-line article {
  position: relative;
  padding-top: 52px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
}

.steps-line article::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 22px;
  height: 22px;
  content: "";
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--green);
}

.steps-line b {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 12px;
}

.steps-line strong {
  color: var(--yellow);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 28px;
}

.price-card,
.messenger-card {
  min-height: 212px;
  border-radius: 8px;
  background: #004d42;
  padding: 28px;
}

.price-card h3,
.messenger-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.price-card h3::after,
.messenger-card h3::after {
  display: inline-block;
  width: 34px;
  height: 3px;
  margin-left: 18px;
  content: "";
  vertical-align: middle;
  background: var(--yellow);
}

.price-card strong {
  color: var(--yellow);
  font-size: 28px;
  font-weight: 900;
}

.price-card span {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
  min-height: 50px;
  margin: 20px 0 10px;
  padding: 0 18px;
}

.price-card small,
.buy-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.messenger-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.messenger-card h3,
.messenger-card .icons {
  position: relative;
  z-index: 3;
}

.messenger-card .icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.messenger-card .icons a {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 180ms ease, filter 180ms ease;
}

.messenger-card .icons a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.messenger-card .icons a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.messenger-card .icons img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.messenger-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.messenger-cloud {
  position: absolute;
  max-width: none;
  height: auto;
  opacity: 0.86;
}

.messenger-cloud-large {
  right: -22px;
  bottom: -34px;
  width: 210px;
}

.messenger-cloud-small {
  left: 92px;
  bottom: -2px;
  width: 110px;
}

.messenger-phone {
  position: absolute;
  right: -8px;
  bottom: -18px;
  z-index: 4;
  width: 138px;
  max-width: none;
}

.buy-note {
  margin: 36px 0 0;
}

.advisor {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1920 / 936;
  padding: 0;
  background: #fff;
}

.advisor-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.advisor-map,
.advisor-wave {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: none;
  pointer-events: none;
}

.advisor-map {
  bottom: -10%;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.advisor-wave {
  height: auto;
  object-fit: cover;
}

.advisor-wave-top {
  bottom: -1%;
  z-index: 1;
  opacity: 0.72;
}

.advisor-wave-bottom {
  bottom: -7%;
  z-index: 2;
  opacity: 0.9;
}

.advisor-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  max-width: none;
}

.quote {
  position: absolute;
  left: 17.1%;
  top: 15.5%;
  z-index: 3;
  width: clamp(44px, 4.3vw, 82px);
  height: auto;
  max-width: none;
}

.advisor-copy {
  position: absolute;
  left: 22.34%;
  top: 15.25%;
  z-index: 3;
  width: 38%;
  padding: 0;
}

.advisor .section-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 1.5vw, 28px);
}

.advisor .section-head span {
  position: static;
  visibility: visible;
  width: clamp(54px, 4.1vw, 79px);
  height: 4px;
  flex: 0 0 clamp(54px, 4.1vw, 79px);
  margin-bottom: 9px;
}

.advisor .section-head h2 {
  width: auto;
  flex: 0 1 auto;
  max-width: 100%;
  font-size: clamp(24px, 1.66vw, 32px);
  line-height: 1.18;
}

.advisor-copy p {
  margin: 12px 0 0;
  color: #343c39;
  font-size: clamp(9px, 0.625vw, 12px);
  line-height: 1.45;
  font-weight: 600;
}

.advisor-copy .section-head + p {
  margin-top: clamp(24px, 1.8vw, 35px);
}

.advisor-copy strong {
  font-weight: 900;
}

.advisor-messengers {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.25vw, 24px);
  margin-top: 12px;
  font-size: clamp(9px, 0.625vw, 12px);
  font-weight: 700;
}

.advisor-messengers a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.advisor-messengers img {
  width: clamp(17px, 1.2vw, 23px);
  height: auto;
  flex: 0 0 auto;
}

.advisor-copy small {
  display: block;
  margin-top: clamp(18px, 1.45vw, 28px);
  color: #b5b5b5;
  font-size: clamp(7px, 0.52vw, 10px);
}

.advisor-photo {
  position: absolute;
  left: 62.14%;
  top: 7%;
  z-index: 1;
  visibility: visible;
  width: 20%;
  height: auto;
  max-width: none;
}

/* Legacy pseudo layers are intentionally disabled: footer art is HTML above. */
.advisor::after,
.advisor::before {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: 148px 24px 60px;
  background: rgba(22, 31, 29, 0.58);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 458px);
  border-radius: 13px;
  background: #fff;
  padding: 34px 32px 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.modal-title {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.modal-title h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.modal-title span {
  width: 72px;
  height: 4px;
  margin-bottom: 8px;
  background: var(--green);
}

.modal-card > p {
  margin: 22px 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.modal-card label {
  display: block;
}

.modal-card label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.modal-card input {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 999px;
  outline: none;
  background: #f1f1f1;
  padding: 0 20px;
  margin-bottom: 12px;
  font-size: 12px;
}

.modal-card input:focus {
  box-shadow: 0 0 0 2px var(--green);
}

.modal-card .btn {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
}

.modal-card small {
  display: block;
  max-width: 310px;
  margin: 20px auto 0;
  color: #888;
  text-align: center;
  font-size: 9px;
  line-height: 1.5;
}

.modal-close {
  position: fixed;
  top: 114px;
  left: calc(50% + 248px);
  z-index: 101;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .menu,
  .phone {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 30;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 33, 0.72);
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: min(100%, 320px);
    height: 100%;
    padding: 110px 28px 32px;
    background: var(--green-deep);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }

  .mobile-menu__panel a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-menu__phone {
    margin-top: 12px;
    border-bottom: 0;
    font-size: 18px;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
  }

  .advisor {
    aspect-ratio: auto;
    min-height: 480px;
  }

  .hero-inner,
  .benefits,
  .reasons,
  .advisor-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 20px;
    padding: 42px 0 56px;
  }

  .hero-product {
    order: -1;
    height: 390px;
  }

  .hero-composition {
    left: 50%;
    right: auto;
    width: 330px;
    transform: translateX(-50%);
  }

  .hero h1 {
    font-size: 36px;
  }

  .cards-grid,
  .stats,
  .steps-line,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-form {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    grid-template-columns: 1fr;
    border-radius: 24px;
    gap: 14px;
    padding: 18px 22px;
  }

  .consult-strip {
    min-height: auto;
    padding: 26px 0 30px;
  }

  .consult-art {
    display: none;
  }

  .strip-title {
    white-space: normal;
    text-align: center;
  }

  .strip-form button {
    justify-content: center;
  }

  .benefit-list.left p {
    justify-content: flex-start;
    text-align: left;
  }

  .benefit-list.left span {
    order: -1;
  }

  .reason-product,
  .advisor-photo {
    justify-self: center;
  }
}

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

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

  .hero-actions,
  .cards-grid,
  .stats,
  .steps-line,
  .price-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-copy,
  .hero-product,
  .hero p,
  .intro-text {
    width: 100%;
    max-width: 100%;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-product {
    height: 270px;
  }

  .hero-composition {
    width: 250px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-head h2,
  .buy-head h2 {
    font-size: 25px;
  }

  .condition-card {
    height: 210px;
  }

  .steps-line::before {
    display: none;
  }

  .advisor-inner {
    position: relative;
    inset: auto;
    width: min(100% - 28px, 1280px);
    margin: 0 auto;
    padding: 48px 0;
  }

  .advisor {
    min-height: 0;
    aspect-ratio: auto;
    padding: 0;
    background: #fff;
  }

  .advisor::after,
  .advisor::before,
  .advisor-photo,
  .advisor .quote {
    display: none;
  }

  .advisor-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .advisor .section-head {
    display: block;
  }

  .advisor .section-head h2 {
    width: 100%;
    font-size: 24px;
  }

  .advisor .section-head span {
    display: none;
  }

  .advisor-copy p,
  .advisor-messengers {
    font-size: 10px;
  }

  .modal {
    padding-top: 72px;
  }

  .modal-close {
    top: 34px;
    right: 18px;
    left: auto;
  }

  .modal-card {
    padding: 28px 20px 24px;
  }
}
