:root {
  --primary-color: #7a4f2d;
  --text-color: #e7dccf;
  --accent-color: #c5c5c5;
  --primary-hover: #a16d40;
  --secondary-color: #9fa0a2;
  --text-inverted: #1c1208;
  --text-primary: #f8f3ea;
  --text-secondary: #d5cbbf;
  --background-color: #2d1c15;
  --secondary-background: #3a251b;
  --border-radius-primary: 12px;
  --border-radius-secondary: 8px;
  --border-radius-third: 6px;

  --font-family: 'Zilla Slab', serif;
  --second-family: 'Zilla Slab', serif;
  --third-family: 'Zilla Slab', serif;
}

html {
  scroll-behavior: smooth;
}

/* === Header === */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(45, 28, 21, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 167, 135, 0.35);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.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;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-feature {
  padding: 40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-feature h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.service-feature ul {
  padding-left: 18px;
  color: var(--text-secondary);
  margin-top: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card h4 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}


/* === 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;
  }
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.about-pillars article {
  padding: 24px;
  border-radius: var(--border-radius-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.about-pillars span {
  font-family: var(--second-family);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

.about-pillars h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.about-pillars p {
  color: var(--text-secondary);
  line-height: 1.6;
}


/* Success Stats */
.success-stats {
  padding: 80px 0;
  background: linear-gradient(120deg, rgba(122, 79, 45, 0.55), rgba(58, 37, 27, 0.85));
}

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

.success-stats .title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-secondary);
  padding: 28px;
  color: var(--text-secondary);
  min-height: 180px;
}

.impact-card span {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.impact-card h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.impact-card p {
  line-height: 1.6;
  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-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.why-choose-callout {
  padding: 30px;
  border-radius: var(--border-radius-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-callout ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--text-secondary);
}

.why-choose-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-secondary);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.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: linear-gradient(120deg, rgba(45, 28, 21, 0.8), rgba(58, 37, 27, 0.9));
  color: var(--text-primary);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-secondary);
  padding: 28px;
  min-height: 220px;
}

.quote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.author {
  font-family: var(--second-family);
  color: var(--text-primary);
  font-weight: 600;
}

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

.our-blog {
  background: linear-gradient(120deg, rgba(45, 28, 21, 0.4), rgba(58, 37, 27, 0.9));
  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(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-secondary);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.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(--text-primary);
  background: rgba(255, 255, 255, 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;
  }
}

/* === CTA Panel === */

.cta-panel {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(197, 167, 135, 0.3), rgba(89, 72, 59, 0.6)),
    rgba(45, 28, 21, 0.9);
}

.cta-panel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 32, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-panel-content {
  max-width: 620px;
}

.cta-panel .title {
  font-size: 42px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta-panel .descr {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cta-panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-panel-actions .secondary-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-panel-actions .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cta-panel-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cta-panel-info span {
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

@media screen and (max-width: 1024px) {
  .cta-panel-container {
    padding: 40px 30px;
  }
  .cta-panel .title {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .cta-panel-container {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }
  .cta-panel-actions {
    justify-content: center;
  }
}

/* === 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);
}

.faq-hero {
  padding: 140px 0 40px;
  background: radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.2), transparent 45%),
    radial-gradient(circle at 90% 0, rgba(99, 102, 241, 0.2), transparent 50%),
    #050b13;
  color: var(--text-primary);
}

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

.faq-hero-content {
  max-width: 700px;
}

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

.faq-hero-title {
  font-family: var(--second-family);
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.faq-hero-descr {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

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

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

.faq-category-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-secondary);
  padding: 24px;
  color: var(--text-primary);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.5);
}

.faq-category-card h3 {
  font-family: var(--second-family);
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.faq-category-card p {
  color: var(--text-secondary);
}

.faq-callout {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(99, 102, 241, 0.15));
  text-align: center;
  margin-top: 60px;
}

.faq-callout h3 {
  font-family: var(--second-family);
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.faq-callout p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 24px;
}

.faq-callout .primary-btn {
  background: var(--secondary-color);
  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;
  }
}

.contact-hero {
  padding: 140px 20px 60px;
  background: radial-gradient(circle at 20% 25%, rgba(34, 211, 238, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.2), transparent 50%), #050b13;
  color: var(--text-primary);
}

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

.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.contact-hero-title {
  font-size: 46px;
  font-family: var(--second-family);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.contact-hero-descr {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.contact-hero-meta {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 0;
}

.contact-hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-secondary);
  padding: 28px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.contact-hero-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.contact-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-secondary);
}

.contact-channels {
  padding: 80px 0;
  background: var(--background-color);
}

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

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-channel-card {
  background: var(--secondary-background);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: var(--border-radius-secondary);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.contact-channel-card .icon {
  font-size: 32px;
  color: var(--primary-color);
}

.contact-channel-card h3 {
  font-family: var(--second-family);
  font-size: 20px;
  margin: 0;
}

.contact-channel-card p {
  color: var(--text-secondary);
}

.contact-channel-card a {
  font-weight: 600;
  color: var(--text-primary);
}

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

.contact-schedule {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(99, 102, 241, 0.12));
}

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

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.schedule-card {
  background: rgba(11, 18, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  min-height: 180px;
}

.schedule-card h3 {
  color: var(--primary-color);
  margin-bottom: 14px;
}

.schedule-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .contact-hero-title {
    font-size: 34px;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
}

/* === 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(197, 167, 135, 0.18), transparent 60%),
    radial-gradient(1000px 500px at 80% 20%, rgba(158, 158, 158, 0.1), transparent 60%),
    linear-gradient(135deg, #2d1c15, #4c2f24 60%, #c5c5c5 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;
  }
}