/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* ===== HTML & BODY ===== */
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
}
/* ===== MEDIA & IMG ===== */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ===== LINKS ===== */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* ===== FORM ELEMENTS ===== */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
fieldset {
  border: none;
}
:root {
  /* 🎨 Цвета */
  --color-bg: #ffffff;
  --color-bg-accent: #ffefb3;
  --color-bg-dark: #21242a;
  --color-text: #21242a;
  --color-text-contrast: #ffffff;
  --color-muted: #8f8f8f;
  --color-input-bg: #fff7d9;
  --color-button: #ffc900;
  --color-button-dark: #21242a;
  --color-button-hover: #d38d00;
  --color-error: #ff0000;

  /* 📏 Типографика */
  --font-xxs: 12px;
  --font-xs: 14px; /* footer */
  --font-sm: 16px; /* buttons */
  --font-base: 18px;
  --font-lg: 26px; /* h3, подзаголовки */
  --font-xl: 40px; /* h2 */
  --font-xxl: 80px; /* h1 */

  /* 📦 Контейнеры и элементы */
  --container-width: 1280px;
  --radius-btn: 30px;
  --radius-blocks: 10px;

  /* 🕓 Анимации */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--font-base);
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
main {
  min-height: calc(100vh - 180px);
}
h1,
h2 {
  font-size: var(--font-xxl);
  line-height: 120%;
  letter-spacing: -3px;
  font-weight: 700;
  cursor: default;
}
h3 {
  font-size: var(--font-xl);
  line-height: 120%;
  font-weight: 700;
  letter-spacing: -3px;
  cursor: default;
}
h4 {
  font-size: var(--font-lg);
  line-height: 150%;
  font-weight: 700;
  cursor: default;
}
button,
a[button] {
  outline: none;
  display: inline-block;
  padding: 13px 50px;
  border-radius: var(--radius-btn);
  background: var(--color-button);
  border: 1 зч solid var(--color-button);
  font-weight: 700;
  font-size: var(--font-sm);
  line-height: 150%;
  cursor: pointer;
  text-align: center;
}
button[dark],
a[button][dark] {
  background: var(--color-button-dark);
  color: var(--color-text-contrast);
  border-color: var(--color-button-dark);
}
button:hover,
a[button]:hover {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: var(--color-text);
}
button:disabled,
a[button]:disabled {
  background: transparent;
  border: 1px solid var(--color-button-dark);
  color: var(--color-text);
  cursor: not-allowed;
}
[container] {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-right: clamp(20px, 5vw, 80px);
  padding-left: clamp(20px, 5vw, 80px);
}
[contacts] {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  align-items: flex-start;
  font-weight: 700;
  width: 100%;
}
[contacts] p {
  display: flex;
  gap: 15px;
}
@media (min-width: 1440px) {
  [container] {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  main {
    min-height: calc(100vh - 140px);
  }

  h1,
  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 30px;
    letter-spacing: 0;
  }

  h4 {
    font-size: 22px;
  }
}
/* HEADER */
header {
    position: sticky;
    top: 0;
    background: inherit;
    z-index: 1;
    transition: background 0.1s ease;
}
header div{
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
}
header nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}
header nav ul a:hover {
    color: var(--color-muted);
}
header [contacts] {
    border-top: 1px solid var(--color-muted);
}
header [contacts] p {
    margin-top: 30px;
}
/* Бургер */
header [burger] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
}
header [mobile_only] {
    display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
    header nav ul {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 20px 30px;
        margin-left: 20px;
    }
}
@media (max-width: 768px) {
    header div{
        padding: 12px 0;
    }

    /* Бургер */
    header [burger] {
        display: block;
    }

    header [burger] .top_line,
    header [burger] .bottom_line {
        transition: transform 0.4s ease,
        opacity 0.4s ease;
        transform-origin: center;
    }

    /* При открытии */
    header.active {
        background: var(--color-bg-accent);
        font-size: 22px;
    }

    .active [burger] .top_line {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .active [burger] .bottom_line {
        transform: rotate(-45deg) translateX(21px) scaleX(-2);
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-accent);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        z-index: 100;
        padding: 0 5vw;
    }

    nav.open {
        max-height: calc(100vh - 60px);
        overflow: scroll;
        padding: 40px 5vw 30px;
    }

    nav ul {
        flex-direction: column;
        gap: 40px;
    }

    header [mobile_only] {
        display: inline-block;
    }
}
/* HERO */
[hero] {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
}
[hero] div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-basis: 66%;
}
[hero] div span {
  font-weight: 700;
}
[hero] [button] {
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  [hero] img {
    margin-left: auto;
  }

  [hero] div {
    position: absolute;
    width: 69%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
  }
}
@media (max-width: 768px) {
  [hero] {
    margin-top: 40px;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 0;
  }

  [hero] img {
    order: 1;
    width: 360px;
    max-width:100%;
    height: auto;
  }
  [hero] div {
    order: 2;
    gap: 10px;
    flex-basis: 100%;
  }

  [hero] [button] {
    margin-top: 10px;
    width: 100%;
  }
}
/* O NAS */
#about_us {
  background: var(--color-bg-dark);
  color: var(--color-text-contrast);
  padding: 40px 0;
}
#about_us [container] div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 30px 0;
}
#about_us [container] div:not(:first-child) {
  border-top: 1px solid var(--color-text-contrast);
}
#about_us [container] div:first-child p {
  font-size: var(--font-lg);
  line-height: 150%;
}
@media (max-width: 768px) {
  #about_us [container] div {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  padding-top: 70px;
  padding-bottom: 70px;
}
#services h2 {
  grid-column: 1 / -1;
}
#services div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  #services {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #services h2 {
    grid-column: auto;
  }
}
#benefits {
  background: var(--color-bg-accent);
  padding: 40px 0;
}
#benefits [container] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
#benefits [container] div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#benefits [container] h2 {
  margin-top: 30px;
  margin-bottom: 22px;
}
#benefits img {
  margin: auto 77px;
}
#benefits article {
  padding: 30px 0;
}
#benefits article h3,
#benefits article > span
{
  margin-bottom: 20px;
  display:block;
}
#benefits article h4 {
  margin-bottom: 15px;
}
#benefits article:not(:last-child) {
  border-bottom: 1px solid var(--color-text);
}
@media (max-width: 768px) {
  #benefits {
    background: var(--color-bg-accent);
    padding: 40px 0 10px;
  }
  #benefits [container] {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #benefits [container] h2 {
    margin: 0;
  }
  #benefits img {
    margin: 55px auto 25px;
    width: 250px;
    height: 250px;
  }
  #benefits article h3,
  #benefits article > span
  {
    margin-bottom: 15px;
  }
}
#faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  padding-top: 70px;
  padding-bottom: 70px;
}
#faq h2 {
  grid-column: 1 / -1;
}
#faq + div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
#faq .js_accordion {
  border-bottom: 1px solid var(--color-text);
  padding: 15px 0;
}
#faq .js_accordion div {
  display: flex;
  justify-content: space-between;
}
#faq .js_accordion-btn {
  padding: 0;
  background: transparent;
  border: none;
  transform: rotate(0deg);
  transition: transform var(--transition-base);
}
#faq .js_accordion-btn img{
  min-width: 26px;
  min-height: 26px;
}
#faq .open .js_accordion-btn {
  transform: rotate(45deg);
}
#faq .js_accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: all var(--transition-base);
}
#faq .open .js_accordion-content {
  margin-top: 15px;
  max-height: 300px;
}
@media (max-width: 768px) {
  #faq {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #faq h2 {
    margin-bottom: 30px;
  }

  #faq .open .js_accordion-content {
    margin-top: 0;
    max-height: 150px;
  }
}
#price {
  background: var(--color-bg-dark);
  color: var(--color-text-contrast);
}
#price [container] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-top: 70px;
  padding-bottom: 70px;
  align-items: baseline;
}
#price h2 {
  grid-column: span 2;
}
#price [container] > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 30px;
  background: var(--color-bg);
  border-radius: var(--radius-blocks);
  color: var(--color-text);
  height: 100%;
}
#price [container] > div div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px 0;
  width: 100%;
}
#price [container] > div div img {
  grid-row: span 2;
  margin-left: auto;
  align-self: center;
}
#price [container] div ul {
  padding: 30px 0 30px 40px;
  border-top: 1px solid var(--color-muted);
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
#price [container] div ul li::before {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJ/SURBVHgBzVVLiFJRGD6OL3zgaCpKaoWvUAmCGCQYaBDfuBFG2rQZGBI3Dm1yklGCgqSNuCmMFoG16L0YUFQiekDtWrWoAWsZBaITQuCr7w5zxC7qCHOD+eBwznde33//+51zCPnP4BEO4fP5bDweL4imAuVdrVZ7KyAcwe/3b6LKokgYrtVqt1BxI+D1eh2oblEuEomaLpfrHtNeIByAz+dfG+cqlepJOp3+xYmAx+M5ORwOVylH9MRut9+m/NACQqGQyb2EcqVS+TCTyXzjRCAUChkR/aUxsaFarb45PudQAoPBYA2VnHKZTPa0UCh84UQgGo2qEX2KcrFYTMxmc4497x+bhsNhd7/fPw1XfCyXy1/JDHQ6nStM0JRLJJJnuVzu00QBHJJziOZur9dbYni3220jvycqlcrupM0DgcAxzF+jHAERg8FwfdLcvRTheKdRlmgn2ovYIEOm4yrKcUo0Gs2LfD7/eaoAftY2ewB964zH2f2RSMQA8cuUI/cDqVS6SaZgT6Berz9A1O9ZY0rYbou9AOmLo1JRrlAoHhWLxZ2ZAvvIsgcR6XowGFymHCZgTu3oWsCp/W0ymbJkBkYC1Wr1NarH7Alw1Z1YLCZi2jABs9nIeThU9+Gc72Qegf2ImR/bHe9D6s602+0NfMl50JFzcKh+uN3uG+QA8MdJo9Fo2my2PxDyseZdQFlB0TBEIBAQi8WygTvnAzkAk160BUT7Bi5anrZIp9M9L5VKq2QOTLoqBsj7RaSmOWmBXq/fcTgccTInpr7JcMxZiLyELU8xHI7pGI3GbafTGU8mk7tkTsx89FOp1GKr1VqRy+VSq9X6KpFI/CRHDX8B/A7Co8wf1iIAAAAASUVORK5CYII=");
  position: absolute;
  left: 0;
}
#price [container] div ul li[additional]::before {
  content: url("data:image/svg+xml,%3csvg%20width='26'%20height='26'%20viewBox='0%200%2026%2026'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath%20d='M0%2026H26V0H0V26Z'%20fill='url(%23pattern0_59_784)'/%3e%3cdefs%3e%3cpattern%20id='pattern0_59_784'%20patternContentUnits='objectBoundingBox'%20width='1'%20height='1'%3e%3cuse%20xlink:href='%23image0_59_784'%20transform='scale(0.00625)'/%3e%3c/pattern%3e%3cimage%20id='image0_59_784'%20width='160'%20height='160'%20preserveAspectRatio='none'%20xlink:href='data:image/png;base64,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'/%3e%3c/defs%3e%3c/svg%3e");
}
#price div div ul li[previous] {
  font-weight: 700;
}
#price [button] {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: auto;
}
#price h3 {
  letter-spacing: 0;
}
#price span {
  text-align: right;
  font-size: 26px;
}
#price [container] div:hover {
  background: var(--color-bg-accent);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #price [container] {
    grid-template-columns: 1fr;
  }

  #price h2 {
    grid-column: auto;
  }

  #price span {
    text-align: left;
  }

}
@media (max-width: 768px) {
  #price [container] {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 30px;
  }

  #price h2 {
    grid-column: auto;
  }

  #price span {
    text-align: left;
    margin-top: -20px;
    font-size: 22px;
  }

  #price [container] > div {
    gap: 10px;
  }

  #price [container] > div div {
    gap: 10px;
  }

  #price [container] div img {
    width: 60px;
    height: 60px;
  }

  #price [container] div ul {
    padding: 20px 0 10px 40px;
    gap: 15px;
  }
}
#contact {
    padding-top: 70px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
#contact h3 {
    letter-spacing: 0;
}
#contact div[form] {
    grid-column: 2 / 4;
    background: var(--color-bg-accent);
    border-radius: var(--radius-blocks);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}
#contact fieldset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}
#contact label {
    width: 100%;
}
#contact input,
#contact textarea {
    width: 100%;
    background: var(--color-input-bg);
    border: 1px solid var(--color-input-bg);
    border-radius: var(--radius-blocks);
    margin-top: 6px;
    padding: 10px 15px;
}
#contact textarea {
    resize: none;
}
#contact input::placeholder,
#contact textarea::placeholder {
    color: var(--color-muted);
    opacity: 1;
}
#contact [custom-checkbox] {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 0.5em;
    font-size: 12px;
    line-height: 130%;
}
#contact [custom-checkbox] input[type='checkbox'] {
    display: none;
}
#contact [custom-checkbox] span {
    width: 14px;
    height: 14px;
    border: 2px solid var(--color-text-contrast);
    background: var(--color-text-contrast);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}
#contact [custom-checkbox] input[type='checkbox']:checked + span {
    background-color: var(--color-text);
}
#contact div[form] a {
    text-decoration: underline;
}
@media (min-width: 768px) and (max-width: 1024px) {
    #contact {
        grid-template-columns: 1fr;
    }

    #contact div[form] {
        grid-column: auto;
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    #contact div[form] h3 {
        margin-bottom: 30px;
    }

    #contact button {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    #contact {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #contact div[form] {
        grid-column: auto;
        grid-template-columns: 1fr;
        margin-top: 30px;
        padding: 20px;
    }

    #contact div[form] h3 {
        margin-bottom: 30px;
    }

    #contact input,
    #contact textarea {
        margin-top: 10px;
    }

    #contact button {
        margin-top: 30px;
    }
}
footer {
  background: var(--color-bg-dark);
  color: var(--color-text-contrast);
  padding: 30px 0;
  font-size: var(--font-xs);
  text-align: center;
}
footer span {
  color: var(--color-button);
}
@media (max-width: 768px) {
  footer {
    font-size: var(--font-xxs);
    padding: 22px 0;
  }
}
[not_found] main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[not_found] main p {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  [not_found] main {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-direction: column;
    align-items: center;
  }

  [not_found] main img {
    order: 1;
    width: 240px;
    height: 240px;
  }

  [not_found] main div {
    order: 2;
    display: flex;
    flex-direction: column;
  }

  [not_found] main p {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
[text_page] main {
  padding-top: 70px;
  padding-bottom: 70px;
}
[text_page] main picture {
  display: block;
  border-radius: var(--radius-blocks);
  overflow: hidden;
}
[text_page] main h1 {
  margin-top: 70px;
}
[text_page] main p {
  margin-top: 30px;
}
@media (max-width: 768px) {
  [text_page] main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  [text_page] main picture {
    height: 360px;
  }
  [text_page] main h1 {
    margin-top: 40px;
  }
  [text_page] main p {
    margin-top: 20px;
  }
}
.js_accordion h4
{
    cursor:pointer;
}