:root {
--primary-color: #22d3ee;
--text-color: #94a3b8;
--accent-color: #a78bfa;
--primary-hover: #06b6d4;
--secondary-color: #6366f1;
--text-inverted: #0b1220;
--text-primary: #e2e8f0;
--text-secondary: #cbd5e1;
--background-color: #0f172a;
--secondary-background: #111827;
--border-radius-primary: 12px;
--border-radius-secondary: 8px;
--border-radius-third: 6px;

  --font-family: 'Anta', sans-serif;
  --second-family: 'Anta', sans-serif;
  --third-family: 'Anta', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* === Header === */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.container-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 80px;
}

.logo {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  letter-spacing: 1px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
}

.header-nav-list a {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.header-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.header-nav-list a:hover {
  color: var(--primary-color);
}

.header-nav-list a:hover::after {
  width: 100%;
}

.header-nav-list a.active {
  color: var(--primary-color);
}

.header-nav-list a.active::after {
  width: 100%;
}

.burger-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

@media screen and (max-width: 1240px) {
  .header {
    padding: 10px 25px;
  }

  .header .secondary-btn,
  .header-nav {
    display: none;
  }

  .burger-btn {
    display: block;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px;
  }

  .burger-btn svg {
    width: 45px;
    height: 45px;
    color: #333;
    background-color: #00ff51;
    border: 1px solid #333;
  }

  .burger-btn:active svg {
    color: var(--primary-hover);
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--secondary-background);
    padding: 15px 30px;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .mobile-menu-active {
    right: 0;
  }

  .close-btn {
    display: block;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px;
    margin-left: auto;
  }

  .close-btn svg {
    width: 35px;
    height: 35px;
    stroke: var(--text-inverted);
  }

  .close-btn:active svg {
    stroke: var(--primary-hover);
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/* === Hero === */

.hero {
  padding: 160px 0 100px;
}

.hero .container {
  padding: 0 30px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 630px;
  width: calc(100% / 2 - 80px);
}

.section-name {
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 72px;
  line-height: 108%;
  color: #fff;
  margin-bottom: 23px;
}

.hero-content .descr {
  margin-bottom: 46px;
}

.wrapper {
  display: flex;
  position: relative;
  max-width: 630px;
  width: calc(100% / 2 - 80px);
  min-height: 600px;
  max-height: 760px;
  overflow: hidden;
  padding: 0 30px 30px 0;
}

.wrapper::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 0;
  right: 0;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-primary);
  z-index: 1;
}

.wrapper.left {
  padding: 30px 0 0 30px;
}

.wrapper.left::after {
  top: 0;
  left: 0;
  bottom: 30px;
  right: 30px;
}

.wrapper-img {
  position: relative;
  z-index: 2;
  flex: 1;
  object-fit: cover;
  border-radius: var(--border-radius-primary);
}

@media screen and (max-width: 1240px) {
  .hero-title {
    font-size: 50px;
  }

  .wrapper {
    padding: 0 15px 15px 0;
    min-height: 500px;
    width: calc(100% / 2 - 50px);
  }

  .hero-content {
    width: calc(100% / 2 - 50px);
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
  }

  .hero-content {
    width: 100%;
  }
}

/* === Our Services === */

.our-services {
  padding: 100px 0;
  background-color: var(--background-color);
}

.our-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-name {
  font-weight: bold;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.our-services .title {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.our-services .descr {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 1.1rem;
}

.our-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.our-service-card {
  background-color: var(--secondary-background);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 87, 160, 0.2);
  background-color: var(--primary-hover);
  color: var(--text-inverted);
}

.our-service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.our-service-card .subtitle {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.our-service-card .descr {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}

.service-price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.our-service-card:hover .subtitle,
.our-service-card:hover .descr {
  color: var(--text-inverted);
}


/* === About Us === */

.about-us {
  background-color: var(--background-color);
  padding: 80px 0;
}

.about-us-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.about-us-text {
  flex: 1 1 500px;
  color: var(--text-primary);
}

.section-label {
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--text-color);
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--text-inverted);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.about-btn:hover {
  background-color: var(--primary-hover);
}

.about-us-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .about-us-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-us-text {
    flex: 1 1 100%;
  }

  .about-title {
    font-size: 28px;
  }
}


/* Success Stats */
.success-stats {
  padding: 80px 0;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  color: #ffffff;
}

.success-stats .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.success-stats .title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 60px;
  color: #ffffff;
}

.stats-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats-item {
  flex: 1 1 200px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  margin: 0 0 10px;
}

.stat-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .stats-list {
    gap: 20px;
  }
  .stats-item {
    flex: 1 1 45%;
    padding: 20px;
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .stats-list {
    flex-direction: column;
    gap: 30px;
  }
  .stats-item {
    flex: 1 1 100%;
  }
}

/* === Why Choose === */

.why-choose {
  background: radial-gradient(1200px 600px at 50% 30%, rgba(99, 102, 241, 0.06), transparent 70%),
    radial-gradient(1000px 500px at 20% 70%, rgba(34, 211, 238, 0.06), transparent 70%),
    var(--secondary-background);
  padding: 100px 0;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose .section-name {
  color: var(--accent-color);
  margin-bottom: 12px;
}

.why-choose .title {
  margin-bottom: 16px;
}

.why-choose .descr {
  max-width: 700px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-item {
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--border-radius-primary);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-choose-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.15);
  background: rgba(34, 211, 238, 0.08);
}

.why-choose-item:hover::before {
  opacity: 1;
}

.why-choose-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  color: rgba(34, 211, 238, 0.3);
  letter-spacing: 1px;
}

.why-choose-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-choose-title {
  font-family: var(--second-family);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.why-choose-text {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media screen and (max-width: 1024px) {
  .why-choose-grid {
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .why-choose {
    padding: 80px 0;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-choose-item {
    padding: 24px;
  }
}


/* === Successfully === */

.successfully {
  padding: 80px 0;
  background-color: var(--secondary-background);
}

.successfully .title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.successfully-list {
  display: flex;
  justify-content: space-between;
}

.successfully-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 15px;
  max-width: 185px;
  width: 100%;
  height: 182px;
  box-shadow: 0 13px 16px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--background-color);
  border-radius: var(--border-radius-secondary);
}

.successfully-item:nth-child(even) {
  margin-top: 91px;
}

.successfully-item .subtitle {
  font-size: 40px;
}

.successfully-line-left,
.successfully-line-right {
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #e0e0e0;
}

.successfully-line-center {
  position: absolute;
  top: 50%;
  right: -50%;
  bottom: 0;
  height: auto;
  width: 1px;
  background-color: #e0e0e0;
}

.successfully-line-center.top {
  top: 0;
  bottom: 50%;
}

@media screen and (max-width: 900px) {
  .successfully-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .successfully-lines {
    display: none;
  }

  .successfully-item {
    width: calc(100% / 2 - 15px);
  }

  .successfully-item:nth-child(even) {
    margin-top: 0;
  }
}

/* === Testimonials === */

.testimonials {
  padding: 80px 0;
  background-color: var(--secondary-background);
  color: var(--text-primary);
  font-family: var(--font-family);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  margin: 0 auto;
  max-width: 600px;
  color: var(--text-primary);
}

.testimonials-navigation {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 16px;
}

.swiper-button-prev-testimonials,
.swiper-button-next-testimonials {
  background-color: var(--primary-color);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverted);
  transition: background-color 0.3s ease;
}

.swiper-button-prev-testimonials:hover,
.swiper-button-next-testimonials:hover {
  background-color: var(--primary-hover);
}

.icon-left,
.icon-right {
  width: 20px;
  height: 20px;
  stroke: var(--text-inverted);
  stroke-width: 3;
}

.testimonials-list {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.testimonials-list-item {
  background-color: var(--background-color);
  border-radius: var(--border-radius-secondary);
  padding: 30px 25px;
  display: flex;
  gap: 25px;
  align-items: center;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease;
}

.testimonials-list-item:hover {
  transform: translateY(-8px);
}

.testimonials-item-img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-secondary);
  object-fit: cover;
  box-shadow: 0 0 10px rgb(0 87 160 / 0.4);
}

.testimonials-item-wrap {
  flex-grow: 1;
}

.subtitle {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.subtitle span {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-secondary);
}

.testimonials-item-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-primary);
}

/* === Our Blog === */

.our-blog {
  background: linear-gradient(180deg, var(--background-color) 0%, var(--secondary-background) 100%);
  padding: 100px 0;
}

.our-blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.our-blog .section-name {
  color: var(--accent-color);
  margin-bottom: 12px;
}

.our-blog .title {
  margin-bottom: 16px;
}

.our-blog .descr {
  max-width: 700px;
  margin: 0 auto;
}

.our-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--border-radius-primary);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.4);
}

.blog-card-image {
  overflow: hidden;
  height: 200px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(34, 211, 238, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: var(--second-family);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-text {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.blog-card-link {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  color: var(--secondary-color);
  gap: 12px;
}

@media screen and (max-width: 1024px) {
  .our-blog-grid {
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .our-blog {
    padding: 80px 0;
  }
  .our-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-card-image {
    height: 180px;
  }
}

/* === FAQ === */

.faq {
  padding: 100px 0;
  background-color: var(--background-color);
}

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

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq .section-name {
  color: var(--accent-color);
  margin-bottom: 12px;
}

.faq .title {
  font-family: var(--second-family);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--border-radius-primary);
  padding: 28px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.1);
}

.faq-question {
  font-family: var(--second-family);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.faq-answer {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }
  .faq .title {
    font-size: 28px;
  }
  .faq-item {
    padding: 20px;
  }
  .faq-question {
    font-size: 18px;
  }
  .faq-answer {
    font-size: 15px;
  }
}

/* === Contact === */

.contact {
  background-color: var(--background-color);
  padding: 100px 20px;
  color: var(--text-primary);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-title {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
}

.contact-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.detail-item .icon {
  font-size: 18px;
  color: var(--primary-hover);
}

.detail-item a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: var(--primary-hover);
}

.contact-form {
  background-color: var(--secondary-background);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 87, 160, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary-color);
}

input,
textarea {
  padding: 12px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-primary);
}

input:focus,
textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 87, 160, 0.2);
  outline: none;
}

.submit-button {
  margin-top: 30px;
  background-color: var(--accent-color);
  color: var(--text-inverted);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: var(--primary-hover);
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-title {
    font-size: 26px;
  }
}

/* === Footer === */

.footer {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  color: var(--text-inverted);
  padding: 80px 20px 40px;
  border-top: 5px solid var(--accent-color);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-menu h3,
.footer-contact h3 {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-menu ul,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.7;
}

.footer-menu ul li a {
  color: var(--text-inverted);
  text-decoration: none;
  position: relative;
  padding-left: 16px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-menu ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.footer-menu ul li a:hover {
  color: var(--primary-hover);
}

.footer-contact a {
  color: var(--text-inverted);
  text-decoration: underline;
}

.footer-contact a:hover {
  color: var(--primary-hover);
}

.footer-rights {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 14px;
  color: var(--text-inverted);
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-menu h3,
  .footer-contact h3 {
    margin-bottom: 15px;
  }

  .footer-menu ul li a::before {
    display: none;
  }

  .footer-menu ul li a {
    padding-left: 0;
  }
}


/* === Cookie Popup === */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-popup a {
  text-decoration: underline;
  transition: all 0.3s ease;
}

.cookie-popup a:hover {
  color: var(--primary-hover);
}

.cookie-popup h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.cookie-popup p {
  margin: 0 0 20px;
  font-size: 1rem;
}

.header {
  background-color: var(--secondary-background);
}

.mobile-menu {
  background-color: var(--secondary-background);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #ffffff;
}

.our-services-navigate button svg {
  stroke: #ffffff;
}

/* === Blog Page Custom Styles === */

.blog {
  padding: 80px 0;
  background-color: var(--background-color);
  color: var(--text-primary);
}

.blog .container {
  margin: 0 auto;
  padding: 0 20px;
}

.blog .title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.blog-meta {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.blog-content {
  margin-bottom: 40px;
}

.blog-content .wrapper {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--border-radius-secondary);
}

.blog-content .wrapper-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-secondary);
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  margin-bottom: 24px;
}

.blog-list .descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
}

.blog-list .descr:last-child {
  margin-bottom: 0;
}

/* === Footer Overrides === */

.footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.footer .footer-menu h3,
.footer .footer-contact h3 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer .footer-menu ul,
.footer .footer-contact p {
  margin: 0;
  padding: 0;
}

.footer .footer-menu ul li {
  margin-bottom: 8px;
}

.footer .footer-menu ul li a,
.footer .footer-contact a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #e0e0e0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer .footer-menu ul li a:hover,
.footer .footer-contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-rights {
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #888888;
  margin-top: 30px;
}

/* === Responsive Adjustments === */

@media screen and (max-width: 768px) {
  .blog .title {
    font-size: 28px;
  }

  .blog-meta {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .blog-list .descr {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer .container {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }

  .footer .footer-menu,
  .footer .footer-contact {
    width: 100%;
  }
}

.terms-privacy {
  background-color: var(--accent-color);
  color: var(--text-primary);
}

.terms-privacy .container {
  margin: 0 auto;
  padding: 0 20px;
}

.terms-privacy .title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.terms-privacy .descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.terms-privacy .subtitle {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-inverted);
}

.terms-privacy ul.descr {
  list-style: disc inside;
  margin-left: 20px;
}

.terms-privacy ul.descr li {
  margin-bottom: 12px;
}

.terms-privacy ul.descr li strong {
  font-weight: 700;
}

.terms-privacy a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-privacy a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .terms-privacy .title {
    font-size: 28px;
  }

  .terms-privacy .subtitle {
    font-size: 20px;
  }

  .terms-privacy .descr,
  .terms-privacy ul.descr li {
    font-size: 14px;
  }

  .terms-privacy .container {
    padding: 0 15px;
  }
}

/* === About Page === */
.about-hero {
  padding: 160px 0 80px;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(34, 211, 238, 0.08), transparent 60%),
    radial-gradient(1000px 500px at 80% 20%, rgba(99, 102, 241, 0.1), transparent 60%),
    linear-gradient(135deg, #0f172a, #111827 60%, #0b1220 100%);
}

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

.about-hero-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.about-hero-subtitle {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.about-hero-descr {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 860px;
}

.about-mission {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

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

.about-mission-card {
  background-color: var(--secondary-background);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--border-radius-secondary);
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.mission-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.mission-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.mission-text {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
}

.about-services {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.about-services-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
}

.about-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-service-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 22px;
  color: #ffffff;
}

.service-number {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.service-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.service-text {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
}

.about-cta {
  padding: 80px 0 100px;
  background-color: var(--background-color);
}

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

.about-cta-content {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.12));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}

.cta-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cta-text {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* About page responsive */
@media screen and (max-width: 1024px) {
  .about-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-services-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .about-hero {
    padding: 140px 0 60px;
  }
  .about-hero-title {
    font-size: 36px;
  }
  .about-hero-subtitle {
    font-size: 18px;
  }
  .about-hero-descr {
    font-size: 16px;
  }
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
}

/* Burger button (used on about page header) */
.burger-btn {
  display: none;
}

@media screen and (max-width: 1240px) {
  .burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .burger-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
  }
}
/* Бургер-иконка в моб. хедере под новую палитру */
@media (max-width:1240px){
  .burger-btn svg{
    width:45px;height:45px;
    color: var(--text-inverted);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 0;
  }
}

/* Хедер/оверлеи — чуть глубже и чище */
.header{
  background: rgba(10,12,18,0.85);
  border-bottom: 1px solid color-mix(in oklab, var(--primary-color) 25%, transparent);
  backdrop-filter: blur(18px);
}

/* Карточки почему мы / блог — более выразительная рамка при hover */
.why-choose-item:hover,
.blog-card:hover{
  box-shadow: 0 18px 40px color-mix(in oklab, var(--secondary-color) 25%, transparent);
}

/* Градиенты секций на базе новых vars */
.success-stats{
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}
.about-services{
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.footer{
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
}
:root{
  /* ===== Новая палитра (Solar Night) ===== */
  --primary-color: #ff7a00;         /* солнечный апельсин */
  --primary-hover: #e56b00;         /* hover к primary */
  --secondary-color: #2563eb;       /* королевский синий */
  --accent-color: #10b981;          /* изумрудный акцент */

  --background-color: #0b0f14;      /* основной фон */
  --secondary-background: #0f1420;  /* карточки / вторичный фон */

  --text-primary: #f8fafc;          /* основной текст */
  --text-secondary: #b8c3d1;        /* вторичный текст */
  --text-color: #9fb0c3;            /* описания, подписи */
  --text-inverted: #0b0f14;         /* текст на светлом/акценте */

  /* разделители/тени для унификации «жёстких» цветов */
  --divider-color: #2a3342;
  --shadow-soft: 0 12px 24px color-mix(in oklab, var(--secondary-color) 20%, transparent);
  --shadow-strong: 0 18px 40px color-mix(in oklab, var(--primary-color) 22%, transparent);

  --border-radius-primary: 14px;
  --border-radius-secondary: 10px;
  --border-radius-third: 6px;

  /* Шрифты (оставила как есть; если нужно — заменю) */
  --font-family: 'Anta', sans-serif;
  --second-family: 'Anta', sans-serif;
  --third-family: 'Anta', sans-serif;
}
/* ===== Унификация и замена «жёстких» цветов на переменные ===== */

/* Хедер */
.header{
  background: rgba(11, 15, 20, 0.9);
  border-bottom: 1px solid color-mix(in oklab, var(--primary-color) 25%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}

/* Контейнеры/текст по умолчанию */
.title, .subtitle, h1, h2, h3, h4 { color: var(--text-primary); }
.descr, p, li { color: var(--text-color); }

/* Бургер (ранее были #333 и #00ff51) */
@media (max-width:1240px){
  .burger-btn svg{
    width:45px;height:45px;
    color: var(--text-inverted);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 0;
  }
  .close-btn svg{ stroke: var(--text-primary); }
  .close-btn:active svg{ stroke: var(--primary-hover); }
}

/* Hero */
.hero-title{ color: var(--text-primary); }
.wrapper::after{ border-color: var(--primary-color); }

/* Карточки и hover-эффекты (были фиксированные rgba) */
.our-service-card{
  background-color: var(--secondary-background);
  border: 1px solid color-mix(in oklab, var(--primary-color) 45%, transparent);
  box-shadow: 0 8px 20px color-mix(in oklab, var(--secondary-color) 18%, transparent);
}
.our-service-card:hover{
  transform: translateY(-8px);
  background-color: color-mix(in oklab, var(--primary-hover) 18%, var(--secondary-background));
  color: var(--text-inverted);
  box-shadow: var(--shadow-strong);
}
.our-service-card .subtitle,
.our-service-card .descr{ color: var(--text-primary); }
.our-service-card:hover .subtitle,
.our-service-card:hover .descr{ color: var(--text-inverted); }

.service-price{
  color: var(--primary-color);
  border-top: 1px solid color-mix(in oklab, var(--primary-color) 25%, transparent);
}

/* Why choose */
.why-choose{
  background:
    radial-gradient(1200px 600px at 50% 30%, color-mix(in oklab, var(--secondary-color) 18%, transparent), transparent 70%),
    radial-gradient(1000px 500px at 20% 70%, color-mix(in oklab, var(--primary-color) 18%, transparent), transparent 70%),
    var(--secondary-background);
}
.why-choose-item{
  background: color-mix(in oklab, var(--primary-color) 6%, var(--secondary-background));
  border: 1px solid color-mix(in oklab, var(--primary-color) 35%, transparent);
  box-shadow: 0 8px 24px color-mix(in oklab, var(--primary-color) 12%, transparent);
}
.why-choose-item:hover{
  box-shadow: var(--shadow-strong);
  background: color-mix(in oklab, var(--primary-color) 12%, var(--secondary-background));
}

/* Success stats (были #ffffff и линейный градиент) */
.success-stats{
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  color: var(--text-primary);
}
.stats-item{
  background-color: color-mix(in oklab, #fff 10%, transparent);
  border: 1px solid color-mix(in oklab, var(--text-primary) 20%, transparent);
}

/* Линии и бордеры (были #e0e0e0) */
.successfully-line-left,
.successfully-line-right,
.successfully-line-center{
  background-color: var(--divider-color);
}

/* Testimonials */
.testimonials{ background-color: var(--secondary-background); color: var(--text-primary); }
.swiper-button-prev-testimonials,
.swiper-button-next-testimonials{
  background-color: var(--primary-color);
  color: var(--text-inverted);
}
.swiper-button-prev-testimonials:hover,
.swiper-button-next-testimonials:hover{
  background-color: var(--primary-hover);
}

/* Блог (были rgba и #ffffff) */
.blog-card{
  background: color-mix(in oklab, var(--primary-color) 6%, var(--secondary-background));
  border: 1px solid color-mix(in oklab, var(--primary-color) 35%, transparent);
}
.blog-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: color-mix(in oklab, var(--primary-color) 55%, transparent);
}

/* FAQ */
.faq-item{
  background: color-mix(in oklab, var(--primary-color) 6%, var(--secondary-background));
  border: 1px solid color-mix(in oklab, var(--primary-color) 35%, transparent);
}
.faq-item:hover{
  border-color: color-mix(in oklab, var(--primary-color) 55%, transparent);
  background: color-mix(in oklab, var(--primary-color) 12%, var(--secondary-background));
  box-shadow: 0 8px 24px color-mix(in oklab, var(--primary-color) 16%, transparent);
}

/* Контакты (были белые инпуты) */
input, textarea{
  background-color: color-mix(in oklab, var(--secondary-background) 25%, #ffffff);
  color: var(--text-primary);
  border-color: transparent;
}
input::placeholder, textarea::placeholder{ color: color-mix(in oklab, var(--text-secondary) 70%, transparent); }
.submit-button{
  background-color: var(--accent-color);
  color: var(--text-inverted);
}
.submit-button:hover{ background-color: color-mix(in oklab, var(--accent-color) 80%, var(--primary-hover)); }

/* Cookie popup / фон и ссылки */
.cookie-popup{
  background-color: var(--background-color);
  color: var(--text-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.cookie-popup a{ color: var(--primary-color); }
.cookie-popup a:hover{ color: var(--primary-hover); }

/* Footer (полное обновление) */
.footer{
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  color: var(--text-inverted);
  border-top: 5px solid var(--accent-color);
}
.footer .footer-menu h3,
.footer .footer-contact h3{ color: #ffffff; }
.footer .footer-menu ul li a,
.footer .footer-contact a{
  color: #ffffff; opacity:.9;
}
.footer .footer-menu ul li a:hover,
.footer .footer-contact a:hover{ opacity:1; text-decoration: underline; }
.footer-rights{ color: color-mix(in oklab, #ffffff 65%, #000); }

/* Иконки стрелок/слайдер */
.swiper-button-next::after,
.swiper-button-prev::after{ color: var(--text-primary); }

/* Разные подчистки старых белых */
.hero-title, .success-stats .title { color: var(--text-primary); }
/* === Warm Sitewide Gradient Background === */
:root{
  --warm-1: #20100d;
  --warm-2: #35150f;
  --warm-3: #5a2013;
  --warm-4: #9a3b18;
  --warm-5: #f0a44b;
}

/* Фон всего сайта */
html, body{
  background:
    radial-gradient(1100px 520px at 12% 10%, rgba(240,164,75,0.12), transparent 60%),
    radial-gradient(900px 480px at 85% 18%, rgba(154,59,24,0.18), transparent 62%),
    linear-gradient(135deg, var(--warm-1) 0%, var(--warm-2) 22%, var(--warm-3) 48%, var(--warm-4) 78%, var(--warm-5) 100%);
  background-attachment: fixed;
}

/* Секции, где раньше был сплошной фон — делаем прозрачными,
   чтобы просвечивал общий градиент */
.hero,
.our-services,
.about-us,
.success-stats,
.why-choose,
.successfully,
.testimonials,
.our-blog,
.faq,
.contact,
.blog,
.terms-privacy{
  background: transparent !important;
}

/* Немного усилим контраст карточек на тёплом фоне */
.our-service-card,
.why-choose-item,
.blog-card,
.faq-item,
.testimonials-list-item,
.contact-form,
.about-mission-card{
  background-color: rgba(17, 22, 32, 0.85); /* тёмная подложка */
  backdrop-filter: blur(6px);
  border: 1px solid color-mix(in oklab, var(--warm-5) 28%, transparent);
}

/* Заголовки/текст — лёгкий теплый оттенок вместо холодного */
.title, .subtitle, h1, h2, h3, h4 { color: #fff7ec; }
.descr, p, li { color: #f7e7d6; }

/* Хедер/футер оставим с полупрозрачным фоном для читабельности */
.header{
  background: rgba(17, 22, 32, 0.78);
  border-bottom: 1px solid color-mix(in oklab, var(--warm-5) 35%, transparent);
  backdrop-filter: blur(14px);
}
.footer{
  background: linear-gradient(145deg, #b54a1b, #f0a44b);
  color: #1a0f0a;
  border-top: 5px solid #ffd5a1;
}
.footer .footer-menu h3,
.footer .footer-contact h3 { color: #1a0f0a; }
.footer .footer-menu ul li a,
.footer .footer-contact a { color: #2a170f; opacity: .8; }
.footer .footer-menu ul li a:hover,
.footer .footer-contact a:hover { opacity: 1; text-decoration: underline; }
