@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #f9f9f9;
  width: 100%;
  overflow-x: hidden;
}

section.underlined {
  border-bottom: 18px solid #ff8400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
}
.title_underlined::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 180px;
  height: 3px;
  background: #ff8400;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn--primary {
  background: #ff8400;
}
.btn--primary:hover {
  background: rgb(204, 105.6, 0);
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: #ff8400;
  border: 2px solid #ff8400;
}
.btn--secondary:hover {
  background: #ff8400;
  color: white;
}
.btn--tertiary {
  background: #ff8400;
  color: white;
}
.btn--tertiary:hover {
  background: rgb(204, 105.6, 0);
}
.btn--white {
  background: white;
  color: #ff8400;
}
.btn--white:hover {
  background: #f5f5f5;
}

[class*=animate-] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

[class*=animate-].animate-in {
  opacity: 1;
  will-change: auto;
}

.animate-fade-in-left {
  transform: translateX(-50px);
}
.animate-fade-in-left.animate-in {
  transform: translateX(0);
}

.animate-fade-in-right {
  transform: translateX(50px);
}
.animate-fade-in-right.animate-in {
  transform: translateX(0);
}

.animate-fade-in-up {
  transform: translateY(50px);
}
.animate-fade-in-up.animate-in {
  transform: translateY(0);
}

.animate-fade-in-down {
  transform: translateY(-50px);
}
.animate-fade-in-down.animate-in {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [class*=animate-] {
    transition: opacity 0.3s ease;
    transform: none !important;
    will-change: opacity;
  }
  [class*=animate-].animate-in {
    transform: none !important;
    will-change: auto;
  }
}
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.header__logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.header__logo img {
  max-height: 40px;
  max-width: 100%;
}
.header__logo span {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__contacts a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__contacts a:hover {
  color: #ff8400;
}
.header__phone {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  min-width: 160px;
}
.header__email {
  font-size: 14px;
  color: #666;
}
.header__socials {
  display: flex;
  gap: 10px;
}
.header__socials .social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.header__socials .social-icon:hover {
  transform: scale(1.1);
}
.header__socials .social-icon img {
  width: 100%;
}
.header__bottom {
  background: #666;
  padding: 0;
}
.header__bottom .container {
  padding: 0 20px;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li {
  flex: 1;
}
.nav__link {
  display: block;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: lowercase;
  transition: background-color 0.3s ease;
  text-align: center;
}
.nav__link:hover, .nav__link.active {
  background-color: #ff8400;
}
.nav__link.active:hover {
  background-color: rgb(204, 105.6, 0);
}

.hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  padding: 60px 20px;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__bottom {
  position: relative;
  min-height: 390px;
}
.hero__image {
  width: 400px;
  position: absolute;
  top: -36px;
  left: 0;
  z-index: 2;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__right {
  margin: 18px 0 0 200px;
  position: relative;
  z-index: 1;
}
.hero__right h2,
.hero__right h3,
.hero__right .hero__description {
  padding: 0 24px 18px 218px;
}
.hero__right .hero__title h2 {
  margin-bottom: 0;
}
.hero__title {
  padding: 0 24px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 18px;
}
.hero__title h2 {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  background: #ff8400;
  border-radius: 0 25px 25px 0;
  padding-right: 24px;
  padding-bottom: 0;
  white-space: nowrap;
}
.hero__title .btn {
  font-weight: 700;
  margin-left: auto;
}
.hero__subtitle {
  font-size: 32px;
  font-weight: 400;
  text-transform: lowercase;
}
.hero__description {
  background: linear-gradient(transparent 8%, #c3c3c3);
  border-radius: 0 34px 34px 34px;
  padding-right: 18px;
}
.hero__description p:not(:last-of-type) {
  margin-bottom: 18px;
}

.product {
  padding: 80px 0;
}
.product__inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.product__left {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
.product__description {
  margin-bottom: 24px;
}
.product__description p {
  margin-bottom: 18px;
}
.product__description p:last-child {
  margin-bottom: 0;
}
.product__image {
  flex: 1;
  max-width: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.product__image img {
  width: 100%;
  height: auto;
  display: block;
}

.application {
  padding: 80px 0 0 0;
  position: relative;
}
.application__inner {
  padding-bottom: 60px;
}
.application__description p {
  margin-bottom: 20px;
}
.application__description p:last-child {
  margin-bottom: 0;
}
.application__description h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ff8400;
  margin: 30px 0 20px 0;
}

.section-image {
  height: 320px;
  background-position: center;
  background-size: cover;
}

.discounts {
  padding: 80px 0;
}
.discounts__inner {
  text-align: center;
}
.discounts__title {
  text-align: left;
  margin-bottom: 86px;
}
.discounts__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
  max-width: 765px;
  margin-left: auto;
  margin-right: auto;
}
.discounts__note {
  font-size: 18px;
  font-weight: 500;
  margin-top: 40px;
}

.discount-card {
  background: white;
  border: 2px solid #ff8400;
  border-radius: 25px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.discount-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 132, 0, 0.2);
}
.discount-card--popular {
  background: #ff8400;
  color: white;
  transform: scale(1.05);
}
.discount-card--popular .discount-card__badge {
  background: white;
  color: #ff8400;
}
.discount-card--popular .discount-card__label {
  color: white;
  text-transform: uppercase;
}
.discount-card--popular .discount-card__price {
  color: white;
}
.discount-card--popular:hover {
  transform: scale(1.05) translateY(-5px);
}
.discount-card__badge {
  background: #ff8400;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 20px auto;
}
.discount-card__label {
  font-size: 14px;
  color: #ff8400;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.discount-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}
.discount-card .btn {
  width: 100%;
  font-size: 16px;
  padding: 12px 20px;
}

.delivery {
  padding: 80px 0;
  background-color: #eee;
}
.delivery__inner {
  text-align: center;
}
.delivery__title {
  text-align: left;
  margin-bottom: 48px;
}
.delivery__description {
  max-width: 800px;
  margin: 0 auto 24px auto;
}
.delivery__description p {
  font-size: 18px;
}
.delivery__partners {
  max-width: 900px;
  margin: 0 auto;
}
.delivery__partners-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 48px;
}
.delivery__partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.delivery__partners-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 120px;
  background: #ff8400;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.partner__logo {
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner__logo img {
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
}
.partner__text {
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  font-weight: 500;
}

.certificate {
  padding: 80px 0;
}
.certificate__inner {
  text-align: center;
}
.certificate__title {
  text-align: left;
  margin-bottom: 48px;
}
.certificate__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}
.certificate__image {
  max-width: 400px;
  width: 100%;
}
.certificate__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.certificate__description {
  max-width: 500px;
}
.certificate__description p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  font-weight: 500;
}

.richtext {
  padding: 40px 0;
  background: white;
}
.richtext h2, .richtext h3, .richtext h4 {
  font-weight: 500;
}
.richtext h2 {
  margin-bottom: 18px;
}
.richtext p, .richtext ul, .richtext ol, .richtext h3, .richtext h4 {
  margin-bottom: 9px;
}
.richtext ul, .richtext ol {
  padding-left: 20px;
}

.footer {
  background: #ff8400;
  color: white;
  padding: 60px 0 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__logo {
  display: flex;
  align-items: flex-start;
}
.footer__logo img {
  max-height: 60px;
  max-width: 200px;
  object-fit: contain;
}
.footer__nav h4, .footer__contacts h4, .footer__cta h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}
.footer__nav ul, .footer__contacts ul, .footer__cta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav li, .footer__contacts li, .footer__cta li {
  margin-bottom: 12px;
}
.footer__nav a, .footer__contacts a, .footer__cta a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
.footer__nav a:hover, .footer__contacts a:hover, .footer__cta a:hover {
  opacity: 0.8;
}
.footer__nav p, .footer__contacts p, .footer__cta p {
  color: white;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer__nav p:last-child, .footer__contacts p:last-child, .footer__cta p:last-child {
  margin-bottom: 0;
}
.footer__cta p {
  margin-bottom: 20px;
}
.footer__cta .btn {
  width: 100%;
  max-width: 220px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__links {
  display: flex;
  gap: 30px;
}
.footer__links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.footer__links a:hover {
  opacity: 0.8;
}

.copyright {
  color: white;
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff8400;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(255, 132, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgb(204, 105.6, 0);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 132, 0, 0.4);
}
.back-to-top::before {
  content: "↑";
  font-weight: bold;
}

@media (max-width: 920px) {
  .hero__bottom {
    position: static;
  }
  .hero__image {
    position: static;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px auto;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__title .btn {
    display: inline-block;
    border-radius: 60px;
    margin-left: 0;
  }
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__description {
    background: linear-gradient(transparent 8%, #c3c3c3);
    border-radius: 0;
    padding: 20px;
  }
  .hero__right {
    margin-left: -20px;
    margin-right: -20px;
  }
  .hero__right h2,
  .hero__right h3,
  .hero__right .hero__description {
    padding-left: 18px;
  }
  .product__inner {
    flex-direction: column;
    gap: 40px;
  }
  .product__title {
    font-size: 28px;
  }
  .application__inner {
    padding-bottom: 40px;
  }
  .application__title {
    font-size: 28px;
  }
  .discounts__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
  }
  .discounts__note {
    font-size: 16px;
  }
  .delivery__description {
    margin-bottom: 40px;
  }
  .delivery__description p {
    font-size: 16px;
  }
  .delivery__partners-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .delivery__partners-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .delivery__partners-grid::before {
    display: none;
  }
  .partner__logo {
    height: 60px;
  }
  .partner__text {
    font-size: 14px;
  }
  .certificate__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .certificate__content {
    gap: 30px;
  }
  .certificate__image {
    max-width: 300px;
  }
  .certificate__description p {
    font-size: 16px;
  }
  .footer {
    padding: 40px 0 0 0;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .footer__logo img {
    max-height: 50px;
  }
  .footer__nav h4, .footer__contacts h4, .footer__cta h4 {
    font-size: 16px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer__links {
    gap: 20px;
  }
  .discount__title {
    font-size: 28px;
  }
  .discount-card {
    padding: 25px 15px;
  }
  .discount-card--popular {
    transform: none;
  }
  .discount-card--popular:hover {
    transform: translateY(-5px);
  }
  .discount-card__price {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .header__contacts {
    flex-direction: column;
    gap: 15px;
  }
  .header .header__bottom .nav__link {
    padding: 8px 4px;
    font-size: 11px;
  }
  .nav__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav__link {
    padding: 10px 15px;
    font-size: 12px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .product {
    padding: 40px 0;
  }
  .product__inner {
    gap: 30px;
  }
  .application {
    padding: 40px 0 0 0;
  }
  .application__inner {
    padding-bottom: 30px;
  }
  .application__title {
    font-size: 24px;
    text-align: center;
  }
  .application__description {
    text-align: center;
  }
  .discounts {
    padding: 40px 0;
  }
  .discounts__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }
  .discounts__note {
    font-size: 14px;
  }
  .discount__title {
    font-size: 24px;
  }
  .discount__title::after {
    width: 120px;
  }
  .discount-card {
    padding: 20px 15px;
  }
  .discount-card__badge {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .discount-card__price {
    font-size: 16px;
  }
  .discount-card .btn {
    font-size: 14px;
  }
  .delivery {
    padding: 40px 0;
  }
  .delivery__title {
    font-size: 24px;
  }
  .delivery__title::after {
    width: 120px;
  }
  .delivery__description {
    margin-bottom: 30px;
  }
  .delivery__description p {
    font-size: 14px;
  }
  .delivery__partners-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .delivery__partners-grid {
    gap: 30px;
  }
  .partner__logo {
    height: 50px;
  }
  .partner__logo img {
    max-width: 150px;
  }
  .partner__text {
    font-size: 12px;
  }
  .certificate {
    padding: 40px 0;
  }
  .certificate__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .certificate__title::after {
    width: 120px;
  }
  .certificate__content {
    gap: 25px;
  }
  .certificate__image {
    max-width: 250px;
  }
  .certificate__description p {
    font-size: 14px;
  }
  .footer {
    padding: 30px 0 0 0;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer__logo {
    justify-content: center;
  }
  .footer__logo img {
    max-height: 40px;
  }
  .footer__nav h4, .footer__contacts h4, .footer__cta h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .footer__nav a,
  .footer__nav p, .footer__contacts a,
  .footer__contacts p, .footer__cta a,
  .footer__cta p {
    font-size: 14px;
  }
  .footer__cta .btn {
    max-width: 180px;
    font-size: 14px;
  }
  .footer__bottom {
    padding: 20px 0;
  }
  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
  .footer__links a {
    font-size: 12px;
  }
  .copyright {
    font-size: 12px;
  }
}
@media (max-width: 410px) {
  .hero__title h2 {
    font-size: 38px;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-dialog {
  background: white;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content {
  padding: 0;
}

.modal-header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.contact-info {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.contact-info h4 {
  margin-bottom: 10px;
  color: #333;
  font-size: 18px;
}

.contact-item {
  display: flex;
  margin-bottom: 5px;
}

.contact-label {
  font-weight: 500;
  margin-right: 10px;
  min-width: 70px;
}

.contact-value {
  color: #ff8400;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8400;
}
.form-group.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-group.checkbox-group input[type=checkbox] {
  width: auto;
  margin-top: 2px;
}
.form-group.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}
.form-group.checkbox-group a {
  color: #ff8400;
  text-decoration: none;
}
.form-group.checkbox-group a:hover {
  text-decoration: underline;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.success-content,
.error-content {
  text-align: center;
}
.success-content h4,
.error-content h4 {
  margin-bottom: 10px;
  color: #333;
}
.success-content p,
.error-content p {
  margin-bottom: 10px;
  color: #666;
}

.success-icon,
.error-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.success-icon {
  color: #28a745;
}

.error-icon {
  color: #ffc107;
}

@media (max-width: 768px) {
  .modal-dialog {
    width: 95%;
    margin: 10px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
.privacy-policy {
  padding: 100px 0;
  min-height: 100vh;
  position: relative;
}
.privacy-policy .container {
  position: relative;
  z-index: 2;
}
.privacy-policy__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.privacy-policy__header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff8400, rgb(204, 105.6, 0));
  border-radius: 2px;
}
.privacy-policy__title {
  font-size: 56px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #000000 0%, #575757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .privacy-policy__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .privacy-policy__title {
    font-size: 36px;
  }
}
.privacy-policy__content {
  max-width: 900px;
  margin: 0 auto 80px;
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 132, 0, 0.1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .privacy-policy__content {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .privacy-policy__content {
    padding: 30px 20px;
    border-radius: 15px;
  }
}
.privacy-policy__content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  margin: 35px 0 20px;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .privacy-policy__content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
  }
}
.privacy-policy__content p {
  margin-bottom: 20px;
  color: #575757;
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
}
.privacy-policy__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .privacy-policy__content p {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }
}
.privacy-policy__content ul, .privacy-policy__content ol {
  margin: 25px 0;
  padding-left: 0;
}
.privacy-policy__content ul li, .privacy-policy__content ol li {
  margin-bottom: 15px;
  color: #575757;
  font-size: 17px;
  line-height: 1.7;
  position: relative;
  padding-left: 30px;
  list-style: none;
}
.privacy-policy__content ul li::before, .privacy-policy__content ol li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8400;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 768px) {
  .privacy-policy__content ul li, .privacy-policy__content ol li {
    font-size: 16px;
    padding-left: 25px;
  }
}
.privacy-policy__content strong {
  color: #000000;
  padding: 2px 4px;
}
.privacy-policy__content a {
  color: #ff8400;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.privacy-policy__content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8400, rgb(204, 105.6, 0));
  transition: width 0.3s ease;
}
.privacy-policy__content a:hover {
  color: rgb(204, 105.6, 0);
}
.privacy-policy__content .contact-info {
  background: linear-gradient(135deg, rgba(255, 132, 0, 0.05) 0%, rgba(255, 132, 0, 0.02) 100%);
  border: 2px solid rgba(255, 132, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
}
.privacy-policy__content .contact-info p {
  margin-bottom: 10px;
  font-weight: 500;
}
.privacy-policy__content .contact-info p:last-child {
  margin-bottom: 0;
}
.privacy-policy__content .last-updated {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #ff8400;
  padding: 20px;
  margin-top: 40px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #575757;
}
.privacy-policy__actions {
  text-align: center;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .privacy-policy__actions {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .privacy-policy__actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .privacy-policy__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
.privacy-policy__default-content h2:first-child {
  margin-top: 0;
}
.privacy-policy__default-content .toc {
  background: linear-gradient(135deg, rgba(255, 132, 0, 0.03) 0%, rgba(255, 132, 0, 0.01) 100%);
  border: 1px solid rgba(255, 132, 0, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
}
.privacy-policy__default-content .toc h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #ff8400;
  font-size: 20px;
}
.privacy-policy__default-content .toc ul {
  margin: 0;
}
.privacy-policy__default-content .toc ul li {
  margin-bottom: 8px;
}
.privacy-policy__default-content .toc ul li::before {
  content: "→";
  color: #ff8400;
}
.privacy-policy__default-content .toc ul li a {
  color: #575757;
  text-decoration: none;
}
.privacy-policy__default-content .toc ul li a:hover {
  color: #ff8400;
}
.privacy-policy__default-content .important-notice {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
}
.privacy-policy__default-content .important-notice p {
  margin-bottom: 0;
  font-weight: 500;
  color: #856404;
}
@media print {
  .privacy-policy {
    padding: 0;
    background: white;
  }
  .privacy-policy__header {
    margin-bottom: 40px;
  }
  .privacy-policy__header::after {
    display: none;
  }
  .privacy-policy__title {
    color: black !important;
    -webkit-text-fill-color: black !important;
  }
  .privacy-policy__content {
    box-shadow: none;
    border: 1px solid #ddd;
    padding: 40px;
  }
  .privacy-policy__actions {
    display: none;
  }
}

@media (prefers-contrast: high) {
  .privacy-policy {
    background: white;
  }
  .privacy-policy__content {
    border: 2px solid black;
    box-shadow: none;
  }
  .privacy-policy__content h2 {
    border-bottom-color: black;
  }
  .privacy-policy__content h2::after {
    background: black;
  }
  .privacy-policy__content h3::before {
    background: black;
  }
  .privacy-policy__content ul li::before,
  .privacy-policy__content ol li::before {
    color: black;
    background: black;
  }
  .privacy-policy__content a {
    color: #0000EE;
  }
  .privacy-policy__actions .btn--primary {
    background: black;
    border-color: black;
  }
  .privacy-policy__actions .btn--secondary {
    color: black;
    border-color: black;
  }
}
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #ff8400;
}
.cookie-notice.show {
  transform: translateY(0);
}
.cookie-notice__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .cookie-notice__container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.cookie-notice__content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
@media (max-width: 768px) {
  .cookie-notice__content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.cookie-notice__icon {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
  cursor: default;
}
@media (max-width: 768px) {
  .cookie-notice__icon {
    font-size: 40px;
  }
}
.cookie-notice__text {
  flex: 1;
}
.cookie-notice__text p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .cookie-notice__text p {
    font-size: 14px;
  }
}
.cookie-notice__link {
  color: #ff8400;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.cookie-notice__link:hover {
  color: rgb(204, 105.6, 0);
  text-decoration: underline;
}
.cookie-notice__actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cookie-notice__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}
.cookie-notice__actions .btn {
  padding: 12px 30px;
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cookie-notice__actions .btn {
    width: 100%;
    padding: 14px 20px;
  }
}
.cookie-notice__accept {
  background: #ff8400;
  color: white;
  border: none;
}
.cookie-notice__accept:hover {
  background: rgb(204, 105.6, 0);
  transform: translateY(-2px);
}
.cookie-notice__decline {
  background: transparent;
  color: #575757;
  border: 2px solid #ddd;
}
.cookie-notice__decline:hover {
  background: #575757;
  border-color: black;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-notice {
    transition: opacity 0.3s ease;
    transform: translateY(0);
    opacity: 0;
    pointer-events: none;
  }
  .cookie-notice.show {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (prefers-contrast: high) {
  .cookie-notice {
    border-top: 4px solid black;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  }
  .cookie-notice__link {
    color: #0000EE;
    text-decoration: underline;
  }
  .cookie-notice__accept {
    background: black;
    border: 2px solid black;
  }
  .cookie-notice__decline {
    color: black;
    border-color: black;
  }
}

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