:root {
  --font-family: "Inter", sans-serif;
  --second-family: "JetBrains Mono", sans-serif;

  --accent-color: #48679e;
  --white-color: #fff;
  --dark-color: #1b1b1e;

  --text-secondary: #686b72;
  --bg-secondary: #ece4e2;
  --bg-main: #f2eceb;
  --border-color: #e3e1e4;
}
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea {
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

fieldset {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: .3s ease;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
}.header {
  position: relative;
  background: var(--white-color);
  border-bottom: 1px solid var(--border-color);
}

.header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
  padding: 18px 0;
}

.logo {
  grid-column: 1;
}

.logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.header__panel {
  display: contents;
}

.header__nav {
  grid-column: 2;
  justify-self: center;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__list a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: 0.3s ease;
}

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

.header__list li:first-child a {
  color: var(--accent-color);
}

.header__btn {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s ease;
}

.header__btn:hover {
  opacity: 0.85;
}

.header__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header__burger {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-color);
  border-radius: 2px;
  transition: 0.3s ease;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header__list {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header__row {
    display: flex;
    justify-content: space-between;
  }

  .header__burger {
    display: flex;
  }

  .header__panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 8px 20px 24px;
    background: var(--white-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 16px 24px rgba(27, 27, 30, 0.08);
    z-index: 40;
  }

  .header__panel.is-open {
    display: flex;
  }

  .header__nav {
    justify-self: unset;
  }

  .header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header__list li {
    width: 100%;
    border-top: 1px solid var(--border-color);
  }

  .header__list a {
    display: block;
    padding: 14px 0;
  }

  .header__btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 26px;
  }
}
.hero {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__content {
  max-width: 500px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 20px;
  border-radius: 9999px;
  background: rgba(72, 103, 158, 0.12);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
}

.hero__title {
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark-color);
}

.hero__title span {
  color: var(--accent-color);
}

.hero__text {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 500;
}

.hero__btn--dark {
  background: var(--accent-color);
  color: var(--white-color);
  transition: 0.3s ease;
}

.hero__btn--dark:hover {
  opacity: 0.85;
}

.hero__btn--outline {
  background: var(--white-color);
  color: var(--dark-color);
  border: 1px solid var(--border-color);
  transition: 0.3s ease;
}

.hero__btn--outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.hero__media {
  flex-shrink: 0;
}

.hero__media img {
  filter: drop-shadow(0 24px 40px rgba(27, 27, 30, 0.15));
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 0;
  }

  .hero__row {
    gap: 32px;
  }

  .hero__content {
    max-width: 440px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__media img {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0;
  }

  .hero__row {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media img {
    width: 260px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__btn {
    justify-content: center;
    width: 100%;
  }

  .hero__media img {
    width: 200px;
  }
}
.products {
  padding: 80px 0;
  background: var(--bg-main);
}

.products__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.products__title {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
}

.products__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}

.products__link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 22px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s ease;
}

.products__link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.product-card {
  padding: 12px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 16px 32px rgba(27, 27, 30, 0.08);
  transform: translateY(-2px);
}

.product-card__media {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-card__media img {
  width: 100%;
}

.product-card__body {
  padding: 0 6px 10px;
}

.product-card__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
}

.product-card__text {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
}

@media (max-width: 1024px) {
  .products {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .products__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 48px 0;
  }

  .products__title {
    font-size: 24px;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }
}
.story {
  padding: 80px 0;
  background: var(--bg-secondary);
  text-align: center;
}

.story__title {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
}

.story__subtitle {
  max-width: 480px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-secondary);
}

.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.story__card {
  padding: 28px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-align: left;
}

.story__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(72, 103, 158, 0.12);
  color: var(--accent-color);
}

.story__card-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
}

.story__card-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .story {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .story {
    padding: 48px 0;
  }

  .story__title {
    font-size: 24px;
  }

  .story__card {
    padding: 24px;
  }
}
.quality {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.quality__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.quality__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-color);
}

.quality__label {
  flex-shrink: 0;
  font-family: var(--second-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.quality__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.quality__card {
  padding: 24px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
}

.quality__stage {
  display: block;
  margin-bottom: 14px;
  font-family: var(--second-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.quality__card-title {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
}

.quality__card-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .quality {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .quality__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .quality {
    padding: 48px 0;
  }

  .quality__title {
    font-size: 22px;
  }

  .quality__grid {
    grid-template-columns: 1fr;
  }
}
.company {
  padding: 0 0 80px;
  background: var(--bg-secondary);
}

.company__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.company__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white-color);
  padding: 24px;
  border-radius: 16px;
}

.company__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-family: var(--second-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.company__title {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.company__text {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.company__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.company__info strong {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
}

.company__info span {
  font-family: var(--second-family);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.company__map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  background: var(--border-color);
  border-radius: 14px;
  overflow: hidden;
}

.company__map-expand {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--white-color);
  border-radius: 8px;
  color: var(--dark-color);
  box-shadow: 0 4px 10px rgba(27, 27, 30, 0.12);
}

.company__map-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--white-color);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-color);
  box-shadow: 0 4px 10px rgba(27, 27, 30, 0.12);
}

.company__btn {
  padding: 14px 28px;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  margin-top: auto;
}

.company__btn:hover {
  opacity: 0.85;
}

.company__media img {
 width: 100%;
 max-height: 700px;
 object-fit: fill;
}


@media (max-width: 1024px) {
  .company {
    padding-bottom: 60px;
  }

  .company__row {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .company__row {
    grid-template-columns: 1fr;
  }

  .company__content {
    max-width: 100%;
  }

  .company__media {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .company {
    padding-bottom: 48px;
  }

  .company__title {
    font-size: 24px;
  }
}
.footer {
  padding: 64px 0 0;
  background: var(--white-color);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo img {
  height: 26px;
}

.footer__text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.footer__col-title {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: 0.3s ease;
}

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

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .footer {
    padding-top: 48px;
  }

  .footer__row {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
  }
}
.catalog {
  padding: 64px 0 80px;
  background: var(--bg-secondary);
}

.catalog__title {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-color);
}

.catalog__subtitle {
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 15px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #86868b;
}

.catalog__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-card {
  display: flex;
  gap: 32px;
  padding: 24px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(27, 27, 30, 0.05);
}

.catalog-card__media {
  flex-shrink: 0;
  
  padding: 10px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: clamp(20px, 2vw, 40px);
}

.catalog-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.catalog-card__title {
  margin-bottom: 4px;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--dark-color);
}

.catalog-card__subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}

.catalog-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 7px 14px;
  background: var(--bg-secondary);
  color: var(--accent-color);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.catalog-card__specs {
  display: flex;
  flex-direction: column;
}

.catalog-card__specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  padding: 14px 0;
}

.catalog-card__specs-row:first-child {
  padding-top: 0;
}

.catalog-card__specs-row:last-child {
  padding-bottom: 0;
}

.catalog-card__specs-row + .catalog-card__specs-row {
  border-top: 1px solid var(--border-color);
}

.catalog-card__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.catalog-card__spec-label {
  font-family: var(--second-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.catalog-card__spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
}

@media (max-width: 1024px) {
  .catalog {
    padding: 56px 0 60px;
  }
}

@media (max-width: 640px) {
  .catalog-card {
    flex-direction: column;
  }

  .catalog-card__media {
    width: 100%;
    height: 200px;
  }

  .catalog-card__head {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .catalog {
    padding: 48px 0 48px;
  }

  .catalog__title {
    font-size: 26px;
  }

  .catalog-card__specs-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.verify {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.verify__head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.verify__title {
  margin-bottom: 16px;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-color);
}

.verify__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.verify__card {
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 32px;
  background: var(--white-color);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(27, 27, 30, 0.06);
}

.verify__label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--second-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.verify__input {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 18px;
  background: var(--bg-secondary);
  border-radius: 12px;
  font-family: var(--second-family);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark-color);
}

.verify__input::placeholder {
  color: var(--text-secondary);
}

.verify__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.verify__submit:hover {
  opacity: 0.85;
}

.verify__info {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white-color);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(27, 27, 30, 0.06);
}

.verify__info-text {
  flex: 1;
}

.verify__info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
}

.verify__info-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.verify__info-media {
  position: relative;
  flex-shrink: 0;
  width: 300px;
}

.verify__info-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(27, 27, 30, 0.12);
}

.verify__info-tag {
  position: absolute;
  bottom: -10px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #e0524a;
  color: var(--white-color);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(224, 82, 74, 0.3);
}

@media (max-width: 1024px) {
  .verify {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .verify__title {
    font-size: 30px;
  }

  .verify__card,
  .verify__info {
    padding: 24px;
    border-radius: 20px;
  }

  .verify__info {
    flex-direction: column;
    text-align: center;
  }

  .verify__info-title {
    justify-content: center;
  }

  .verify__info-media {
    width: 130px;
  }
}

@media (max-width: 480px) {
  .verify {
    padding: 48px 0;
  }

  .verify__title {
    font-size: 26px;
  }

  .verify__card,
  .verify__info {
    padding: 20px;
  }
}

/* ============================================================
   Helveon engine additions — absent from the static design.
   front/ is a frozen source of truth, so engine-only styles
   (active nav state, verification result, privacy page,
   product detail) live here.
   ============================================================ */

/* Design tinted the first nav item; the engine marks the
   current page link with .is-active instead. */
.header__list li:first-child a {
  color: var(--text-secondary);
}

.header__list a.is-active {
  color: var(--accent-color);
}

/* ── Verification result (API flow) ── */
.verify__result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
}

.verify__result-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
}

.verify__result-icon svg {
  width: 18px;
  height: 18px;
}

.verify__result-body strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--second-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.verify__result-body span {
  display: block;
  opacity: 0.85;
}

.verify__result--success {
  background: rgba(46, 125, 50, 0.09);
  color: #2e6b34;
}

.verify__result--warning {
  background: rgba(176, 108, 8, 0.09);
  color: #8a5a10;
}

.verify__result--danger {
  background: rgba(198, 50, 44, 0.09);
  color: #a8322d;
}

/* ── Product detail page (reuses catalog-card) ── */
.catalog__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  transition: 0.3s ease;
}

.catalog__back:hover {
  opacity: 0.75;
}

.catalog-card__descr {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ── Privacy Policy page ── */
.privacy {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.privacy__card {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 48px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(27, 27, 30, 0.06);
}

.privacy__title {
  margin-bottom: 8px;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-color);
}

.privacy__updated {
  display: block;
  margin-bottom: 28px;
  font-family: var(--second-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.privacy__section {
  margin-bottom: 26px;
}

.privacy__section:last-child {
  margin-bottom: 0;
}

.privacy__section h2 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
}

.privacy__section p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.privacy__section p + p {
  margin-top: 10px;
}

.privacy__section ul {
  margin: 10px 0 0;
  padding-left: 20px;
  list-style: disc;
}

.privacy__section li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .privacy {
    padding: 48px 0;
  }

  .privacy__card {
    padding: 24px;
    border-radius: 20px;
  }

  .privacy__title {
    font-size: 28px;
  }
}
