:root {
  --bg-950: #0d1a30;
  --bg-900: #12213b;
  --bg-800: #1a2c4a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --surface-border: rgba(255, 255, 255, 0.2);

  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.085);
  --glass-border: rgba(255, 255, 255, 0.11);
  --glass-border-strong: rgba(255, 255, 255, 0.18);

  --accent: #cfa54d;
  --accent-soft: #e2c276;

  --text-strong: #f5f8ff;
  --text-base: #d9e1f2;
  --text-muted: #9daccc;

  --shadow-soft: 0 14px 40px rgba(9, 16, 30, 0.28);
  --shadow-deep: 0 24px 64px rgba(7, 14, 28, 0.45);

  --font-sans: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Space Grotesk', 'Outfit', system-ui, sans-serif;

  --container: 76rem;
  --radius-sm: 0.6rem;
  --radius-md: 1rem;
  --radius-lg: 1.4rem;
  --radius-xl: 2rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text-base);
  background: var(--bg-950);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: -15% -10%;
  z-index: -2;
  background:
    radial-gradient(45% 55% at 10% 0%, rgba(67, 132, 213, 0.3), transparent 70%),
    radial-gradient(38% 50% at 100% 10%, rgba(207, 165, 77, 0.22), transparent 75%),
    linear-gradient(180deg, #0f1d36 0%, #11213f 50%, #0c162a 100%);
  animation: drift 24s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.12;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 78%);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-1%, -2%, 0) scale(1.04);
  }
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

::selection {
  color: var(--bg-950);
  background: var(--accent-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 7.2vw, 4.9rem);
}

h2 {
  font-size: clamp(1.6rem, 6vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 4.8vw, 2.2rem);
}

h4 {
  font-size: clamp(1.1rem, 3.7vw, 1.5rem);
  letter-spacing: -0.015em;
}

p {
  color: var(--text-base);
  max-width: 66ch;
}

.lead {
  font-size: clamp(1.02rem, 2.7vw, 1.22rem);
  color: var(--text-strong);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.accent {
  color: var(--accent-soft);
}

.serif {
  font-family: var(--font-display);
  font-weight: 500;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(3.2rem, 7vw, 6rem);
}

.section--tight {
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(1.8rem, 4.5vw, 2.8rem);
  max-width: 48rem;
}

.skip-link {
  position: fixed;
  left: 0.7rem;
  top: -120px;
  z-index: 400;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #f3f6ff;
  color: #0f1d36;
  font-size: 0.9rem;
  font-weight: 600;
  transition: top 0.25s var(--ease-out);
}

.skip-link:focus-visible {
  top: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s var(--ease-out),
    background-color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    color 0.22s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.22s var(--ease-out);
}

.btn--icon:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  color: #101d35;
  background: linear-gradient(135deg, #e1be70, #c99a42);
  box-shadow: 0 14px 28px rgba(201, 154, 66, 0.28);
}

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

.btn--ghost {
  color: var(--text-strong);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.13);
}

.btn--sm {
  padding: 0.62rem 0.95rem;
  font-size: 0.84rem;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.26s var(--ease-out), border-color 0.26s var(--ease-out);
}

.glass:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  padding-block: 0.65rem;
  transition:
    background-color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    padding-block 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(14, 27, 50, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-block: 0.4rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nav__brand img {
  width: auto;
  height: 2.1rem;
}

.nav__toggle {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.nav__toggle span {
  position: relative;
  width: 1rem;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transition: background 0.25s var(--ease-out);
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 1rem;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out);
}

.nav__toggle span::before {
  top: -0.35rem;
}

.nav__toggle span::after {
  top: 0.35rem;
}

body.nav-open .nav__toggle span {
  background: transparent;
}

body.nav-open .nav__toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav__toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 3.8rem;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  background: rgba(10, 21, 39, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav__menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.56rem 0.85rem;
  border-radius: 0.7rem;
  color: var(--text-base);
  font-weight: 500;
  transition: color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.nav__link:hover,
.nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.nav__cta {
  margin-top: 0.4rem;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: clip;
  padding-top: 4.7rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.62);
  animation: slow-zoom 28s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 23, 41, 0.28) 0%, rgba(12, 23, 41, 0.66) 65%, #0d1a30 100%),
    radial-gradient(46% 52% at 82% 34%, rgba(207, 165, 77, 0.16), transparent 72%);
}

.hero__inner {
  display: grid;
  gap: 1.35rem;
  padding-block: clamp(2.2rem, 8vw, 4.8rem);
}

.hero__content {
  max-width: 44rem;
}

.hero__title {
  margin-top: 0.85rem;
  max-width: 18ch;
}

.hero__title .line {
  display: block;
}

.hero__title .line > span {
  display: inline-block;
  animation: rise 0.85s var(--ease-out) both;
}

.hero__title .line:nth-child(2) > span {
  animation-delay: 0.1s;
}

.hero__title .line:nth-child(3) > span {
  animation-delay: 0.2s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(102%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__desc {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: var(--text-strong);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.hero__stats {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.8rem;
  max-width: 36rem;
}

.hero__stat {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
}

.hero__stat .num {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  line-height: 1;
}

.hero__stat .lbl {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll {
  display: none;
}

.hero--page {
  min-height: 58dvh;
}

.cards,
.values,
.partners,
.product-grid,
.tips {
  display: grid;
  gap: 1rem;
}

.cards,
.values,
.partners,
.tips {
  grid-template-columns: 1fr;
}

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

.card,
.product,
.tip,
.cta,
.form,
.info-list {
  padding: clamp(1rem, 2.8vw, 1.9rem);
}

.card,
.product,
.tip {
  display: grid;
  gap: 0.75rem;
}

.card__icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.82rem;
  display: grid;
  place-items: center;
  color: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.partner {
  display: grid;
  gap: 0.85rem;
  place-items: center;
  text-align: center;
  padding: 1.35rem 1rem;
}

.partner__logo {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1rem;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0.65rem;
}

.partner__name {
  color: #fff;
  font-weight: 600;
}

.partner__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-grid,
.contact-grid,
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 24, 43, 0.7));
}

.info-list {
  display: grid;
  gap: 0.85rem;
}

.info-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 0.8rem;
}

.info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-soft);
  display: grid;
  place-items: center;
}

.info-item__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.info-item__label {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-item__value {
  margin-top: 0.1rem;
  color: #fff;
  font-weight: 500;
}

.map {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  min-height: 17rem;
  box-shadow: var(--shadow-deep);
}

.map iframe {
  width: 100%;
  min-height: 17rem;
  border: 0;
  filter: invert(0.9) hue-rotate(175deg) saturate(0.6);
}

.product__badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(207, 165, 77, 0.16);
  color: var(--accent-soft);
  border: 1px solid rgba(207, 165, 77, 0.35);
}

.product__title {
  font-family: var(--font-sans);
  color: #fff;
  font-weight: 600;
}

.product__features {
  display: grid;
  gap: 0.45rem;
}

.product__features li {
  display: grid;
  grid-template-columns: 0.9rem 1fr;
  gap: 0.5rem;
  color: var(--text-base);
  font-size: 0.95rem;
}

.product__features li::before {
  content: '';
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #efd49f, #c99a42);
}

.tip {
  position: relative;
}

.tip__num {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1;
}

.faq {
  display: grid;
  gap: 0.65rem;
}

.faq__item {
  padding: 1rem;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

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

.faq__item summary::after {
  content: '+';
  color: var(--accent-soft);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s var(--ease-out);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin-top: 0.65rem;
  color: var(--text-base);
  font-size: 0.95rem;
}

.form {
  display: grid;
  gap: 0.95rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 0.75rem 0.84rem;
  transition:
    border-color 0.2s var(--ease-out),
    background-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(215, 224, 243, 0.65);
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 0;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(207, 165, 77, 0.2);
  background: rgba(255, 255, 255, 0.11);
}

.field textarea {
  min-height: 7.8rem;
  resize: vertical;
}

.form__status {
  display: none;
  border-radius: 0.75rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
}

.form__status.is-visible {
  display: block;
}

.form__status.is-success {
  color: #d6f7df;
  border: 1px solid rgba(109, 206, 133, 0.52);
  background: rgba(109, 206, 133, 0.18);
}

.form__status.is-error {
  color: #ffdedd;
  border: 1px solid rgba(248, 122, 122, 0.56);
  background: rgba(248, 122, 122, 0.16);
}

.cta {
  text-align: center;
  background:
    linear-gradient(140deg, rgba(207, 165, 77, 0.18), rgba(255, 255, 255, 0.04)),
    var(--surface);
  overflow: hidden;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  inset: -45% -35%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(207, 165, 77, 0.18), transparent 65%);
  animation: pulse 9s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.cta > * {
  position: relative;
}

.cta h2 {
  margin-inline: auto;
  max-width: 20ch;
  margin-bottom: 0.7rem;
}

.cta p {
  margin-inline: auto;
  margin-bottom: 1rem;
}

.footer {
  margin-top: clamp(2.6rem, 7vw, 5rem);
  padding-block: 2.4rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(15, 26, 46, 0) 0%, rgba(12, 24, 43, 0.58) 100%);
}

.footer__logos {
  /* display: grid;
  gap: 0.9rem;
  padding: 1rem;
  margin-bottom: 1.4rem; */
    display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  margin-bottom: var(--space-6);
}

.footer__logos-group {
  /* display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem; */
    display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer__logos img {
  max-height: 2.6rem;
  width: auto;
  opacity: 0.9;
}

.footer__top {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.4rem;
}

.footer__brand img {
  height: 2.6rem;
  width: auto;
}

.footer__social {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.footer__social svg {
  width: 0.95rem;
  height: 0.95rem;
}

.footer__col h5 {
  color: var(--accent-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
}

.footer__col ul {
  display: grid;
  gap: 0.32rem;
}

.footer__col a {
  color: var(--text-base);
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

.divider {
  height: 1px;
  margin-block: 1.8rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@media (min-width: 42rem) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

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

  .cards,
  .values,
  .partners,
  .tips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer__col:last-child {
    grid-column: span 2;
  }
}

@media (min-width: 64rem) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.nav-open {
    overflow: visible;
  }

  .nav__cta {
    width: auto;
    margin-top: 0;
    margin-left: 0.4rem;
  }

  .hero {
    align-items: center;
  }

  .hero__inner {
    padding-block: clamp(4.2rem, 8.5vw, 7rem);
  }

  .hero__actions {
    gap: 0.9rem;
  }

  .hero__scroll {
    display: flex;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .hero__scroll::after {
    content: '';
    width: 1px;
    height: 2.1rem;
    background: linear-gradient(180deg, var(--accent-soft), transparent);
    animation: trail 1.8s ease-in-out infinite;
  }

  @keyframes trail {
    0%,
    100% {
      transform: scaleY(1);
      opacity: 1;
    }
    50% {
      transform: scaleY(0.45);
      opacity: 0.5;
    }
  }

  .about-grid,
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

  .about-image {
    aspect-ratio: 4 / 5;
  }

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

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

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

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
