:root {
  --ink: #0f172a;
  --muted: #5f6b7a;
  --green: #08783f;
  --green-dark: #045c31;
  --green-soft: #eaf8ef;
  --navy: #0b1f35;
  --amber: #f4a425;
  --line: #dfe7e2;
  --paper: #ffffff;
  --off-white: #f7faf8;
  --shadow: 0 18px 55px rgba(15, 33, 27, 0.11);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  color: white;
  background: var(--navy);
  font-size: 0.75rem;
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement a {
  color: #b8f0cd;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--green), #16a75b);
  border-radius: 12px 4px 12px 4px;
  box-shadow: 0 8px 22px rgba(8, 120, 63, 0.22);
  font-size: 1.25rem;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav > a {
  padding: 10px 10px;
  color: #374151;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav > a:hover,
.nav > a.active {
  color: var(--green);
  background: var(--green-soft);
}

.nav > .nav-cta {
  margin-left: 5px;
  padding-inline: 16px;
  color: white;
  background: var(--green);
}

.nav > .nav-cta:hover,
.nav > .nav-cta.active {
  color: white;
  background: var(--green-dark);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4fbf6 0%, #fffdf8 48%, #edf8f2 100%);
}

.hero::after {
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(8, 120, 63, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
}

.glow-one {
  top: -150px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(48, 191, 107, 0.2), transparent 67%);
}

.glow-two {
  right: 22%;
  bottom: -190px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(244, 164, 37, 0.17), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
  padding-block: 76px 82px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-copy > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(8, 120, 63, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--navy);
  border-color: #cbd5d1;
  background: rgba(255, 255, 255, 0.76);
}

.btn-secondary:hover {
  border-color: var(--green);
  background: white;
}

.btn-dark {
  color: white;
  background: var(--navy);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: #3b4a40;
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-row span::first-letter {
  color: var(--green);
}

.hero-card {
  position: relative;
  overflow: visible;
  padding: 11px;
  background: white;
  border: 1px solid rgba(8, 120, 63, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-card > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 19px;
}

.hero-card-copy {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  padding: 20px;
  color: white;
  background: rgba(11, 31, 53, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.hero-card-copy span {
  display: block;
  margin-bottom: 5px;
  color: #aeeac5;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-card-copy strong {
  display: block;
  line-height: 1.35;
}

.hero-card-copy a {
  display: inline-block;
  margin-top: 10px;
  color: #ffd486;
  font-size: 0.79rem;
  font-weight: 700;
}

.secure-badge {
  position: absolute;
  top: 25px;
  right: -25px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.17);
  font-size: 0.75rem;
  font-weight: 800;
  transform: rotate(-1.2deg);
}

.secure-badge b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.commerce-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid #dfe9e3;
  border-bottom: 1px solid #dfe9e3;
  background: white;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.strip-grid > div:first-child {
  padding-left: 0;
}

.strip-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.strip-grid b {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--green-soft);
  border-radius: 10px;
  font-size: 1.05rem;
}

.strip-grid span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.strip-grid strong {
  font-size: 0.85rem;
}

.strip-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.business-intro h2,
.about-copy h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading p,
.business-intro p,
.about-copy > p,
.contact-grid > div > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.split-heading > div {
  max-width: 760px;
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 5px;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 800;
}

.shop-section {
  background: var(--off-white);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.category-pill {
  padding: 9px 15px;
  color: #46534a;
  border: 1px solid #cfdbd3;
  background: white;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-pill:hover,
.category-pill.active {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e0e9e3;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.045);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(15, 33, 27, 0.1);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: #eef3ef;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 5px 8px;
  color: white;
  background: #d83a31;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-copy > small {
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 7px 0 6px;
  font-size: 0.99rem;
  line-height: 1.38;
}

.product-copy > p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.76rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.price strong {
  font-size: 1.12rem;
}

.price del {
  color: #8c9790;
  font-size: 0.76rem;
}

.product-button {
  display: block;
  margin-top: 14px;
  padding: 9px 12px;
  color: var(--green);
  border: 1px solid #b9d9c5;
  border-radius: 8px;
  text-align: center;
  font-size: 0.77rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.product-button:hover {
  color: white;
  background: var(--green);
}

.catalogue-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 25px 28px;
  color: white;
  background: linear-gradient(100deg, var(--green-dark), var(--green));
  border-radius: 16px;
}

.catalogue-note > div {
  display: flex;
  flex-direction: column;
}

.catalogue-note strong {
  font-size: 1rem;
}

.catalogue-note span {
  margin-top: 4px;
  color: #d3f0de;
  font-size: 0.79rem;
}

.steps-section {
  padding-block: 96px;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 42px;
}

.steps-grid article {
  position: relative;
  padding: 8px 28px 8px 0;
}

.steps-grid article:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: 10px;
  width: calc(100% - 62px);
  border-top: 1px dashed #a9c9b5;
  content: "";
  transform: translateX(100%);
}

.steps-grid article > span {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border: 6px solid var(--green-soft);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
}

.steps-grid h3 {
  margin: 15px 0 6px;
  font-size: 0.94rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.order-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding: 28px 32px;
  background: #f0f8f3;
  border: 1px solid #d5e9dc;
  border-radius: 17px;
}

.order-cta > div {
  display: flex;
  flex-direction: column;
}

.order-cta small {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.order-cta strong {
  margin-top: 4px;
  font-size: 1.1rem;
}

.business-section {
  padding-block: 96px;
  color: white;
  background: var(--navy);
}

.business-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 40px;
}

.business-intro .eyebrow {
  color: #78d59c;
}

.business-intro p {
  color: #bac7d1;
}

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

.business-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
}

.commerce-card {
  background: linear-gradient(135deg, rgba(10, 139, 72, 0.28), rgba(255, 255, 255, 0.045));
}

.software-card {
  background: rgba(255, 255, 255, 0.045);
}

.business-label {
  display: inline-block;
  padding: 5px 9px;
  color: #a9efc3;
  background: rgba(24, 184, 91, 0.15);
  border: 1px solid rgba(104, 222, 151, 0.25);
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.business-card h3 {
  margin: 16px 0 10px;
  font-size: 1.55rem;
}

.business-card p {
  color: #bec9d2;
  font-size: 0.9rem;
}

.business-card ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.business-card li {
  margin: 8px 0;
  color: #e1e8ed;
  font-size: 0.83rem;
}

.business-card li::before {
  margin-right: 9px;
  color: #7bdd9f;
  content: "✓";
  font-weight: 800;
}

.business-card a {
  color: #91e3ae;
  font-size: 0.85rem;
  font-weight: 800;
}

.about-section {
  padding-block: 96px;
  background: #f7faf8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 82px;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.identity-grid > div {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.identity-grid > div:last-child {
  grid-column: span 2;
}

.identity-grid small,
.legal-identity small {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.identity-grid strong {
  font-size: 0.83rem;
}

.about-panel {
  padding: 36px;
  color: white;
  background: linear-gradient(145deg, var(--green-dark), #0a8144);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(8, 93, 49, 0.18);
}

.about-panel .eyebrow {
  color: #b2f2ca;
}

.about-panel h3 {
  margin: 0 0 25px;
  font-size: 1.7rem;
  line-height: 1.25;
}

.commitment-list {
  display: grid;
  gap: 12px;
}

.commitment-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}

.commitment-list b {
  color: #9eebbb;
  font-size: 0.75rem;
}

.commitment-list span {
  display: flex;
  flex-direction: column;
}

.commitment-list strong {
  font-size: 0.86rem;
}

.commitment-list small {
  margin-top: 3px;
  color: #cfebd9;
  font-size: 0.73rem;
}

.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 70px;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-cards > * {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 14px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.contact-cards > * > span {
  grid-row: span 2;
  color: var(--green);
  font-size: 1.05rem;
}

.contact-cards small {
  color: var(--muted);
  font-size: 0.67rem;
}

.contact-cards strong {
  overflow-wrap: anywhere;
  font-size: 0.79rem;
}

.contact-form {
  padding: 32px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(15, 33, 27, 0.07);
}

.contact-form h3 {
  margin: 0;
  font-size: 1.35rem;
}

.contact-form > p {
  margin: 5px 0 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-form label {
  display: block;
  margin-bottom: 13px;
  color: #39443d;
  font-size: 0.73rem;
  font-weight: 700;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid #ced9d2;
  outline: 0;
  background: white;
  border-radius: 8px;
  font-size: 0.83rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 120, 63, 0.11);
}

.contact-form .btn {
  width: 100%;
  border: 0;
}

.contact-form .form-note {
  min-height: 1.1em;
  margin: 10px 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.policy-section {
  padding-block: 96px;
  background: var(--off-white);
  border-top: 1px solid var(--line);
}

.legal-identity {
  display: grid;
  grid-template-columns: 1.1fr 1.7fr 1fr 1.2fr;
  margin-bottom: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-identity > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.legal-identity > div:last-child {
  border-right: 0;
}

.legal-identity strong,
.legal-identity address,
.legal-identity a {
  overflow-wrap: anywhere;
  font-size: 0.71rem;
  font-style: normal;
  font-weight: 700;
}

.legal-identity a {
  color: var(--green);
}

.policy-updated {
  margin: 12px 0 25px;
  color: var(--muted);
  font-size: 0.72rem;
}

.policy-list {
  display: grid;
  gap: 10px;
}

.policy-list details {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.policy-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 800;
  list-style: none;
}

.policy-list summary::-webkit-details-marker {
  display: none;
}

.policy-list summary span {
  color: var(--green);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.policy-list details[open] summary {
  color: var(--green-dark);
  border-bottom: 1px solid var(--line);
}

.policy-list details[open] summary span {
  transform: rotate(45deg);
}

.policy-content {
  max-width: 900px;
  padding: 20px;
  color: #4d5a52;
  font-size: 0.83rem;
}

.policy-content h3 {
  margin: 22px 0 5px;
  color: var(--ink);
  font-size: 0.87rem;
}

.policy-content h3:first-of-type {
  margin-top: 13px;
}

.policy-content p {
  margin: 0 0 10px;
}

.footer {
  padding-top: 58px;
  color: #c8d1d8;
  background: #081725;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 54px;
  padding-bottom: 48px;
}

.footer .brand-copy strong {
  color: white;
}

.footer .brand-copy small {
  color: #9baab6;
}

.footer-brand > p {
  max-width: 340px;
  margin: 18px 0;
  font-size: 0.79rem;
}

.footer-registration {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #8fa1ae;
  font-size: 0.67rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 7px;
  color: white;
  font-size: 0.85rem;
}

.footer-column a,
.footer-column span {
  color: #aab8c2;
  font-size: 0.74rem;
}

.footer-column a:hover {
  color: #83dea5;
}

.copyright {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7f909d;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.68rem;
}

@media (max-width: 1080px) {
  .nav > a {
    padding-inline: 7px;
    font-size: 0.78rem;
  }

  .hero-grid {
    gap: 45px;
  }

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

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

  .strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .strip-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .strip-grid > div:first-child,
  .strip-grid > div:nth-child(3) {
    padding-left: 20px;
  }

  .legal-identity {
    grid-template-columns: 1fr 1fr;
  }

  .legal-identity > div:nth-child(2) {
    border-right: 0;
  }

  .legal-identity > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 2px;
    padding: 0 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, visibility 0.2s ease;
  }

  .nav.open {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding-block: 12px 18px;
    opacity: 1;
    visibility: visible;
  }

  .nav > a {
    padding: 11px 12px;
    font-size: 0.86rem;
  }

  .nav > .nav-cta {
    margin: 5px 0 0;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 68px 78px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-card {
    max-width: 670px;
    justify-self: center;
  }

  .business-intro,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .business-intro {
    gap: 20px;
  }

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

  .steps-grid article {
    padding: 0 15px 0 0;
  }

  .steps-grid article:not(:last-child)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .announcement-inner {
    justify-content: center;
    padding-block: 7px;
    text-align: center;
  }

  .announcement-inner > span {
    display: none;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .nav {
    top: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 1.03rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .hero-grid {
    gap: 42px;
    padding-block: 53px 62px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero-copy > p {
    font-size: 0.96rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    gap: 8px 15px;
    font-size: 0.74rem;
  }

  .hero-card {
    width: calc(100% - 10px);
    transform: none;
  }

  .hero-card > img {
    height: 340px;
  }

  .hero-card-copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 17px;
  }

  .secure-badge {
    top: 21px;
    right: 21px;
    transform: none;
  }

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

  .strip-grid > div {
    min-height: 88px;
    padding-inline: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-grid > div:first-child,
  .strip-grid > div:nth-child(3) {
    padding-left: 10px;
  }

  .strip-grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .steps-section,
  .business-section,
  .about-section,
  .policy-section {
    padding-block: 72px;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

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

  .product-image {
    height: 180px;
  }

  .product-copy {
    padding: 14px;
  }

  .catalogue-note,
  .order-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

  .business-card,
  .about-panel,
  .contact-form {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-identity {
    grid-template-columns: 1fr;
  }

  .legal-identity > div,
  .legal-identity > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-identity > div:last-child {
    border-bottom: 0;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .copyright {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 15px;
  }
}

@media (max-width: 500px) {
  .hero-card > img {
    height: 290px;
  }

  .hero-card-copy strong {
    font-size: 0.88rem;
  }

  .secure-badge {
    font-size: 0.67rem;
  }

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

  .product-image {
    height: 230px;
  }

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

  .steps-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
  }

  .steps-grid article > span {
    grid-row: span 2;
  }

  .steps-grid h3 {
    margin-top: 2px;
  }

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

  .identity-grid > div:last-child {
    grid-column: auto;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
