@font-face {
  font-family: 'Axiforma';
  src: url('assets/fonts/Axiforma-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Axiforma';
  src: url('assets/fonts/Axiforma-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Axiforma';
  src: url('assets/fonts/Axiforma-SemiBold.ttf') format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: 'Axiforma';
  src: url('assets/fonts/Axiforma-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Axiforma';
  src: url('assets/fonts/Axiforma-Black.ttf') format('truetype');
  font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-locations {
  text-transform: uppercase;
}


:root {
  --primary-color: #79282d;
  --secondary-color: #ff0000;
  --text-dark: #473d36;
  --light-bg: #f7f7f7;
  --text-muted: #7a7a7a;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
  font-family: 'Axiforma', sans-serif;
  color: var(--text-dark);
  background: #fff;
  width:100vw;
}

.hero-subtitle {
  display: inline-block;
  padding-top:20px !important;
  padding-bottom:26px !important;
  padding-left: 20px;
  padding-right: 20px;
  background: #ffffff;
  color: var(--primary-color);
  border-radius: 52px;
  font-weight: 900;
  margin: 10px auto 0;      /* center horizontally, remove 30% margins */
  letter-spacing: 1.4px;
  line-height: 0;
}

.hero-subline p{
  transform: translateY(-411px);
}

::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

::-webkit-input-placeholder {
  color: var(--text-muted);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--text-muted);
  opacity: 1;
}
.footer_socials a {
  color:black;
}

/* TYPOGRAPHY */
h1, .price { font-weight: 900; }
h2, h3, .section-title { font-weight: 600; }
.currency, .hero-subline, .hero-locations { font-weight: 500; }
.order-btn, .device-btn, .send-btn { font-weight: 700; }
.features-list li {  font-weight: 500; ;  list-style: none; }
.benefits-list li, .reference-section h2, .contact-form, .contact-info { font-weight: 500;   list-style: none; background:rgba(0, 0, 0, 0) }


.title-wrapper {
    display: block;
    width: 100%;
    text-align: left;   /* Forces the title to start at the far left */
}



/* INTRO LOGO OVERLAY */
/* INTRO LOGO OVERLAY */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: none;            /* shown via JS */
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.intro-overlay.show {
  display: flex;
  opacity: 1;
}

.intro-overlay.fade-out {
  opacity: 0;
}

/* wrapper so we can clip+move the image smoothly */
.intro-logo-wrapper {
  overflow: hidden;         /* hide parts outside clip */
}

/* image animation */
.intro-logo-wrapper img {
  max-width: 80vw;
  height: auto;
  animation: logoReveal 1.8s ease-out forwards;
}

/* start: shifted right, only left 25% visible
   end: centered, fully visible */
@keyframes logoReveal {
  0% {
    transform: translateX(50%);
    clip-path: inset(0 75% 0 0);   /* show only 25% on the left */
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);     /* show full image */
  }
}




/* HEADER */
header {
  position: relative;
  background: url('assets/images/landing.png') center/cover no-repeat;
  color: white;
  height: 90vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  width: 100vw;
}
header::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(130, 0, 0, 0.16);
  z-index:0;
}
header>*{position:relative;z-index:1;}

/* NAVIGATION — FIXED LAYOUT (NO MOVEMENT BETWEEN LANGUAGES) */
nav {
   width: 100%;
  margin: 0 auto;
  padding: 25px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo img {
  height: 50px;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: right;
  gap: 12px;
  list-style: none;
      margin-top : 5px;
    margin-bottom : 5px;
}

.nav-links a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  transition: .25s ease;
  white-space: nowrap;

  padding: 10px 22px;        /* fixed */
  line-height: 1;
  border-radius: 20px;
  border: 2px solid transparent;   /* prevents shifting */
  display: flex;
  align-items: center;
}
.nav-links .active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.nav-links a:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);  /* no layout change */
}

.nav-links a.active-section {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}
nav.nav-transparent {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all .25s ease;
    padding: 25px 50px;
    background: transparent;
}

nav.nav-scrolled {
    background: var(--primary-color);
    padding: 1px 50px;
    margin-top:0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

nav.nav-scrolled .nav-links a {
    color: white;

}

nav.nav-scrolled .language-btn span {
    color: white;
}

nav.nav-scrolled .logo img {
    height: 40px;
    transition: .2s;
}



.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* LANGUAGE SELECTOR */
.language-selector {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 16px;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.language-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  border-radius: 6px;
  padding: 6px 0;
  width: 160px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.language-dropdown.show { display: flex; }

.language-option {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 14px;
}

.language-option:hover {
  background: #f1f1f1;
}

.language-option.selected {
  background: var(--primary-color);
  color: white;
}

/* HERO */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
    text-shadow: 10px 8px 12px rgba(0, 0, 0, 0.774);
    padding-top: 30px;
    padding-bottom:30px;
}

.hero-subline, .hero-locations {
  font-size: 18px;
  text-shadow: 10px 8px 12px rgba(0, 0, 0, 0.774);
  padding-top: 30px
}

/* CONTENT SECTION */
.content-section {
  background: #e9e9eb;
}

.purpose-usage {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 28px 48px;
}

.purpose-usage-title {
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  color: rgba(71, 61, 54, 0.95);
  margin-bottom: 58px;
}

.purpose-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.purpose-card {
  text-align: center;
}

.purpose-card-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.purpose-card-title {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 14px;
}

.purpose-card-title-dark {
  color: var(--primary-color);
}

.purpose-card-title-red {
  color: var(--secondary-color);
}

.purpose-card-desc {
  max-width: 390px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.purpose-about {
  position: relative;
}

.purpose-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/images/bgpat.png') center/cover repeat;
  opacity: 0.22;
  pointer-events: none;
}

.purpose-about-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 58px 28px 52px;
}

.purpose-about-title {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.purpose-about-text {
  color: rgba(71, 61, 54, 0.96);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.purpose-about-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.purpose-about-text-accent {
  color: var(--primary-color);
}

.purpose-about-points {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.purpose-about-points li {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.purpose-about-points li::before {
  content: "•";
  margin-right: 10px;
}

.purpose-benefits-title {
  background: var(--primary-color);
}

.purpose-benefits-title h3 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 28px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.purpose-benefits {
  max-width: 1300px;
  margin: 0 auto;
  padding: 34px 28px 42px;
}

.purpose-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.purpose-benefits-col {
  display: grid;
  gap: 18px;
}

.purpose-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.purpose-benefit-item i {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
  flex: 0 0 22px;
}

.purpose-benefit-dark {
  color: #2f2f2f;
}

.purpose-benefit-primary {
  color: var(--primary-color);
}

.purpose-benefit-red {
  color: var(--secondary-color);
}

/* PRICING */
.pricing-section {
  padding: 70px 20px;
  background: var(--light-bg);
  text-align: center;
}

.pricing-section h2 {
  font-size: 32px;
  position: relative;
  margin-bottom: 10px;
}

.pricing-section h2::after {
  content: "";
  display: block;
  width: 55%;
  height: 1px;
  background: #d4d4d4;
  margin: 15px auto 0;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 45px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 35px;
  flex-wrap: nowrap; 
}

.price-card {
  width: 300px;
  padding: 38px 30px;
  border-radius: 18px;
  background: #fff;
  border: none;
  box-shadow: 0px 6px 22px rgba(0,0,0,0.07);
  text-align: center;
  transition: 0.25s ease;
}

.currency {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}




.currency::after {
  content: "";
  display: block;
  width: 65%;
  height: 1px;
  background: #e2e2e2;
  margin: 10px auto 0;
}

.price {
  font-size: 38px;
  line-height: 1;
  margin-top: 18px;
  font-weight: 900;
  color: var(--primary-color);
}

.price-suffix {
  font-size: 18px;
}

.price-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.order-btn {
  background: var(--primary-color);
  border-radius: 30px;
  padding: 12px 40px;
  margin-top: 22px;
  color: white;
  border: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.order-btn-red {
  background: var(--secondary-color);
}

/* PRICE + BUTTON LIGHT UP TOGETHER */
.price-card:hover .price {
  color: var(--secondary-color);
}

.price-card:hover .order-btn {
  background: var(--secondary-color);
}

/* Lift button on hover */
.order-btn:hover {
  transform: translateY(-2px);
}

.pricing-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 40px;
}


/* ABOUT DEVICE SECTION  ----------------------------------- */

.device-section {
  position: relative;
  padding: 82px 0 74px;
  background-color: #ececec;
  background-image: url('assets/images/smoke.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: min(56vw, 980px) auto;
  overflow: hidden;
}

.device-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.device-left {
  flex: 0 0 44%;
  color: var(--text-dark);
}

.device-title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(71, 61, 54, 0.9);
  margin-bottom: 30px;
}

.device-desc {
  max-width: 680px;
  font-size: 32px;
  line-height: 1.28;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--text-dark);
}

.device-btn-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.device-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--primary-color);
  color: #fff;
  padding: 15px 42px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.device-btn:hover {
  transform: translateY(-2px);
  background: #862f35;
}

.btn-ico {
  width: 30px;
  height: 30px;
}

.device-dec {
  width: 42px;
  height: auto;
  transform: translateY(-12px);
}

.device-image {
  flex: 0 0 56%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.device-image img {
  width: 100%;
  max-width: 920px;
  height: auto;
  object-fit: contain;
}

/* REFERENCES */
.reference-section {
  padding: 70px 20px;
  background: var(--light-bg);
  text-align: center;
}

/* Video layout */
.video-card {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 50px auto;
    background: none;
    box-shadow: none;
}

.video-thumbnail {
    width: 100%;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.yt-thumb-wrapper {
    position: relative;
}

.yt-thumb {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.yt-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 44px;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.35);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:auto;
    margin:auto;

}
.yt-play-icon { padding-left: 6px; line-height: 1;padding-bottom: 8px }

.video-content {
  padding: 30px;
  text-align: left;
}

.video-link {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-top: 15px;
}
.video-card { align-items: center; }

.video-thumbnail,
.video-content { width: 50%; }

.video-content {
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-muted)
}


/* MAP + CONTACT */
.map-contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}

.logo-gif-strip {
    width: 100%;
    height: 140px;             /* adjust size */
    background: url('assets/images/logo.gif') center/contain no-repeat;
    margin: 30px 0;
}

.map-placeholder {
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0px;
}

.contact-video {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15; /* adjust if you want */
}
/* semi-transparent panel */
.contact-bg {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 90px 0;
    overflow: hidden;
}

.contact-grid {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0);
    border-radius: 18px;
    padding: 50px;
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   
}

/* input wrapper */
.input-wrap {
    position: relative;
    margin-bottom: 18px;
}

.input-ico {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    opacity: 0.55;
}

/* inputs */
.input-wrap input,
.input-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 42px; /* space for icon */
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    background: rgba(255,255,255,0.8);
}

/* textarea */
.textarea-wrap textarea {
    min-height: 170px;
    padding-left: 18px; /* no icon here */
}

/* send button */
.send-btn {
    margin-top: 10px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
}

.send-ico {
    width: 20px;
    height: 20px;
}


.contact-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
    
}

.contact-info strong{
    color: var(--text-dark)
}
.info-ico {
    width: 18px;
    height: 18px;
    stroke: var(--text-dark);
    stroke-width: 2;
    opacity: .9;
}

.info-ico2 {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 3;
    opacity: 1;
    margin-right: 12px;
}
.info-line {
    
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}



.info-call {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.info-call:hover {
    opacity: 1;
    color: var(--text-dark);
    text-decoration: underline;
}


footer {
  background: #f6f7f8;
  color: #666;
  text-align: center;
  padding: 35px 20px;
  border-top: 1px solid #e3e3e3;
}

.footer_socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
}

.footer_socials a i {
  width: 28px;
  height: 28px;
  stroke: #b5b5b5;
  transition: 0.2s ease;
}

.footer_socials a:hover i {
  stroke: var(--primary-color);
}

footer p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

footer .scdevs {
  margin-top: 8px;
}

footer .scdevs a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

/* MOBILE */


.mobile-menu-btn {
    justify-self: end;
     margin-left: auto;
}

nav {
    grid-template-columns: auto 1fr auto; /* logo | space | menu button */
}


@media (max-width: 900px) {
  nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    justify-content: center;
    align-items: center;
  }

  .nav-links.show { display: flex; }

  .mobile-menu-btn { display: block; }
}
@media (max-width: 900px) {
    .contact-video {
        width: 40%;
        margin: 0 auto;
        display: block;
    }
}
@media (max-width: 900px) {
    .contact-video {
        object-fit: contain;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        transform: translateY(0);
        background: black; /* letterbox */
    }
}
@media (max-width: 900px) {

    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        width: 75%;
        margin: 10px auto;
        padding: 16px 12px;
    }

.hero-locations {
    font-size: 20px;
    font-weight: 700;
    width: 90%;
    margin: 10px auto;
    text-align: center;
    display: inline-block;
    white-space: pre-line;

    color: var(--primary-color);
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 12px;
}

}
@media (max-width: 900px) {
    .pricing-cards {
        flex-direction: column;
        gap: 25px;
    }

    .price-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}
@media (max-width: 900px) {
    .reference-section {
        text-align: center;
    }

    .video-card {
        flex-direction: column;
        align-items: center;
    }

    .video-thumbnail {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 15px auto;
    }

    .video-content {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .video-content p {
        margin-bottom: 10px;
    }
}
@media (max-width: 900px) {
  .hero-locations { display: none; }

  .hero-subtitle  {
    display: block;
    white-space: normal;
  }

  .hero-subtitle ::before,
  .hero-subtitle ::after {
    content: none;
  }
}
@media (max-width: 900px) {
  .hero-subtitle {
    white-space: pre-line;
    line-height: 1.4;
  }
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-form,
  .contact-form form {
    width: 100%;
    max-width: 100%;
  }
}
.flag-icon {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
}

.language-btn {
  gap: 10px;
  padding: 8px 14px;
}

.language-dropdown {
  width: 180px;
}

.language-option img {
  width: 22px;
  height: 16px;
  border-radius: 3px;
}
/* LANGUAGE DROPDOWN — MOBILE SCROLL FIX */
@media (max-width: 900px) {
  .language-dropdown {
    max-height: 220px;       /* ~4–5 languages visible */
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (max-width: 900px) {
  .purpose-usage {
    padding: 44px 18px 38px;
  }

  .purpose-usage-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

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

  .purpose-card-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
  }

  .purpose-card-title {
    font-size: 18px;
  }

  .purpose-card-desc {
    font-size: 16px;
    max-width: 520px;
  }

  .purpose-about-inner {
    padding: 44px 18px 40px;
  }

  .purpose-about-title {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .purpose-about-text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .purpose-about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }

  .purpose-about-points li {
    font-size: 18px;
  }

  .purpose-benefits-title h3 {
    font-size: 16px;
    padding: 12px 18px;
  }

  .purpose-benefits {
    padding: 22px 18px 26px;
  }

  .purpose-benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .purpose-benefits-col {
    gap: 12px;
  }

  .purpose-benefit-item {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .device-section {
    padding: 58px 0 52px;
    background-size: 170% auto;
    background-position: 72% bottom;
  }

  .device-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
  }

  .device-left,
  .device-image {
    flex: 1 1 auto;
    width: 100%;
  }

  .device-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .device-desc {
    max-width: none;
    font-size: 30px;
    line-height: 1.34;
    margin-bottom: 28px;
  }

  .device-btn-wrapper {
    display: inline-flex;
    justify-content: flex-start;
  }

  .device-btn {
    font-size: 18px;
    gap: 14px;
    padding: 13px 24px;
  }

  .btn-ico {
    width: 24px;
    height: 24px;
  }

  .device-dec {
    display: none;
  }

  .device-image {
    justify-content: center;
  }

  .device-image img {
    width: 100%;
    max-width: 500px;
  }
}
