.safetyBadge,
.safetyBadge svg {
  color: #4b6500 !important;
  fill: #4b6500 !important;
  stroke: #4b6500 !important;
}

.miniCard__icon,
.miniCard__icon svg {
  color: #d4e04c !important;
  fill: #d4e04c !important;
  stroke: #d4e04c !important;
}
:root {
  color-scheme: light;
  --green: #113331;
  --lime: #d5e04d;
  --ink: #0d1414;
  --muted: rgba(255, 255, 255, 0.82);
  --mutedDark: rgba(13, 20, 20, 0.62);
  --card: rgba(255, 255, 255, 0.95);
  --cardBorder: rgba(255, 255, 255, 0.22);
  --radius: 18px;
  --ring: rgba(213, 224, 77, 0.32);
  --surface: rgba(255, 255, 255, 0.96);
  --surfaceBorder: rgba(13, 20, 20, 0.1);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
}

main {
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px;
}

@media (min-width: 980px) {
  .container {
    padding: 22px;
  }
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #111;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(13, 20, 20, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brandMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.brandMark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.brandMark svg {
  width: 28px;
  height: 28px;
  display: block;
}

.brand__icon {
  display: block;
  border-radius: 10px;
}

.brand__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
}

.brand__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

@media (min-width: 900px) {
  .brandMark img {
    width: 44px;
    height: 44px;
  }

  .brand__name {
    font-size: 20px;
  }
}

.brand__tag {
  font-size: 12px;
  color: var(--mutedDark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 52vw;
}

.siteNav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.siteNav__link {
  font-weight: 500;
  font-size: 13px;
  color: rgba(13, 20, 20, 0.78);
}

.siteNav__link:hover {
  color: var(--green);
}

.navToggle {
  display: none;
  border: 1px solid rgba(13, 20, 20, 0.16);
  background: rgba(13, 20, 20, 0.02);
  color: var(--ink);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 500;
  cursor: pointer;
}

.btn,
.navToggle,
.siteNav__link {
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .navToggle {
    display: inline-flex;
  }

  .siteNav {
    position: absolute;
    right: 16px;
    top: 62px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(13, 20, 20, 0.12);
    background: rgba(255, 255, 255, 0.98);
    min-width: 240px;
  }

  .siteNav.is-open {
    display: flex;
  }
}

.hero {
  padding: 56px 0 18px 0;
  background: radial-gradient(900px 520px at 12% 4%, rgba(213, 224, 77, 0.22), transparent 58%),
    radial-gradient(900px 520px at 84% 0%, rgba(255, 255, 255, 0.12), transparent 62%),
    linear-gradient(135deg, var(--green), rgba(13, 20, 20, 0.96));
  color: #fff;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
  }
}

.eyebrow {
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(13, 20, 20, 0.62);
}

h1 {
  margin: 0 0 12px 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

@media (min-width: 980px) {
  h1 {
    font-size: 48px;
  }
}

.lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--mutedDark);
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(17, 51, 49, 0.1);
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.btn--small {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: rgba(17, 51, 49, 0.22);
  box-shadow: none;
}

.hero .eyebrow,
.hero .lead,
.hero .muted {
  color: rgba(255, 255, 255, 0.86);
}

.heroLead--mobile {
  display: none;
}

@media (max-width: 600px) {
  .heroLead--desktop {
    display: none;
  }

  .heroLead--mobile {
    display: block;
  }
}

.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn:focus,
.navToggle:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.phoneMock {
  width: min(560px, 94vw);
  margin: 0 auto;
  border-radius: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.phoneMock__glass {
  display: none;
}

.phoneMock__screen {
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
}

.heroShot {
  width: 100%;
  height: min(440px, 56vw);
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
  transform: translateY(64px) scale(1.48);
  transform-origin: center bottom;
  will-change: transform;
}

@media (min-width: 980px) {
  .heroShot {
    transform: translateY(104px) scale(1.62);
  }
}

.section {
  padding: 46px 0;
  background: transparent;
}

.section--tint {
  background: rgba(246, 249, 250, 0.98);
  color: var(--ink);
  border-top: 1px solid rgba(13, 20, 20, 0.08);
  border-bottom: 1px solid rgba(13, 20, 20, 0.08);
}

#endorsement.section--tint {
  background: radial-gradient(900px 520px at 12% 4%, rgba(213, 224, 77, 0.22), transparent 58%),
    radial-gradient(900px 520px at 84% 0%, rgba(255, 255, 255, 0.12), transparent 62%),
    linear-gradient(135deg, var(--green), rgba(13, 20, 20, 0.96));
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#endorsement.section--tint .eyebrow,
#endorsement.section--tint .sectionTitle,
#endorsement.section--tint .lead,
#endorsement.section--tint .muted,
#endorsement.section--tint strong {
  color: #fff;
}

.section--soft {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-top: 1px solid rgba(13, 20, 20, 0.08);
  border-bottom: 1px solid rgba(13, 20, 20, 0.08);
}

.section--cta {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-top: 1px solid rgba(13, 20, 20, 0.08);
}

.section--tint .eyebrow,
.section--soft .eyebrow,
.section--cta .eyebrow {
  color: rgba(13, 20, 20, 0.72);
}

.section--tint .lead,
.section--soft .lead,
.section--cta .lead,
.section--tint .muted,
.section--soft .muted,
.section--cta .muted {
  color: var(--mutedDark);
}

.section--tint .btn--ghost,
.section--soft .btn--ghost,
.section--cta .btn--ghost {
  background: rgba(17, 51, 49, 0.06);
  color: var(--green);
  border-color: rgba(17, 51, 49, 0.18);
}

.sectionTitle {
  margin: 0 0 14px 0;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
}

@media (min-width: 980px) {
  .sectionTitle {
    font-size: 30px;
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
  }
}

.safetyLayout {
  gap: 22px;
}

.safetyArt {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.safetyImg {
  width: min(520px, 100%);
  height: auto;
  transform-origin: center center;
  animation: safetyFloat 5.5s ease-in-out infinite;
}

@keyframes safetyFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .safetyImg {
    animation: none;
  }
}

.safetyBadge {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--surfaceBorder);
  color: var(--green);
  margin-bottom: 14px;
}

.safetyBadge svg {
  width: 46px;
  height: 46px;
}

.safetyText {
  max-width: 62ch;
}

.illus {
  height: 220px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(420px 240px at 40% 30%, rgba(213, 224, 77, 0.22), transparent 60%),
    radial-gradient(420px 240px at 70% 60%, rgba(255, 255, 255, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.06);
}

.featureSplit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

@media (min-width: 980px) {
  .featureSplit {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
  }
}

.featureSplit__list {
  display: grid;
  gap: 12px;
}

.featureItem {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--surfaceBorder);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.featureItem__num {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(213, 224, 77, 0.92);
  color: var(--ink);
  font-weight: 700;
  font-size: 40px;
  line-height: 0.9;
  display: grid;
  place-items: center;
  flex: none;
}

.featureItem__body h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
}

.featureItem .muted {
  color: var(--mutedDark);
}

.featureSplit__visual {
  display: grid;
  place-items: center;
}

.featurePhone {
  width: min(340px, 92vw);
  border-radius: 40px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.featurePhone::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(420px 220px at 25% 20%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(420px 220px at 70% 40%, rgba(213, 224, 77, 0.16), transparent 55%);
  pointer-events: none;
}

.featurePhone__screen {
  position: relative;
  border-radius: 28px;
  background: rgba(13, 20, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.featurePhone__img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.featurePhone--plain {
  width: 100%;
  max-width: 860px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.featurePhone--plain::before {
  content: none;
}

.featurePhone--plain .featurePhone__screen {
  padding: 0;
  border: 0;
  background: transparent;
}

.featurePhone--plain .featurePhone__img {
  height: clamp(360px, 72vw, 560px);
  object-fit: cover;
  object-position: 50% 32%;
  filter: none;
}

@media (min-width: 900px) {
  .featurePhone--plain .featurePhone__img {
    height: clamp(460px, 30vw, 660px);
  }
}

@media (max-width: 899px) {
  #features.section {
    padding-bottom: 18px;
  }

  section.section[aria-label="Take more"] {
    padding-top: 18px;
  }
}

.featurePhone__badge {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.muted {
  color: var(--mutedDark);
  font-size: 13px;
  line-height: 1.55;
}

.takeMore {
  margin-top: 10px;
  padding: 6px 0 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.takeMore__head {
  font-weight: 700;
  margin: 6px 0 18px;
  text-align: center;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--green);
}

.takeMore__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 900px) {
  .takeMore__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.miniCard {
  position: relative;
  border-radius: 16px;
  padding: 18px 18px 18px 20px;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  align-items: start;
  overflow: hidden;
}

.miniCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--lime), var(--green));
}

.miniCard--network::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: url("./network.png") center/contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.miniCard--network1::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: url("./network1.png") center/contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.miniCard--safe::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: url("./safe.png") center/contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 900px) {
  .miniCard--network::after,
  .miniCard--network1::after,
  .miniCard--safe::after {
    right: -8px;
    width: 90px;
    height: 90px;
    opacity: 0.12;
  }
}

.miniCard__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.miniCard__icon svg {
  width: 40px;
  height: 40px;
}

.miniCard__title {
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 2px;
  grid-column: 2;
  color: #fff;
}

.miniCard__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  grid-column: 2;
}

.band {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--surfaceBorder);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.band .eyebrow {
  color: rgba(13, 20, 20, 0.72);
}

.band .lead {
  color: var(--mutedDark);
}

.quote {
  margin-top: 14px;
  border-radius: var(--radius);
  padding: 18px;
  border: none;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.quote__text {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(13, 20, 20, 0.9);
}

.quote__who {
  margin: 0;
  font-weight: 600;
  color: rgba(13, 20, 20, 0.72);
}

#testimonials .eyebrow,
#testimonials .sectionTitle {
  text-align: center;
}

.tSlider {
  margin-top: 14px;
  overflow: hidden;
  border: none;
  background: transparent;
}

.tTrack {
  display: flex;
  width: 200%;
  animation: tSlide 12s ease-in-out infinite;
}

.tPage {
  flex: 0 0 50%;
  min-width: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .tPage {
    grid-template-columns: 1fr 1fr;
  }
}

.tSlider:hover .tTrack,
.tSlider:focus-within .tTrack {
  animation-play-state: paused;
}

.tCard {
  flex: 1 1 0;
  min-width: 0;
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid var(--surfaceBorder);
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 900px) {
  .tCard {
    padding: 26px 24px;
  }
}

.tQuote {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(13, 20, 20, 0.92);
}

.tWho {
  margin: 14px 0 0 0;
  font-weight: 800;
  color: rgba(13, 20, 20, 0.72);
}

@keyframes tSlide {
  0%,
  44% {
    transform: translateX(0);
  }
  50%,
  94% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tSlider {
    overflow: visible;
  }

  .tTrack {
    animation: none;
    width: 100%;
    flex-direction: column;
  }

  .tPage {
    flex: 1 1 auto;
  }
}

.shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 900px) {
  .shots {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

#screens .eyebrow,
#screens .sectionTitle {
  text-align: center;
}

#screens.section {
  padding-bottom: 0;
}

#screens .container {
  padding-bottom: 0;
}

#screens .shots {
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 900px) {
  #screens .shots {
    grid-template-columns: 1fr;
  }
}

#screens .shot {
  width: min(940px, 99vw);
  height: clamp(580px, 88vh, 920px);
  margin: 0 auto;
  padding: 4px 4px 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#screens .shot img {
  padding: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 600px) {
  #screens .shot {
    height: auto;
  }

  #screens .shot img {
    width: 100%;
    max-height: none;
  }
}

.shot {
  height: 260px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(360px 200px at 50% 30%, rgba(213, 224, 77, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

#faq .eyebrow,
#faq .sectionTitle {
  text-align: center;
}

.faqGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 980px) {
  .faqGrid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.faq__item {
  border-radius: var(--radius);
  border: 1px solid var(--surfaceBorder);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(13, 20, 20, 0.92);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::marker {
  content: "";
}

.faq__item summary::after {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background-color: rgba(17, 51, 49, 0.08);
  background-image: linear-gradient(var(--green), var(--green)), linear-gradient(var(--green), var(--green));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
  transition: transform 160ms ease, background-color 160ms ease;
}

.faq__item summary:hover {
  background: rgba(17, 51, 49, 0.04);
}

.faq__item summary:focus-visible {
  outline: 2px solid rgba(213, 224, 77, 0.55);
  outline-offset: -2px;
}

.faq__item[open] {
  border-color: rgba(17, 51, 49, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.06);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
  background-color: rgba(213, 224, 77, 0.22);
}

.faq__item .muted {
  color: rgba(13, 20, 20, 0.74);
  margin: 0;
  padding: 0 16px 14px 16px;
  line-height: 1.65;
}

.faq__item[open] .muted {
  animation: faqFadeIn 180ms ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta {
  text-align: center;
}

.cta .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 68ch;
}

.cta .hero__actions {
  justify-content: center;
}

.cta__title {
  margin: 0 0 10px 0;
  font-size: 28px;
  line-height: 1.2;
}

.storeBadge {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.storeBadge:hover,
.storeBadge:focus-visible {
  background: transparent;
  border: none;
}

.storeBadge__icon {
  display: block;
  width: min(200px, 70vw);
  height: auto;
}

.storeBadge__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.storeBadge__small {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.storeBadge__big {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contactBar {
  padding: 12px 0;
  background: #F6F9FA;
  border-bottom: 1px solid rgba(13, 20, 20, 0.08);
  color: rgba(13, 20, 20, 0.72);
}

.contactBar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contactBar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contactBar__label {
  font-weight: 600;
  color: rgba(13, 20, 20, 0.68);
}

.contactBar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 51, 49, 0.92);
  font-weight: 700;
  text-decoration: none;
}

.contactBar__item:hover,
.contactBar__item:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contactBar__icon {
  flex: 0 0 auto;
  color: rgba(13, 20, 20, 0.55);
}

.contactBar__hours {
  text-align: right;
  line-height: 1.5;
  color: rgba(13, 20, 20, 0.62);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .contactBar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contactBar__hours {
    text-align: left;
    white-space: normal;
  }
}

.footer {
  padding: 42px 0;
  background: radial-gradient(900px 520px at 12% 4%, rgba(213, 224, 77, 0.22), transparent 58%),
    radial-gradient(900px 520px at 84% 0%, rgba(255, 255, 255, 0.12), transparent 62%),
    linear-gradient(135deg, var(--green), rgba(13, 20, 20, 0.96));
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 26px;
  }
}

.footer__home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.footer__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.footer__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer__tag {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.1;
}

.footer__tagline {
  margin: 10px 0 0 0;
  max-width: 52ch;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer__colTitle {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer__a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
}

.footer__a:hover,
.footer__a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__meta {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.footer .muted {
  color: rgba(255, 255, 255, 0.86);
}
