:root {
  --blue: #1d5fa8;
  --deep-blue: #1f5da0;
  --navy: #192447;
  --orange: #ff6a00;
  --orange-dark: #ff3d00;
  --cta-blue: #006dff;
  --cta-blue-dark: #0646c8;
  --green: #49963d;
  --ink: #111827;
  --dark-green: #142011;
  --panel: #1b2746;
  --footer: #222222;
  --white: #ffffff;
  --mobile-gutter: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

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

img,
video,
audio {
  -webkit-user-drag: none;
  user-select: none;
}

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

.nav,
.cta-button,
.button,
.eyebrow,
.hero h1,
.products h2,
.team h2,
.testimonials h2,
.lead-modal h2,
.lead-form legend,
.product-info h3,
.section-kicker,
.team-card h3,
.footer-alert h2 {
  font-family: "Montserrat", Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 85px;
  gap: 14px;
  padding: 8px 18px 8px 14px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.12);
}

.brand img {
  width: clamp(154px, 15vw, 210px);
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 6px;
  padding: 0 7px;
}

.nav a:hover,
.nav .active {
  color: #ffffff;
  background: var(--navy);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 14px 26px rgba(255, 105, 8, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(255, 105, 8, 0.32);
}

.cta-buy {
  background: linear-gradient(135deg, #ff8a00 0%, var(--orange) 45%, var(--orange-dark) 100%);
}

.cta-reseller {
  background: linear-gradient(135deg, #139cff 0%, var(--cta-blue) 48%, var(--cta-blue-dark) 100%);
  box-shadow: 0 14px 26px rgba(0, 109, 255, 0.24);
}

.cta-reseller:hover {
  box-shadow: 0 18px 34px rgba(0, 109, 255, 0.34);
}

.ghost-light {
  border: 1px solid rgba(25, 36, 71, 0.18);
}

.header-ctas .cta-button {
  min-height: 34px;
  padding: 0 13px;
  font-size: 0.7rem;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 515px;
  padding: 64px max(32px, calc((100vw - 1110px) / 2)) 55px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(17, 27, 16, 0.93), rgba(24, 35, 18, 0.8)),
    url("assets/people-group.webp") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(13, 25, 14, 0.38);
  pointer-events: none;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 3.85rem);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-actions .cta-button {
  min-height: 56px;
  border-radius: 14px;
  padding: 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 56px;
  border-radius: 14px;
  padding: 0 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.button.primary {
  background: var(--orange);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.hero-media img {
  width: min(100%, 505px);
  margin-left: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
}

.products {
  padding: 54px max(30px, calc((100vw - 920px) / 2)) 58px;
  background: #ffffff;
}

.section-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.product-ctas .cta-button {
  min-width: min(100%, 265px);
}

.dark-ctas {
  margin-top: 38px;
}

.products h2,
.team h2,
.testimonials h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 320px));
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
}

.product-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark-green);
  box-shadow: 0 16px 34px rgba(9, 23, 12, 0.14);
}

.product-card > img,
.product-video {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.product-card > img {
  object-fit: cover;
}

.product-video {
  position: relative;
  overflow: hidden;
  background: #071223;
}

.product-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  min-height: 118px;
  padding: 18px 18px 20px;
  color: #ffffff;
}

.product-info h3 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.product-info p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.55;
}

.team {
  padding: 62px max(38px, calc((100vw - 900px) / 2)) 58px;
  color: #ffffff;
  background: var(--deep-blue);
}

.section-kicker {
  margin: 0 0 14px;
  color: #00e28a;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 500;
}

.team .section-kicker {
  color: #ffffff;
}

.section-intro {
  max-width: 850px;
  margin: 10px auto 38px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.55;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  min-height: 431px;
  border-radius: 9px;
  padding: 17px 18px 22px;
  text-align: center;
  background: var(--panel);
}

.team-card img {
  width: 152px;
  height: 152px;
  margin: 0 auto 21px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h3 {
  margin: 0 0 16px;
  font-size: 0.84rem;
  font-weight: 800;
}

.team-card .role {
  margin: 0 0 17px;
  color: #00e28a;
  font-size: 0.73rem;
  font-weight: 600;
}

.team-card .credential {
  margin: 0 0 18px;
  font-size: 0.5rem;
  font-weight: 600;
}

.team-card p:last-child {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.55;
}

.people-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #35110f;
}

.people-banner::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.18) 19%,
    rgba(0, 0, 0, 0) 43%,
    rgba(0, 0, 0, 0.24) 78%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}


.people-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0.5;
  filter: brightness(0.55) saturate(0.9);
  transform: scale(1.34);
}

.people-stage {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(850px, 66vw);
  height: 100%;
  transform: translateX(-50%);
}

.people-front {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonials {
  padding: 66px max(34px, calc((100vw - 1020px) / 2)) 72px;
  color: var(--ink);
  background: #ffffff;
}

.testimonials .section-kicker {
  color: var(--deep-blue);
}

.testimonials h2 {
  color: #182033;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(250px, 335px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 58px);
  margin-top: 36px;
}

.testimonial-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 32, 51, 0.08);
  border-radius: 8px;
  background: #f3f6fb;
  box-shadow: 0 22px 42px rgba(24, 32, 51, 0.14);
}

.testimonial-video::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.testimonial-video video {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

blockquote {
  min-height: 240px;
  margin: 0;
  padding: 2px 0;
}

.stars {
  color: var(--green);
  font-size: 0.86rem;
  letter-spacing: 0;
}

blockquote p {
  margin: 4px 0 15px;
  color: #1f2937;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.55;
}

cite {
  color: var(--deep-blue);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  padding: 58px max(26px, calc((100vw - 860px) / 2)) 34px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(20, 32, 17, 0.96), rgba(31, 41, 51, 0.98)),
    var(--footer);
}

.footer-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 54px);
  margin-bottom: 30px;
  color: var(--orange);
}

.footer-alert span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--orange);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-alert .section-kicker {
  margin: 0 0 6px;
  color: #00e28a;
}

.footer-alert h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-copy {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0 auto;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
}

.site-footer strong,
.danger {
  color: var(--orange);
}

.danger {
  max-width: 760px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
}

.blocked-marketplaces {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 34px auto 30px;
}

.blocked-marketplaces span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.88;
}

.blocked-marketplaces span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid #ff1515;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.blocked-marketplaces span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 3px;
  background: #ff1515;
  content: "";
  transform: translate(-50%, -50%) rotate(-28deg);
}

.medical-note {
  max-width: 720px;
  margin-top: 18px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 105, 8, 0.72);
  padding: 22px 0 0;
  text-align: right;
  font-size: 0.76rem;
  font-weight: 600;
}

.footer-bottom img {
  width: 155px;
  height: auto;
}

body.modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.72);
  backdrop-filter: blur(5px);
}

.lead-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border-radius: 12px;
  padding: 30px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: #eef2f7;
  color: #172033;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.lead-modal__logo {
  width: 155px;
  height: auto;
  margin: 0 auto 18px;
}

.lead-modal h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.12;
  font-weight: 900;
}

.lead-modal__intro {
  margin: 14px 0 20px;
  border: 1px solid rgba(255, 138, 0, 0.28);
  border-radius: 8px;
  padding: 12px 14px;
  color: #172033;
  background: linear-gradient(135deg, #fff2b8, #ffd978);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.lead-benefits {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.lead-benefits li {
  position: relative;
  padding-left: 24px;
  color: #1f2937;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.lead-benefits li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 8px;
}

.lead-form label > span,
.lead-form legend {
  color: #172033;
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8dee9;
  border-radius: 8px;
  padding: 0 14px;
  color: #111827;
  font: inherit;
  background: #ffffff;
}

.lead-form input:focus {
  outline: 3px solid rgba(0, 109, 255, 0.16);
  border-color: var(--cta-blue);
}

.lead-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.lead-form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid #d8dee9;
  border-radius: 8px;
  padding: 0 12px;
  cursor: pointer;
  background: #f8fafc;
}

.lead-form input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cta-blue);
}

.lead-submit {
  width: 100%;
  margin-top: 4px;
}

.lead-submit:disabled {
  cursor: wait;
  filter: grayscale(0.2) brightness(0.9);
  opacity: 0.78;
}

.lead-form__status {
  min-height: 20px;
  color: var(--deep-blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.lead-form__status.is-success {
  color: #15803d;
}

.lead-form__status.is-error {
  color: #b91c1c;
}


@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0 12px;
    min-height: 70px;
    padding: 10px var(--mobile-gutter);
  }

  .brand img {
    width: 160px;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    margin-top: 14px;
    overflow: visible;
    border-top: 1px solid rgba(25, 36, 71, 0.12);
    padding-top: 12px;
    padding-bottom: 0;
    white-space: normal;
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    min-height: 42px;
    border-radius: 8px;
    padding: 0 12px;
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .header-ctas {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-header.menu-open .header-ctas {
    display: grid;
  }

  .header-ctas .cta-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.68rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px var(--mobile-gutter) 52px;
    gap: 28px;
  }

  .hero-content {
    display: contents;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content > p {
    display: block;
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero-actions {
    order: 3;
  }

  .hero-media img {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonial-video {
    width: min(315px, 100%);
    margin: 0 auto;
  }

  .team-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .products,
  .team,
  .testimonials {
    padding: 44px var(--mobile-gutter) 48px;
  }

  .products h2,
  .team h2,
  .testimonials h2 {
    font-size: 1.65rem;
    line-height: 1.18;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .section-intro {
    margin: 10px auto 28px;
    font-size: 0.76rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    gap: 18px;
    margin-top: 24px;
  }

  .product-info {
    min-height: auto;
    padding: 16px;
  }

  .product-info h3 {
    margin-bottom: 8px;
  }

  .section-ctas {
    margin-top: 26px;
  }

  .hero {
    padding: 42px var(--mobile-gutter) 46px;
    text-align: left;
    background-position: center;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 2.42rem;
    line-height: 1.16;
  }

  .hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button,
  .cta-button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .hero-actions,
  .section-ctas {
    gap: 10px;
  }

  .header-ctas {
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }

  .header-ctas .cta-button {
    min-height: 34px;
    width: 100%;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .blocked-marketplaces {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 28px auto 26px;
  }

  .people-banner {
    height: 220px;
  }

  .people-stage {
    left: 50%;
    width: 118vw;
  }

  .people-front {
    max-width: none;
    width: 100%;
  }

  .testimonial-grid {
    gap: 20px;
  }

  blockquote {
    min-height: auto;
    padding: 0 4px 14px;
    border-bottom: 1px solid rgba(24, 32, 51, 0.1);
  }

  blockquote:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  blockquote p,
  cite {
    font-size: 0.78rem;
  }

  .site-footer {
    padding: 46px var(--mobile-gutter) 30px;
  }

  .lead-modal {
    align-items: flex-end;
    padding: 8px;
  }

  .lead-modal__panel {
    width: 100%;
    max-height: calc(100vh - 16px);
    border-radius: 12px 12px 10px 10px;
    padding: 18px 16px 14px;
    overscroll-behavior: contain;
  }

  .lead-modal h2 {
    max-width: 260px;
    font-size: 1.55rem;
  }

  .lead-modal__logo {
    width: 118px;
    margin-bottom: 10px;
  }

  .lead-modal__intro {
    margin: 10px 0 12px;
    padding: 9px 10px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .lead-benefits {
    gap: 5px;
    margin-bottom: 14px;
  }

  .lead-benefits li {
    padding-left: 20px;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .lead-benefits li::before {
    top: -0.02rem;
  }

  .lead-form {
    gap: 10px;
  }

  .lead-form label,
  .lead-form fieldset {
    gap: 6px;
  }

  .lead-form label > span,
  .lead-form legend {
    font-size: 0.78rem;
  }

  .lead-form input[type="text"],
  .lead-form input[type="tel"] {
    min-height: 44px;
    border-radius: 7px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .lead-form fieldset label {
    min-height: 40px;
    border-radius: 7px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .lead-submit {
    min-height: 44px;
    margin-top: 0;
  }

  .lead-form__status {
    min-height: 16px;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .lead-modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .footer-copy {
    gap: 12px;
  }

  .site-footer p {
    font-size: 0.78rem;
  }

  .danger {
    font-size: 0.86rem;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    padding-top: 22px;
    text-align: center;
  }

  .footer-alert {
    gap: 14px;
  }

  .footer-alert span {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 145px;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-media img {
    width: min(100%, 340px);
  }

  .product-grid {
    max-width: 292px;
  }

  .team-card {
    padding: 18px 16px 20px;
  }

  .team-card img {
    width: 132px;
    height: 132px;
  }

  .people-banner {
    height: 190px;
  }

  .footer-alert h2 {
    font-size: 1.35rem;
  }

  .lead-modal__panel {
    padding: 14px 14px 12px;
  }

  .lead-modal__logo {
    width: 106px;
    margin-bottom: 8px;
  }

  .lead-modal h2 {
    font-size: 1.38rem;
  }

  .lead-modal__intro {
    margin: 8px 0 10px;
    padding: 8px 9px;
    font-size: 0.78rem;
  }

  .lead-benefits {
    gap: 4px;
    margin-bottom: 12px;
  }

  .lead-benefits li {
    font-size: 0.72rem;
  }

  .lead-form {
    gap: 8px;
  }

  .lead-form input[type="text"],
  .lead-form input[type="tel"] {
    min-height: 42px;
  }

  .lead-form fieldset label {
    min-height: 38px;
  }
}

@media (max-height: 720px) and (max-width: 700px) {
  .lead-modal__panel {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .lead-modal__logo {
    width: 96px;
    margin-bottom: 6px;
  }

  .lead-modal h2 {
    font-size: 1.28rem;
  }

  .lead-modal__intro {
    margin: 7px 0 9px;
  }

  .lead-benefits {
    margin-bottom: 10px;
  }
}
