:root{
  --brand-orange:#f28c28;
  --brand-blue:#1e67ff;
  --text:#ffffff;
}

html,body{
  height:100%;
}

body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#0b1320;
  color:var(--text);
}

a{
  text-decoration:none;
}

.site-header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:10;
}

.header-top{
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
}

.header-top-link{
  color:rgba(255,255,255,.9);
  font-size:14px;
}

.header-top-link:hover{
  color:#fff;
}

.navbar-glass{
  background:rgba(0,0,0,.18);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.brand-mark{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  background:rgba(255,255,255,.12);
  font-weight:800;
}

.brand-text{
  letter-spacing:.6px;
  font-weight:700;
  font-size:18px;
}

.site-logo{
  height:34px;
  width:auto;
  display:block;
}

.footer-logo{
  height:30px;
  width:auto;
  display:block;
}

.btn-brand{
  background:var(--brand-orange);
  border-color:var(--brand-orange);
  color:#111;
  font-weight:700;
  border-radius:12px;
  padding:.6rem 1rem;
}

.btn-brand:hover{
  background:#ff9d3d;
  border-color:#ff9d3d;
  color:#111;
}

.btn-brand-lg{
  padding:.85rem 1.25rem;
  border-radius:16px;
}

.btn-ghost{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight:600;
  border-radius:12px;
  padding:.6rem 1rem;
}

.btn-ghost:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.26);
  color:#fff;
}

.btn-ghost-lg{
  padding:.85rem 1.25rem;
  border-radius:16px;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  padding-top:140px;
  padding-bottom:48px;
  overflow:hidden;
  scroll-margin-top:120px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:#0b1320;
  overflow:hidden;
  transform:scale(1.02);
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.20) 100%);
}

@media (prefers-reduced-motion: reduce){
  .hero-video{
    display:none;
  }
}

.hero-content{
  position:relative;
  z-index:1;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:.45rem .8rem;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.9);
  font-size:14px;
}

.hero-badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--brand-orange);
  box-shadow:0 0 0 4px rgba(242,140,40,.2);
}

.hero-title{
  margin-top:20px;
  font-size:clamp(45px, 6vw, 30px);
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.8px;
}

.hero-highlight{
  color:var(--brand-blue);
}

.hero-subtitle{
  margin-top:18px;
  max-width:560px;
  color:rgba(255,255,255,.78);
  font-size:16px;
}

.hero-stats{
  margin-top:70px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
}

.stat-value{
  font-size:34px;
  font-weight:900;
  line-height:1;
}

.stat-label{
  margin-top:8px;
  color:rgba(255,255,255,.7);
  font-size:13px;
}

@media (max-width: 991.98px){
  .site-header{
    position:fixed;
  }
  .hero{
    padding-top:160px;
  }
}

.products-section{
  background:#f6f8fc;
  color:#0c1729;
  padding:70px 0;
  scroll-margin-top:110px;
}

.about-lite{
  background:#fff;
  color:#0c1729;
  padding:70px 0;
  scroll-margin-top:110px;
}

.about-lite-title{
  margin-top:10px;
  font-size:clamp(30px, 2.8vw, 44px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.4px;
}

.about-lite-desc{
  margin-top:12px;
  color:rgba(12,23,41,.68);
  font-size:14px;
  line-height:1.7;
  max-width:980px;
}

.about-lite-media{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(12,23,41,.08);
  box-shadow:0 22px 65px rgba(12,23,41,.10);
  background:#0b1320;
}

.about-lite-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  aspect-ratio:4/3;
}

@media (max-width: 575.98px){
  .about-lite{
    padding:56px 0;
  }
}

.section-kicker{
  font-size:12px;
  letter-spacing:.12em;
  font-weight:700;
  color:#2c6fff;
  text-transform:uppercase;
}

.section-title{
  margin-top:10px;
  font-size:clamp(34px, 3.2vw, 52px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.6px;
}

.section-highlight{
  color:var(--brand-blue);
}

.section-desc{
  color:rgba(12,23,41,.65);
  font-size:14px;
  max-width:420px;
}

.product-card{
  display:block;
  height:100%;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(12,23,41,.08);
  border:1px solid rgba(12,23,41,.06);
  transition:transform .2s ease, box-shadow .2s ease;
  color:inherit;
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 70px rgba(12,23,41,.14);
}

.product-media{
  position:relative;
  height:190px;
  background:#0b1320;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05);
}

.product-tag{
  position:absolute;
  top:12px;
  left:12px;
  padding:.35rem .6rem;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  font-size:12px;
  font-weight:600;
  backdrop-filter:blur(10px);
}

.product-body{
  padding:16px 18px 18px;
}

.product-title{
  margin:0;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.2px;
}

.product-text{
  margin:8px 0 0;
  color:rgba(12,23,41,.62);
  font-size:13px;
  line-height:1.5;
}

.products-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#2c6fff;
  font-weight:700;
}

.products-link:hover{
  color:#0b4dff;
}

.whyus-section{
  background:#fff;
  color:#0c1729;
  padding:70px 0;
}

.media-section{
  background:#fff;
  color:#0c1729;
  padding:70px 0;
  scroll-margin-top:110px;
}

.media-title{
  margin-top:10px;
  font-size:clamp(30px, 2.8vw, 44px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.4px;
}

.media-desc{
  margin:12px auto 0;
  color:rgba(12,23,41,.65);
  font-size:14px;
  line-height:1.7;
  max-width:820px;
}

.media-carousel-wrap{
  background:#eef2f7;
  border-radius:20px;
  padding:16px;
  border:1px solid rgba(12,23,41,.06);
}

.media-tile{
  width:100%;
  border:0;
  padding:0;
  background:transparent;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(12,23,41,.10);
  border:1px solid rgba(12,23,41,.08);
  cursor:pointer;
}

.media-tile img{
  width:100%;
  height:230px;
  display:block;
  object-fit:contain;
  object-position:center;
  background:#fff;
  transition:transform .25s ease;
}

.media-tile:hover img{
  transform:scale(1.03);
}

.media-section .carousel-control-prev,
.media-section .carousel-control-next{
  width:54px;
}

.media-section .carousel-control-prev-icon,
.media-section .carousel-control-next-icon{
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

.media-modal{
  background:rgba(11,19,32,.96);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
}

.media-modal-body{
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:min(93vh, 780px);
}

.media-modal-body img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  display:block;
  border-radius:14px;
  object-fit:contain;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}

.media-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
}

.whyus-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.whyus-headings{
  text-align:center;
  max-width:860px;
}

.whyus-kicker{
  font-size:12px;
  letter-spacing:.12em;
  font-weight:800;
  color:rgba(12,23,41,.6);
  text-transform:uppercase;
}

.whyus-rule{
  height:1px;
  width:min(320px, 28vw);
  background:rgba(12,23,41,.12);
}

.whyus-title{
  margin:0;
  font-weight:900;
  letter-spacing:.12em;
  font-size:22px;
  line-height:1.15;
  margin-top:10px;
}

.whyus-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,99,255,.08);
  border:1px solid rgba(11,99,255,.14);
  color:#0b63ff;
  font-size:18px;
}

.whyus-name{
  margin-top:14px;
  font-weight:900;
  font-size:16px;
}

.whyus-text{
  margin-top:8px;
  color:rgba(12,23,41,.65);
  font-size:13px;
  line-height:1.6;
}


.whyus-card{
  height:100%;
  padding:22px 22px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(12,23,41,.08);
  box-shadow:0 10px 24px rgba(12,23,41,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}

.whyus-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(12,23,41,.10);
}

@media (max-width: 575.98px){
  .whyus-head{
    gap:12px;
  }
  .whyus-rule{
    width:min(160px, 24vw);
  }
  .whyus-title{
    letter-spacing:.04em;
  }
}

.about-section{
  background:radial-gradient(1200px 700px at 15% 15%, rgba(30,103,255,.22) 0%, rgba(11,19,32,0) 60%),
    linear-gradient(180deg, #0b1320 0%, #0a1426 100%);
  padding:80px 0;
  scroll-margin-top:110px;
}

.about-kicker{
  color:rgba(255,255,255,.75);
}

.about-title{
  margin-top:10px;
  color:#fff;
  font-size:clamp(34px, 3.3vw, 52px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.6px;
}

.about-desc{
  margin-top:14px;
  color:rgba(255,255,255,.7);
  font-size:14px;
  max-width:640px;
}

.about-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:#0b1320;
  box-shadow:0 30px 90px rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.06);
}

.about-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio:1/1;
}

@media (max-width: 575.98px){
  .about-media img{
    aspect-ratio:4/3;
  }
}

.about-badge{
  position:absolute;
  right:16px;
  bottom:16px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  color:#fff;
  min-width:130px;
}

.about-badge-value{
  font-weight:900;
  font-size:26px;
  line-height:1;
}

.about-badge-label{
  margin-top:6px;
  font-size:12px;
  color:rgba(255,255,255,.75);
}

.about-list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.about-list li{
  position:relative;
  padding-left:22px;
  color:rgba(255,255,255,.78);
  font-size:14px;
}

.about-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--brand-orange);
  box-shadow:0 0 0 4px rgba(242,140,40,.18);
}

.about-tile{
  height:100%;
  padding:16px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
}

.about-tile-title{
  color:#fff;
  font-weight:800;
  font-size:14px;
}

.about-tile-text{
  margin-top:6px;
  color:rgba(255,255,255,.7);
  font-size:12px;
  line-height:1.4;
}

.industries-section{
  background:#eef2f7;
  color:#0c1729;
  padding:80px 0;
  scroll-margin-top:110px;
}

.industries-head{
  max-width:720px;
  margin:0 auto;
}

.industries-title{
  margin-top:10px;
  font-size:clamp(32px, 3vw, 46px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.5px;
}

.industries-desc{
  margin:12px auto 0;
  color:rgba(12,23,41,.6);
  font-size:13px;
  max-width:560px;
}

.industries-card{
  background:#fff;
  border-radius:18px;
  padding:22px 22px;
  border:1px solid rgba(12,23,41,.08);
  box-shadow:0 22px 60px rgba(12,23,41,.10);
}

.industries-list{
  list-style:none;
  padding:0;
  margin:0;
  max-width:none;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px 22px;
}

.industries-list li{
  position:relative;
  padding-left:22px;
  font-size:13px;
  color:rgba(12,23,41,.72);
  line-height:1.5;
}

.industries-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.52em;
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(11,99,255,.18);
  border:2px solid rgba(11,99,255,.55);
}

@media (max-width: 991.98px){
  .industries-list{
    grid-template-columns:1fr;
  }
}

@media (max-width: 575.98px){
  .industries-list{
    grid-template-columns:1fr;
    gap:10px;
  }
}

.industry-card{
  background:#fff;
  border-radius:14px;
  padding:20px 20px;
  min-height:120px;
  box-shadow:0 14px 35px rgba(12,23,41,.07);
  border:1px solid rgba(12,23,41,.06);
}

.industry-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background:#0b63ff;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.industry-body{
  margin-top:14px;
}

.industry-title{
  font-weight:800;
  font-size:14px;
}

.industry-text{
  margin-top:4px;
  color:rgba(12,23,41,.62);
  font-size:12px;
}

.industries-cta{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  border-radius:22px;
  padding:28px 28px;
  background:radial-gradient(900px 380px at 20% 10%, rgba(30,103,255,.22) 0%, rgba(11,19,32,0) 55%),
    linear-gradient(90deg, #0b1320 0%, #0a1426 100%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.cta-title{
  color:#fff;
  font-weight:900;
  font-size:24px;
  letter-spacing:-.3px;
}

.cta-text{
  margin-top:6px;
  color:rgba(255,255,255,.7);
  font-size:13px;
  max-width:560px;
}

.industries-cta .btn-brand{
  color:#fff;
  border-radius:999px;
  padding:.8rem 1.3rem;
}

@media (max-width: 575.98px){
  .industries-cta{
    padding:22px 18px;
  }
}

.contact-section{
  background:#f6f8fc;
  color:#0c1729;
  padding:85px 0;
  scroll-margin-top:110px;
}

.contact-head{
  max-width:760px;
  margin:0 auto;
}

.contact-title{
  margin-top:10px;
  font-size:clamp(34px, 3.2vw, 50px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.6px;
}

.contact-desc{
  margin:12px auto 0;
  color:rgba(12,23,41,.62);
  font-size:13px;
  max-width:560px;
}

.contact-card{
  background:#fff;
  border-radius:18px;
  padding:22px 22px;
  box-shadow:0 20px 55px rgba(12,23,41,.10);
  border:1px solid rgba(12,23,41,.06);
}

.contact-card-title{
  font-weight:900;
  font-size:16px;
}

.contact-section .form-label{
  font-size:12px;
  font-weight:700;
  color:rgba(12,23,41,.70);
  margin-bottom:6px;
}

.contact-control{
  border-radius:12px;
  border:1px solid rgba(12,23,41,.10);
  background:#f8fafc;
  padding:.7rem .85rem;
  font-size:13px;
}

.contact-control:focus{
  border-color:rgba(30,103,255,.45);
  box-shadow:0 0 0 .2rem rgba(30,103,255,.12);
  background:#fff;
}

.contact-section textarea.contact-control{
  resize:none;
}

.info-card{
  background:#eef2f7;
  border-radius:16px;
  padding:18px 18px;
  min-height:120px;
  border:1px solid rgba(12,23,41,.06);
}

.info-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background:#0b63ff;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.info-title{
  margin-top:12px;
  font-weight:900;
  font-size:13px;
}

.info-text{
  margin-top:6px;
  color:rgba(12,23,41,.62);
  font-size:12px;
  line-height:1.4;
}

.map-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(12,23,41,.10);
  border:1px solid rgba(12,23,41,.06);
  height:270px;
}

.map-card iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.cert-section{
  background:#fff;
  color:#0c1729;
  padding:80px 0;
  scroll-margin-top:110px;
}

.cert-title{
  margin-top:10px;
  font-size:clamp(30px, 2.8vw, 44px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.4px;
}

.cert-desc{
  margin-top:12px;
  color:rgba(12,23,41,.65);
  font-size:14px;
  line-height:1.7;
  max-width:720px;
}

.cert-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}

.cert-list li{
  position:relative;
  padding-left:26px;
  color:rgba(12,23,41,.78);
  font-size:14px;
  line-height:1.5;
}

.cert-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.45em;
  width:16px;
  height:16px;
  border-radius:999px;
  background:rgba(242,140,40,.16);
  border:1px solid rgba(242,140,40,.35);
}

.cert-list li::after{
  content:"";
  position:absolute;
  left:6px;
  top:.72em;
  width:6px;
  height:3px;
  border-left:2px solid var(--brand-orange);
  border-bottom:2px solid var(--brand-orange);
  transform:rotate(-45deg);
}

.cert-foot{
  margin-top:18px;
  color:rgba(12,23,41,.72);
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

.cert-media{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(12,23,41,.08);
  box-shadow:0 22px 65px rgba(12,23,41,.10);
  background:#0b1320;
  height:100%;
}

.cert-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  aspect-ratio:4/3;
}

.clientele-section{
  background:#fff;
  color:#0c1729;
  padding:70px 0 85px;
  scroll-margin-top:110px;
}

.clientele-title{
  margin-top:10px;
  font-size:clamp(30px, 2.8vw, 44px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.4px;
}

.clientele-desc{
  margin:12px auto 0;
  color:rgba(12,23,41,.65);
  font-size:14px;
  line-height:1.7;
  max-width:860px;
}

.clientele-wrap{
  background:#eef2f7;
  border-radius:20px;
  padding:18px;
  border:1px solid rgba(12,23,41,.06);
}

.clientele-logo{
  height:96px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(12,23,41,.08);
  box-shadow:0 16px 40px rgba(12,23,41,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}

.clientele-logo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  /* filter:grayscale(100%); */
  opacity:.9;
  transition:filter .2s ease, opacity .2s ease, transform .2s ease;
}

.clientele-logo:hover img{
  filter:none;
  opacity:1;
  transform:scale(1.02);
}

.blog-section{
  background:#fff;
  color:#0c1729;
  padding:70px 0 90px;
  scroll-margin-top:110px;
}

.blog-title{
  margin-top:10px;
  font-size:clamp(30px, 2.8vw, 44px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.4px;
}

.blog-desc{
  margin:12px auto 0;
  color:rgba(12,23,41,.65);
  font-size:14px;
  line-height:1.7;
  max-width:860px;
}

.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(12,23,41,.08);
  box-shadow:0 18px 50px rgba(12,23,41,.10);
  display:block;
  color:inherit;
  height:100%;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 70px rgba(12,23,41,.14);
}

.blog-media{
  background:#eef2f7;
}

.blog-media img{
  width:100%;
  height:210px;
  display:block;
  object-fit:contain;
  object-position:center;
  background:#fff;
}

.blog-body{
  padding:18px 18px 18px;
}

.blog-kicker{
  font-size:12px;
  letter-spacing:.12em;
  font-weight:800;
  color:rgba(12,23,41,.6);
  text-transform:uppercase;
}

.blog-name{
  margin-top:10px;
  font-weight:900;
  letter-spacing:-.2px;
  font-size:16px;
  line-height:1.35;
}

.blog-text{
  margin-top:10px;
  color:rgba(12,23,41,.68);
  font-size:13px;
  line-height:1.7;
}

.blog-link{
  margin-top:14px;
  color:#0b63ff;
  font-weight:800;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.blog-link i{
  font-size:14px;
}

@media (max-width: 575.98px){
  .blog-media img{
    height:190px;
  }
}

@media (max-width: 575.98px){
  .clientele-wrap{
    padding:14px;
  }
  .clientele-logo{
    height:80px;
  }
}

@media (max-width: 575.98px){
  .cert-section{
    padding:60px 0;
  }
}

.site-footer{
  background:radial-gradient(1200px 650px at 15% 20%, rgba(30,103,255,.18) 0%, rgba(11,19,32,0) 60%),
    linear-gradient(90deg, #0b1320 0%, #091428 100%);
  color:rgba(255,255,255,.82);
  padding:70px 0 28px;
}

.footer-desc{
  max-width:320px;
  color:rgba(255,255,255,.65);
  font-size:13px;
  line-height:1.6;
}

.footer-title{
  color:#fff;
  font-weight:800;
  font-size:13px;
  margin-bottom:14px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.footer-links a{
  color:rgba(255,255,255,.70);
  font-size:13px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-contact{
  display:grid;
  gap:10px;
  color:rgba(255,255,255,.70);
  font-size:13px;
}

.footer-contact a{
  color:rgba(255,255,255,.75);
}

.footer-contact a:hover{
  color:#fff;
}

.footer-socials{
  display:flex;
  gap:10px;
}

.social-btn{
  width:36px;
  height:36px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.85);
}

.social-btn:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.16);
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:18px;
}

.footer-copy{
  color:rgba(255,255,255,.55);
  font-size:12px;
}

.footer-bottom-links{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.footer-bottom-links a{
  color:rgba(255,255,255,.60);
  font-size:12px;
}

.footer-bottom-links a:hover{
  color:#fff;
}

.back-to-top{
  width:36px;
  height:36px;
  border-radius:999px;
  background:var(--brand-orange);
  color:#111 !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.back-to-top:hover{
  background:#ff9d3d;
}

@media (max-width: 767.98px){
  .footer-bottom-links{
    justify-content:flex-start;
  }
}
