@font-face {
  font-family: "Syne";
  src: url("/assets/syne-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/assets/syne-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1d1d1b;
  --muted-ink: #595957;
  --paper: #ebf7ff;
  --paper-deep: #dceffa;
  --white: #ffffff;
  --accent: #09ad9d;
  --accent-dark: #078a7e;
  --line: rgba(29, 29, 27, 0.2);
  --soft-line: rgba(29, 29, 27, 0.1);
  --surface: rgba(255, 255, 255, 0.58);
  --dark-surface: #1d1d1b;
  --danger: #a52d36;
  --success: #087f6d;
  --radius: 5px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 72px;
  --shadow: 0 28px 70px rgba(29, 29, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.9), transparent 27%),
    radial-gradient(circle at 90% 65%, rgba(9, 173, 157, 0.1), transparent 28%);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button,
a,
input,
textarea,
select {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: var(--space-3);
  font-size: clamp(2.65rem, 10vw, 7rem);
  font-weight: 700;
}

h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(2.15rem, 7vw, 5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-pad {
  padding: 64px 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--soft-line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: min(176px, 47vw);
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 100%;
}

.nav-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  background: var(--ink);
}

.site-nav {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  display: none;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--soft-line);
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
}

.header-actions {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-dark {
  background: var(--dark-surface);
  color: var(--white);
}

.button-dark:hover {
  background: var(--accent);
  color: var(--ink);
}

.button-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #082d2a;
}

.button-accent:hover {
  box-shadow: 0 12px 30px rgba(9, 173, 157, 0.28);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: center;
  gap: 42px;
  overflow: hidden;
}

.hero-title {
  position: relative;
  z-index: 2;
}

.hero-title h1 {
  max-width: 12ch;
}

.hero-title p {
  max-width: 620px;
  margin-bottom: var(--space-4);
  color: var(--muted-ink);
  font-size: 1.06rem;
}

.hero-visual {
  position: relative;
  min-height: 340px;
}

.hero-visual::before {
  position: absolute;
  inset: 5% 6%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(80%, 390px);
  margin: auto;
  filter: drop-shadow(0 30px 40px rgba(29, 29, 27, 0.22));
}

.orbit {
  position: absolute;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.orbit-one {
  top: 15%;
  right: 3%;
  width: 55px;
  height: 55px;
}

.orbit-two {
  bottom: 8%;
  left: 10%;
  width: 24px;
  height: 24px;
  background: var(--accent);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading > a {
  font-weight: 700;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-image {
  position: relative;
  display: grid;
  aspect-ratio: 2 / 2.65;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(207, 218, 224, 0.7));
  box-shadow: inset 0 0 68px rgba(77, 87, 92, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-image:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 68px rgba(77, 87, 92, 0.14), 0 20px 0 rgba(29, 29, 27, 0.12);
}

.product-image img {
  width: 88%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 220ms ease;
}

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

.product-category {
  margin: 18px 0 8px;
  color: var(--muted-ink);
  font-size: 0.68rem;
}

.product-card h3 {
  min-height: 3.7em;
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card h3 a:hover {
  text-decoration: underline;
}

.product-price {
  margin: auto 0 14px;
  font-size: 1.05rem;
}

.product-card .button {
  width: 100%;
  padding-inline: 10px;
  font-size: 0.78rem;
}

.lab-band {
  position: relative;
  display: grid;
  min-height: 480px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.lab-band > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.lab-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 10%, rgba(29, 29, 27, 0.92));
  content: "";
}

.lab-band > div {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 42px 20px;
}

.lab-band h2 {
  font-size: clamp(2.3rem, 9vw, 5.4rem);
}

.choose-section {
  display: grid;
  align-items: center;
  gap: 42px;
}

.choose-section > img {
  width: min(260px, 70vw);
  margin: auto;
}

.category-links {
  display: grid;
}

.category-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.category-links a:hover span {
  transform: translate(3px, -3px);
}

.category-links span {
  transition: transform 180ms ease;
}

.about-slice,
.about-story,
.about-hero {
  display: grid;
  align-items: center;
  gap: 42px;
}

.about-slice p,
.about-story p,
.about-hero p {
  max-width: 720px;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-collage img {
  height: 280px;
  object-fit: cover;
}

.about-collage img:nth-child(2) {
  transform: translateY(28px);
}

.payment-strip {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-strip article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
}

.payment-strip article:last-child {
  border-bottom: 0;
}

.payment-strip strong {
  font-size: 1.1rem;
}

.payment-strip span {
  color: var(--muted-ink);
  font-size: 0.85rem;
}

.reviews-section {
  display: grid;
  align-items: center;
  gap: 42px;
}

.reviews-visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.reviews-visual::before {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.reviews-visual img {
  position: relative;
  z-index: 1;
  width: min(260px, 65vw);
}

.review {
  display: none;
  margin: 0;
}

.review.is-active {
  display: block;
  animation: fade-in 360ms ease both;
}

.review p {
  font-size: clamp(1.25rem, 4vw, 2.2rem);
  line-height: 1.35;
}

.review footer {
  display: flex;
  gap: 18px;
  align-items: center;
}

.review footer span {
  color: var(--muted-ink);
}

.review-dots {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.review-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.review-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  content: "";
  transform: translate(-50%, -50%);
}

.review-dots button.is-active::before {
  background: var(--ink);
}

.contact-section {
  position: relative;
  padding: 50px 0;
  background: #daebf6;
  color: #1d1d1b;
  isolation: isolate;
}

.contact-molecule {
  position: absolute;
  z-index: 0;
  top: -50px;
  right: 0;
  width: auto;
  max-height: 250px;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
}

.contact-copy {
  width: 100%;
  padding: 0;
}

.contact-mark {
  width: 56px;
  height: 60px;
  margin-bottom: 30px;
}

.contact-mark svg {
  display: block;
}

.contact-title {
  margin: 0;
  color: #1d1d1b;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 46px;
}

.contact-subtitle {
  margin: 0;
  color: #1d1d1b;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 30px;
}

.contact-description {
  max-width: none;
  margin: 20px 0 40px;
  color: #1d1d1b;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.contact-form {
  display: block;
  width: 100%;
  margin: 0;
}

.contact-field {
  display: block;
  margin: 0 0 15px;
  color: #1d1d1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-label {
  display: block;
  color: #1d1d1b;
  font-weight: 400;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  display: block;
  width: 100%;
  height: 56px;
  min-height: 56px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
  color: #1d1d1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-field textarea {
  height: 96px;
  min-height: 96px;
}

.contact-message-field {
  margin-bottom: 22px;
}

.contact-acceptance-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 16px;
  margin: 0 0 16px;
}

.contact-acceptance {
  display: flex;
  min-width: 0;
  min-height: 40px;
  flex: 1 1 100%;
  align-items: center;
  gap: 8px;
  color: #1d1d1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.contact-acceptance input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  margin: 0;
  accent-color: #09ad9d;
}

.contact-acceptance > span {
  color: #1d1d1b;
  font-weight: 400;
  line-height: 18px;
}

.contact-upload-button {
  position: relative;
  display: flex;
  width: 100%;
  height: 44px;
  min-height: 44px;
  flex: 1 0 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 26px;
  border: 1px solid #1d1d1b;
  border-radius: 5px;
  color: #1d1d1b;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-upload-button > span {
  color: #1d1d1b;
  font-weight: 400;
}

.contact-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-submit {
  display: inline-flex;
  width: auto;
  height: 45px;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 12px 45.9px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(#09ad9d, #005758);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.contact-submit:hover {
  filter: brightness(1.06);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-form .form-status {
  min-height: 0;
  margin: 12px 0 0;
}

.contact-form .form-status:empty {
  display: none;
}

.contact-person-wrap {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 1300px;
  margin: 0 auto;
  pointer-events: none;
}

.contact-person {
  display: none;
  width: auto;
  height: auto;
  margin-left: auto;
}

.checkout-form,
.auth-card form,
.verify-hero form,
.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

label > span {
  color: var(--muted-ink);
  font-weight: 400;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.check-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.site-footer {
  display: grid;
  gap: 32px;
  padding: 56px 20px 28px;
  background: var(--ink);
  color: var(--white);
}

.site-footer > div:not(.footer-base) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-email {
  font-size: clamp(1.2rem, 6vw, 2.8rem);
  font-weight: 700;
}

.payment-logos {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
}

.payment-logos span {
  flex-basis: 100%;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-logos img {
  width: auto;
  max-width: 52px;
  height: 28px;
  padding: 4px;
  border-radius: 3px;
  background: var(--white);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 79.5px;
  align-items: center;
  gap: 4px;
  padding: 30px max(32px, 5vw);
  margin: 0;
  color: #1d1d1b;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb-home {
  display: inline-flex;
  width: 13px;
  height: 14px;
}

.breadcrumb-separator {
  padding: 0 4px;
}

.breadcrumb-item strong {
  font-weight: 500;
}

.page-hero {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-hero h1,
.about-hero h1,
.verify-hero h1,
.auth-card h1 {
  max-width: 13ch;
}

.page-hero p {
  max-width: 730px;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.page-hero.compact h1 {
  font-size: clamp(2.7rem, 8vw, 6rem);
}

.catalog-search {
  max-width: 720px;
  margin-top: 32px;
}

.catalog-search > div {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.services-list {
  padding-top: 12px;
}

.category-preview {
  display: grid;
  gap: 36px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.category-intro p {
  max-width: 480px;
  color: var(--muted-ink);
}

.category-intro > a {
  font-weight: 700;
}

.catalog-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.catalog-grid .product-card[hidden] {
  display: none;
}

.empty-state,
.loading-state {
  padding: 32px;
  border: 1px dashed var(--line);
  color: var(--muted-ink);
  text-align: center;
}

.product-detail {
  display: grid;
  gap: 40px;
}

.detail-image {
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(209, 220, 226, 0.65));
  box-shadow: inset 0 0 100px rgba(29, 29, 27, 0.13);
}

.detail-image img {
  width: 92%;
}

.detail-copy h1 {
  font-size: clamp(2.5rem, 8vw, 5.8rem);
}

.detail-copy > p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.official-order-panel {
  margin-top: 32px;
}

.official-order-panel > h5 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.official-order-panel > p {
  color: var(--muted-ink);
}

.official-addon-list {
  display: grid;
}

.detail-copy fieldset {
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
}

.detail-copy legend {
  margin-bottom: 14px;
  font-weight: 700;
}

.addon {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-bottom: 1px solid var(--soft-line);
  font-weight: 500;
}

.addon input {
  width: 20px;
  min-height: 20px;
}

.addon-readonly {
  grid-template-columns: minmax(0, 1fr) auto;
}

.official-order-button {
  width: 100%;
  margin-top: 18px;
}

.purchase-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.detail-price {
  font-size: 2.2rem;
}

.purchase-row label {
  width: 100px;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.parameters {
  padding-top: 20px;
}

.tab-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tab-heading h2 {
  margin: 0;
  font-size: 1.5rem;
}

.parameters table {
  width: 100%;
  border-collapse: collapse;
}

.parameters th,
.parameters td {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
}

.parameters th {
  padding-bottom: 0;
  font-size: 0.8rem;
}

.cart-shell,
.checkout-grid,
.dashboard-shell,
.admin-shell {
  padding-top: 8px;
}

.cart-layout {
  display: grid;
  gap: 28px;
}

.cart-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 70px;
  height: 86px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.55);
}

.cart-line h3 {
  margin-bottom: 4px;
}

.cart-line p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.78rem;
}

.cart-line-controls {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.cart-line-controls input {
  width: 68px;
}

.link-button {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--danger);
  text-decoration: underline;
  cursor: pointer;
}

.cart-summary {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
}

.summary-row.total {
  margin-bottom: 18px;
  font-size: 1.25rem;
  font-weight: 700;
}

.checkout-grid {
  display: grid;
  gap: 32px;
}

.checkout-form {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.checkout-form h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.payment-pending {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: rgba(9, 173, 157, 0.08);
}

.payment-pending p {
  margin: 6px 0 0;
}

.auth-shell {
  display: grid;
  min-height: 680px;
  align-items: center;
  gap: 40px;
}

.auth-card {
  width: min(100%, 600px);
}

.auth-card > p {
  color: var(--muted-ink);
}

.inline-link {
  justify-self: start;
  font-size: 0.85rem;
}

.auth-visual {
  display: none;
}

.verify-hero {
  display: grid;
  min-height: 660px;
  align-items: center;
  gap: 40px;
}

.verify-hero > img {
  width: min(320px, 70vw);
  margin: auto;
}

.verify-result[hidden] {
  display: none;
}

.verification-reference {
  min-height: calc(100svh - 76px);
  padding: 28px 16px 44px;
  background:
    radial-gradient(circle at 11% 67%, rgba(9, 173, 157, 0.16), transparent 36%),
    radial-gradient(circle at 96% 61%, rgba(9, 173, 157, 0.11), transparent 34%),
    var(--paper);
}

.verification-reference-inner {
  width: min(100%, 1280px);
}

.verification-reference h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: -0.04em;
}

.verification-lead {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.verification-reference-form {
  display: grid;
  width: min(100%, 640px);
  margin-top: 64px;
}

.verification-reference-form label {
  display: block;
  margin: 0 4px 6px;
  font-size: 1rem;
  font-weight: 500;
}

.verification-reference-form input {
  min-height: 57px;
  margin-bottom: 18px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.verification-reference-form .button {
  width: min(242px, 100%);
  min-height: 54px;
  margin-top: -3px;
}

.verification-reference-form .form-status:empty {
  display: none;
}

.verification-error {
  width: min(100%, 640px);
  margin: 28px 0 -36px;
  color: var(--danger);
  font-weight: 700;
}

.coa-sheet {
  width: min(calc(100% - 32px), 960px);
  margin: 36px auto 80px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(29, 29, 27, 0.12);
}

.coa-sheet > header {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.coa-sheet > header img {
  width: 190px;
}

.coa-sheet > header span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coa-sheet h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
  overflow-wrap: anywhere;
}

.coa-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  margin: 28px 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
  color: var(--success);
}

.coa-sheet dl {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
  gap: 0 22px;
  margin: 0 0 32px;
}

.coa-sheet dt,
.coa-sheet dd {
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
  overflow-wrap: anywhere;
}

.coa-sheet dt {
  color: var(--muted-ink);
}

.coa-sheet dd {
  margin: 0;
  font-weight: 600;
}

.coa-note {
  max-width: 74ch;
  margin: 30px 0 0;
  color: var(--muted-ink);
  font-size: 0.82rem;
}

.report-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.report-card.is-valid {
  border-top: 6px solid var(--accent);
}

.report-card dl {
  display: grid;
  grid-template-columns: minmax(100px, 0.6fr) 1fr;
  gap: 8px 16px;
  margin: 0;
}

.report-card dt {
  color: var(--muted-ink);
}

.report-card dd {
  margin: 0;
  font-weight: 600;
}

.public-search {
  max-width: 620px;
  margin-top: 28px;
}

.public-actions {
  margin-top: 24px;
}

.public-sync-note,
.form-note {
  margin-top: 14px;
  color: var(--muted-ink);
  font-size: 0.82rem;
}

.public-results {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.public-result {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.public-result h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.public-result p {
  overflow-wrap: anywhere;
}

.public-result span {
  color: var(--muted-ink);
}

.about-hero img,
.about-story img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.about-story ul {
  padding-left: 20px;
}

.about-story li {
  margin-bottom: 10px;
}

.values-section {
  border-top: 1px solid var(--line);
}

.value-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.value-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--paper);
}

.value-grid article > span {
  color: var(--accent);
  font-size: 2rem;
}

.value-grid h3 {
  margin-top: 28px;
}

.dashboard-shell,
.admin-shell {
  display: grid;
  gap: 28px;
}

.dashboard-shell > aside,
.admin-shell > aside {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.dashboard-shell > aside h1,
.admin-shell > aside h1 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.admin-shell aside nav {
  display: grid;
  margin: 24px 0;
}

.admin-shell aside nav a {
  min-height: 44px;
  border-bottom: 1px solid var(--soft-line);
  text-decoration: none;
}

.dashboard-panel {
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.dashboard-panel h2 {
  font-size: 1.9rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.data-table th,
.data-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: top;
}

.table-scroll {
  overflow-x: auto;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 99px;
  background: rgba(9, 173, 157, 0.13);
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-note {
  padding: 14px;
  border-left: 4px solid var(--accent);
  background: rgba(9, 173, 157, 0.08);
}

.legal-page,
.not-found {
  min-height: 60vh;
}

.legal-page p {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.legal-warning {
  padding: 16px;
  border-left: 4px solid #d69800;
  background: rgba(214, 152, 0, 0.1);
}

.cookie-settings-trigger {
  position: fixed;
  z-index: 90;
  bottom: 14px;
  left: 14px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 5px 18px 5px 6px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(29, 29, 27, 0.18);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-settings-trigger svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.cookie-settings-trigger svg > circle:first-child {
  fill: rgba(9, 173, 157, 0.06);
  stroke: var(--accent);
  stroke-width: 2;
}

.cookie-settings-trigger svg > circle:not(:first-child) {
  fill: var(--accent);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
}

.cookie-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 20, 0.58);
  backdrop-filter: blur(8px);
}

.cookie-consent-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  padding: 28px 20px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.cookie-consent-panel h2 {
  max-width: 12ch;
  padding-right: 48px;
  font-size: clamp(2rem, 7vw, 3.6rem);
}

.cookie-consent-panel > p {
  max-width: 65ch;
  color: var(--muted-ink);
}

.cookie-consent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-category {
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-line);
}

.cookie-category input {
  width: 22px;
  min-height: 22px;
  margin-top: 2px;
}

.cookie-category strong,
.cookie-category small {
  display: block;
}

.cookie-category small {
  margin-top: 4px;
  color: var(--muted-ink);
  font-weight: 400;
}

.cookie-consent-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

body.cookie-dialog-open {
  overflow: hidden;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 450px) {
  .contact-molecule {
    max-height: 200px;
  }
}

@media (min-width: 640px) {
  .contact-molecule {
    top: -70px;
    max-height: 350px;
  }
}

@media (min-width: 768px) {
  .contact-copy {
    max-width: 540px;
  }

  .contact-molecule {
    top: -100px;
    max-height: 550px;
  }

  .contact-title {
    font-size: 54px;
    line-height: 64px;
  }

  .contact-subtitle {
    font-size: 27px;
    line-height: 34px;
  }

  .contact-description {
    font-size: 20px;
    line-height: 24px;
  }

  .contact-acceptance-row {
    flex-wrap: nowrap;
  }

  .contact-acceptance {
    min-height: 44px;
    flex: 1 1 420px;
  }

  .contact-upload-button {
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .contact-submit {
    height: 54px;
    min-height: 54px;
    padding: 0 96px;
    font-size: 16px;
    line-height: 24px;
  }

  .contact-person {
    display: block;
    max-height: 360px;
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 100px 0;
  }

  .contact-copy {
    max-width: 640px;
  }

  .contact-molecule {
    max-height: 500px;
  }

  .contact-title {
    font-size: 72px;
    line-height: 88px;
  }

  .contact-subtitle {
    font-size: 30px;
    line-height: 36px;
  }

  .contact-person {
    max-height: 560px;
  }
}

@media (min-width: 1280px) {
  .contact-person {
    max-height: 760px;
  }
}

@media (min-width: 1536px) {
  .contact-molecule {
    max-height: 550px;
  }

  .contact-person {
    max-height: 860px;
  }
}

@media (min-width: 700px) {
  .section-pad {
    padding: 88px 5vw;
  }

  .breadcrumb-separator {
    padding-inline: 12px;
  }

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

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

  .product-card h3 {
    min-height: 4.2em;
    font-size: 1rem;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
  }

  .section-heading .eyebrow {
    grid-column: 1 / -1;
  }

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

  .payment-strip article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .catalog-search > div {
    grid-template-columns: 1fr auto;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 260px;
  }

  .parameters th,
  .parameters td {
    display: table-cell;
    padding: 18px 12px;
  }

  .parameters th {
    width: 38%;
  }

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

  .admin-form {
    grid-template-columns: 1fr 1fr;
  }

  .admin-form > label:has(textarea),
  .admin-form > .check-row,
  .admin-form > .button,
  .admin-form > .form-status {
    grid-column: 1 / -1;
  }

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

  .cookie-consent-panel {
    padding: 42px;
  }

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

  .verification-reference {
    padding: 24px 16px 40px;
  }

  .coa-sheet > header {
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 161px;
    padding: 48px 4vw;
  }

  .brand {
    width: 200px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: clamp(14px, 2vw, 32px);
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav a {
    min-height: 44px;
    border: 0;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .site-nav a:hover {
    color: var(--accent-dark);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header-search {
    display: flex;
    width: 190px;
    border-bottom: 1px solid var(--line);
  }

  .header-search input {
    min-height: 42px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    font-size: 0.78rem;
  }

  .header-search button {
    min-width: 42px;
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
  }

  .icon-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    min-height: calc(100svh - 92px);
    padding-top: 48px;
  }

  .hero-title p {
    font-size: 1.22rem;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-visual img {
    width: min(90%, 500px);
  }

  .lab-band {
    min-height: 680px;
  }

  .lab-band > div {
    padding: 80px 7vw;
  }

  .choose-section {
    grid-template-columns: 1fr 0.72fr 1fr;
  }

  .about-slice,
  .about-story,
  .about-hero,
  .reviews-section,
  .auth-shell,
  .verify-hero {
    grid-template-columns: 1fr 1fr;
  }

  .about-collage img {
    height: 430px;
  }

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

  .payment-strip article,
  .payment-strip article:nth-child(odd) {
    min-height: 210px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .payment-strip article:last-child {
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: 2fr repeat(3, 1fr);
    padding: 84px 5vw 34px;
  }

  .site-footer .payment-logos {
    grid-column: span 2;
  }

  .footer-base {
    grid-column: 1 / -1;
  }

  .category-preview {
    grid-template-columns: minmax(250px, 0.7fr) 2fr;
    gap: 5vw;
  }

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

  .category-preview .product-card h3 {
    font-size: 0.8rem;
  }

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

  .product-detail {
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    gap: 6vw;
  }

  .detail-image {
    min-height: 720px;
  }

  .cart-layout,
  .checkout-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
    gap: 5vw;
  }

  .auth-visual {
    display: grid;
    min-height: 620px;
    place-items: center;
  }

  .auth-visual img {
    width: min(420px, 80%);
  }

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

  .dashboard-shell,
  .admin-shell {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 32px;
  }

  .dashboard-shell > aside,
  .admin-shell > aside {
    position: sticky;
    top: 118px;
  }

  .verification-reference {
    min-height: 0;
    padding: 169px 0 100px;
  }

  .verification-reference-inner {
    width: 100%;
    padding-inline: 32px;
  }

  .verification-reference h1 {
    margin-bottom: 20px;
    font-size: 72px;
    line-height: 88px;
  }

  .verification-lead {
    margin-top: 30px;
    font-size: 30px;
    line-height: 36px;
  }

  .verification-reference-form {
    margin-top: 70px;
  }

  .verification-reference-form label {
    margin: 0 0 4px;
  }

  .verification-reference-form input {
    height: 56px;
    min-height: 56px;
    margin-bottom: 15px;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.4);
  }

  .verification-reference-form .button {
    width: 242px;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .verification-reference {
    padding-top: 100px;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ink: #e7f0f3;
    --muted-ink: #a8b5ba;
    --paper: #10191c;
    --paper-deep: #172529;
    --white: #1b282c;
    --line: rgba(231, 240, 243, 0.24);
    --soft-line: rgba(231, 240, 243, 0.12);
    --surface: rgba(255, 255, 255, 0.045);
    --dark-surface: #e7f0f3;
    --danger: #ff9299;
    --success: #62ddc8;
  }

  :root:not([data-theme="light"]) .button-dark {
    color: #10191c;
  }

  :root:not([data-theme="light"]) .product-image,
  :root:not([data-theme="light"]) .detail-image {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.22));
  }
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #e7f0f3;
  --muted-ink: #a8b5ba;
  --paper: #10191c;
  --paper-deep: #172529;
  --white: #1b282c;
  --line: rgba(231, 240, 243, 0.24);
  --soft-line: rgba(231, 240, 243, 0.12);
  --surface: rgba(255, 255, 255, 0.045);
  --dark-surface: #e7f0f3;
}

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

/* Official public-site composition: global chrome and homepage */
.site-header-shell {
  position: fixed;
  z-index: 9990;
  top: 0;
  right: 0;
  left: 0;
  height: 81px;
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header-shell + main {
  margin-top: 80px;
}

.site-header {
  position: relative;
  z-index: auto;
  top: auto;
  display: grid;
  width: 100%;
  min-height: 80px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  width: 137.563px;
  min-height: 36px;
}

.brand img {
  width: 137.563px;
  height: 36px;
}

.header-search {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-icon {
  display: grid;
  width: 36px;
  height: 36px;
  min-height: 36px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e7e7e7;
  color: #1d1d1b;
  cursor: pointer;
  text-decoration: none;
}

.header-cart {
  width: 40px;
}

.header-icon svg,
.header-search svg,
.mobile-header-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.nav-toggle {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 5px;
  border: 0;
  border-radius: 50%;
  background: #e7e7e7;
}

.nav-toggle span {
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.site-nav {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  display: block;
  height: 311px;
  padding: 40px 16px;
  border: 0;
  background: #f6f7f7;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 80px));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  visibility: hidden;
}

.site-nav.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu-label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.site-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-nav a {
  position: relative;
  min-height: 32px;
  padding: 4px 0;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.site-nav a::before {
  position: absolute;
  inset: -6px -24px;
  content: "";
}

body.nav-open,
body.search-open {
  overflow: hidden;
}

.mobile-header-search {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink);
  background: #f6f7f7;
}

.mobile-header-search[hidden] {
  display: none;
}

.mobile-header-search form {
  position: relative;
}

.mobile-header-search input {
  height: 56px;
  padding-right: 56px;
  border-color: var(--ink);
  border-radius: 5px;
  background: transparent;
}

.mobile-header-search button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e7e7e7;
}

.home-container,
.footer-container {
  width: calc(100% - 64px);
  max-width: 1236px;
  margin: 0 auto;
}

.home-page main {
  overflow: hidden;
}

.home-page main h1,
.home-page main h2,
.home-page main h3 {
  letter-spacing: normal;
}

.home-popular {
  min-height: 1269px;
  padding: 140px 0 40px;
}

.home-popular h1 {
  margin: 0 0 30px;
  font-size: 38px;
  line-height: 46px;
  text-align: center;
}

.home-popular .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 15px;
}

.home-popular .product-image {
  height: 222px;
  aspect-ratio: auto;
  border-radius: 5px;
}

.home-popular .product-image img {
  width: 100%;
  max-height: 100%;
}

.home-popular .product-category {
  margin: 35.5px 0 8px;
  font-size: 12px;
}

.home-popular .product-card h3 {
  min-height: 108px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 18px;
}

.home-popular .product-price {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 24px;
}

.home-popular .product-card .button {
  height: 50px;
  min-height: 50px;
  font-size: 14px;
}

.brand-intro {
  min-height: 505px;
  padding: 0 0 50px;
}

.brand-intro-grid {
  display: grid;
  gap: 30px;
}

.brand-intro h1 {
  max-width: none;
  margin: 0;
  font-size: 32px;
  line-height: 40px;
}

.brand-intro h3 {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.process-desktop {
  display: none;
}

.process-mobile {
  min-height: 1166px;
  padding: 60px 32px 0;
}

.process-mobile h2 {
  margin: 0 0 36px;
  font-size: 38px;
  line-height: 46px;
}

.process-mobile ol {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-mobile li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.process-mobile li > span {
  color: var(--accent-dark);
  font-weight: 700;
}

.process-mobile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.process-mobile p {
  margin: 0;
  color: var(--muted-ink);
}

.process-mobile > img {
  width: 251px;
  height: 250px;
  margin: 42px auto 0;
  object-fit: contain;
}

.choose-section {
  display: block;
  min-height: 1075px;
  padding: 130px 0 50px;
}

.choose-grid {
  display: grid;
  gap: 30px;
}

.choose-copy h1 {
  margin: 0 0 20px;
  font-size: 38px;
  line-height: 46px;
}

.choose-copy h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.choose-grid > img {
  display: none;
}

.category-links a {
  min-height: 54px;
}

.about-section {
  position: relative;
  min-height: 2384px;
  padding: 130px 0 50px;
  overflow: hidden;
  background: linear-gradient(145deg, #05aea2 0%, #069288 52%, #022c29 100%);
  color: #fff;
}

.about-molecule {
  position: absolute;
  pointer-events: none;
}

.about-molecule-left {
  display: none;
}

.about-molecule-right {
  top: 15px;
  right: 0;
  width: auto;
  max-height: 150px;
}

.about-stage {
  display: grid;
  gap: 54px;
}

.about-copy h1 {
  margin: 0;
  font-size: 38px;
  line-height: 46px;
}

.about-copy h3 {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.about-collage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.about-collage img {
  width: 100%;
  height: 136px;
}

.about-collage img:nth-child(2),
.about-collage img:nth-child(5) {
  transform: translateY(-76px);
}

.about-collage img:nth-child(4) {
  grid-column: 1;
}

.about-benefits {
  display: grid;
  gap: 0;
  margin-top: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.about-benefits article {
  min-height: 250px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.about-benefits strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.about-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.reviews-section {
  position: relative;
  display: block;
  min-height: 1115px;
  padding: 50px 0;
  overflow: hidden;
}

.reviews-molecule {
  position: absolute;
  top: 0;
  left: 0;
  width: 176px;
  height: 120px;
  object-fit: contain;
}

.reviews-grid {
  display: grid;
  gap: 80px;
}

.reviews-visual {
  min-height: 330px;
}

.reviews-visual::before {
  display: none;
}

.reviews-visual img {
  width: 311px;
}

.reviews-copy h1 {
  margin: 0 0 20px;
  font-size: 38px;
  line-height: 46px;
}

.reviews-copy h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.review-list {
  min-height: 250px;
}

.review p {
  font-size: 20px;
  line-height: 30px;
}

.review footer {
  margin-top: 20px;
}

.review-dots {
  flex-wrap: wrap;
}

.site-footer {
  position: relative;
  display: block;
  min-height: 672px;
  padding: 60px 0;
  overflow: hidden;
  background: #f6fbff;
  color: #1d1d1b;
}

.footer-molecule {
  position: absolute;
  top: 60px;
  right: 0;
  width: auto;
  max-height: 200px;
  transform: rotate(180deg);
}

.site-footer .footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-logo {
  width: 214px;
  margin-bottom: 40px;
}

.footer-email,
.site-footer a {
  color: #1d1d1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer-email {
  font-size: 20px;
  line-height: 30px;
}

.footer-column strong {
  margin-bottom: 15px;
  color: #09ad9d;
  font-size: 14px;
}

.footer-meta,
.footer-payments {
  border-top: 1px solid rgba(29, 29, 27, 0.2);
  background: #f6fbff;
  color: #1d1d1b;
}

.footer-meta {
  min-height: 135px;
  padding: 30px 0;
}

.footer-meta span {
  font-size: 14px;
}

.footer-meta .footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-made {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #1d1d1b;
  text-decoration: none;
}

.footer-made img {
  width: 169px;
  height: 30px;
}

.footer-payments {
  height: 128px;
  min-height: 128px;
  padding: 25px 0;
  overflow: hidden;
}

.footer-payments .footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 52px;
}

.payment-logos {
  display: flex !important;
  flex: 1 1 280px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.payment-logos span {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted-ink);
}

.payment-logos img {
  background: #fff;
}

.cookie-settings-trigger {
  position: fixed;
  z-index: 999995;
  bottom: 10px;
  left: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  min-height: 36px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.cookie-settings-trigger svg {
  width: 32px;
  height: 32px;
}

.cookie-consent {
  z-index: 999996;
  padding: 0;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: none;
}

.cookie-consent-backdrop {
  background: transparent;
  backdrop-filter: none;
}

.cookie-consent-panel {
  width: calc(100% - 19.5px);
  max-width: 800px;
  height: 582.547px;
  min-height: 0;
  max-height: calc(100svh - 20px);
  padding: 20px 20px 10px;
  border-radius: 0;
  background: #fff;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
  color: #2d2d2d;
  font-family: "Open Sans", Arial, "Trebuchet MS", "Segoe UI", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 23.1px;
}

.cookie-consent-panel h2 {
  max-width: none;
  padding-right: 28px;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 23.4px;
}

.cookie-consent-panel > p {
  max-width: none;
  margin: 0 0 10px;
  color: #2d2d2d;
}

.cookie-consent-panel > p a {
  color: #09ad9d;
}

.cookie-consent-close {
  top: 16px;
  right: 16px;
  width: 15px;
  min-height: 15px;
  border: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 29px;
  font-weight: 100;
}

.cookie-category-grid {
  display: grid;
  min-height: 195px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.cookie-category {
  display: grid;
  min-width: 0;
  grid-template-columns: 47px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  font-size: 13px;
  font-weight: 400;
}

.cookie-category input {
  width: 47px;
  min-height: 47px;
  margin: 0;
  accent-color: #09ad9d;
}

.cookie-category span {
  color: #2d2d2d;
}

.cookie-consent-actions {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.cookie-consent-actions > div {
  display: grid;
  gap: 10px;
}

.cookie-consent-actions button,
.cookie-save {
  min-height: 42px;
  padding: 0 38px;
  border-radius: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-details-toggle {
  border: 0;
  background: transparent;
  color: #2d2d2d;
}

.cookie-decline {
  border: 1px solid #2d2d2d;
  background: #fff;
  color: #2d2d2d;
}

.cookie-accept,
.cookie-save {
  border: 1px solid #09ad9d;
  background: #09ad9d;
  color: #fff;
}

.cookie-details {
  padding-top: 14px;
  border-top: 1px solid rgba(45, 45, 45, 0.2);
}

.cookie-details[hidden] {
  display: none;
}

.cookie-details p {
  margin: 0 0 6px;
}

.cookie-save {
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .site-footer .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .site-header-shell {
    height: 161px;
  }

  .site-header-shell + main {
    margin-top: 161px;
  }

  .site-header {
    width: calc(100% - 128px);
    max-width: 1236px;
    min-height: 96px;
    grid-template-columns: 214px minmax(320px, 628px) 130px;
    justify-content: space-between;
    gap: 0;
    height: 96px;
    padding: 25px 0 15px;
    margin: 0 auto;
  }

  .brand,
  .brand img {
    width: 214px;
    height: 56px;
  }

  .header-search {
    position: relative;
    display: block;
    width: 100%;
    height: 56px;
    border: 0;
  }

  .header-search input {
    width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 12px 56px 12px 20px;
    border: 1px solid #1d1d1b;
    border-radius: 9999px;
    background: transparent;
  }

  .header-search button {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .header-actions {
    gap: 10px;
  }

  .header-icon {
    width: 56px;
    height: 56px;
  }

  .header-cart {
    width: 64px;
  }

  .mobile-search-toggle,
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .mobile-menu-label {
    display: none;
  }

  .site-nav-links {
    flex-direction: row;
    gap: 90px;
  }

  .site-nav a {
    min-height: 64px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
  }

  .site-nav a::before {
    display: none;
  }

  .mobile-header-search {
    display: none !important;
  }

  .home-popular {
    min-height: 1190.25px;
    padding: 100px 0;
  }

  .home-popular h1 {
    margin-bottom: 60px;
    font-size: 72px;
    line-height: 88px;
  }

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

  .home-popular .product-image {
    height: 392.25px;
  }

  .home-popular .product-category {
    font-size: 14px;
  }

  .home-popular .product-card h3 {
    min-height: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .home-popular .product-card .button {
    height: 54px;
    min-height: 54px;
    font-size: 16px;
  }

  .brand-intro {
    min-height: 302px;
    padding-bottom: 100px;
  }

  .brand-intro-grid {
    grid-template-columns: 513px 513px;
    align-items: start;
    gap: 110px;
  }

  .brand-intro h1 {
    font-size: 44px;
    line-height: 60px;
  }

  .brand-intro h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .process-section {
    height: 295.766px;
  }

  .process-desktop {
    display: block;
    height: 295.766px;
  }

  .process-desktop img {
    width: 100%;
    height: 295.766px;
    object-fit: cover;
  }

  .process-mobile {
    display: none;
  }

  .choose-section {
    min-height: 800px;
    padding: 100px 0 150px;
  }

  .choose-grid {
    grid-template-columns: 442.391px 228.645px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
  }

  .choose-copy h1 {
    font-size: 72px;
    line-height: 88px;
  }

  .choose-copy h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .choose-grid > img {
    display: block;
    width: 228.645px;
    height: 462.722px;
    align-self: center;
    object-fit: contain;
  }

  .choose-grid .category-links {
    align-self: center;
  }

  .about-section {
    min-height: 1285.156px;
    padding: 100px 0;
  }

  .about-molecule-left {
    top: -230px;
    left: 0;
    display: block;
    max-height: 400px;
  }

  .about-molecule-right {
    top: 235px;
    max-height: 550px;
  }

  .about-stage {
    grid-template-columns: 442px minmax(0, 1fr);
    align-items: start;
    gap: 60px;
  }

  .about-copy h1 {
    font-size: 72px;
    line-height: 88px;
  }

  .about-copy h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .about-collage {
    grid-template-columns: repeat(3, 191px);
    grid-auto-rows: 278px;
    gap: 30px;
  }

  .about-collage img {
    height: 278px;
  }

  .about-collage img:nth-child(2),
  .about-collage img:nth-child(5) {
    transform: translateY(-154px);
  }

  .about-benefits {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 84px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .about-benefits article {
    min-height: 250px;
    padding: 34px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 0;
  }

  .about-benefits article:first-child {
    padding-left: 0;
  }

  .about-benefits article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .reviews-section {
    min-height: 1164.203px;
    padding: 100px 0;
  }

  .reviews-molecule {
    top: 0;
    right: 0;
    left: auto;
    width: 322.969px;
    height: 220px;
  }

  .reviews-grid {
    grid-template-columns: 493px 493px;
    gap: 150px;
  }

  .reviews-visual {
    min-height: 522.781px;
  }

  .reviews-visual img {
    width: 493px;
  }

  .reviews-copy {
    padding-top: 175px;
  }

  .reviews-copy h1 {
    font-size: 72px;
    line-height: 88px;
  }

  .reviews-copy h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .review-list {
    min-height: 300px;
  }

  .review p {
    font-size: 22px;
    line-height: 32px;
  }

  .site-footer {
    min-height: 536px;
    padding: 120px 0;
  }

  .footer-payments {
    height: 79px;
    min-height: 79px;
    padding: 25px 0;
  }

  .footer-meta {
    min-height: 91px;
    padding: 30px 0;
  }

  .footer-meta .footer-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-molecule {
    top: auto;
    right: auto;
    bottom: -50px;
    left: 0;
    max-height: 400px;
    transform: none;
  }

  .site-footer .footer-container {
    grid-template-columns: repeat(4, 209px);
    gap: 100px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    margin-bottom: 92px;
  }

  .footer-column strong {
    margin-bottom: 50px;
  }

  .site-footer a {
    font-size: 20px;
    line-height: 30px;
  }

  .cookie-settings-trigger {
    width: 46px;
    height: 46px;
    min-height: 46px;
  }

  .cookie-settings-trigger svg {
    width: 42px;
    height: 42px;
  }

  .cookie-consent-panel {
    height: 403.094px;
    min-height: 0;
    max-height: calc(100svh - 32px);
    padding: 26px 55px 15px;
    font-size: 15px;
    line-height: 24.75px;
  }

  .cookie-consent-panel h2 {
    margin-bottom: 6px;
    font-size: 21px;
    line-height: 27.3px;
  }

  .cookie-category-grid {
    min-height: 96px;
    grid-template-columns: repeat(5, 1fr);
  }

  .cookie-category {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2px;
    font-size: 14px;
    text-align: center;
  }

  .cookie-consent-actions {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 15px;
  }

  .cookie-consent-actions > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cookie-consent-actions button {
    min-height: 44.797px;
    font-size: 14px;
  }

  .cookie-details-toggle {
    justify-self: start;
    padding: 0;
  }
}

@media (max-width: 639px) {
  .catalog-parity-search-page .footer-payments {
    height: 188px;
    min-height: 188px;
  }

  .verification-parity-page .footer-payments {
    height: 188px;
    min-height: 188px;
  }

  .not-found-parity-page .footer-payments {
    height: 188px;
    min-height: 188px;
  }

  .home-popular .product-category {
    margin: 15px 0 10px;
    font-size: 13px;
    line-height: 19.5px;
  }

  .home-popular .product-card h3 {
    min-height: auto;
    margin: 0;
  }

  .home-popular .product-price {
    margin: auto 0 15px;
  }

  .home-popular .product-card .button,
  .brand-intro .button {
    height: 45px;
    min-height: 45px;
    padding: 12px 18px;
    font-size: 14px;
    line-height: 21px;
  }

  .brand-intro h3 {
    margin-bottom: 20px;
  }

  .brand-intro .button {
    padding-inline: 31.1px;
  }
}

@media (max-width: 450px) {
  .contact-acceptance {
    min-height: 64px;
  }

  .contact-submit {
    padding-inline: 10%;
  }
}

/* 1.6 visual parity polish: shared signature, benefits and review navigation. */
.signature-mark {
  display: block;
  width: 56px;
  height: 60px;
  color: #078f88;
}

.signature-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.signature-mark-light {
  color: #fff;
}

.home-popular .signature-mark {
  margin: 0 auto 40px;
}

.about-copy .signature-mark {
  margin-bottom: 40px;
}

.services-reviews-heading .signature-mark,
.reviews-heading .signature-mark {
  margin: 0 auto 30px;
}

.about-benefit-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
}

.about-benefits article:nth-child(1) .about-benefit-icon { background: #f7cf5c; }
.about-benefits article:nth-child(2) .about-benefit-icon { background: #e890b3; }
.about-benefits article:nth-child(3) .about-benefit-icon { background: #70d4ca; }
.about-benefits article:nth-child(4) .about-benefit-icon { background: #a9a3ef; }

.about-benefit-icon img {
  width: 48px;
  height: 54px;
  filter: brightness(0) invert(1);
}

.reviews-top {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.reviews-heading h1 {
  margin: 0 0 20px;
  font-size: 38px;
  line-height: 46px;
}

.reviews-heading h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.reviews-bottom {
  margin-top: 50px;
  text-align: center;
}

.review-quote {
  display: block;
  margin: 0 auto 40px;
}

.reviews-bottom .review-list,
.services-reviews-bottom .review-list {
  min-height: 190px;
}

.reviews-bottom .review p,
.services-reviews-bottom .review p {
  max-width: 900px;
  margin: 0 auto 20px;
}

.reviews-bottom .review footer,
.services-reviews-bottom .review footer {
  justify-content: center;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}

.review-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  min-height: 52px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(29, 29, 27, 0.45);
  border-radius: 50%;
  background: transparent;
  color: #1d1d1b;
  cursor: pointer;
}

.review-arrow:hover {
  border-color: #1d1d1b;
  background: #1d1d1b;
  color: #fff;
}

.review-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.review-progress {
  display: flex;
  min-width: 68px;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  font-variant-numeric: tabular-nums;
}

.review-progress strong {
  font-size: 20px;
}

.review-progress span {
  color: var(--muted-ink);
  font-size: 13px;
}

.reviews-section .review-dots,
.services-reviews-section .review-dots {
  display: none;
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  background: #09ad9d;
  content: "";
}

@media (min-width: 1024px) {
  .brand-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px;
  }

  .about-stage {
    grid-template-columns: 493px minmax(0, 1fr);
    gap: 100px;
  }

  .about-benefits article {
    min-height: 326px;
    padding-top: 28px;
  }

  .reviews-section .reviews-top,
  .reviews-section .reviews-bottom {
    width: calc(100% - 128px);
    max-width: 1200px;
  }

  .reviews-top {
    display: grid;
    height: 522.781px;
    grid-template-columns: 525px 525px;
    align-items: center;
    gap: 150px;
  }

  .reviews-visual {
    min-height: 522.781px;
  }

  .reviews-visual img {
    width: 493px;
  }

  .reviews-heading {
    text-align: left;
  }

  .reviews-heading .signature-mark {
    margin: 0 0 40px;
  }

  .reviews-heading h1 {
    font-size: 72px;
    line-height: 88px;
  }

  .reviews-heading h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .reviews-bottom {
    margin-top: 60px;
  }

  .reviews-bottom .review-list,
  .services-reviews-bottom .review-list {
    min-height: 165px;
  }
}
