@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "Montserrat";
  src: url("/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Montserrat";
}

.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-size: 28px;
  font-weight: 800;
  color: #1d1d1f;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.header__logo:hover {
  color: #ff5c00;
}
.header__menu {
  display: flex;
  gap: 32px;
}
.header__menu a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}
.header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  transition: width 0.3s ease;
}
.header__menu a:hover {
  color: #ff5c00;
}
.header__menu a:hover::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__lang-toggle {
  background: #f5f5f7;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: background 0.3s ease;
}
.header__lang-toggle:hover {
  background: #ffede0;
}
.header__cta {
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.header__cta:hover {
  box-shadow: 0 6px 18px rgba(255, 92, 0, 0.35);
}

.header__burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.header__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1d1d1f;
  border-radius: 2px;
  transition: 0.3s;
}
.header__burger span:nth-child(1) {
  top: 0;
}
.header__burger span:nth-child(2) {
  top: 9px;
}
.header__burger span:nth-child(3) {
  bottom: 0;
}
.header__burger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

@media (max-width: 920px) {
  .header__burger {
    display: block;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    padding: 80px 24px;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease;
  }
  .header__nav.is-open {
    right: 0;
  }
  .header__menu {
    flex-direction: column;
    gap: 24px;
  }
}
.hero {
  width: 100%;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 50%, #ffe8d2 100%);
  padding: 80px 24px;
}
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero__content {
  flex: 1;
}
.hero__title {
  font-size: 48px;
  font-weight: 800;
  color: #1d1d1f;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #444;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
}
.hero__btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero__btn--alt {
  background: #f5f5f7;
  color: #333;
}
.hero__btn--alt:hover {
  background: #ffede0;
}
.hero__btn:not(.hero__btn--alt) {
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
}
.hero__btn:not(.hero__btn--alt):hover {
  box-shadow: 0 6px 18px rgba(255, 92, 0, 0.35);
}
.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 📱 Адаптив */
@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__subtitle {
    font-size: 16px;
    margin: 0 auto 24px;
  }
}
.services {
  padding: 100px 24px;
  background: #fff;
}
.services__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.services__title {
  font-size: 36px;
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 12px;
}
.services__subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-card {
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #ff5c00;
  margin-bottom: 12px;
}
.service-card__text {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* 📱 Адаптив */
@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.about {
  padding: 100px 24px;
  background: #fffaf6;
}
.about__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about__content {
  flex: 1;
}
.about__title {
  font-size: 34px;
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 20px;
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 24px;
}
.about__list {
  margin-bottom: 32px;
}
.about__list li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}
.about__btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.about__btn:hover {
  box-shadow: 0 6px 18px rgba(255, 92, 0, 0.35);
}
.about__image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about__image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

/* 📱 Адаптив */
@media (max-width: 992px) {
  .about__inner {
    flex-direction: column;
    text-align: center;
  }
  .about__list {
    text-align: left;
    max-width: 420px;
    margin: 0 auto 32px;
  }
}
.facts {
  padding: 90px 24px;
  background: linear-gradient(135deg, #fff7f0 0%, #ffe8d2 100%);
}
.facts__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.facts__title {
  font-size: 34px;
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 12px;
}
.facts__subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 60px;
}
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.fact-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.fact-card:hover {
  transform: translateY(-6px);
}
.fact-card__number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.fact-card__text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* 📱 Адаптив */
@media (max-width: 992px) {
  .facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .facts__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials {
  padding: 90px 24px;
  background: #fffaf6;
}
.testimonials__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.testimonials__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}
.testimonial-card__text {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}
.testimonial-card__author {
  font-weight: 600;
  color: #ff5c00;
}

@media (max-width: 920px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.why {
  padding: 100px 24px;
  background: #fff;
}
.why__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.why__title {
  font-size: 34px;
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 12px;
}
.why__subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.why-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.why-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #ff5c00;
  margin-bottom: 12px;
}
.why-card__text {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}
.timeline {
  padding: 100px 24px;
  background: #fff;
}
.timeline__inner {
  max-width: 900px;
  margin: 0 auto;
}
.timeline__title {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #1d1d1f;
}
.timeline__subtitle {
  font-size: 18px;
  text-align: center;
  color: #555;
  margin-bottom: 60px;
}
.timeline__steps {
  position: relative;
  padding-left: 40px;
  border-left: 3px solid #ff5c00;
}
.timeline__step {
  position: relative;
  margin-bottom: 40px;
}
.timeline__step:last-child {
  margin-bottom: 0;
}
.timeline__step::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #ff5c00, #ffb800);
}
.timeline__icon {
  position: absolute;
  left: -58px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.timeline__content {
  background: #fdfdfd;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.timeline__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1d1d1f;
}
.timeline__content p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .timeline__steps {
    padding-left: 24px;
  }
  .timeline__icon {
    left: -44px;
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
  }
  .timeline__content {
    padding: 16px;
  }
}
.faq {
  padding: 100px 24px;
  background: #fffaf6;
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #1d1d1f;
}
.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1d1d1f;
}
.faq__question .faq__icon {
  font-size: 22px;
  color: #ff5c00;
  transition: transform 0.3s;
}
.faq__question[aria-expanded=true] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__answer p {
  padding: 0 0 16px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
.faq__item.active .faq__answer {
  max-height: 300px;
}

.philosophy {
  padding: 100px 24px;
  background: #fff;
}
.philosophy__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__title {
  font-size: 34px;
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 24px;
}
.philosophy__lead {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.6;
}
.philosophy__text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer {
  background: #1d1d1f;
  color: #fff;
  padding: 60px 24px 30px;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  letter-spacing: 1px;
}
.footer__desc {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}
.footer__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffb800;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer ul li a:hover {
  color: #ff5c00;
}
.footer__contact p, .footer__contact a {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
}
.footer__social-links {
  display: flex;
  gap: 12px;
}
.footer__social-links a {
  display: inline-block;
  transition: transform 0.3s;
}
.footer__social-links a:hover {
  transform: scale(1.1);
}
.footer__social-links img {
  filter: invert(1);
}
.footer__bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #aaa;
}
.footer__bottom a {
  color: #aaa;
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.3s;
}
.footer__bottom a:hover {
  color: #ff5c00;
}

@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
  }
}
.services-grid {
  padding: 80px 24px;
  background: #fff;
}
.services-grid__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff5c00;
}
.service-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}
.service-card__btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
.service-card__btn:hover {
  box-shadow: 0 6px 16px rgba(255, 92, 0, 0.35);
}

@media (max-width: 992px) {
  .services-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid__inner {
    grid-template-columns: 1fr;
  }
}
/* === Hero Section === */
.page-hero {
  background: linear-gradient(135deg, #ffede0, #fff);
  padding: 100px 24px;
  text-align: center;
}
.page-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1d1d1f;
}
.page-hero__subtitle {
  font-size: 18px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === Services Grid === */
.services-grid {
  padding: 100px 24px;
  background: #fff;
}
.services-grid__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ff5c00;
}
.service-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.5;
}
.service-card__btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
.service-card__btn:hover {
  box-shadow: 0 6px 16px rgba(255, 92, 0, 0.35);
}

/* адаптив */
@media (max-width: 992px) {
  .services-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid__inner {
    grid-template-columns: 1fr;
  }
}
/* === Extra Info Section === */
.services-extra {
  padding: 100px 24px;
  background: #fffaf6;
}
.services-extra__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.services-extra h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1d1d1f;
}
.services-extra p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* === Pricing Section === */
.pricing {
  padding: 100px 24px;
  background: #fff;
}
.pricing__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.pricing h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #1d1d1f;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: #fdfdfd;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: center;
}
.pricing-card:hover {
  transform: translateY(-6px);
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ff5c00;
}
.pricing-card .pricing__price {
  font-size: 28px;
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing-card ul li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
}
.pricing-card .pricing__btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.pricing-card .pricing__btn:hover {
  box-shadow: 0 6px 18px rgba(255, 92, 0, 0.35);
}

.pricing-card--highlight {
  border: 2px solid #ffb800;
  transform: scale(1.05);
}

/* адаптив */
@media (max-width: 992px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}
/* === CTA Section === */
.cta {
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.cta__inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}
.cta__btn {
  display: inline-block;
  background: #fff;
  color: #ff5c00;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
}
.cta__btn:hover {
  background: #ffe6cc;
}

/* === Hero Section === */
.page-hero {
  background: linear-gradient(135deg, #ffede0, #fff);
  padding: 100px 24px;
  text-align: center;
}
.page-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1d1d1f;
}
.page-hero__subtitle {
  font-size: 18px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === Company Story === */
.about-story {
  padding: 100px 24px;
  background: #fff;
}
.about-story__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-story h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1d1d1f;
}
.about-story p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* === Values Section === */
.about-values {
  padding: 100px 24px;
  background: #fffaf6;
}
.about-values__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-values h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1d1d1f;
}
.about-values__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-values__list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 14px;
  font-weight: 500;
}

/* === Team Section === */
.about-team {
  padding: 100px 24px;
  background: #fff;
}
.about-team__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.about-team h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1d1d1f;
}
.about-team p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-member {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: center;
}
.team-member:hover {
  transform: translateY(-6px);
}
.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.team-member h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff5c00;
}
.team-member p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 992px) {
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-team__grid {
    grid-template-columns: 1fr;
  }
}
.contact-form {
  padding: 100px 24px;
  background: #fffaf6;
}
.contact-form__inner {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.contact-form h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  color: #1d1d1f;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  transition: border 0.3s;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #ff5c00;
  outline: none;
}
.contact-form .form-group input:invalid:focus,
.contact-form .form-group textarea:invalid:focus {
  border-color: red;
}
.contact-form__btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.contact-form__btn:hover {
  box-shadow: 0 6px 18px rgba(255, 92, 0, 0.35);
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.popup__content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.popup__content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1d1d1f;
}
.popup__content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}
.popup__content .popup__close {
  background: linear-gradient(90deg, #ff5c00, #ffb800);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.popup.is-visible {
  display: flex;
}

.page-privacy {
  background: #fff;
}

/* Hero Section */
.page-hero {
  background: linear-gradient(135deg, #ffede0, #fff);
  padding: 100px 24px;
  text-align: center;
}
.page-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1d1d1f;
}
.page-hero__subtitle {
  font-size: 18px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Privacy Content */
.privacy-content {
  padding: 80px 24px;
}
.privacy-content__inner {
  max-width: 960px;
  margin: 0 auto;
}
.privacy-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #1d1d1f;
  border-left: 4px solid #ff5c00;
  padding-left: 12px;
}
.privacy-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}
.privacy-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.privacy-content ul li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
}
.privacy-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5c00;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 70px 16px;
  }
  .page-hero__title {
    font-size: 28px;
  }
  .page-hero__subtitle {
    font-size: 16px;
  }
  .privacy-content {
    padding: 50px 16px;
  }
  .privacy-content h2 {
    font-size: 20px;
  }
  .privacy-content p, .privacy-content li {
    font-size: 15px;
  }
}
.page-terms {
  background: #fff;
}

.page-hero {
  background: linear-gradient(135deg, #ffede0, #fff);
  padding: 100px 24px;
  text-align: center;
}
.page-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1d1d1f;
}
.page-hero__subtitle {
  font-size: 18px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.terms-content {
  padding: 80px 24px;
}
.terms-content__inner {
  max-width: 960px;
  margin: 0 auto;
}
.terms-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #1d1d1f;
  border-left: 4px solid #ff5c00;
  padding-left: 12px;
}
.terms-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 70px 16px;
  }
  .page-hero__title {
    font-size: 28px;
  }
  .page-hero__subtitle {
    font-size: 16px;
  }
  .terms-content {
    padding: 50px 16px;
  }
  .terms-content h2 {
    font-size: 20px;
  }
  .terms-content p {
    font-size: 15px;
  }
}

/*# sourceMappingURL=main.css.map */
