body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
 background-color: #FDF8F5;
  overflow-x: hidden;
}


:root {
  --color-bg: #FDF8F5;
  --color-surface: #fffaf1;
  --color-text: #1a1a1a;
  --color-muted: #4f4a45;
  --color-accent: #ffc21a;
  --color-border: #1a1a1a;
  --font-main: "PT Mono", monospace;
  --font-accent: "Neucha", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background-color:  #FDF8F5;
  overflow-x: hidden;
}
h1 {
  font-family: "Neucha", cursive;
}
p{
   font-family: "PT Mono", monospace;
}
.site-header {
  width: 100%;

}

.header-container {
  background-color:  #FDF8F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  min-height: 108px;
  margin: 0 auto;
  padding: 18px 64px;
  gap: 32px;
}

.logo img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 58px;
}

.main-nav a {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-muted);
}

.main-nav a.is-active,
.main-nav a[aria-current="page"] {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.block1 {
  display: grid;
  grid-template-columns: minmax(317px, 610px) minmax(420px, 1fr);
  align-items: center;
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 64px 40px;
  position: relative;
  z-index: 2;
}

.block1_txt {
  position: relative;
  z-index: 1;
  max-width: 587px;
}

.block1_txt h1 {
  margin: 0 0 24px;
  font-family: var(--font-accent);
  font-size: clamp(48px, 4vw, 78px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.block1_txt p {
  margin: 0 0 36px;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
}

.block1_mark {
  display: inline;
  padding: 2px 8px 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent 22%, var(--color-accent) 22%, var(--color-accent) 88%, transparent 88%);
}

.btn_block1 {
  display: flex;
  gap: 33px;
}

.btn_block1 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn_block1 a:hover {
  transform: translateY(-1px);
}

.btn_primary {
  gap: 10px;
  background: var(--color-accent);
  box-shadow: 0 8px 18px rgba(255, 194, 26, 0.28);
}

.btn_secondary {
  min-width: 220px;
  background: #ffffff;
}

.paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.paw img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.block1_img {
padding-top:0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.dog_block1 {
  position: relative;
  z-index: -1;
  display: block;
  width: min(100%, 820px);
  height: auto;
  object-fit: contain;
}

.constructor {
  z-index: 3;
  position: relative;
  max-width: 1375px;
  margin: -90px auto 72px;
  padding: 0 32px;
}

.constructor__panel {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  width: 100%;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
  border-radius: 0 22px 22px 0;
  background: #ffffff;
}

.constructor-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 19px 24px 28px 10px;
  background: #ffffff;
}

.constructor-form__group {
  margin: 0;
}

.constructor-form__group--data {
  display: flex;
  flex-direction: column;
}

.constructor-form__title {
  margin: 0 0 18px;
  font-family: var(--font-accent);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.constructor-form__title span {
  font-family: var(--font-main);
  font-weight: 700;
}

.photo-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 120px;
  margin-left: 28px;
  gap: 20px;
  border: 1.5px dashed #ffc13a;
  border-radius: 16px;
  color: #77736f;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.photo-drop:hover,
.photo-drop.is-dragover {
  background: #fff8e6;
  border-color: #f0a900;
}

.photo-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.photo-drop__icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: url("../assets/icons/upload_photo.png") center / contain no-repeat;
}

.photo-drop__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  line-height: 1.18;
}

.photo-drop__copy strong {
  font-size: 13px;
  font-weight: 700;
}

.photo-drop__copy small {
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0 0 15px;
  font-size: 17px;
}

.field span {
  line-height: 1;
}

.field input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1.6px solid #1f1f1f;
  border-radius: 10px;
  background: #ffffff;
  color: #1a1a1a;
  font: 600 16px var(--font-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  border-color: #f0a900;
  box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.18);
}

.field input::placeholder {
  color: #6f7480;
  opacity: 1;
}

.field-row {
  display: grid;
  grid-template-columns: 170px 246px;
  gap: 14px;
}

.field--wide {
  width: 430px;
}

.field--wide:nth-of-type(3) input {
  font-size: 13px;
}

.passport-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  height: 54px;
  margin-top: 11px;
  gap: 12px;
  border: 1.7px solid #1f1f1f;
  border-radius: 15px;
  background: #ffc13a;
  color: #1a1a1a;
  font: 700 21px var(--font-main);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.passport-button:hover {
  transform: translateY(-1px);
  background: #ffca4f;
}

.passport-button img {
  width: 24px;
  height: 24px;
}

.constructor-preview {
  position: relative;
  min-width: 0;
  height: 675px;
  overflow: hidden;
  padding: 26px 17px 170px;
  background: #ffc13a;
}

.constructor-preview__title {
  position: relative;
  z-index: 2;
  margin: 0 0 19px 24px;
  font-family: var(--font-accent);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.bubble {
  position: absolute;
  z-index: 0;
  display: block;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255, 221, 129, 0.78);
}

.bubble--one {
  top: -21px;
  left: 22px;
  width: 140px;
  height: 132px;
}

.bubble--two {
  top: -17px;
  left: 315px;
  width: 130px;
  height: 128px;
}

.bubble--three {
  top: 112px;
  left: 162px;
  width: 139px;
  height: 139px;
}

.bubble--four {
  top: 120px;
  right: 20px;
  width: 132px;
  height: 132px;
}

.bubble--five {
  top: 253px;
  left: 21px;
  width: 139px;
  height: 139px;
}

.bubble--six {
  bottom: -25px;
  left: 154px;
  width: 144px;
  height: 224px;
}

.bubble--seven {
  right: -25px;
  bottom: 58px;
  width: 141px;
  height: 141px;
}

.constructor-preview::before,
.constructor-preview::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 221, 129, 0.78);
}

.constructor-preview::before {
  top: -28px;
  right: -66px;
  width: 148px;
  height: 148px;
}

.constructor-preview::after {
  right: -92px;
  bottom: 196px;
  width: 150px;
  height: 150px;
}

.doodle {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.doodle--rays {
display:none;
  top: 120px;
  left: 80px;
  width: 62px;
  height: 46px;
}

.doodle--rays span {
  position: absolute;
  display: block;
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: #050505;
}

.doodle--rays span:nth-child(1) {
  left: 8px;
  top: 16px;
  transform: rotate(-42deg);
}

.doodle--rays span:nth-child(2) {
  left: 29px;
  top: 5px;
  transform: rotate(-8deg);
}

.doodle--rays span:nth-child(3) {
  left: 53px;
  top: 0;
  transform: rotate(8deg);
}

.doodle--star {
display:none;
  top: 73px;
  right: 75px;
  width: 49px;
  height: 49px;
  transform: rotate(11deg);
}

.doodle--star::before {
  content: "\2606";
  position: absolute;
  inset: 0;
  color: #050505;
  font-family: Arial, sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 0.7;
}

.doodle--star::after {
    display: none;
  content: "";
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(circle at 5px 30px, #050505 0 3px, transparent 4px),
    radial-gradient(circle at 22px 5px, #050505 0 3px, transparent 4px),
    radial-gradient(circle at 51px 19px, #050505 0 3px, transparent 4px),
    radial-gradient(circle at 9px 52px, #050505 0 3px, transparent 4px),
    radial-gradient(circle at 61px 56px, #050505 0 3px, transparent 4px);
}

.tag-preview {
  position: absolute;
  left: 50%;
  top: 39%;
  z-index: 2;
  width: var(--preview-width, min(100%, 450px));
  max-width: 100%;
  aspect-ratio: 858 / 834;
  margin: 0;
  transform: translate(-50%, -50%);
  container-type: inline-size;
}

.tag-preview--small {
  --preview-width: min(100%, 360px);
  --content-left: 6%;
  --content-top: 50%;
  --content-width: 90%;
  --content-height: 49%;
  --photo-left: 1.5%;
  --photo-top: 19.5%;
  --photo-width: 26%;
  --photo-height: 68%;
  --text-left: 46%;
  --text-top: 43.5%;
  --text-width: 70%;
  --text-height: 54%;
  --breed-left: 1%;
  --breed-top: 60%;
  --phone-left: -3%;
  --phone-top: 114%;
  --name-size: clamp(12px, 2.7cqw, 15px);
  --text-size: clamp(10px, 3.3cqw, 13px);
  --phone-size: clamp(8px, 9.6cqw, 9px);
}

.tag-preview--medium {
  --preview-width: min(100%, 425px);
  --content-left: 6%;
  --content-top: 49.25%;
  --content-width: 89%;
  --content-height: 49%;
  --photo-left: 1.4%;
  --photo-top: 21.25%;
  --photo-width: 26%;
  --photo-height: 68%;
  --text-left: 46%;
  --text-top: 43.75%;
  --text-width: 71%;
  --text-height: 54%;
  --breed-left: 2%;
  --breed-top: 64%;
  --birthday-left: 21%;
  --birthday-top: 36%;
  --address-left: -19%;
  --address-top: 89.5%;
  --phone-left: -1%;
  --phone-top: 117%;
  --name-size: clamp(15px, 4.2cqw, 17px);
  --text-size: clamp(10px, 3.7cqw, 13px);
  --phone-size: clamp(9px, 10cqw, 11px);
}

.tag-preview--large {
  --preview-width: min(100%, 495px);
  --content-left: 5.5%;
  --content-top: 50%;
  --content-width: 100%;
  --content-height: 50%;
  --photo-left: 1.3%;
  --photo-top: 19%;
  --photo-width: 24%;
  --photo-height: 67%;
  --text-left: 42%;
  --text-top: 44%;
  --text-width: 72%;
  --text-height: 54%;
  --breed-left: 1%;
  --breed-top: 58.5%;
  --birthday-left: 17%;
  --birthday-top: 32%;
  --address-left: -18%;
  --address-top: 83.5%;
  --address-indent: 49%;
  --phone-left: -1%;
  --phone-top: 114%;
  --name-size: clamp(17px, 4.8cqw, 18px);
  --text-size: clamp(14px, 3.8cqw, 16px);
  --phone-size: clamp(9px, 10.6cqw, 12px);
}

.tag-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../assets/images/10.png") center / contain no-repeat;
  pointer-events: none;
}

.tag-preview__content {
  position: absolute;
  left: var(--content-left, 4%);
  top: var(--content-top, 26.5%);
  z-index: 3;
  display: block;
  width: var(--content-width, 100%);
  height: var(--content-height, 49%);
  overflow: hidden;
  padding: 0;
  border-radius: 9px;
  opacity: 0.95;
}

.tag-preview__photo {
  display: none;
  position: absolute;
  left: var(--photo-left, 2%);
  top: var(--photo-top, 21%);
  width: var(--photo-width, 24%);
  height: var(--photo-height, 90%);
  border-radius: 7px;
  object-fit: cover;
}

.tag-preview.has-photo .tag-preview__photo {
  display: block;
}

.tag-preview__text {
  position: absolute;
  left: var(--text-left, 47%);
  top: var(--text-top, 46.5%);
  display: block;
  width: var(--text-width, 70%);
  height: var(--text-height, 58%);
  min-width: 0;
  color: #565656;
  font-size: var(--text-size, clamp(12px, 3.6cqw, 16px));
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.tag-preview__line {
  position: absolute;
  left: var(--line-left, 0);
  top: var(--line-top, 0);
  display: block;
  width: var(--line-width, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-preview__line--name {
  --line-left: 0;
  --line-top: 5%;
  --line-width: 100%;
}

.tag-preview__line--birthday {
  --line-left: var(--birthday-left, 19%);
  --line-top: var(--birthday-top, 34%);
  --line-width: 100%;
}

.tag-preview__line--breed {
  --line-left: var(--breed-left, 1%);
  --line-top: var(--breed-top, 60%);
  --line-width: 100%;
}

.tag-preview__line--address {
  --line-width: 85%;
  --line-left: var(--address-left, -20%);
  --line-height: 2.3em;
  --line-top: var(--address-top, 86.5%);
  --address-first-indent: var(--address-indent, 57%);
  height: var(--line-height);
  line-height: 1;
  text-indent: var(--address-first-indent);
  white-space: normal;
  overflow-wrap: anywhere;
}

.tag-preview__line--phone {
  --line-left: var(--phone-left, -1%);
  --line-top: var(--phone-top, 116%);
  --line-width: 100%;
  font-size: var(--phone-size, clamp(9px, 10.6cqw, 13px));
  line-height: 1.12;
  white-space: pre-line;
}

.tag-preview__text strong,
.tag-preview__line--name {
  overflow: hidden;
  color: #1f1f1f;
  font-size: var(--name-size, clamp(15px, 4cqw, 17px));
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-preview__line--phone {
  overflow: visible;
  color: #1f1f1f;
  font-weight: 700;
  text-overflow: clip;
}

.tag-preview__text small,
.tag-preview__text span,
.tag-preview__line--birthday,
.tag-preview__line--breed,
.tag-preview__line--address {
  font-size: var(--text-size, clamp(12px, 3.6cqw, 16px));
}

.tag-preview__text .tag-preview__line--phone {
  font-size: var(--phone-size, clamp(9px, 10.6cqw, 12px));
}

.size-picker {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 26px;
  z-index: 2;
  min-width: 0;
  margin-top: 0;
  flex: 0 0 auto;
}

.size-picker h3 {
  margin: 0 0 26px 33px;
  font-family: var(--font-accent);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.size-picker__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.size-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 68px;
  border: 1.6px solid #1a1a1a;
  border-radius: 13px;
  background: transparent;
  color: #1a1a1a;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.size-option span {
  font-size: 16px;
  line-height: 1.25;
}

.size-option small {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1;
}

.size-option.is-active {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px #ffffff;
}

.size-option:hover {
  background: rgba(255, 255, 255, 0.18);
}

.constructor-gallery {
  --gallery-gap: clamp(12px, 1.5vw, 20px);
  --gallery-visible: 3;
  --gallery-slide-width: calc((100% - var(--gallery-gap) - var(--gallery-gap)) / 3);
  position: relative;
  max-width: 1360px;
  margin: 0 auto 32px;
  padding: 28px 92px 58px;
  border-radius: 20px;
  background: #fcf2e5;
}

.constructor-gallery__frame {
  overflow: hidden;
  border-radius: 18px;
  touch-action: pan-y;
}

.constructor-gallery__track {
  display: flex;
  gap: var(--gallery-gap);
  transition: transform 0.48s ease;
  will-change: transform;
}

.constructor-gallery__track.is-dragging {
  transition: none;
}

.constructor-gallery__slide {
  flex: 0 0 var(--gallery-slide-width);
  display: block;
  width: var(--gallery-slide-width);
  min-width: var(--gallery-slide-width);
  max-width: var(--gallery-slide-width);
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1.5px solid rgba(26, 26, 26, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.08);
  user-select: none;
  -webkit-user-drag: none;
}

.constructor-gallery__arrow {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 36px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 194, 26, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.constructor-gallery__arrow:hover {
  transform: translateY(-2px);
  background: #ffd34b;
  box-shadow: 0 12px 24px rgba(255, 194, 26, 0.34);
}

.constructor-gallery__arrow:focus-visible,
.constructor-gallery__dot:focus-visible {
  outline: 2px solid var(--color-border);
  outline-offset: 3px;
}

.constructor-gallery__arrow--prev {
  left: 28px;
  padding: 0 2px 3px 0;
}

.constructor-gallery__arrow--next {
  right: 28px;
  padding: 0 0 3px 2px;
}

.constructor-gallery__dots {
  position: absolute;
  right: 92px;
  bottom: 24px;
  left: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 10px;
}

.constructor-gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.constructor-gallery__dot.is-active {
  border-color: var(--color-border);
  background: var(--color-accent);
  transform: scale(1.12);
}

.block3_create {
  max-width: 1360px;
  margin: auto;
  padding: 20px 25px;
}

.block3_div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(16px, 3vw, 34px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 35px 25px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fcf2e5;
}

.txt_1_block3_create {
  min-width: 0;
}

.txt_1_block3_create picture {
  display: block;
}

.block3_image {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  width: min(100%, 1000px);
}

.block3_benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.block3_benefit img {
  flex: 0 0 clamp(44px, 4vw, 58px);
  width: clamp(44px, 4vw, 58px);
  height: clamp(44px, 4vw, 58px);
  object-fit: contain;
}

.block3_benefit p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  line-height: 1.12;
}

.block3_image2 {
  position: relative;
  top: 24px;
  width: clamp(132px, 15vw, 160px);
  height: auto;
}

.txt_1_block3_create h1 {
  margin: 0 0 8px;
  font-weight: 400;
}


.footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 64px 28px;
}

.footer__box {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(320px, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 24px;
  min-height: 124px;
  padding: 18px 34px 18px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 245, 163, 0.55) 0 52px, transparent 54px),
    radial-gradient(circle at 46% 88%, rgba(255, 245, 163, 0.42) 0 42px, transparent 44px),
    radial-gradient(circle at 78% 12%, rgba(255, 245, 163, 0.38) 0 62px, transparent 64px),
    #ffc533;
  overflow: visible;
}

.footer__dog {
  position: absolute;
  left: -30px;
  top: -20px;
  bottom: 0;
  z-index: 2;
  width: 260px;
  height: auto;
  transform: translateY(-22px);
}

.footer__cta {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.footer__cta h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  font-family: var(--font-accent);
  font-size: clamp(28px, 2.7vw, 44px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.footer__heart {
  position: absolute;
  top: -10px;
  right: -34px;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.footer__button img {
  display: block;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.footer__arrow {
  width: 35px;

  fill: none;
  stroke: var(--color-text);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__features {
  grid-column: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.footer__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 244, 166, 0.76);
}

.footer__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer__feature p {
  margin: 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.22;
}

.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
}

.footer__copyright a {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.footer__copyright img {
  display: block;
  width: 16px;
  height: 16px;
}
