  :root{
      --color-red: 220 102 85;
      --color-brown: 77 59 59;
      --tw-bg-opacity: 0.1;
      --brown: #620d05;
      --red: #8c0b0a;
      --beige: #f2c19d;
       --color-black: #000000;
      --color-black-text: #1B1B26;
      --color-white: #FFFFFF;
      --color-primary: #00A7AA;
      --color-primary-hover: #E2F5F6;
      --color-primary-disabled: #80D3D5;
      --color-secondary: #F85077;
      --color-secondary-hover: #FFEEF2;
      --color-secondary-disabled: #FE8EA8;
      --color-bg: #F0F5F6;
      --border: 1px solid var(--color-primary);
      --border-radius: 60px;
      --border-radius-small: 40px;
      --container-width: 1332px;

  }
  *{
    font-family: "Roboto", sans-serif !important;
  }
 #services,
  #fetures-section,
  #prices,
  #testimonials,
  #faq,
  #footer {
      scroll-margin-top: 200px; 
  }
  .container{
    max-width: 1320px !important;
    padding: 0 20px !important;
  }
  body{
   background: linear-gradient(135deg, rgba(197, 109, 82, 0.192) 0%, rgba(228, 139, 110, 0.226) 100%);
    background-blend-mode: saturation;
    background-size: cover;
    content: "";
    height: auto;
  }
  section{
    margin-bottom: 60px;
  }

  .modal{
    z-index: 9999;
  }
  .mobile-menu{
    display: none !important;
  }

.offcanvas {
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease-in-out;
    z-index: 1045;
    overflow-y: auto;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.offcanvas.show {
    right: 0;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.offcanvas-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mobile-offcanvas {
    background: #fff;
    width: 340px;
    padding: 20px;
}

.mobile-offcanvas .offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-offcanvas .offcanvas-logo img {
        height: auto;
    width: 50px;
}
.btn-close{
  font-size: 20px !important;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-close::before {
  content: '×';
  font-size: 28px;
  line-height: 1;
  color: var(--brown);
}
.offcanvas-contact {
    background: #fdf7f2;
    padding: 18px 20px;
    border-radius: 16px;
    margin-bottom: 28px;
    border: 1px solid #f3e5dc;
}

.offcanvas-contact .title {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--brown);
}
.offcanvas-contact .header-phone-side a{
  font-size: 18px;
}
.offcanvas-contact .header-phone-side{
  margin-bottom: 20px;
}
.offcanvas-body .btn-main{
  width: 100%;
  margin-top: 20px;
}
.offcanvas-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--brown);
}


.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.offcanvas-nav li {
    margin-bottom: 10px;
}

.offcanvas-nav li a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--brown);
    padding: 15px 16px;
    border-radius: 4.5px;
    transition: .2s;
    background: #faf4ee;
}

.offcanvas-nav li a:hover {
    background: rgb(var(--color-red) / .15);
    color: #671200;
}
  a{
    text-decoration: none;
  }
  header{
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: box-shadow 0.3s ease;
  }
  
  .header-top, .footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    transition: .3s
  }
  .header-top.active {    
    background: #fff;
    padding: 24px 20px;
    border-radius: 12px 12px 0 0;}
  .logo-side{
    display: flex;
    align-items: center; 
    gap: 18px;
  }
  #logoheader svg{
    width: 172px;
    height: 40px;
  }
  .line{
    height: 32px;
    width: 1px;
    background-color: var(--brown);
    opacity: .2;
  }
  .logo-side p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
  }
  .header-icons{
    display: flex;
    gap: 10px;
    position: relative;
    align-items:center
  }
  .header-icons::after{
    position: absolute;
    content: "";
    top: 50%;
    left: -15px;
    border-radius:50%;
    height: 8px;
    width: 8px;
    transform: translate(0, -50%);
    background-color: var(--brown)
  }
  .header-icons-text{
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 18px
    }
  .header-icons-text span{
    font-weight: 700;
    font-size: 18px;
  
  }
  .icons-side{
    display: flex;
    gap: 10px;
    align-items:center
  }
    .icons-sidet svg, .icons-side path{
    fill: var(--brown)!important;
    height: 23px;
    width: 23px;
  }
  .icons-side a {
    padding: 9px;
    background-color: rgb(var(--color-red) / var(--tw-bg-opacity));
    border-radius: 12px;
    transition-duration: .2s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
  }
    .icons-side a:hover{
    background-color: rgb(var(--color-red) / .2);
  }
  .header-phone-side{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items:flex-start
  }
  .phone-header{
    color: #333 !important;
    font-size: 20px;
    font-weight: 700;
  }
   .header-phone-side a{
    color: var(--brown);
    font-size: 16px;
   }

  .header-right{
    display: flex;
    gap: 18px;
    align-items: center
  }
  .header-right svg, .header-right path{
    fill: #671200!important;
    height: 23px;
    width: 23px;
  }
  .header-right a , .header-right #iconheader a{
    padding: 9px;
    background-color: rgb(var(--color-red) / var(--tw-bg-opacity));
    border-radius: 12px;
    transition-duration: .2s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
  }
  .header-right div{
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown)
  }
  .header-right div a{
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
  }
  .header-right a:hover{
    background-color: rgb(var(--color-red) / .2);
  }
  .header-right #iconheader:hover  a{
    background-color: rgb(var(--color-red) / .2); 
  }
  .header-right #iconheader:hover p{
    color: var(--red)
  }
  nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--brown);
    height: 72px;
    border-radius:12px;
    transition: .3s;
  }

  nav.active {border-radius: 0 0 12px 12px;}
  nav .line{
    background-color: var(--beige)
  }
  nav a{
  position: relative;
  flex: 1 1 auto;         
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--beige);
  text-decoration: none;
  z-index: 1;
  height: 100%;
}
nav a:hover{
  color: #fff;
  background-color: #ffffff1a;
}
  .navhosting{
    align-items: center;
    background-color: #ffffff1a;
    display: flex;
    gap: 4px;
    padding: 9px 16px;
  }
  .navhosting:hover svg{
    fill: #fff;
  }
  .hero-section {
    margin-top: 200px;
  padding: 80px 0 0 0;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  /* flex: 1; */
  max-width: 600px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 0.8s ease forwards 0.2s;
  text-transform: uppercase;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.1;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 0.8s ease forwards 0.5s;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 0.8s ease forwards 0.8s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1.5s ease forwards 1.1s;
}
.hero-buttons.mobile-hero{
  display: none;
}

.btn-outline {
  font-weight: 700;
  border-radius: 4.5px;
  padding: 0 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--brown);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color:var(--brown);
  background-color: #fff;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
  width: fit-content;
  display: flex;
  align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
  line-height: 20px;
    min-height: 48px;
    position: relative;
}

.btn-outline:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: var(--browrn);
  z-index: -1;
}

.btn-outline:hover, .btn-outline:focus {
  color:#fff;
}

.btn-outline:hover:before, .btn-outline:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-outline:active {
  transform: scale(0.9);
}


.hero-image {
  flex: 1;
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#logoheader img{
      height: 60px;
    width: 100px;
    object-fit: contain;
}

.hero-image img {
  max-width: 320px;
  width: 100%;
  object-fit:contain;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}



  .services-section{
    position: relative;
    z-index: 10;
  }

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

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

}


.card-left {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-left h2 {
  font-size: 35px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 18px;
  line-height: 120% !important;
}

.card-left p {
  font-size: 18px;
  color: #4c3f3f;
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-main {
  font-weight: 700;
  border-radius: 4.5px;
  padding: 0 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--brown);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  background-color: var(--brown);
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
  width: fit-content;
  display: flex;
  align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
  line-height: 20px;
    min-height: 48px;
    position: relative;
}

.btn-main:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #fff;
  z-index: -1;
}

.btn-main:hover, .btn-main:focus {
  color:var(--brown);
}

.btn-main:hover:before, .btn-main:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-main:active {
  transform: scale(0.9);
}
.btn-main2 {
  font-weight: 700;
  border-radius: 4.5px;
  padding: 0 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--brown);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: var(--brown);
  background-color: #fff;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
  width: fit-content;
  display: flex;
  align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
  line-height: 20px;
    min-height: 48px;
    position: relative;
}

.btn-main2:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color:var(--brown);
  z-index: -1;
}

.btn-main2:hover, .btn-main2:focus {
  color:#fff;
}

.btn-main2:hover:before, .btn-main2:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-main2:active {
  transform: scale(0.9);
}

/* Кнопки Войти и Регистрация в шапке — в один ряд */
header .header-button {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
header .header-button .btn-main,
header .header-button .btn-main2 {
  width: auto !important;
  flex-shrink: 0;
}

.hero-buttons{
  display: flex;
  gap: 15px;
}
.card-right {
  position: relative;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.price {
  font-size: 16px;
  color: #5b4a4a;
  text-align: right;
}

.price-value {
  font-size: 27px;
  font-weight: 700;
  color: #3a2a2a;
}

.price-sub {
  font-size: 13.5px;
  opacity: 0.6;
}


.card-img {
      width: 270px;
    height: 270px;
    opacity: 1;
    position: absolute;
         bottom: -91px;
    left: -147px;

}
.card-img svg{
  fill: var(--brown);
}
.card-img path{
  fill: var(--brown);
}


#fetures-section{
  padding: 10px 0;
}

#fetures-section .fetures-place{
    text-align: center;
    background: #fff;
    margin: -10px 0;
    padding: 30px 20px;
    -webkit-box-shadow: 0px 0px 43px -1px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 0px 43px -1px rgba(0,0,0,0.04);
    box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.04);
    position: relative;
    padding-bottom: 0;
	-webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
	width:100%;
  display: flex;
      flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}
.rows{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 40px;
  column-gap: 30px;
  align-items: stretch
}

#fetures-section .fetures-place i:before{
    font-size: 70px;
    margin-left: 0;
    color: #264b65;
    z-index: 3;
    position: relative;
		-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#fetures-section .fetures-place:hover i:before{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
    color: #fff;
}

#fetures-section .fetures-place h5{
        font-size: 23px;
    margin-top: -5px;
    margin-bottom: 13px;
    z-index: 3;
    position: relative;
    color: var(--brown);
    font-weight: 700;
    text-transform: uppercase;
}

#fetures-section .fetures-place:hover h5{
	color: #fff;
}
#fetures-section .fetures-place p{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    color: #c4cdd4;
    margin-top: -7px;
    z-index: 3;
    position: relative;
}


#fetures-section .fetures-place:hover p{
    color: #fff;
}
#fetures-section .btn-main{
  width: 100%;
  position: relative;
  z-index: 10;
}
.fetures-place:hover .icon svg{
  fill: #fff
}
.fetures-place:hover .icon path{
  fill: #fff
}

.icon{
  position: relative;
  z-index: 7;
  transition: .5s all;
}
.icon svg, .icon path{
  transition: .1s;
}


.icon{
  margin-bottom: 20px;
}

#fetures-section .fetures-place{
  display: flex;
  border: none;
  position: relative;
  overflow: hidden;
      border-radius: 12px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
}
#fetures-section .fetures-place span{
    line-height: 20px;
    color: #333;
    font-size: 15px;
    z-index: 3;
    position: relative;
    padding: 10px 0;
  
}
#fetures-section .fetures-place:hover span{
    color: #fff;
}

#fetures-section .fetures-place:before {
  content: '';
  background: var(--red);
  width: 900px;
  height: 660px;
  position: absolute;
  -webkit-transform: translate(-1000px, -400px) rotate(130deg);
          transform: translate(-1000px, -400px) rotate(130deg);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index:0;
}
#fetures-section .fetures-place:after {
  content: attr(data-word);
  color: white;
  font-size: 2em;
  position: relative;
  z-index: 100;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-weight: 200;
}
#fetures-section .fetures-place:hover:after {
  font-size: 2.2em;
}
#fetures-section .fetures-place:hover:before {
    -webkit-transform: translate(-290px, -400px) rotate(130deg);
    transform: translate(-290px, -400px) rotate(130deg);
}



#faq  h2 {
    font-size: 40px;
    font-weight: 900;
}
.title {
  font-size: clamp(26px, 3.0769230769vw, 40px);
  line-height: 130%;
  color: var(--color-black);
  font-weight: 700;
  margin-bottom:20px;
  text-align: center;
}
.accordion__block {
  margin-bottom: 16px;
  background-color: var(--color-white);
  border-radius: 24px;
}

.accordion__summary {
  list-style: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 4.5px;
}
.accordion__summary span {
  width: 36px;
  height: 36px;
  background-color: inherit;
  border: 1px solid var(--color-black);
  display: block;
  border-radius: 50%;
  position: relative;
  transition: transform 0.2s ease-out;
  flex: none;
}
.accordion__summary span::after, .accordion__summary span::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 50%;
  background-color: var(--color-black);
  transition: transform 0.2s ease-out;
}
.accordion__summary span::after {
  left: 10px;
}
.accordion__summary span::before {
  left: 10px;
  transform: rotate(90deg);
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.5s;
  background-color: var(--color-white);
  opacity: 0;
  padding-right: 20px;
  padding: 0px 20px;
  border-bottom-right-radius: 4.5px;
  border-bottom-left-radius:4.5px;
}
.accordion__content_body {
  overflow: hidden;
  font-weight: 600;
  line-height: 140%;
  font-size:15px;
}
.accordion__title {
    font-weight: 600;
    font-size: 1.125rem;
}
.accordion__content_body p {
    font-size: 17px;
    font-weight: 400;
}
.accordion__details[open] .accordion__summary span {
  border: 1px solid var(--brown);
}
.accordion__details[open] .accordion__summary span::after {
  background-color: var(--red);
}
.accordion__details[open] .accordion__summary span::before {
  transform: rotate(0deg);
  background-color: var(--color-secondary);
}
.accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 24px;
}

.testimonials__section .swiper{
  padding: 10px;
}

.testimonials__section .sec_title {
  font-size: 40px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  height: auto;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 22px "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brown), var(--red));
}


.testimonial-info h3 {
  font: 20px "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--brown);
  margin: 0 0 5px;
}

.testimonial-info .title {
  font: 14px "Montserrat", sans-serif;
  color: rgba(98, 13, 5, 0.7);
}

.stars {
  color: #f5b301;
  font: 20px Montserrat;
  margin-bottom: 15px;
}

.testimonial-card p {
  font: 16px Montserrat;
  line-height: 1.5;
  color: #333;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: rgba(255,255,255,0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #f5b301;
}
.testimonials__section h2{
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 60px;
  position: relative;
}


.pricing-area h2 {
    color: #333;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 40px;
}


.pricing_card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f3e5dc;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;


}

.cpu_box {
    background: var(--brown); 
    color: #fff;
    padding: 30px 0;
    font-size: 30px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items:center;
    justify-content: center;
}
.cpu_box svg{
  width: 35px ;
  height: 35px !important;
}
.cpu_box p , .ram_box p, .storage_list p{
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 8px;
}
.storage_list p{
  margin-bottom: 10px;
  color: var(--brown)
}
.ram_box p{
  color: var(--brown);
  font-size: 20px;
  flex-direction: column-reverse;
  gap: 0;
  margin-top: 5px;
}
.ram_box svg{
  width: 40px ;
  height: 40px !important;
}

.ram_box {
    background: var(--beige); 
    color: #4c2a22;
    padding: 26px 0;
    font-size: 28px;
    font-weight: 700;
}

.storage_list {
    padding: 20px 0;
}

.storage_list div {
    width: 80%;
    margin: 5px auto;
    background: #f7e5d4; 
    padding: 26px 0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #4c2a22;
}
.pricing-content{
  flex: 1;
}

.pricing_price {
    padding: 20px 0 10px;
}
.pricing_card{
  display: flex;
}

.pricing_price .month {
    font-size: 22px;
    font-weight: 800;
    color: var(--red); 
}


.pricing_price .year {
    background: #f3e7df; 
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #5a3a32;
    margin-top: 6px;
    display: inline-block;
}

.pricing_bottom {
    margin: auto;
    padding: 22px 0;
}
.pricing_bottom a{
  text-align: center;
}

footer {
  background: #fff;
  color: #333;
  font-family: "Play", sans-serif;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo-side {
  max-width: 280px;
}
#logofooter img {
  width: 120px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-question span {
  font-weight: 700;
  color: var(--brown);
  font-size: 18px;
}
.footer-question p {
  font-size: 15px;
  color: #666;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(210, 20, 20, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.footer-phone {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-phone .phone {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.footer-phone .mail {
  color: var(--brown);
  font-size: 15px;
}
.footer-btn .btn-main2 {
  border: 1px solid var(--brown);
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer-btn .btn-main2:hover {
  background: var(--brown);
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 30px;
}
.downloadboxs{
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  width: 100%;
}
.downloadboxs .rekvizit-box a{
  text-align: center;
  font-size: 17px;
    font-weight: 600;
    color: var(--red);

}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.footer-menu .menu-title,
.footer-hours .menu-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 10px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px 40px;
}
.menu-grid a {
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}
.menu-grid a:hover {
  color: var(--brown);
}

.footer-hours .hours-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 15px;
}


.rekvizit-box {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--brown);
    padding: 45px 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.rekvizit-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 26px;
    color: var(--brown);
}


.rekv-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 45px;
}


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


.rekv-col li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.rekv-col li:last-of-type {
    border-bottom: none;
}

.rekv-col span {
    font-size: 17px;
    font-weight: 600;
    color: #444;
    margin-right: 15px;
}

.rekv-col p {
    font-size: 15px;
    color: #222;
    text-align: right;
}

.rekv-doc {
        font-size: 19px;
    font-weight: 600;
    color: var(--brown);
    text-decoration: none;
    border-bottom: 1px solid #aaa;
    padding-bottom: 2px;
    transition: .3s;
    margin-top: 13px;
}

.rekv-doc:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}


.boxs .container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.footer-end {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px !important;
  margin-top: 30px;
  font-size: 14px;
  
}

.footer-end p{
  color: #333;
  font-size: 15px;
}
.no-phone {
  -webkit-touch-callout: none;
  -webkit-user-select: text;
}


@media(max-width:1200px){
  #fetures-section .fetures-place{
    padding: 30px 10px;
    min-height: 370px;
  }
  .rows{
    column-gap: 10px
  }
  .downloadboxs .rekvizit-box{
    padding: 30px;
  }

}


@media(max-width:992px){
   .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    text-align: center;
  }
  .hero-title {
    font-size: 48px;
  }
  .rows{
    grid-template-columns: 1fr 1fr;
    column-gap:30px
  }
  #fetures-section .fetures-place{
    padding: 30px 30px;
    min-height: 100%;
  }
  .downloadboxs .rekvizit-box {
        padding: 20px;
    }
    #logofooter img {
    width: 95px;
    }
    .header-icons-text{
      font-size: 15px;
    }
    .hero-section{
      margin-top: 140px;
    }
    .hero-buttons.desktop-hero{

      display: none !important;
    }
    .hero-buttons.mobile-hero{

      display: flex;
      justify-content: center;
    }
    .hero-container{
      gap: 10px;
    }
    .hero-image img {
    max-width: 300px;
    margin-bottom: 10px;
  }
  nav a{
    padding: 0 10px;
    font-size: 15px;
  }

  
}


@media(max-width:768px){
  header .header-icons , header .header-phone-side , header .header-button, nav, .header-icons::after{
    display: none;
  }
  .mobile-menu{
    display: flex !important;
  }
  header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
  }
  .hero-section{
    margin-top: 60px;
  }
  .hero-desc{
    margin-bottom: 0;
  }
  .downloadboxs{
    grid-template-columns: 1fr;
  }
  .rekv-2col{
    grid-template-columns: 1fr;
  }
  .rows{
    grid-template-columns: 1fr;
  }
      .downloadboxs .rekvizit-box {
        padding: 20px;
        min-height: 76px;
        display: flex
;
        justify-content: center;
        align-items: center;
    }
    .rekvizit-box{
      padding: 20px;
    }
    .card-img{
      display: none !important;
    }
    .service-card {
    flex-direction: column-reverse;
    gap: 25px;
  }
  .card-left{
    width: 100%;
  }

  .rekvizit-box{
    width: 100%;
  }
  .menu-grid{
    grid-template-columns: repeat(2,1fr);
  }
  
}
@media (max-width: 576px){

  .offcanvas.offcanvas-end{
    width: 70% !important;
  }
  .mobile-offcanvas{
    padding: 10px;
  }
}

