/* Лейка — brand: #004445 primary, #2e7d78 accent */

:root {
  --color-primary: #004445;
  --color-primary-dark: #002b2c;
  --color-accent: #2e7d78;
  --color-accent-light: #3d9a94;
  --color-bg: #f4f8f7;
  --color-bg-alt: #e8f0ef;
  --color-surface: #ffffff;
  --color-text: #0f1f1e;
  --color-text-muted: #4a6361;
  --color-border: rgba(0, 68, 69, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 68, 69, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 68, 69, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 68, 69, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --container: min(1120px, 100% - 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-light);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.text-accent {
  color: var(--color-accent-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-border);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(46, 125, 120, 0.06);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(244, 248, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.header__brand:hover {
  color: var(--color-primary);
}

.header__logo {
  border-radius: 12px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header__nav a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.header__nav a:not(.btn):hover {
  color: var(--color-primary);
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(46, 125, 120, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 68, 69, 0.08), transparent),
    linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.brand-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.brand-card__logo {
  --brand-logo-size: min(160px, 40vw);
  display: block;
  flex-shrink: 0;
  width: var(--brand-logo-size);
  height: var(--brand-logo-size);
  max-width: var(--brand-logo-size);
  max-height: var(--brand-logo-size);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 68, 69, 0.15));
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
}

.section__lead {
  margin: 0;
  color: var(--color-text-muted);
}

.section__head code {
  padding: 0.15em 0.4em;
  font-size: 0.875em;
  background: var(--color-surface);
  border-radius: 6px;
}

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card--featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.product-card--soon {
  opacity: 0.92;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent);
  border-radius: 999px;
}

.product-card__badge--muted {
  background: var(--color-text-muted);
}

.product-card__zones {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  border-radius: 14px;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.product-card__price {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
}

.product-card > p:not(.product-card__price) {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.product-card__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.product-card__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.product-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.product-card .btn {
  margin-top: auto;
}

.product-card__note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
}

.kit-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.kit-highlights li {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.products-common-spec {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Device showcase */
.device-showcase {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 42%);
  gap: 2rem;
  align-items: stretch;
}

.device-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.device-showcase__content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
}

.device-showcase__content > p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  max-width: 28rem;
}

.device-showcase__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.device-showcase__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.device-showcase__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.device-showcase__figure {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
}

.device-showcase__figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Capabilities */
.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 2rem 2.25rem;
  list-style: none;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.capabilities li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.capabilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-card__icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Rain banner */
.rain-banner {
  padding: 0;
}

.rain-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #003638 100%);
  border-radius: var(--radius-lg);
  color: #fff;
}

.rain-banner .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.rain-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
}

.rain-banner p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.rain-icon {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem;
}

.rain-icon__drop {
  width: 12px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: rain-fall 1.2s ease-in infinite;
}

.rain-icon__drop:nth-child(2) {
  animation-delay: 0.2s;
  height: 36px;
}

.rain-icon__drop:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes rain-fall {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

/* Screenshots — крупные карточки в сетке */
.screenshots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.screenshot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.screenshot-card__media {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, var(--color-bg-alt), #d4e8e6);
  box-shadow: var(--shadow-sm);
}

.screenshot-card__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.screenshot-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.3125rem;
  color: var(--color-primary);
}

.screenshot-card > p {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Order */
.order-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.order-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.order-panel__text p:last-child {
  margin: 0;
  color: var(--color-text-muted);
}

.order-panel__contacts-note {
  margin-top: 1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-links__mail-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-width: min(100%, 28rem);
  padding: 0.6rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(46, 125, 120, 0.28);
  background: linear-gradient(180deg, rgba(46, 125, 120, 0.1), rgba(46, 125, 120, 0.05));
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.contact-links__mail-content {
  display: grid;
  gap: 0.05rem;
}

.contact-links__mail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-links__mail-email {
  display: inline-block;
  user-select: all;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-links__mail-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-links__mail-link,
.contact-links__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 68, 69, 0.16);
  background: var(--color-surface);
  color: var(--color-primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.contact-links__mail-link:hover,
.contact-links__copy-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-accent);
  background: rgba(46, 125, 120, 0.08);
  transform: translateY(-1px);
}

.contact-links__copy-btn.is-copied {
  border-color: rgba(46, 125, 120, 0.55);
  background: rgba(46, 125, 120, 0.18);
}

@media (max-width: 560px) {
  .contact-links__mail-card {
    grid-template-columns: auto 1fr;
    row-gap: 0.45rem;
  }

  .contact-links__mail-actions {
    grid-column: 1 / -1;
  }
}

.contact-links__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.contact-links__item:hover {
  color: var(--color-primary);
  border-color: var(--color-accent);
  background: rgba(46, 125, 120, 0.1);
  transform: translateY(-1px);
}

.contact-links__icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.order-form__checkboxes {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg);
  display: grid;
  gap: 0.45rem;
}

.order-form__checkboxes legend {
  padding: 0 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.order-form__unit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.order-form__unit-cell {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.order-form label.order-form__check {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: fit-content;
}

.order-form__check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.order-form__address-group {
  position: relative;
}

.order-form label span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(46, 125, 120, 0.2);
}

.order-form__field-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.order-form__field-hint--hidden {
  display: none;
}

.order-form__field-hint--warn {
  color: #8a5a00;
}

.order-form__suggest-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1.1rem);
  z-index: 30;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.order-form__suggest-item {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--color-text);
  cursor: pointer;
}

.order-form__suggest-item:hover,
.order-form__suggest-item:focus-visible {
  background: rgba(46, 125, 120, 0.1);
  outline: none;
}

.order-form__hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.footer__copy {
  margin: 0;
  font-size: 0.875rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .kit-highlights {
    justify-content: center;
  }

  .products-common-spec {
    text-align: center;
  }

  .device-showcase {
    grid-template-columns: 1fr;
  }

  .device-showcase__content {
    text-align: center;
  }

  .device-showcase__content > p {
    margin-inline: auto;
  }

  .device-showcase__list {
    max-width: 24rem;
    margin-inline: auto;
    text-align: left;
  }

  .device-showcase__figure {
    max-width: 20rem;
    margin-inline: auto;
    aspect-ratio: 3 / 4;
  }

  .capabilities {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
  }

  .screenshots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .screenshots-carousel__arrow--next {
    right: 0;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .rain-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rain-icon {
    justify-content: center;
  }

  .order-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav a {
    width: 100%;
    padding: 0.85rem 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }

  .screenshots {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .order-form__unit-row {
    grid-template-columns: 1fr;
  }
}
