*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root{
  --bg:#0F171D;
  --bg-dark:#070B0F;
  --panel:#0c1b23;
  --cyan:#3AC1D1;
  --white:#FFFFFF;
  --muted:#96a7ad;
  --border:rgba(255,255,255,.11);
  --font-heading: 'Exo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--white);
  line-height:1.5;
  overflow-x:hidden;
}

.main-header,h2.section-title{
  font-family: var(--font-heading);
}

body.modal-open{
  overflow:hidden;
}

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

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(1200px,calc(100% - 40px));
  margin:auto;
}

.pre-line{
  display: block;
}

button.mobile-demo-button span.request {
  align-items: center;
  display: flex;
  gap: 12px;
}

.arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  border-right: 2.5px solid #ffffff;
  border-bottom: 2.5px solid #ffffff;
  transform: translateY(-3px) rotate(45deg);
}

button.mobile-demo-button .arrow{
  transform: translateY(-3px) rotate(-135deg);
  border-right: 2.5px solid #04151F;
  border-bottom: 2.5px solid #04151F;
  position: relative;
  top: 6px;
}


/* ================= HEADER ================= */

.site-header{
  position:fixed;
  z-index:1000;
  top:0;
  left:0;
  width:100%;
  height:75px;
  background: #04151F;  border-bottom:1px solid transparent;
  backdrop-filter:blur(12px);
  transition:.35s ease;
}

.site-header.scrolled{
  background: #04151F;
  border-bottom-color:var(--border);
  box-shadow:0 12px 35px rgba(0,0,0,.25);
}

.nav-wrap{
  height:75px;
  display:flex;
  align-items:center;
  gap:45px;
  justify-content: space-around;
}

a.logo img {
  width: 117px;
}

.desktop-nav{
  flex:1;
  display:flex;
  align-items:center;
  gap:45px;
}

.desktop-nav a{
  position:relative;
  color:#ffffff;
  font-size:14px;
  font-weight: 700;
  line-height: 100%;
  padding:26px 0;
}

.desktop-nav a:hover,
.desktop-nav a.active,.nav-dropdown.active .nav-dropdown-toggle{
  color:#3AC1D1;
}

.nav-dropdown.active span.arrow{
  border-right: 2px solid #3AC1D1;
  border-bottom: 2px solid #3AC1D1;
}

.desktop-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  height:2px;
  background:var(--cyan);
}

.nav-dropdown.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-12px;
  height:2px;
  background:var(--cyan);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:30px;
}

.language {
  background: transparent;
  border: 1.5px solid #3AC1D1;
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  padding: 7px 14px;
  cursor: pointer;
  width: 127px;
  height: 45px;
}

.language a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.language a.active,.language a:hover,.language span {
  color: var(--cyan);
}

.language span{
  padding: 0 8px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  background:var(--cyan);
  width: 186px;
  height: 45px;
  padding: 7px 14px;
  color:#031319;
  border:0;
  border-radius:25px;
  font-weight:700;
  transition:.25s ease;
  cursor:pointer;
  font-size: 14px;
}

.btn:hover{
  background:#65d7e4;
  transform:translateY(-2px);
  box-shadow:0 9px 25px rgba(53,201,220,.22);
}

button.btn.see {
  background: transparent;
  color: #3AC1D1;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  gap: 12px;
  margin-top: 20px;
  justify-content: left;
}

.btn.see:hover{
  background: transparent;
  transform:translateY(-2px);
  box-shadow: none;
}

.btn-small {
  padding: 8px 14px;
  font-size: 14px;
  width: 186px;
  height: 45px;
}

.mobile-menu{
  display:none;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle i {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transition:
  top 0.3s ease,
  transform 0.3s ease,
  opacity 0.2s ease;
}

.menu-toggle i:nth-child(1) {
  top: 7px;
}

.menu-toggle i:nth-child(2) {
  top: 15px;
}

.menu-toggle i:nth-child(3) {
  top: 23px;
}

.menu-toggle.active i:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}

.menu-toggle.active i:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active i:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

section.sub-header {
  position: absolute;
  top: 100px;
  z-index: 99;
  width: 100%;
}

.sub-head {
  z-index: 99;
  display: flex;
  gap: 10px;
  align-items: center;
}

.sub-head span {
  font-size: 14px;
  color: #F9F9F9;
  font-weight: 500;
}

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown.is-open .nav-dropdown-toggle {
  color: #3AC1D1;
}

button.nav-dropdown-toggle .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown.is-open .arrow {
  border-right: 2px solid #3AC1D1;
  border-bottom: 2px solid #3AC1D1;
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 2px;
  background: #0F171D;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
  transform 0.25s ease,
  opacity 0.25s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after{
  transform: scaleX(1);
  opacity: 1;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--cyan);
}

.nav-submenu {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 22px);
  left: 50%;
  width: 240px;
  padding: 0 14px;
  background: #0F171D;
  border: 1px solid #3AC1D1;
  border-radius: 12px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
  opacity 0.2s ease,
  transform 0.2s ease,
  visibility 0.2s ease;
}

.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu a {
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-submenu a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-submenu a:hover,button.nav-dropdown-toggle:hover {
  color: #3AC1D1;
}

.nav-submenu a:hover .submenu-arrow {
  transform: translateX(2px);
  transition: .4s;
}

.mobile-nav-dropdown {
  width: 100%;
}

.mobile-nav-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
  max-height 0.3s ease,
  opacity 0.2s ease;
}

.mobile-nav-dropdown.is-open .mobile-submenu {
  max-height: 160px;
  opacity: 1;
  padding: 0 16px;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  border-radius: 12px!important;
  border: 1px solid var(--cyan);
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
}

.mobile-submenu a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-submenu a span:last-child {
  color: #00d9ff;
  font-size: 18px;
}

span.d-item {
    color: #A6A6AD;
}

/* ================= HERO ================= */

.hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#071117;
}

.hero.inner{
  min-height: 591px;
}

section.hero.inner-news {
  min-height: 480px;
}

.hero-background{
  position:absolute;
  inset:0;
  background-image:url(".././images/als-banner-bg.png");
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:block;
  padding-top:70px;
}

.hero-content,.hero-content-news{
  max-width:653px;
}

button.mobile-demo-button.js-demo-open {
  position: fixed;
  right: -92px;
  top: 50%;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--cyan);
  color: #04151F;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transform: rotate(-90deg);
  line-height: 100%;
  height: 56px;
  width: 241px;
}

h1.main-header{
  font-size: 56px;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 65px;
  font-weight: 700;
}

.hero-content p{
  color:#ffffff;
  font-size:18px;
  line-height: 26px;
  margin-bottom:23px;
}

.hero-stats{
  display:flex;
  align-items:center;
  gap:29px;
  margin-top:50px;
}

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

.stat strong{
  display:block;
  font-size:24px;
  line-height:100%;
  font-weight: 800;
}

.stat small{
  display:block;
  color:#ffffff;
  font-weight: 500;
  font-size:16px;
  margin-top:4px;
}


/* ================= SECTIONS ================= */

.section{
  padding:70px 0;
}

.what-we-do{
  background-color: var(--bg-dark);
  background-image: 
  radial-gradient(
    280px at 2% 45%, 
    rgba(28, 85, 95, 0.45) 0%, 
    rgba(11, 17, 22, 0) 100%
  ),
  radial-gradient(
    280px at 98% 45%, 
    rgba(28, 85, 95, 0.45) 0%, 
    rgba(11, 17, 22, 0) 100%
  );
}

.section-container{
  max-width:930px;
  margin:0 auto 50px;
  text-align:center;
}

h2.section-title{
  font-size:36px;
  font-weight: 600;
  color: #F9F9F9;
  margin-bottom:12px;
}

.what-we-do p {
    margin-bottom: 12px;
}

.section-title p{
  color:var(--white);
  font-size:16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 18px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.service-card {
  min-height: 215px;
  padding: 24px 19px;
  background: #1d2226;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 12px;
  transition: .3s;
}

.service-icon{
  margin-bottom:10px;
}

.service-card h3{
  font-size:20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom:10px;
  color: #fff;
}

.service-card p{
  color:#ffffff;
  font-size:16px;
  font-weight: 400;
}

.center{
  text-align:center;
  margin-top:28px;
}


/* ================= LOGO CAROUSELS ================= */

.logo-section,
.partners{
  padding:60px 0;
  background:#000000;
}

.logo-window{
  width:100%;
  overflow:hidden;
  mask-image:linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}

.logo-track,
.partner-track{
  display:flex;
  align-items:center;
  gap:60px;
  width:max-content;
  animation:logoScroll 15s linear infinite;
}

.logo-track:hover,
.partner-track:hover{
  animation-play-state:paused;
}

@keyframes logoScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ========================================
   OPTIONAL: PAUSE ON HOVER
======================================== */

.logo-window:hover .logo-track,
.logo-window:hover .partner-track {
  animation-play-state: paused;
}

@keyframes logoScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ================= MISSION ================= */

.mission{
  min-height:447px;
  background-image: url(.././images/our-mission-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  align-content: center;
}

.mission-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.mission-content h2.section-title {
  text-align: left;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 30px;
}

.mission-content p {
  max-width: 450px;
  line-height: 34px;
  font-size: 24px;
  font-weight: 500;
}


/* =========================================================
   FAQ - DESKTOP TWO COLUMN
   ========================================================= */

   .faq-section{
    background-color: var(--bg-dark);
    background-image: 
    radial-gradient(
      200px at 8% 25%, 
      rgba(28, 85, 95, 0.45) 0%, 
      rgba(11, 17, 22, 0) 100%
    ),
    radial-gradient(
      200px at 98% 75%, 
      rgba(28, 85, 95, 0.45) 0%, 
      rgba(11, 17, 22, 0) 100%
    );
    padding: 60px 0;

  }

  .faq-layout{
    display:grid;
    /*grid-template-columns:minmax(280px,.72fr) minmax(500px,1.28fr);*/
    gap:30px;
    align-items:start;
  }

  .faq-intro h2{
    font-size:48px;
    font-weight: 600;
    line-height: 58px;
    text-align: center;
  }

  .faq-list {
    display: grid;
    gap: 9px;
    width: 80%;
    margin: auto;
  }

  .faq-list details{
    overflow:hidden;
    background: #1d2226;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    border-radius: 8px;
    transition:border-color .25s,background .25s;
    margin-bottom: 20px;
  }

  .faq-list details[open]{
    background: #1d2226;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
  }

  .faq-list summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:17px 24px;
    color:#ffffff;
    font-size:16px;
    font-weight:600;
  }

  .faq-list summary::-webkit-details-marker{
    display:none;
  }

  .faq-list summary b{
    transition:.3s;
    position: relative;
    top: 2px;
  }

  .faq-list details[open] summary b{
    transform:rotate(180deg);
  }

  .faq-answer{
    padding:0 22px 18px;
    color:#ddd;
    font-size:16px;
    line-height:25px;
    max-width:90%;
  }


/* ================= FOOTER ================= */

.footer{
  padding:60px 20px 20px;
  background:var(--bg-dark);
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
}

.footer-about p {
  max-width: 260px;
  color: #ffffffbf;
  font-size: 16px;
  margin-top: 13px;
  font-weight: 500;
  line-height: 25px;
}

.footer h4{
  color:var(--cyan);
  font-size:18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom:11px;
}

.footer a{
  display:block;
  color:#ffffffbf;
  font-size:16px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 10px;
  margin-top: 10px;
}

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

.footer-demo{
  display:block;
  padding:0;
  border:0;
  background:none;
  color:#ffffffbf;
  font-size:16px;
  line-height:25px;
  cursor:pointer;
}

.footer-demo:hover{
  color:var(--cyan);
}

.copyright-footer{
  border-top:1px solid rgba(255,255,255,.07);
  margin-top:42px;
  padding:20px 0 30px;
  display: grid;
  grid-template-areas: "copyright links";
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-copyright {
  grid-area: copyright;
  color:#ffffff80;
  font-size:14px;
  font-weight: 500;
}

.footer-links {
  grid-area: links;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.footer-links a{
  color:#ffffff80;
  font-size:14px;
  line-height: 100%;
  font-weight: 500;
  font-weight: ;
}

.demo-modal{
  position:fixed;
  z-index:3000;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:
  opacity .3s ease,
  visibility .3s ease;
}

.demo-modal.open{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}

.demo-modal-card{
  position:relative;
  z-index:2;
  width:min(534px,calc(100% - 32px));
  max-height:calc(100vh - 40px);
  overflow:auto;
  background:
  linear-gradient(145deg,rgba(12,36,46,.98),rgba(4,18,25,.98));
  border-radius: 24px;
  padding:24px;
  box-shadow:0 2px 10px rgb(65 198 217), 0 0 2px rgb(83 217 232);
  transform:translateY(25px) scale(.97);
  transition:transform .3s ease;
}

.demo-modal.open .demo-modal-card{
  transform:translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 24px;
  height: 24px;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

.modal-close:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.demo-symbol {
  display: flex;
  gap: 12px;
  align-items: start;
}

.demo-modal-card h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 5px;
}

.demo-modal-card h2{
  font-size:23px;
  margin-top:2px;
  margin-bottom:4px;
}

.modal-subtitle {
  color: #717171;
  font-size: 12px;
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 18px;
}

.demo-modal-card label {
  display: block;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 100%;
}

.demo-modal-card input,
.demo-modal-card select,
.demo-modal-card textarea{
  width:100%;
  display:block;
  margin-top:5px;
  padding:0 10px;
  border:1px solid #DDDDDD;
  background: transparent;
  border-radius:6px;
  outline:none;
  color:#fff;
  font-size:12px;
  height: 35px;
}

.demo-modal-card textarea{
  padding: 10px;
}

.demo-modal-card select,.demo-modal-card label span{
  color: #717171;
}

.demo-modal-card input::placeholder,
.demo-modal-card textarea::placeholder{
  color:#717171;
}

.demo-modal-card input:focus,
.demo-modal-card select:focus,
.demo-modal-card textarea:focus{
  border-color:var(--cyan);
  box-shadow:0 0 0 2px rgba(53,201,220,.08);
}

.demo-modal-card textarea{
  min-height:72px;
  resize:vertical;
}

.form-button {
  width: 100%;
  margin-top: 2px;
  padding: 11px;
  font-size: 13px;
  font-weight: 700;
}


/* ================= SCROLL REVEAL ================= */

.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:
  opacity .7s ease,
  transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}


/* ================= TABLET ================= */

@media(min-width:600px){
  button.mobile-demo-button.js-demo-open{
    display: none;
  }
}

@media(max-width:950px){

  .desktop-nav{
    gap:18px;
  }

  .desktop-nav a{
    font-size:9px;
  }

  .nav-wrap{
    gap:22px;
  }

  .mobile-menu{
    display:grid;
    position:absolute;
    top:58px;
    left:0;
    right:0;
    z-index:-1;
    padding:30px 16px;
    gap:4px;
    background:#061017;
    border-bottom:1px solid var(--border);
    transform:translateY(-120%);
    transition:.35s ease;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .menu-toggle{
    display:block;
  }

  .mobile-menu.open{
    transform:translateY(0);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav-dropdown-toggle {
    min-height: 44px;        
    padding: 0 20px;
  }
  .site-header{
    height:75px;
    position: relative;
  }

  .nav-wrap{
    height:75px;
  }

  .desktop-nav,
  .nav-actions .btn-small{
    display:none;
  }

  .nav-actions{
    margin-left:auto;
  }

  .mobile-menu a{
    padding: 20px;
    border-radius: 7px;
    color: #ffffff;
    font-size: 16px;
  }

  .mobile-menu .btn{
    width:100%;
    margin-top:7px;
  }
}


/* =================== MOBILE ===================*/

@media(max-width:700px){

  .container{
    width:min(100% - 28px,520px);
  }

  section.sub-header {
    position: relative;
    top: 0;
    z-index: 99;
    width: 100%;
    align-content: center;
    height: 75px;
  }

  .hero{
    min-height:1005px;
    align-items:flex-start;
  }

  .hero.inner{
    min-height:750px;
    align-items:flex-start;
  }

  .hero-background{
    height: auto;
    background-image:url(".././images/als-banner-mb.png");
  }

  .hero-overlay{
    background:
    linear-gradient(
      180deg,
      rgba(3,13,19,.42) 0%,
      rgba(3,13,19,.62) 40%,
      rgba(3,13,19,.91) 78%,
      #061017 100%
    );
  }

  .hero-inner{
    padding: 30px 10px;
  }

  section.hero.inner-news {
    min-height: 340px;
  }

  .hero-content-news {
    max-width: 697px;
    margin-top: -50px;
  }

  .hero-content {
    max-width: 100%;
    position: relative;
    top: 165px;
  }

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

  .desktop-break{
    display:none;
  }

  .hero-stats{
    display:block;
    margin-top:25px;
  }

  .stat {
    gap: 40px;
    margin-top: 30px;
    align-items: start;
  }
  .stat-icon{
    width:29px;
    height:29px;
    font-size:10px;
  }

  .stat strong{
    font-size:12px;
  }

  .stat small{
    font-size:6px;
  }

  .mobile-demo-button {
    left: 50%!important;
    bottom: 30px!important;
    top: inherit!important;
    width: 347px!important;
    transform: translateX(-50%)!important;
  }

  .section{
    padding:30px 10px 70px;
  }

  .section-title h2{
    font-size:27px;
  }

  .section-title p{
    font-size:9px;
  }

  .service-grid{
    grid-template-columns:1fr;
    gap:8px;
    margin-bottom: 0;
  }

  .service-card{
    min-height:180px;
    padding:17px;
    margin-bottom: 16px;
  }

  .service-icon{
    margin-bottom:20px;
  }

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

  .mission{
    height: 714px;
    background-image:url(".././images/our-mission-mb.png");
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
    align-content: start;
  }

  .mission-content{
    display: block;  
    padding:60px 20px;
  }

  .mission-content h2.section-title {
    font-size: 32px;
  }

  .mission-content p {
    max-width: 100%;
    height: auto;
    line-height: 30px;
    font-size: 20px;
  }

  .faq-section{
    padding:70px 10px;
  }

  .faq-layout{
    grid-template-columns:1fr;
    gap:35px;
  }

  .faq-intro{
    position:static;
  }

  .faq-intro h2{
    font-size:29px;
  }

  .faq-list{
    width:100%;
  }

  .faq-list summary{
    padding:14px;
  }

  .faq-answer{
    padding:0 14px 14px;
  }

  .demo-modal{
    align-items:flex-end;
  }

  .demo-modal-card {
    width: 88%;
    max-height: calc(100vh - 18px);
    border-radius: 24px;
    padding: 20px 17px;
    transform: translateY(100%); 
    margin-left: auto;
    margin-right: auto;
  }

  .demo-modal.open .demo-modal-card{
    transform:translateY(0);
    bottom: 30px;
  }

  .demo-modal-card h2{
    font-size:20px;
  }

  .demo-modal-card label{
    font-size:12px;
    margin-bottom:16px;
  }

  .demo-modal-card input,
  .demo-modal-card select,
  .demo-modal-card textarea{
    padding:9px;
  }

  .cta-section{
    padding:75px 0;
  }

  .cta-section h2{
    font-size:27px;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:28px;
  }

  .footer-about{
    grid-column:1/-1;
  }

  .copyright-footer {
    grid-template-areas: "links""copyright";
    grid-template-columns: 1fr;
    row-gap: 16px;
    text-align: center;
  }

  .chat-button{
    width:55px;
    height:55px;
    right:16px;
    bottom:18px;
  }

}


/* ================= SMALL PHONES ================= */

@media(max-width:420px){

  .footer{
    padding:60px 20px 100px;
  }

  h1.main-header{
    font-size: 40px;
    line-height: 46px;
  }

  .hero-content>p,.btn,.stat small{
    font-size:14px;
  }

  p{
    font-size: 16px;
  }

  .hero-stats{
    gap:10px;
  }

  .service-card{
    min-height:190px;
  }

  .stat strong{
    font-size:20px;
  }

}
