/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  line-height: 1.4;
  margin: 0;
  padding: 0;
 /*overflow-x: hidden;*/
  height:0px !important;	
  width: 100%;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Header */
.header {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.header__container {
  max-width: 1920px;
  margin: 0 auto;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 280px;
  position: relative;
  z-index: 102;
  max-width: 1920px;
  margin: 0 auto;
  gap: 60px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  width: 150px;
  height: auto;
}

.header__info {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 0 1 auto;
}

.header__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.header__info-text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.header__lang {
  display: flex;
  align-items: center;
}

.header__lang-text {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header__cart-icon {
  width: 24px;
  height: 24px;
}

.header__cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background-color: #ff1f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  padding: 0 4px;
}

/* Desktop Navigation - White Bar */
.header__nav--desktop {
  background-color: #ffffff;
  border-top: 1px solid #e8e4eb;
  display: block;
}

.header__nav--desktop .header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 60px;
  margin: 0 auto;
  padding: 18px 280px;
  max-width: 1920px;
}

.header__nav--desktop .header__nav-item {
  position: relative;
}

.header__nav--desktop .header__nav-item--has-dropdown {
  padding: 0 5px;
  margin: 0 -5px;
}

.header__nav--desktop .header__nav-item--has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -100px;
  right: -100px;
  height: 25px;
  background: transparent;
  pointer-events: auto;
  z-index: 999;
}

.header__nav--desktop .header__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  padding: 5px 10px;
  margin: 0 -10px;
}

.header__nav--desktop .header__nav-link:hover,
.header__nav--desktop .header__nav-item:hover .header__nav-link,
.header__nav--desktop .header__nav-item--has-dropdown:hover .header__nav-link {
  color: #ff1f1f;
}

.header__nav--desktop .header__nav-arrow {
  width: 10px;
  height: 6px;
  transition: transform 0.3s;
}

.header__nav--desktop .header__nav-item--has-dropdown:hover .header__nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.header__dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 25px 25px 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 220px;
  z-index: 1000;
  margin-top: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.header__dropdown::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -100px;
  right: -100px;
  height: 25px;
  background: transparent;
  pointer-events: auto;
  z-index: 999;
}

.header__dropdown::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #ffffff;
  z-index: 1001;
}

.header__nav-item--has-dropdown:hover .header__dropdown,
.header__nav-item--has-dropdown .header__dropdown:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.header__dropdown-link {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.header__dropdown-link:last-child {
  border-bottom: none;
}

.header__dropdown-link:hover {
  color: #ff1f1f;
}

.header__dropdown-link--highlight {
  color: #ff1f1f;
  text-decoration: underline;
}

/* Mobile Navigation - Hidden on Desktop */
.header__nav--mobile {
  display: none;
}

.header__nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.header__nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

.header__burger span {
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s linear;
  border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

.header__nav-close {
  display: none;
}

.header__nav-divider {
  display: none;
}

.header__nav-link--highlight {
  color: #ff1f1f;
  text-decoration: underline;
}

body.no-scroll {
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  width: 1920px;
  height: 754px;
  top: 0;
  opacity: 1;
  background: url("../images/hero-background-a48362.png") no-repeat center
    center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: visible;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .hero__container {
    position: relative;
    overflow: visible;
  }

  .hero__content {
    position: relative;
  }

  .hero__image-wrapper {
    position: absolute;
    top: 0;
    right: -50px;
    z-index: 1;
    pointer-events: none;
  }

  .hero__fire-behind {
    position: absolute;
    z-index: 0;
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .hero__fire-behind-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    transform: scaleX(-0.8);
  }

  .hero__image {
    position: relative;
    z-index: 2;
    width: 1000px !important;
    height: auto !important;
    margin-top: 73px;
    object-fit: contain;
    pointer-events: none;
  }
}

/* Fire on sides */
.hero__fire-side {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 0;
  bottom: 0;
  width: 400px;
  display: flex;
  align-items: center;
}

.hero__fire-side--left {
  left: 0;
  justify-content: flex-start;
}

.hero__fire-side--right {
  display: none;
}

.hero__fire-side--right .hero__fire-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  opacity: 0.9;
}

.hero__fire-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

.hero__content {
  max-width: 583px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin-left: 280px;
}

.hero__brand {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffc500;
  margin-bottom: 20px;
  margin-top: 0;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 0;
}

.hero__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 40px;
}

.hero__services {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.hero__service {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__service-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero__service-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.hero__btn {
  width: 332px;
  height: 60px;
  padding: 13px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 100, 100, 1) 0%,
    rgba(255, 31, 31, 1) 100%
  );
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: inset 0px 4px 12px 0px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  white-space: nowrap;
}

.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0px 4px 12px 0px rgba(255, 255, 255, 0.25),
    0px 4px 12px rgba(255, 31, 31, 0.3);
}

.hero__whatsapp {
  width: 332px;
  height: 60px;
  padding: 0 24px;
  background: #48c95f;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: inset 0px 4px 12px rgba(255, 255, 255, 0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: inset 0px 4px 12px 0px rgba(255, 255, 255, 0.25),
    0px 4px 12px rgba(72, 201, 95, 0.3);
}

.hero__whatsapp-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.hero__whatsapp-text-line {
  display: block;
  white-space: nowrap;
}

.hero__whatsapp-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero__whatsapp-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: none;
  box-shadow: none;
  border: none;
}

.hero__image-wrapper {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__fire-behind {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__fire-behind-image {
  width: 120%;
  height: 120%;
  object-fit: contain;
  opacity: 0.8;
  transform: scaleX(-1);
}

.hero__image {
  position: relative;
  z-index: 2;
  width: 850px;
  height: auto;
  object-fit: contain;
}

/* Services Section */
.services {
  background-color: #201e1e;
  padding: 100px 0;
}

.services__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 1280px;
  width: 100%;
}

.services__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 18px;
}

.services__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  width: 100%;
}

.services__card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 220px;
}

.services__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 100, 100, 1) 0%,
    rgba(255, 31, 31, 1) 100%
  );
}

.services__card-btn {
  width: 100%;
  padding: 13px 20px;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

/* Tools Section */
.tools {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.tools__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tools__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin-bottom: 60px;
  max-width: 100%;
}

.tools__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1064px;
  align-items: start;
}

.tools__card {
  background-color: #ffffff;
  border: 2px solid #b3d9ff;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tools__card-image-wrapper {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(240, 240, 240, 0.5) 100%
  );
  overflow: hidden;
  position: relative;
  padding: 30px 20px;
}

.tools__card-ellipse {
  position: absolute;
  width: 427px;
  height: 427px;
  background-color: #d1c9d6;
  border-radius: 50%;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.tools__card-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
}

.tools__card-image--back {
  z-index: 1;
  position: relative;
}

.tools__card-image--front {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 350px;
  max-height: 350px;
  object-fit: contain;
}

.tools__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 30px;
}

.tools__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  margin: 0;
}

.tools__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}

.tools__card-list {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 10px 0;
  padding-left: 20px;
  list-style: none;
}

.tools__card-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 8px;
}

.tools__card-list li::before {
  content: "-";
  position: absolute;
  left: -12px;
  color: #333333;
}

.tools__card-btn {
  padding: 14px 32px;
  background: linear-gradient(180deg, #ff6464 0%, #ff1f1f 100%);
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(255, 31, 31, 0.3);
}

.tools__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 31, 31, 0.4);
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background-color: #ffffff;
}

.reviews__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.reviews__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__rating-value {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #333333;
}

.reviews__stars {
  font-size: 18px;
  color: #ffc500;
}

.reviews__count {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #2c5bcb;
}

.reviews__info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1280px;
  width: 100%;
}

.reviews__card {
  background-color: #ffffff;
  border: 1px solid #e8e4eb;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 8px 24px 0px rgba(232, 228, 235, 1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.reviews__card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 32px 0px rgba(232, 228, 235, 1);
}

.reviews__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.reviews__card-avatar--purple {
  background-color: #9b59b6;
}

.reviews__card-avatar--orange {
  background-color: #ff6b35;
}

.reviews__card-avatar--green {
  background-color: #27ae60;
}

.reviews__card-avatar-icon {
  width: 24px;
  height: 24px;
}

.reviews__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews__card-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
}

.reviews__card-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #666666;
}

.reviews__card-rating {
  font-size: 14px;
  color: #ffc500;
}

.reviews__card-time {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #666666;
}

.reviews__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}

.reviews__card-translation {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #2c5bcb;
  text-decoration: none;
}

.reviews__card-translation:hover {
  text-decoration: underline;
}

.reviews__card-images {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.reviews__card-images--single {
  display: flex;
  width: 100%;
}

.reviews__card-images--single .reviews__card-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.reviews__card-images--horizontal {
  flex-direction: row;
  width: 100%;
}

.reviews__card-images--horizontal .reviews__card-image {
  flex: 1;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 4px;
}

.reviews__card-images--vertical {
  flex-direction: column;
}

.reviews__card-images--vertical .reviews__card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.reviews__card-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.reviews__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.reviews__btn {
  padding: 13px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 100, 100, 1) 0%,
    rgba(255, 31, 31, 1) 100%
  );
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  box-shadow: inset 0px 4px 12px 0px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s;
}

.reviews__btn:hover {
  transform: translateY(-2px);
}

.reviews__all-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reviews__all-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  text-align: center;
}

.reviews__google-box {
  padding: 10px 30px;
  background-color: #ffffff;
  border: 1px solid #e8e4eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__google-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: #e8e4eb;
}

.benefits__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px;
  display: flex;
  justify-content: center;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  max-width: 1280px;
  width: 100%;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  text-align: left;
}

.benefits__icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 100, 100, 1) 0%,
    rgba(255, 31, 31, 1) 100%
  );
  border-radius: 50%;
  flex-shrink: 0;
}

.benefits__icon-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.benefits__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.benefits__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}

/* Additional Services Section */
.additional-services {
  padding: 80px 0;
  background-color: #ffffff;
}

.additional-services__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.additional-services__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin-bottom: 60px;
}

.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  width: 100%;
}

.additional-services__card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #e8e4eb;
  display: flex;
  flex-direction: column;
}

.additional-services__card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.additional-services__card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.additional-services__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  margin: 0;
}

.additional-services__card-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #333333;
  margin: 0;
}

.additional-services__card-btn {
  padding: 13px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 100, 100, 1) 0%,
    rgba(255, 31, 31, 1) 100%
  );
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  box-shadow: inset 0px 4px 12px 0px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s;
  align-self: flex-start;
  margin-top: auto;
}

.additional-services__card-btn:hover {
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background-color: #ffffff;
}

.blog__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px;
  display: flex;
  justify-content: center;
}

.blog__content {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
}

.blog__image {
  width: 414px;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.blog__text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.blog__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  margin: 0;
}

.blog__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}

.blog__btn {
  padding: 13px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 100, 100, 1) 0%,
    rgba(255, 31, 31, 1) 100%
  );
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  box-shadow: inset 0px 4px 12px 0px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s;
  align-self: flex-start;
}

.blog__btn:hover {
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #e8e4eb;
}

.contact__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
  max-width: 724px;
}

.contact__phone-btn {
  padding: 13px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 100, 100, 1) 0%,
    rgba(255, 31, 31, 1) 100%
  );
  border-radius: 4px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  box-shadow: inset 0px 4px 12px 0px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s;
  min-width: 300px;
}

.contact__phone-btn:hover {
  transform: translateY(-2px);
}

.contact__email {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact__email-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.contact__email-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
  color: #333333;
}

.contact__socials {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.contact__social-link:hover {
  transform: scale(1.1);
}

.contact__social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.contact__reviews {
  display: flex;
  align-items: center;
}

.contact__reviews-icon {
  width: 116px;
  height: 58px;
  object-fit: contain;
}

/* Footer */
.footer {
  background-color: #0d0a36;
  padding: 80px 0 0;
  color: #ffffff;
  margin: 0;
}

.footer__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 320px;
}

.footer__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 270px;
}

.footer__logo-img {
  width: 197px;
  height: auto;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
  color: #ffffff;
}

.footer__nav-columns {
  display: flex;
  gap: 80px;
  justify-content: center;
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer__nav-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
  color: #ffffff;
  transition: color 0.3s;
  white-space: nowrap;
}

.footer__nav-link:hover {
  color: #ff1f1f;
}

.footer__nav-divider {
  width: 128px;
  height: 1px;
  background-color: rgba(232, 228, 235, 0.2);
  margin: 0;
}

.footer__bottom {
  padding-top: 30px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.22;
  color: #ffffff;
}

.footer__privacy {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.22;
  color: #ffffff;
  text-align: center;
  transition: color 0.3s;
}

.footer__privacy:hover {
  color: #ff1f1f;
}

.footer__credits-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__credits {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  color: #ffffff;
}

.footer__gim-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Mobile navigation - hidden on desktop */
.footer__nav-mobile {
  display: none;
}

/* Responsive */
@media (max-width: 1600px) {
  .header__top {
    padding: 15px 120px;
    gap: 50px;
  }

  .header__nav--desktop {
    padding-left: 120px;
  }

  .header__nav--desktop .header__nav-list {
    padding: 18px 0;
    gap: 50px;
  }

  .hero {
    width: 100%;
    height: auto;
    padding: 80px 0;
  }

  .hero__container {
    padding: 0 80px;
  }
}

@media (max-width: 1280px) {
  .header__top {
    padding: 15px 40px;
    gap: 30px;
    justify-content: space-between;
  }

  .header__nav--desktop {
    padding-left: 40px;
  }

  .header__nav--desktop .header__nav-list {
    padding: 18px 0;
    gap: 40px;
  }

  .hero__container {
    padding: 0 40px;
  }
}

@media (max-width: 1920px) {
  .header__container,
  .hero__container,
  .services__container,
  .tools__container,
  .reviews__container,
  .benefits__container,
  .additional-services__container,
  .blog__container,
  .footer__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Mobile Media Queries */
@media (max-width: 1024px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header__container {
    padding: 0;
  }

  .header__top {
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 20px;
    justify-content: space-between;
  }

  .header__logo {
    flex: 1;
  }

  .header__logo-img {
    width: 120px;
  }

  .header__info {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #e8e4eb;
  }

  .header__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header__info-text {
    font-size: 14px;
  }

  .header__actions {
    display: flex;
    gap: 15px;
  }

  .header__burger {
    display: flex;
  }

  .header__nav-overlay {
    display: block;
  }

  /* Hide desktop nav on mobile */
  .header__nav--desktop {
    display: none !important;
  }

  /* Show mobile nav */
  .header__nav--mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1100;
    transition: right 0.3s ease-in-out;
    padding: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
  }

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

  .header__nav--mobile .header__nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1102;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
  }

  .header__nav--mobile .header__nav-close svg {
    display: block;
    width: 24px;
    height: 24px;
    stroke: #333333;
    stroke-width: 2;
  }

  .header__nav--mobile .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 70px 30px 30px;
    list-style: none;
    margin: 0;
    width: 100%;
    display: flex;
    box-sizing: border-box;
  }

  .header__nav--mobile .header__nav-item {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__nav--mobile .header__nav-link {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    padding: 14px 0;
    display: block;
    color: #333333;
    text-decoration: none;
    transition: color 0.2s;
    text-align: left;
  }

  .header__nav--mobile .header__nav-link:hover {
    color: #ff1f1f;
  }

  .header__nav--mobile .header__nav-link--highlight {
    color: #ff1f1f;
    text-decoration: underline;
  }

  .header__nav--mobile .header__nav-divider {
    display: block;
    height: 1px;
    background-color: #e8e4eb;
    margin: 12px 0;
    width: 100%;
    list-style: none;
  }

  .header__nav-link.active {
    text-decoration: underline;
    text-decoration-color: #333333;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }

  .header__nav-divider {
    height: 1px;
    background-color: #e8e4eb;
    margin: 12px 0;
    padding: 0;
    width: 100%;
    list-style: none;
    display: block;
  }

  .hero {
    width: 100%;
    min-height: auto;
    height: auto;
    padding: 40px 0 0;
    text-align: center;
    background-position: top center;
  }

  .hero__container {
    padding: 0 20px;
    flex-direction: column;
  }

  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    margin-left: 0;
  }

  .hero__brand {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .hero__title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero__services {
    align-items: flex-start;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .hero__service {
    width: 100%;
  }

  .hero__service-text {
    font-size: 16px;
    text-align: left;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .hero__btn,
  .hero__whatsapp {
    width: 100%;
    height: 50px;
  }

  .hero__whatsapp {
    justify-content: center;
    padding: 0 18px;
    gap: 12px;
  }

  .hero__whatsapp-text {
    font-size: 14px;
  }

  .hero__whatsapp-icon-wrap {
    width: 35px;
    height: 35px;
  }

  .hero__whatsapp-icon {
    width: 35px;
    height: 35px;
  }

  .hero__image-wrapper {
    position: relative;
    transform: none;
    width: 100%;
    margin-top: -50px;
    z-index: 2;
    right: auto;
    top: auto;
    display: flex;
    justify-content: center;
  }

  .hero__fire-behind {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__fire-behind-image {
    width: 120%;
    height: 120%;
    object-fit: contain;
    opacity: 0.8;
    transform: scaleX(-1);
  }

  .hero__image {
    position: relative;
    width: 120%;
    max-width: none;
    height: auto;
    margin-bottom: -50px;
    top: auto;
    left: auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .services__card {
    height: 180px;
  }

  .services__card-btn {
    font-size: 12px;
    padding: 10px;
  }

  .tools {
    padding: 70px 0;
  }

  .tools__container {
    padding: 0 40px;
  }

  .tools__title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .tools__grid {
    gap: 30px;
  }

  .tools__card-image-wrapper {
    min-height: 280px;
    padding: 25px;
  }

  .tools__card-content {
    padding: 25px;
  }

  .benefits {
    padding: 80px 0;
  }

  .benefits__container {
    padding: 0 40px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .benefits__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  /* Ensure single column on smaller tablets and mobile */
  @media (max-width: 900px) {
    .benefits__grid {
      grid-template-columns: 1fr !important;
    }
  }

  .benefits__icon {
    width: 85px;
    height: 85px;
  }

  .benefits__icon-img {
    width: 43px;
    height: 43px;
  }

  .benefits__title {
    font-size: 22px;
  }

  .benefits__text {
    font-size: 16px;
  }

  .contact {
    padding: 70px 0;
  }

  .contact__container {
    padding: 0 40px;
  }

  .contact__text {
    font-size: 22px;
  }

  .contact__phone-btn {
    min-width: 280px;
  }

  .footer__container {
    padding: 0 40px;
  }

  .footer__content {
    gap: 50px;
  }

  .footer__nav-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer__left {
    align-items: center;
    text-align: center;
  }

  /* Hide mobile nav on tablet */
  .footer__nav-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__top {
    flex-wrap: wrap;
    gap: 20px;
  }

  .header__info {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero__fire-side {
    display: none;
  }

  .hero__image-wrapper {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .hero__fire-behind {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .hero__fire-behind-image {
    width: 150%;
    height: 150%;
    object-fit: contain;
    opacity: 0.7;
    transform: scaleX(-1);
  }

  .hero__image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 2;
    margin: 0 auto;
  }

  .hero__brand {
    font-size: 28px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__service-text {
    font-size: 16px;
  }

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

  .tools {
    padding: 60px 0;
  }

  .tools__container {
    padding: 0 20px;
  }

  .tools__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .tools__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tools__card-image-wrapper {
    min-height: 250px;
    padding: 20px;
  }

  .tools__card-content {
    padding: 25px;
  }

  .tools__card-title {
    font-size: 20px;
  }

  .tools__card-text {
    font-size: 15px;
  }

  .tools__card-list {
    font-size: 15px;
  }

  .tools__card-btn {
    width: 100%;
    padding: 16px 24px;
  }

  .benefits {
    padding: 60px 0;
  }

  .benefits__container {
    padding: 0 20px;
  }

  .benefits__grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    width: 100%;
    max-width: 100%;
  }

  .benefits__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
  }

  .benefits__icon {
    width: 80px;
    height: 80px;
  }

  .benefits__icon-img {
    width: 40px;
    height: 40px;
  }

  .benefits__title {
    font-size: 20px;
  }

  .benefits__text {
    font-size: 15px;
    max-width: 100%;
  }

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

  .reviews__card-images {
    flex-direction: column;
  }

  .reviews__all-reviews {
    gap: 15px;
  }

  .reviews__all-text {
    font-size: 20px;
  }

  .reviews__actions {
    flex-direction: column;
    gap: 20px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .benefits__item {
    align-items: center;
    text-align: center;
  }

  .benefits__text {
    max-width: 100%;
  }

  .additional-services__grid {
    grid-template-columns: 1fr;
  }

  .blog__content {
    flex-direction: column;
  }

  .blog__image {
    width: 100%;
    max-width: 100%;
  }

  .contact {
    padding: 60px 0;
  }

  .contact__container {
    padding: 0 20px;
    gap: 25px;
  }

  .contact__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #333333;
    text-decoration: none;
    max-width: 100%;
    text-align: center;
  }

  .contact__phone-btn {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 6px;
  }

  .contact__email {
    justify-content: center;
    gap: 10px;
  }

  .contact__email-icon {
    width: 20px;
    height: 20px;
  }

  .contact__email-text {
    font-size: 16px;
    color: #333333;
  }

  .contact__socials {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(107, 78, 255, 0.2);
    width: 100%;
  }

  .contact__social-link {
    width: 45px;
    height: 45px;
  }

  .contact__social-icon {
    width: 45px;
    height: 45px;
  }

  .contact__reviews {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact__reviews-icon {
    width: 100px;
    height: auto;
  }

  .footer {
    padding: 40px 0 30px;
  }

  .footer__container {
    padding: 0 20px;
  }

  .footer__content {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* Hide desktop navigation and logo on mobile */
  .footer__left {
    display: none;
  }

  .footer__nav-columns {
    display: none;
  }

  /* Show mobile navigation */
  .footer__nav-mobile {
    display: block;
    width: 100%;
  }

  .footer__nav-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 30px 0;
  }

  .footer__nav-list-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .footer__nav-link-mobile {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    text-decoration: none;
    transition: color 0.2s;
    width: 100%;
    display: block;
  }

  .footer__nav-link-mobile:hover {
    color: #ff1f1f;
  }

  .footer__nav-divider-mobile {
    width: 100%;
    max-width: 200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 12px auto;
  }

  .footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
  }

  .footer__bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer__copyright {
    font-size: 13px;
    margin: 0;
  }

  .footer__privacy {
    font-size: 13px;
  }

  .footer__credits-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .footer__credits {
    font-size: 12px;
  }
}
