:root {
  --bg: #0f1112;
  --bg-elev: #2a2d30;
  --text: #e6e7e8;
  --muted: #a7a9ab;
  --line: #3a3d40;
  --light: #f4f5f6;
  --light-line: #d7d9db;
  --text-dark: #0f1112;
  --text-dark-muted: #5a5e62;
  --accent: #ff6a00;
  --accent-dark: #e45f00;
  --bg-hero: #0f1112;
  --panel-dark: #151617;
  --text-primary: #ffffff;
  --text-accent: #3c8bf6;
  --text-muted: #a7a9ab;
  --section-light: #f4f5f6;
  --btn-bg: #3c8bf6;
  --btn-bg-hover: #3577da;
  --btn-text: #ffffff;
  --badge-bg: rgba(255, 255, 255, 0.04);
  --badge-text: #e8eaeb;
  --card-surface-bg: rgba(38, 40, 55, 0.64);
  --card-surface-border: rgba(72, 95, 132, 0.5);
  --container: 1180px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 100% 0%, #1d2124 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  margin: 0 0 16px;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.7rem);
}

h2 {
  font-size: clamp(1.6rem, 4.8vw, 2.5rem);
}

p {
  margin: 0 0 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 17, 18, 0.88);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 12px 0;
}

.logo {
  text-decoration: none;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  grid-column: 1 / -1;
  order: 3;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.header-nav a {
  white-space: nowrap;
  text-decoration: none;
  color: #c8cbce;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--text);
}

.header-nav a:focus-visible {
  color: var(--text);
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-lg {
  padding: 15px 20px;
  font-size: 1.02rem;
}

.hero {
  background: var(--bg-hero);
  color: var(--text-primary);
  position: relative;
  padding: 0;
}

.hero__inner {
  max-width: none;
  margin: 0;
  width: 100%;
  padding-left: clamp(16px, 8vw, 120px);
  padding-right: 0;
  height: 504px;
  min-height: 504px;
  display: flex;
  gap: 0;
  align-items: stretch;
  background: var(--bg-hero);
}

.hero__left {
  width: 52%;
  padding: 56px 0;
}

.hero__right {
  width: 48%;
  position: relative;
  overflow: hidden;
  height: 504px;
  min-height: 504px;
  background: linear-gradient(180deg, #0f1112, #2a2d30);
}

.hero__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 17, 18, 0.95) 0%,
    rgba(15, 17, 18, 0.72) 22%,
    rgba(15, 17, 18, 0.55) 45%,
    rgba(15, 17, 18, 0.55) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero__right picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__right img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 120%;
  margin-top: -10%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  display: block;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero__badge {
  font-size: 13px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--badge-bg);
  color: var(--badge-text);
}

.hero__title {
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 540px;
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-primary);
}

.hero__accent {
  color: var(--text-accent);
  font-weight: 700;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.45;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 38ch;
}

.hero__actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.12s ease, transform 0.08s ease;
}

.btn--primary:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.hero__link {
  color: var(--text-muted);
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.hero-fade {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-fade-in 220ms ease 120ms forwards;
}

@keyframes hero-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-cta {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-primary);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(60, 139, 246, 0.18);
  outline-offset: 2px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.section-benefits {
  background: linear-gradient(90deg, #121722, #141925);
}

.benefits-wrap {
  padding-top: 6px;
}

.benefits-title {
  margin-bottom: 28px;
  font-size: clamp(1.9rem, 3.3vw, 3.2rem);
  line-height: 1.08;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  border: 1px solid var(--card-surface-border);
  border-radius: 18px;
  background: var(--card-surface-bg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

.benefit-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1d2a3c;
  color: #4d98ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon .icon {
  font-size: 1.15rem;
}

.benefit-card p {
  margin: 0;
  color: #b8bfcb;
  line-height: 1.38;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  padding: 22px;
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-dark {
  background: linear-gradient(180deg, #181b1d, #0f1112);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

#why-offtrack.section {
  padding-top: 45px;
  padding-bottom: 45px;
}

.why-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.why-title-box {
  border: 0;
  padding: 0;
  line-height: 1.02;
  max-width: 560px;
}

.why-subtitle {
  color: #b9bcc0;
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 42ch;
}

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

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 600;
}

.why-list .icon {
  color: #3c8bf6;
  margin-top: 2px;
}

.why-advantage {
  margin-top: 10px;
  background: #041a37;
  border-left: 4px solid #3c8bf6;
  border-radius: 14px;
  padding: 20px 22px;
  max-width: 620px;
}

.why-advantage-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: #5da3ff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.why-advantage-text {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.12;
  font-weight: 800;
  color: #f0f3f8;
}

.why-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111317;
}

.why-media img {
  width: 100%;
  height: 100%;
  min-height: 532px;
  object-fit: cover;
  object-position: center;
}

.section-light {
  background: var(--light);
  color: var(--text-dark);
}

.section-light .card {
  background: #ffffff;
  border-color: var(--light-line);
}

.section-light .media-card {
  background: #ffffff;
  border-color: var(--light-line);
}

.section-light .sub,
.section-light .media-card figcaption {
  color: var(--text-dark-muted);
}

.checklist {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.checklist p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.strong-note {
  margin-bottom: 24px;
  font-size: 1.04rem;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.media-card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 10px;
  border-radius: 12px;
}

.media-card figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.9rem;
}

.media-text {
  display: grid;
  align-content: center;
  min-height: 160px;
}

.section-profit {
  background: #060708;
}

.profit-wrap {
  padding-top: 10px;
}

.profit-title {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.profit-intro {
  color: #b8bbbf;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.45;
  max-width: 34ch;
  margin-bottom: 36px;
}

.profit-math {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #082241;
  border: 1px solid #153760;
  border-radius: 14px;
  overflow: hidden;
}

.profit-col {
  padding: 48px 40px 44px;
  background: var(--card-surface-bg);
  border: 1px solid var(--card-surface-border);
  display: flex;
  flex-direction: column;
}

.profit-col + .profit-col {
  border-left: 0;
}

.profit-col-accent {
  background: #102a47;
}

.profit-label {
  margin: 0 0 20px;
  color: #b8c0cc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.profit-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.profit-label-row .profit-label {
  margin-bottom: 0;
}

.profit-roi {
  color: #e8edf6;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.profit-value {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: #e9edf4;
}

.profit-value-accent {
  color: #4d98ff;
}

.profit-note {
  margin: 22px 0 0;
  color: #b8c0cc;
  font-size: 1.02rem;
  line-height: 1.3;
}

.section-how {
  background: linear-gradient(90deg, #121722, #141925);
}

.how-title {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.how-subtitle {
  color: #b7bec9;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin-bottom: 44px;
  max-width: 50ch;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-card {
  position: relative;
  padding: 44px 24px 26px;
  border-radius: 18px;
  border: 1px solid var(--card-surface-border);
  background: var(--card-surface-bg);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.how-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 68px;
  left: calc(100% + 1px);
  width: 24px;
  height: 2px;
  background: rgba(88, 111, 148, 0.48);
}

.how-num {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4d98ff;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.7rem;
  display: grid;
  place-content: center;
}

.how-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #1d2a3c;
  color: #4d98ff;
  display: grid;
  place-content: center;
}

.how-icon .icon {
  font-size: 1.8rem;
}

.how-card h3 {
  margin-bottom: 10px;
  font-size: 2.05rem;
}

.how-card p {
  margin: 0;
  color: #b8bfcb;
  font-size: 1.03rem;
  line-height: 1.38;
}

.cta-final {
  border-top: 1px solid #1d2128;
  border-bottom: 1px solid #1d2128;
  background:
    radial-gradient(circle at 50% 58%, rgba(39, 89, 164, 0.26) 0%, rgba(9, 20, 37, 0.2) 30%, rgba(6, 8, 10, 0) 58%),
    #060708;
}

.cta-wrap {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding: 44px 0 58px;
}

.cta-final-title {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.03;
}

.cta-final-subtitle {
  margin: 0;
  color: #aeb5c0;
  font-size: clamp(1.05rem, 1.7vw, 2rem);
  max-width: 44ch;
}

.cta-final-btn {
  min-width: min(100%, 590px);
  min-height: 76px;
  margin-top: 14px;
  font-size: clamp(1.1rem, 1.7vw, 1.95rem);
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(93, 163, 255, 0.28), 0 20px 48px rgba(77, 152, 255, 0.34);
}

.cta-final-btn .icon {
  font-size: 1.35em;
}

.cta-final-note {
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b6becc;
  font-size: clamp(0.86rem, 1.25vw, 1.4rem);
  font-weight: 700;
}

.site-footer {
  background: linear-gradient(90deg, #141a25, #181f2b);
  border-top: 1px solid rgba(86, 107, 145, 0.28);
  padding: 26px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 28px 34px;
  align-items: start;
}

.footer-brand p {
  margin: 12px 0 0;
  color: #b4bcc8;
  font-size: 1.03rem;
  line-height: 1.35;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 800;
  color: #5da3ff;
}

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

.footer-col h3,
.footer-legal h3 {
  margin: 0;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-col a {
  color: #cdd3de;
  text-decoration: none;
  font-size: 1.05rem;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-legal {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 20px;
  border: 1px solid rgba(89, 113, 153, 0.38);
}

.footer-legal p {
  margin: 8px 0 0;
  color: #c8ced8;
  font-size: 1rem;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(107, 126, 159, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 24px;
}

.footer-bottom p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c5ccd8;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #c5ccd8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 16px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.icon {
  font-size: 1.1em;
  line-height: 1;
  flex-shrink: 0;
}

/* Local fallback icons (no external webfont dependency) */
.ti {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
}

.ti::before {
  line-height: 1;
}

.ti-brand-telegram {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: url("assets/brand-telegram.svg") center/contain no-repeat;
  mask: url("assets/brand-telegram.svg") center/contain no-repeat;
}
.ti-brand-telegram::before { content: ""; }
.ti-chevron-right::before { content: "\203A"; }
.ti-box::before { content: "\25A3"; }
.ti-clock-hour-4::before { content: "\23F1"; }
.ti-calendar::before { content: "\1F4C5"; }
.ti-chart-line::before { content: "\1F4C8"; }
.ti-shield-check::before { content: "\2714"; }
.ti-arrows-diagonal::before { content: "\2922"; }
.ti-building-factory::before { content: "\1F3ED"; }
.ti-archive::before { content: "\1F5C3"; }
.ti-currency-rubel::before { content: "\20BD"; }
.ti-package::before { content: "\1F4E6"; }
.ti-truck-delivery::before { content: "\1F69A"; }
.ti-headset::before { content: "\1F3A7"; }
.ti-building::before { content: "\1F3E2"; }
.ti-truck::before { content: "\1F69A"; }
.ti-message-circle::before { content: "\1F4AC"; }
.ti-file-description::before { content: "\1F4C4"; }
.ti-list-details::before { content: "\2630"; }
.ti-list-check::before { content: "\2611"; }
.ti-credit-card::before { content: "\1F4B3"; }
.ti-rocket::before { content: "\1F680"; }
.ti-world::before { content: "\1F30D"; }
.ti-refresh::before { content: "\21BB"; }
.ti-circle-check::before { content: "\25C9"; }

/* Scroll reveal */
.reveal-target {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(1.5px);
  transition:
    opacity 480ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 480ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-target {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (min-width: 760px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 14px 0;
  }

  .header-nav {
    grid-column: 2;
    order: 0;
    width: auto;
    overflow: visible;
    padding-bottom: 0;
  }

  .header-nav a {
    font-size: 1rem;
  }

  .header-inner > .btn {
    justify-self: end;
  }

  .sticky-cta {
    display: none;
  }

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

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

  .profit-wrap {
    width: min(var(--container), 92vw);
  }

  .how-steps {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
  }

  .cta-final-btn {
    width: min(100%, 590px);
  }

}

@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }

  .container {
    width: min(var(--container), 94vw);
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
  }

  .logo {
    font-size: 1.05rem;
  }

  .header-nav {
    display: none;
  }

  .sticky-cta {
    display: inline-flex;
    box-sizing: border-box;
    max-width: calc(100vw - 32px);
    width: auto;
    padding: 0 12px;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .hero__inner {
    padding: 0;
    min-height: 280px;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .hero__left {
    width: 100%;
    position: relative;
    z-index: 3;
    padding: 24px 16px 28px;
  }

  .hero__right {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    z-index: 1;
  }

  .hero__right img {
    object-position: center top;
  }

  .hero__right::before {
    background: linear-gradient(
      180deg,
      rgba(15, 17, 18, 0.78) 0%,
      rgba(15, 17, 18, 0.62) 45%,
      rgba(15, 17, 18, 0.6) 100%
    );
  }

  .hero__badges {
    margin-top: 8px;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .hero__badge {
    min-height: 32px;
    padding: 0 10px;
    white-space: nowrap;
  }

  .hero__title {
    font-size: 23px;
    line-height: 1.05;
    margin-top: 16px;
    max-width: 18ch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-top: 14px;
    max-width: 34ch;
  }

  .hero__actions {
    margin-top: 18px;
    display: block;
  }

  .hero__link {
    margin-left: 0;
    margin-top: 12px;
    font-size: 14px;
  }

  .btn--primary {
    width: 100%;
  }

  .benefits-title {
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 7.4vw, 2rem);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    min-height: 0;
    padding: 16px 14px;
  }

  .benefit-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .cta-wrap {
    padding: 24px 0 20px;
    gap: 12px;
  }

  .cta-final-title {
    font-size: clamp(1.75rem, 8.3vw, 2.4rem);
    max-width: 12ch;
  }

  .cta-final-subtitle {
    font-size: 1rem;
    max-width: 32ch;
  }

  .cta-final-btn {
    min-height: 58px;
    width: 100%;
    margin-top: 4px;
    font-size: 1.05rem;
    box-shadow: 0 0 0 1px rgba(93, 163, 255, 0.26), 0 14px 28px rgba(77, 152, 255, 0.24);
  }

  .cta-final-note {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
  }

  .how-subtitle {
    margin-bottom: 24px;
    font-size: 0.96rem;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-card {
    min-height: 0;
    text-align: left;
    padding: 22px 16px 16px 70px;
  }

  .how-card:not(:last-child)::after {
    display: none;
  }

  .how-num {
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .how-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 10px;
  }

  .how-icon .icon {
    font-size: 1.25rem;
  }

  .how-card h3 {
    font-size: 1.35rem;
  }

  .how-card p {
    font-size: 0.9rem;
  }

  .profit-intro {
    margin-bottom: 22px;
    max-width: none;
  }

  .profit-math {
    grid-template-columns: 1fr;
  }

  .profit-col {
    padding: 24px 18px;
  }

  .profit-col + .profit-col {
    border-left: 0;
    border-top: 1px solid rgba(95, 139, 190, 0.28);
  }

  .profit-value {
    font-size: 2.15rem;
  }

  .profit-note {
    font-size: 0.98rem;
    margin-top: 14px;
  }

  .site-footer {
    padding: 14px 0 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-col h3,
  .footer-legal h3 {
    font-size: 1.18rem;
  }

  .footer-bottom {
    margin-top: 12px;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-title-box {
    max-width: none;
  }

  .why-subtitle {
    font-size: 0.98rem;
  }

  .why-list li {
    font-size: 0.96rem;
  }

  .why-advantage-text {
    font-size: 1.7rem;
  }

  .why-media img {
    min-height: 294px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__inner {
    padding: 0 0 0 48px;
    height: 392px;
    min-height: 392px;
  }

  .hero__left,
  .hero__right {
    width: 50%;
  }

  .hero__left {
    padding: 36px 0;
  }

  .hero__right {
    height: 392px;
    min-height: 392px;
  }

  .hero__right img {
    object-position: center;
  }

  .hero__title {
    font-size: 44px;
    max-width: 11ch;
  }

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

  .benefit-card {
    min-height: 220px;
  }

  .profit-math {
    grid-template-columns: 1fr;
  }

  .profit-col {
    padding: 30px 28px;
  }

  .profit-col + .profit-col {
    border-left: 0;
    border-top: 1px solid rgba(95, 139, 190, 0.28);
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .how-card {
    min-height: 250px;
    text-align: center;
    padding: 34px 18px 20px;
  }

  .how-card:not(:last-child)::after {
    display: none;
  }

  .how-num {
    top: -14px;
    left: -14px;
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .how-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
  }

  .how-card h3 {
    font-size: 1.75rem;
  }

  .cta-wrap {
    padding: 32px 0 30px;
  }

  .cta-final-title {
    font-size: clamp(2rem, 5vw, 3.1rem);
    max-width: 14ch;
  }

  .cta-final-btn {
    min-height: 66px;
    width: min(100%, 520px);
  }

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

  .why-media img {
    min-height: 392px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }

  .footer-bottom {
    margin-top: 14px;
  }
}
