/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
button, input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
  border: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

nav {
  list-style: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "cv-regular";
  src: url("/static/fonts/caviardreams-webfont.woff2") format("woff2"), url("/static/fonts/caviardreams-webfont.woff") format("woff");
}
@font-face {
  font-family: "cv-bold";
  src: url("/static/fonts/caviar_dreams_bold-webfont.woff2") format("woff2"), url("/static/fonts/caviar_dreams_bold-webfont.woff") format("woff");
}
@font-face {
  font-family: "open-sans";
  src: url("/static/fonts/OpenSans-Regular-webfont.woff") format("woff");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f1419;
  background: #faf7f3;
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.section {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section__head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section__title {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #0f1419;
}
.section__lead {
  font-size: 1.125rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.65;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f6763f;
  margin: 0 0 12px;
}

.logo {
  width: 160px;
  height: auto;
  cursor: pointer;
  flex-shrink: 0;
}
.logo .d {
  fill: #f9d0ad;
}
.logo .e {
  fill: #f6763f;
}
.logo.home:hover .e {
  fill: rgb(244.6298507463, 97.1432835821, 33.7701492537);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  height: 80px;
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 20, 25, 0.06);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.site-nav__link {
  background: none;
  border: none;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.15s, background 0.15s;
}
.site-nav__link:hover {
  color: #0f1419;
  background: rgba(15, 20, 25, 0.04);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: #0f1419;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger--open span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.burger--open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 20, 25, 0.08);
  gap: 4px;
}
.mobile-nav__link {
  background: none;
  border: none;
  text-align: left;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #0f1419;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  display: block;
}
.mobile-nav__link:hover {
  background: #f1f5f9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button--primary {
  background: #f6763f;
  color: #fff;
  border-color: #f6763f;
}
.button--primary:hover:not(:disabled) {
  background: rgb(244.6298507463, 97.1432835821, 33.7701492537);
  border-color: rgb(244.6298507463, 97.1432835821, 33.7701492537);
  box-shadow: 0 8px 30px rgba(15, 20, 25, 0.08);
  transform: translateY(-1px);
}
.button--ghost {
  background: transparent;
  color: #0f1419;
  border-color: rgba(15, 20, 25, 0.15);
}
.button--ghost:hover {
  border-color: #0f1419;
  background: rgba(15, 20, 25, 0.03);
}
.button--header {
  padding: 10px 20px;
  font-size: 0.875rem;
}
.button--large {
  padding: 16px 32px;
  font-size: 1rem;
}
.button--product {
  margin-top: auto;
  align-self: flex-start;
  background: transparent;
  color: inherit;
  border-color: currentColor;
  padding: 10px 20px;
}
.button--product:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.button--form {
  margin-top: 8px;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  position: relative;
}
.hero__title {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: #0f1419;
}
.hero__subtitle {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0 0 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 20, 25, 0.08);
  box-shadow: 0 8px 30px rgba(15, 20, 25, 0.08);
}
.hero-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 20, 25, 0.08);
}
.hero-panel__kicker {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(246, 118, 63, 0.12);
  color: #f6763f;
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-panel__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #718096;
}
.hero-panel__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-panel__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 20, 25, 0.06);
}
.hero-panel__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 20, 25, 0.08);
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f6763f;
}
.hero-panel__step-title {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f1419;
  line-height: 1.35;
}
.hero-panel__step-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #4a5568;
}
.hero-panel__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 20, 25, 0.08);
}
.hero-panel__facts span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 20, 25, 0.04);
  font-size: 0.75rem;
  color: #4a5568;
}
.hero-panel__facts span strong {
  color: #0f1419;
  font-weight: 700;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.06);
  border: 1px solid rgba(15, 20, 25, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  box-shadow: 0 24px 60px rgba(15, 20, 25, 0.12);
  transform: translateY(-4px);
}
.product-card--marginlayer {
  border-top: 4px solid #1a4d7c;
}
.product-card--marginlayer .product-card__badge {
  background: #e8f1f8;
  color: #1a4d7c;
}
.product-card--marginlayer .button--product {
  color: #1a4d7c;
}
.product-card--devopsfort {
  border-top: 4px solid #0d6b52;
}
.product-card--devopsfort .product-card__badge {
  background: #e6f5f0;
  color: #0d6b52;
}
.product-card--devopsfort .button--product {
  color: #0d6b52;
}
.product-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.product-card__tagline {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #0f1419;
}
.product-card__description {
  color: #4a5568;
  margin: 0 0 20px;
  line-height: 1.65;
}
.product-card__features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.product-card__features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: #0f1419;
}
.product-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f6763f;
}
.product-card__audience {
  font-size: 0.875rem;
  color: #718096;
  margin: 0 0 24px;
}
.product-card__audience strong {
  color: #4a5568;
}

.pilots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pilot-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 20, 25, 0.08);
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.06);
}
.pilot-card--marginlayer {
  border-left: 4px solid #1a4d7c;
}
.pilot-card--marginlayer .pilot-card__product {
  color: #1a4d7c;
  background: #e8f1f8;
}
.pilot-card--devopsfort {
  border-left: 4px solid #0d6b52;
}
.pilot-card--devopsfort .pilot-card__product {
  color: #0d6b52;
  background: #e6f5f0;
}
.pilot-card__product {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
}
.pilot-card__title {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  margin: 0;
  color: #0f1419;
  line-height: 1.35;
}
.pilot-card__text {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a5568;
}
.pilot-card__cta {
  align-self: flex-start;
  margin-top: 8px;
}

.about {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.06);
  border: 1px solid rgba(15, 20, 25, 0.06);
}
.about__text p {
  color: #4a5568;
  margin: 0 0 16px;
  line-height: 1.7;
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #faf7f3;
  border-radius: 16px;
}
.fact-card__value {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f6763f;
  min-width: 48px;
}
.fact-card__label {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.4;
}

.cta {
  max-width: none;
  padding-bottom: 120px;
}
.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg, #1a4d7c 0%, rgb(18.928, 56.056, 90.272) 50%, #0d6b52 100%);
  border-radius: 32px;
  color: #fff;
}
.cta__title {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin: 0 0 16px;
}
.cta__text {
  font-size: 1.0625rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.cta .button--primary {
  background: #fff;
  color: #1a4d7c;
  border-color: #fff;
}
.cta .button--primary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.92);
  color: rgb(17.16, 50.82, 81.84);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 32px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(15, 20, 25, 0.08);
}
.site-footer__legal {
  margin: 16px 0 0;
  font-size: 0.8125rem;
  color: #718096;
  line-height: 1.6;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.site-footer__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a5568;
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer__links a:hover {
  color: #f6763f;
}

.shield {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 20, 25, 0.45);
  backdrop-filter: blur(4px);
}

.form--modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(15, 20, 25, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #4a5568;
  cursor: pointer;
}
.form__close:hover {
  background: rgb(226.72, 234.8, 242.88);
  color: #0f1419;
}
.form__heading {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  margin: 0 0 4px;
}
.form__lead {
  font-size: 0.9375rem;
  color: #4a5568;
  margin: 0 0 20px;
}
.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f1419;
  margin-top: 12px;
}
.form__input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(15, 20, 25, 0.12);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form__input:focus {
  outline: none;
  border-color: #f6763f;
  box-shadow: 0 0 0 3px rgba(246, 118, 63, 0.15);
}
.form__input--error {
  border-color: #c53030;
}
.form__input--text-area {
  min-height: 120px;
  resize: vertical;
}
.form__input--in-text {
  border: none;
  padding-left: 0;
  background: transparent;
}
.form__input--in-text:focus {
  box-shadow: none;
}
.form__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(15, 20, 25, 0.12);
  border-radius: 8px;
  background: #ffffff;
}
.form__phone::before {
  content: "+7";
  color: #4a5568;
  font-size: 1rem;
}
.form__phone:focus-within {
  border-color: #f6763f;
  box-shadow: 0 0 0 3px rgba(246, 118, 63, 0.15);
}
.form__phone .form__input {
  border: none;
  padding-left: 0;
}
.form__phone .form__input:focus {
  box-shadow: none;
}
.form__error {
  font-size: 0.8125rem;
  color: #c53030;
  margin: 4px 0 0;
}
.form__error--summary {
  margin-top: 8px;
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 4px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #4a5568;
  cursor: pointer;
}
.form__consent input {
  margin-top: 3px;
  flex-shrink: 0;
}
.form__consent a {
  color: #f6763f;
  text-decoration: underline;
}
.form__consent a:hover {
  color: rgb(244.1731343284, 90.1910447761, 24.0268656716);
}
.form__alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.form__alert strong {
  display: block;
  margin-bottom: 6px;
}
.form__alert p {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.form__alert a {
  color: #f6763f;
}
.form__alert--success {
  background: #e6f5f0;
  border: 1px solid rgba(13, 107, 82, 0.25);
  color: #0f1419;
}
.form__alert--error {
  background: #fff5f5;
  border: 1px solid rgba(197, 48, 48, 0.25);
  color: #0f1419;
}

.notification--modal {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 20, 25, 0.12);
}
.notification--modal-content {
  font-size: 1.125rem;
  margin: 0 0 24px;
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: 0 auto;
  max-width: min(720px, calc(100vw - 40px));
}
.cookie-banner__card {
  background: #ffffff;
  border: 1px solid rgba(15, 20, 25, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 20, 25, 0.12);
  padding: 24px;
}
.cookie-banner__title {
  font-family: "cv-bold", "Segoe UI", sans-serif;
  font-size: 1.125rem;
  margin: 0 0 12px;
  color: #0f1419;
}
.cookie-banner__text {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4a5568;
}
.cookie-banner__text a {
  color: #f6763f;
  text-decoration: underline;
}
.cookie-banner__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: #0f1419;
  cursor: pointer;
}
.cookie-banner__checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__actions .button {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 24px 64px;
  }
  .hero__visual {
    height: auto;
    order: -1;
  }
  .products__grid {
    grid-template-columns: 1fr;
  }
  .pilots-grid {
    grid-template-columns: 1fr;
  }
  .about__inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }
  .site-nav,
  .button--header {
    display: none;
  }
  .burger {
    display: flex;
    margin-left: auto;
  }
  .mobile-nav {
    display: flex;
  }
  .logo {
    width: 130px;
  }
  .section {
    padding: 64px 20px;
  }
  .hero {
    padding: 32px 20px 48px;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__subtitle {
    font-size: 1.0625rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .button {
    width: 100%;
  }
  .product-card {
    padding: 28px 24px;
  }
  .pilots-grid {
    grid-template-columns: 1fr;
  }
  .pilot-card {
    padding: 28px 24px;
  }
  .cta__inner {
    padding: 48px 24px;
  }
  .site-footer {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
  }
  .form--modal {
    padding: 28px 24px;
  }
}
@media (max-width: 480px) {
  .hero__visual {
    min-height: auto;
  }
  .hero-panel__step {
    padding: 12px 14px;
  }
  .fact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}