@charset "UTF-8";
/* ============================
   SCSS RESET STYLES
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
  color: #111;
}

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

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

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background-color: #1e3a8a;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__logo {
  flex: 0 0 auto;
  text-align: center;
}
.site-header__logo img {
  height: 60px;
  width: auto;
  display: block;
}
.site-header__nav ul {
  display: flex;
  gap: 1.5rem;
}
.site-header__nav ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}
.site-header__nav ul li a:hover {
  color: #dc2626;
}
.site-header__nav--left {
  justify-content: flex-start;
}
.site-header__nav--right {
  justify-content: flex-end;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .site-header__inner {
    gap: 0.5rem;
  }
  .site-header__nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-header__logo img {
    height: 40px;
  }
}
/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.burger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Мобильное меню */
.mobile-menu {
  display: none;
  background-color: #1e3a8a;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 15;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-menu ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.mobile-menu ul li a:hover {
  color: #dc2626;
}
.mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease forwards;
}

/* Анимация появления */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Адаптив */
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .site-header__inner {
    justify-content: space-between;
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
  overflow: hidden;
  /* 🔵 Мягкие круги через before/after */
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  animation: float 12s infinite ease-in-out;
  z-index: 0;
}
.hero::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
  animation-delay: 0s;
}
.hero::after {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -100px;
  animation-delay: 4s;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 5;
}
.hero__content {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  animation: fadeInUp 1s ease forwards;
}
.hero__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero__title span {
  color: #dc2626;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
}
.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #dc2626;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero .btn i {
  font-size: 1.2rem;
}
.hero .btn:hover {
  background-color: #b91c1c;
  transform: translateY(-3px);
}

/* 🔺 Дополнительные декоративные элементы */
.hero::before,
.hero::after,
.hero .shape {
  pointer-events: none;
}

/* Треугольники */
.hero .triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(255, 255, 255, 0.08);
  animation: floatSlow 18s infinite linear;
  z-index: 0;
}

.hero .triangle--1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero .triangle--2 {
  top: 60%;
  left: 80%;
  transform: scale(0.8) rotate(20deg);
  animation-delay: 5s;
}

.hero .triangle--3 {
  top: 30%;
  left: 50%;
  transform: scale(1.2) rotate(-15deg);
  animation-delay: 10s;
}

/* Кольца */
.hero .ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  z-index: 0;
}

.hero .ring--1 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 15%;
  animation-duration: 25s;
}

.hero .ring--2 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-duration: 30s;
}

/* Анимации */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes floatSlow {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 📱 Адаптив */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero .triangle--2 {
    display: none;
  }
  .hero .ring--1 {
    width: 100px;
    height: 100px;
  }
  .hero .ring--2 {
    width: 70px;
    height: 70px;
  }
}
.history {
  background-color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.history__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  .history__inner {
    flex-direction: column;
    text-align: center;
  }
}
.history__content {
  flex: 1;
  max-width: 600px;
}
.history__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #0f172a;
  margin-bottom: 1rem;
}
.history__content p strong {
  color: #1e3a8a;
}
.history__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e3a8a;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.history__line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a 0%, #dc2626 100%);
  margin-bottom: 1.5rem;
}
.history .history__image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.history .history__image img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(30, 58, 138, 0.6);
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 992px) {
  .history .history__image img {
    max-width: 100%;
  }
}
.history .history__image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(220, 38, 38, 0.2));
  filter: blur(20px);
  transform: rotate(4deg);
  z-index: -1;
}
.history .history__image:hover img {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.8);
}

.mechanics {
  background-color: #1e3a8a;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mechanics__title {
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #fff, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mechanics__line {
  width: 120px;
  height: 4px;
  margin: 0 auto 3rem;
  background: linear-gradient(90deg, #dc2626 0%, #3b82f6 100%);
  border-radius: 2px;
}
.mechanics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .mechanics__grid {
    grid-template-columns: 1fr;
  }
}
.mechanics__item {
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  text-align: left;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mechanics__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}
.mechanics__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #dc2626);
  transition: width 0.4s ease;
}
.mechanics__item:hover::before {
  width: 100%;
}
.mechanics__item p {
  color: #dbeafe;
  font-size: 0.95rem;
  line-height: 1.6;
}
.mechanics__number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}
.mechanics__subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 1rem;
}

.features {
  background-color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}
.features__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e3a8a, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.features__line {
  width: 100px;
  height: 4px;
  margin: 0 auto 3rem;
  background: linear-gradient(90deg, #3b82f6, #dc2626);
  border-radius: 2px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features__item {
  background-color: rgba(30, 58, 138, 0.05);
  border: 1px solid rgba(30, 58, 138, 0.15);
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.features__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}
.features__item h3 {
  color: #1e3a8a;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0;
}
.features__item p {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.6;
}
.features__icon {
  font-size: 2rem;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.features__icon i {
  font-size: 1.6rem;
}
.features__icon:hover {
  background: rgba(220, 38, 38, 0.2);
  transform: scale(1.1);
}

.reviews {
  background-color: #1e3a8a;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
.reviews__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.reviews__line {
  width: 100px;
  height: 4px;
  margin: 0 auto 3rem;
  background: linear-gradient(90deg, #dc2626, #3b82f6);
  border-radius: 2px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}
.reviews__item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}
.reviews__text {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 1rem;
}
.reviews__author {
  font-size: 0.9rem;
  font-weight: 600;
  color: #dc2626;
}

.unique {
  position: relative;
  background-color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
  /* Фоновые фигуры */
}
.unique__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  .unique__inner {
    flex-direction: column;
    text-align: center;
  }
}
.unique__content {
  flex: 1;
  max-width: 550px;
}
.unique__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e3a8a, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.unique__line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #dc2626);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.unique__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #0f172a;
  margin-bottom: 2rem;
}
.unique__desc strong {
  color: #1e3a8a;
}
.unique__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.unique__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.4;
  background: rgba(30, 58, 138, 0.05);
  border: 1px solid rgba(30, 58, 138, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.unique__list li:hover {
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}
.unique__list li i {
  font-size: 1.4rem;
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 2px;
}
.unique__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.unique__image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(30, 58, 138, 0.6);
  transform: rotate(-3deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.unique__image img:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.8);
}
.unique__shape {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}
.unique__shape--triangle {
  top: 10%;
  left: -60px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #1e3a8a, #dc2626);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: floatSlow 18s infinite linear;
}
.unique__shape--ring {
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 3px solid #dc2626;
  border-radius: 50%;
  animation: spin 25s linear infinite;
}

/* Анимации */
@keyframes floatSlow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(20deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gallery {
  background-color: #ffffff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}
.gallery__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e3a8a, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.gallery__line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #dc2626);
  margin: 0 auto 3rem;
  border-radius: 2px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid rgba(30, 58, 138, 0.1);
  box-shadow: 0 0 15px rgba(30, 58, 138, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery__img:hover {
  transform: scale(1.05);
}

/* Модальное окно */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.gallery-modal__img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
  animation: zoomIn 0.3s ease forwards;
}
.gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.gallery-modal__close:hover {
  color: #dc2626;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.cta {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 100%);
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  /* Декоративные фигуры */
}
.cta__title {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #00fff0;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 2rem;
  }
}
.cta__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #e5e7eb;
}
.cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.cta .btn i {
  font-size: 1.3rem;
}
.cta .btn--primary {
  background-color: #00e5ff;
  color: #000;
}
.cta .btn--primary:hover {
  background-color: #00c6e6;
  transform: translateY(-3px);
}
.cta .btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #e5ff57;
  background: rgba(0, 0, 0, 0.2);
}
.cta .btn--secondary:hover {
  background-color: #e5ff57;
  color: #000;
  transform: translateY(-3px);
}
.cta__shape {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  background: rgba(0, 0, 0, 0.15);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  z-index: 0;
}
.cta__shape--left {
  left: 0;
}
.cta__shape--right {
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .cta__shape {
    display: none;
  }
}

.footer {
  background-color: #1e3a8a;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-size: 0.95rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__brand {
  flex: 1;
  max-width: 400px;
}
@media (max-width: 992px) {
  .footer__brand {
    max-width: 100%;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo img {
  max-width: 180px;
  height: auto;
  display: block;
}
.footer__text {
  color: #e5e7eb;
  line-height: 1.5;
}
.footer__links, .footer__policies {
  flex: 1;
}
.footer__links h4, .footer__policies h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links ul, .footer__policies ul {
  list-style: none;
  padding: 0;
}
.footer__links ul li, .footer__policies ul li {
  margin-bottom: 0.5rem;
}
.footer__links ul li a, .footer__policies ul li a {
  color: #e2e8f0;
  transition: color 0.3s ease;
}
.footer__links ul li a:hover, .footer__policies ul li a:hover {
  color: #dc2626;
}
@media (max-width: 992px) {
  .footer__links, .footer__policies {
    text-align: center;
  }
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: #cbd5e1;
  font-size: 0.85rem;
}
.footer__bottom p {
  margin: 0.3rem 0;
}

.privacy {
  background-color: #ffffff;
  color: #0f172a;
  padding: 5rem 0;
}
.privacy__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e3a8a, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-align: center;
}
.privacy__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.6;
}
.privacy__section {
  max-width: 900px;
  margin: 0 auto 2rem;
}
.privacy__section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
}
.privacy__section p {
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.privacy__section ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.6;
}
.privacy__section ul li {
  margin-bottom: 0.4rem;
}
.privacy__section ul li a {
  color: #dc2626;
  text-decoration: underline;
}
.privacy__section ul li a:hover {
  text-decoration: none;
}

.terms {
  background-color: #ffffff;
  color: #0f172a;
  padding: 5rem 0;
}
.terms__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e3a8a, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-align: center;
}
.terms__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.6;
}
.terms__section {
  max-width: 900px;
  margin: 0 auto 2rem;
}
.terms__section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
}
.terms__section p {
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.terms__section ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.6;
}
.terms__section ul li {
  margin-bottom: 0.4rem;
}
.terms__section ul li strong {
  color: #1e3a8a;
}

.cookies-policy {
  background-color: #ffffff;
  color: #0f172a;
  padding: 5rem 0;
}
.cookies-policy__title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1e3a8a, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cookies-policy__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.6;
}
.cookies-policy__section {
  max-width: 900px;
  margin: 0 auto 2rem;
}
.cookies-policy__section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
}
.cookies-policy__section p {
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.cookies-policy__section ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.6;
}
.cookies-policy__section ul li {
  margin-bottom: 0.4rem;
}
.cookies-policy__section ul li a {
  color: #dc2626;
  text-decoration: underline;
}
.cookies-policy__section ul li a:hover {
  text-decoration: none;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background-color: #1e3a8a;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
  z-index: 9999;
  font-size: 0.9rem;
  line-height: 1.4;
  display: none;
  animation: fadeInUp 0.5s ease forwards;
}
.cookie-popup p {
  margin: 0 0 0.75rem;
}
.cookie-popup p a {
  color: #dc2626;
  text-decoration: underline;
}
.cookie-popup p a:hover {
  text-decoration: none;
}
.cookie-popup button {
  background-color: #dc2626;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cookie-popup button:hover {
  background-color: rgb(223.5416666667, 59.9583333333, 59.9583333333);
}
@media (max-width: 480px) {
  .cookie-popup {
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */