:root{
  --blue:#0058d8;
  --blue-dark:#003f9f;
  --navy:#071733;
  --ink:#101c34;
  --muted:#657187;
  --line:#dce5f1;
  --soft:#f5f8fc;
  --white:#fff;
  --shadow:0 18px 45px rgba(8,23,51,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
}

.sd-page{width:100%;overflow-x:hidden}
a{text-decoration:none;color:inherit}

.sd-topbar{
  background:linear-gradient(90deg,var(--blue-dark),var(--blue));
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.topbar-inner{
  width:min(1180px,calc(100% - 48px));
  min-height:36px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.topbar-left,.topbar-right{display:flex;align-items:center;gap:24px}
.sd-topbar a{color:#fff}

.sd-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(16,28,52,.08);
  box-shadow:0 5px 24px rgba(8,23,51,.06);
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 max(24px,calc((100% - 1180px)/2));
}

.sd-logo{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:250px;
}

.logo-symbol{
  width:78px;
  height:78px;
  overflow:hidden;
  display:block;
  border-radius:4px;
  background:#fff;
  flex:0 0 auto;
}

.logo-symbol img{
  display:block;
  width:170px;
  height:170px;
  object-fit:cover;
  transform:translate(-46px,-22px);
}

.logo-wordmark{
  color:var(--blue-dark);
  font-size:30px;
  line-height:.95;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.5px;
}

.logo-wordmark small{
  display:block;
  margin-top:7px;
  color:#1b3d70;
  font-size:14px;
  letter-spacing:5px;
}

.sd-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:15px;
  font-weight:800;
}

.sd-nav a{
  position:relative;
  padding:34px 0;
  color:#071733;
}

.sd-nav a.active::after,
.sd-nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:25px;
  height:3px;
  background:var(--blue);
  border-radius:999px;
}

.sd-header-actions{display:flex;align-items:center;gap:12px}
.language-toggle{
  border:0;
  background:#fff;
  color:#071733;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  cursor:pointer;
  padding:10px;
}

.sd-menu-btn{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  width:42px;
  height:42px;
  border-radius:6px;
  font-size:24px;
  cursor:pointer;
}

.sd-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 24px;
  border-radius:4px;
  border:1px solid var(--blue);
  background:var(--blue);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.sd-btn:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(0,88,216,.24)}
.sd-btn-light{background:rgba(255,255,255,.04);border-color:#fff}
.header-btn{min-height:48px}

.sd-hero{
  min-height:530px;
  position:relative;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(2,13,32,.94) 0%,rgba(2,13,32,.78) 34%,rgba(2,13,32,.16) 74%),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=85") center/cover;
  padding:78px max(24px,calc((100% - 1180px)/2)) 112px;
  animation:heroReveal 1.1s ease both;
}

.sd-hero-content{
  max-width:570px;
  color:#fff;
  animation:fadeUp .8s ease .12s both;
}

.sd-label,.section-kicker{
  display:inline-block;
  margin:0 0 18px;
  color:var(--blue);
  text-transform:uppercase;
  font-weight:900;
  font-size:12px;
  letter-spacing:.5px;
}

.sd-label{
  background:rgba(0,88,216,.72);
  color:#fff;
  padding:8px 12px;
}

.sd-hero h1{
  margin:0;
  font-size:50px;
  line-height:1.14;
  letter-spacing:0;
}

.sd-hero h1 span,.sd-hero h1 strong{display:block}
.sd-hero h1 strong{color:#1680ff}
.sd-hero p{
  max-width:520px;
  margin:24px 0 0;
  color:#f4f8ff;
  font-size:18px;
  line-height:1.55;
  font-weight:700;
}

.sd-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}

.sd-benefits{
  width:min(1180px,calc(100% - 48px));
  margin:-70px auto 0;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:linear-gradient(90deg,var(--blue-dark),var(--blue));
  color:#fff;
  border-radius:4px;
  box-shadow:var(--shadow);
  overflow:hidden;
  animation:fadeUp .75s ease .28s both;
}

.sd-benefits div{
  min-height:86px;
  display:grid;
  grid-template-columns:46px 1fr;
  align-items:center;
  column-gap:12px;
  padding:20px 28px;
  border-right:1px solid rgba(255,255,255,.16);
  transition:background .25s ease,transform .25s ease;
}

.sd-benefits div:last-child{border-right:0}
.sd-benefits div:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-2px);
}
.sd-benefits span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.7);
  border-radius:8px;
  font-size:24px;
  animation:softPop .7s ease both;
}

.sd-benefits h3{
  margin:0 0 6px;
  font-size:15px;
}

.sd-benefits p{
  margin:0;
  color:#eef5ff;
  font-size:13px;
}

.sd-section{
  padding:70px max(24px,calc((100% - 1180px)/2));
}

.products-section{text-align:center;padding-top:76px}
.sd-section h2,.sd-split h2,.sd-newsletter h2{
  margin:0 0 32px;
  color:var(--navy);
  font-size:31px;
  line-height:1.2;
}

.products{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
  text-align:left;
}

.sd-product{
  position:relative;
  min-height:320px;
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(8,23,51,.04);
  transition:transform .2s ease,box-shadow .2s ease;
  animation:fadeUp .7s ease both;
}

.sd-product:nth-child(2){animation-delay:.08s}
.sd-product:nth-child(3){animation-delay:.16s}
.sd-product:nth-child(4){animation-delay:.24s}
.sd-product:nth-child(5){animation-delay:.32s}

.sd-product:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.sd-product-img{
  height:145px;
  background-size:cover;
  background-position:center;
}

.img-frames{background-image:url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=700&q=80")}
.img-doors{background-image:url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=700&q=80")}
.img-sliding{background-image:url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=700&q=80")}
.img-glass{background-image:url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=700&q=80")}
.img-canopy{background-image:url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=700&q=80")}

.product-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin:-24px 0 14px 18px;
  position:relative;
  background:#fff;
  border-radius:6px;
  color:var(--blue);
  border:1px solid var(--line);
  box-shadow:0 8px 18px rgba(8,23,51,.12);
  font-size:26px;
  font-weight:900;
}

.sd-product h3{
  margin:0 18px 10px;
  color:var(--navy);
  font-size:17px;
}

.sd-product p{
  margin:0 18px 20px;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.sd-product a{
  display:inline-block;
  margin:0 18px 24px;
  color:var(--blue-dark);
  font-size:13px;
  font-weight:900;
}

.sd-product a::after{content:"  →"}

.sd-split{
  display:grid;
  grid-template-columns:minmax(320px,420px) 1fr;
  align-items:center;
  gap:60px;
  padding:0 max(24px,calc((100% - 1180px)/2)) 70px;
}

.sd-image-card{
  min-height:350px;
  border-radius:6px;
  background:url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=900&q=85") center/cover;
  box-shadow:var(--shadow);
  animation:fadeSlideLeft .8s ease both;
}

.about-copy{animation:fadeSlideRight .8s ease both}

.about-copy p:not(.section-kicker){
  color:#3e4b60;
  line-height:1.7;
  max-width:640px;
}

.stats-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin-top:30px;
  border-top:1px solid var(--line);
}

.stats-row div{
  padding:22px 16px;
  border-right:1px solid var(--line);
}

.stats-row div:last-child{border-right:0}
.stats-row strong{
  display:block;
  color:var(--navy);
  font-size:20px;
  margin-bottom:6px;
}

.stats-row span{
  color:#3e4b60;
  font-size:12px;
}

.projects-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:
    linear-gradient(90deg,rgba(245,248,252,.96),rgba(245,248,252,.8)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.projects-band h2{max-width:720px;margin-bottom:0}

.project-hero{
  min-height:470px;
  display:flex;
  align-items:center;
  padding:78px max(24px,calc((100% - 1180px)/2));
  background:
    linear-gradient(90deg,rgba(2,13,32,.92),rgba(2,13,32,.62),rgba(2,13,32,.12)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=85") center/cover;
  color:#fff;
}

.project-hero-copy{
  max-width:720px;
  animation:fadeUp .8s ease both;
}

.project-hero h1{
  max-width:760px;
  margin:0;
  font-size:48px;
  line-height:1.12;
  letter-spacing:0;
}

.project-hero p:not(.sd-label){
  max-width:590px;
  color:#edf4ff;
  font-size:18px;
  line-height:1.6;
  margin:22px 0 0;
  font-weight:700;
}

.project-page-section{
  text-align:center;
  background:#fff;
}

.project-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin:-8px 0 34px;
}

.project-filters span{
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 16px;
  color:#1b3d70;
  background:#fff;
  font-size:13px;
  font-weight:900;
}

.project-filters span:first-child{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  text-align:left;
}

.project-card{
  min-height:420px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(8,23,51,.05);
  transition:transform .25s ease,box-shadow .25s ease;
  animation:fadeUp .7s ease both;
}

.project-card:nth-child(2){animation-delay:.08s}
.project-card:nth-child(3){animation-delay:.16s}
.project-card:nth-child(4){animation-delay:.24s}
.project-card:nth-child(5){animation-delay:.32s}
.project-card:nth-child(6){animation-delay:.4s}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.project-image{
  height:235px;
  background-size:cover;
  background-position:center;
  transition:transform .35s ease;
}

.project-card:hover .project-image{transform:scale(1.04)}

.project-img-1{background-image:url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=85")}
.project-img-2{background-image:url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=900&q=85")}
.project-img-3{background-image:url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=900&q=85")}
.project-img-4{background-image:url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=900&q=85")}
.project-img-5{background-image:url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=85")}

.project-card-body{
  padding:24px;
}

.project-card-body span,
.project-empty-content span{
  color:var(--blue);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.project-card-body h3,
.project-empty-content h3{
  margin:10px 0;
  color:var(--navy);
  font-size:22px;
}

.project-card-body p,
.project-empty-content p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.project-card-empty{
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#f6f9fd,#eef4fb);
  border:1px dashed #b8c8dd;
}

.project-empty-content{
  padding:34px;
  text-align:center;
}

.project-empty-content .sd-btn{
  margin-top:24px;
}

.project-process{
  padding:70px max(24px,calc((100% - 1180px)/2));
  background:var(--soft);
}

.project-process h2{
  margin:0 0 30px;
  color:var(--navy);
  font-size:31px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.process-grid div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:6px;
  padding:28px;
  box-shadow:0 8px 24px rgba(8,23,51,.04);
}

.process-grid strong{
  display:block;
  color:var(--blue);
  font-size:13px;
  margin-bottom:16px;
}

.process-grid h3{
  margin:0 0 10px;
  color:var(--navy);
}

.process-grid p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.sd-newsletter{
  padding:70px max(24px,calc((100% - 1180px)/2));
  background:var(--navy);
  color:#fff;
  text-align:center;
}

.sd-newsletter h2{color:#fff;margin-bottom:14px}
.sd-newsletter p{color:#d9e5f6;margin:0 auto;max-width:560px;line-height:1.6}
.sd-newsletter form{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:28px auto 0;
  max-width:980px;
}

.sd-newsletter input{
  min-height:48px;
  padding:0 15px;
  border:0;
  border-radius:4px;
  font:inherit;
}

.sd-newsletter button{
  border:0;
  border-radius:4px;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.sd-footer{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
  padding:48px max(24px,calc((100% - 1180px)/2)) 110px;
  background:#061125;
  color:#fff;
}

.sd-footer h3,.sd-footer h4{margin:0 0 14px}
.sd-footer p{color:#c6d2e3;line-height:1.6;max-width:420px}
.sd-footer a{display:block;color:#c6d2e3;margin:9px 0}

.floating-icons{
  position:fixed;
  right:28px;
  bottom:30px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:999;
}

.float-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--blue-dark);
  color:#fff;
  box-shadow:0 14px 30px rgba(0,63,159,.3);
  overflow:hidden;
  transition:width .3s ease,border-radius .3s ease;
  animation:floatPulse 2.8s ease-in-out infinite;
}

.float-icon .icon{
  min-width:58px;
  text-align:center;
  font-size:24px;
}

.float-text{
  max-width:0;
  opacity:0;
  white-space:nowrap;
  font-size:14px;
  font-weight:800;
  transition:max-width .3s ease,opacity .3s ease,padding .3s ease;
}

.float-icon:hover{
  width:270px;
  border-radius:999px;
  justify-content:flex-start;
}

.float-icon:hover .float-text{
  max-width:210px;
  opacity:1;
  padding-right:18px;
}

@media(max-width:1080px){
  .sd-nav{gap:18px;font-size:14px}
  .products{grid-template-columns:repeat(3,1fr)}
  .sd-benefits{grid-template-columns:repeat(2,1fr)}
  .sd-benefits div:nth-child(2){border-right:0}
}

@media(max-width:850px){
  .topbar-inner{width:min(100% - 32px,1180px)}
  .topbar-right{display:none}
  .sd-header{min-height:88px;padding:0 16px}
  .sd-logo{min-width:190px;gap:10px}
  .logo-symbol{width:62px;height:62px}
  .logo-symbol img{width:138px;height:138px;transform:translate(-38px,-18px)}
  .logo-wordmark{font-size:22px}
  .logo-wordmark small{font-size:10px;letter-spacing:4px}
  .sd-nav{
    display:none;
    position:absolute;
    top:88px;
    left:0;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background:#fff;
    padding:12px 24px 22px;
    box-shadow:0 22px 34px rgba(8,23,51,.14);
  }
  .sd-nav.active{display:flex}
  .sd-nav a{width:100%;padding:14px 0}
  .sd-nav a::after{display:none}
  .sd-menu-btn{display:block}
  .header-btn{display:none}
  .sd-hero{min-height:560px;padding:64px 24px 118px;background-position:center right 35%}
  .sd-hero h1{font-size:40px}
  .products{grid-template-columns:repeat(2,1fr)}
  .sd-split{grid-template-columns:1fr;gap:32px;padding:20px 24px 60px}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .sd-newsletter form{grid-template-columns:1fr}
  .sd-newsletter button{min-height:48px}
  .sd-footer{grid-template-columns:1fr}
  .projects-band{align-items:flex-start;flex-direction:column}
  .project-hero{min-height:520px;padding:64px 24px}
  .project-hero h1{font-size:38px}
  .project-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:1fr}
}

@media(max-width:560px){
  .topbar-left{gap:12px;flex-wrap:wrap;justify-content:center}
  .topbar-inner{justify-content:center;text-align:center;padding:8px 0}
  .sd-header-actions{gap:6px}
  .sd-logo{min-width:168px}
  .logo-symbol{width:54px;height:54px}
  .logo-symbol img{width:120px;height:120px;transform:translate(-33px,-16px)}
  .logo-wordmark{font-size:19px;letter-spacing:1px}
  .logo-wordmark small{font-size:9px;letter-spacing:3px}
  .language-toggle{padding:8px 4px}
  .sd-hero{padding-inline:18px}
  .sd-hero h1{font-size:34px}
  .sd-hero p{font-size:16px}
  .sd-actions .sd-btn{width:100%}
  .sd-benefits{
    width:calc(100% - 28px);
    grid-template-columns:1fr;
  }
  .sd-benefits div{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}
  .products{grid-template-columns:1fr}
  .project-grid{grid-template-columns:1fr}
  .project-hero{padding-inline:18px}
  .project-hero h1{font-size:32px}
  .project-hero p:not(.sd-label){font-size:16px}
  .sd-section{padding-left:18px;padding-right:18px}
  .sd-section h2,.sd-split h2,.sd-newsletter h2{font-size:26px}
  .stats-row{grid-template-columns:1fr}
  .stats-row div{border-right:0;border-bottom:1px solid var(--line)}
  .floating-icons{right:16px;bottom:16px}
  .float-icon:hover{width:58px}
  .float-icon:active{width:245px;justify-content:flex-start}
  .float-icon:active .float-text{max-width:185px;opacity:1;padding-right:14px}
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(26px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes fadeSlideLeft{
  from{opacity:0;transform:translateX(-28px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes fadeSlideRight{
  from{opacity:0;transform:translateX(28px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes softPop{
  from{opacity:.35;transform:scale(.9)}
  to{opacity:1;transform:scale(1)}
}

@keyframes heroReveal{
  from{filter:saturate(.85);background-position:center right 42%}
  to{filter:saturate(1);background-position:center}
}

@keyframes floatPulse{
  0%,100%{box-shadow:0 14px 30px rgba(0,63,159,.3)}
  50%{box-shadow:0 18px 38px rgba(0,88,216,.44)}
}

@keyframes slideInUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes slideInDown{
  from{opacity:0;transform:translateY(-40px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes slideInLeft{
  from{opacity:0;transform:translateX(-40px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes slideInRight{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes scaleUp{
  from{opacity:0;transform:scale(.95)}
  to{opacity:1;transform:scale(1)}
}

@keyframes bounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

@keyframes shimmer{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}

@keyframes spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@keyframes glow{
  0%,100%{box-shadow:0 0 20px rgba(0,88,216,.4)}
  50%{box-shadow:0 0 30px rgba(0,88,216,.8)}
}

.sd-hero-content > *{opacity:0}
.sd-hero-content > :nth-child(1){animation:slideInDown .7s ease .2s forwards}
.sd-hero-content > :nth-child(2){animation:slideInUp .7s ease .35s forwards}
.sd-hero-content > :nth-child(3){animation:fadeUp .7s ease .5s forwards}
.sd-hero-content > :nth-child(4){animation:slideInUp .8s ease .65s forwards}

.sd-section h2{animation:slideInUp .6s ease forwards}
.section-kicker{animation:slideInUp .5s ease forwards}

.sd-product{animation:scaleUp .5s ease !important}

.sd-product:hover .sd-product-img{
  animation:zoom .4s ease forwards;
}

@keyframes zoom{
  from{transform:scale(1)}
  to{transform:scale(1.08)}
}

.stats-row div{
  animation:slideInUp .6s ease both;
  opacity:0;
}

.stats-row div:nth-child(1){animation-delay:.1s}
.stats-row div:nth-child(2){animation-delay:.2s}
.stats-row div:nth-child(3){animation-delay:.3s}
.stats-row div:nth-child(4){animation-delay:.4s}

.sd-section h2::after{
  content:"";
  display:block;
  width:60px;
  height:4px;
  background:var(--blue);
  margin-top:16px;
  border-radius:2px;
  animation:slideInLeft .7s ease .3s both;
}

.products-section h2::after{margin-left:auto;margin-right:auto}

.sd-btn{position:relative;overflow:hidden}
.sd-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:rgba(255,255,255,.2);
  animation:slideButton .5s ease;
}

@keyframes slideButton{
  to{left:100%}
}

.sd-btn:hover{animation:none}

.float-icon .icon{
  transition:transform .3s ease;
}

.float-icon:hover .icon{
  animation:bounce .6s ease 2;
}

.sd-benefits div span{
  animation:softPop .6s ease both !important;
  opacity:0;
}

.sd-benefits div:nth-child(1) span{animation-delay:.2s}
.sd-benefits div:nth-child(2) span{animation-delay:.3s}
.sd-benefits div:nth-child(3) span{animation-delay:.4s}
.sd-benefits div:nth-child(4) span{animation-delay:.5s}

.sd-logo{
  animation:slideInLeft .6s ease .1s both;
}

.sd-nav a{
  position:relative;
  transition:color .3s ease;
}

.sd-nav a::before{
  content:"";
  position:absolute;
  bottom:25px;
  left:0;
  width:0;
  height:3px;
  background:var(--blue);
  border-radius:999px;
  transition:width .3s ease;
}

.sd-nav a:hover::before,
.sd-nav a.active::before{
  width:100%;
}

.sd-nav a:hover::after,
.sd-nav a.active::after{
  display:none;
}

.sd-image-card{
  animation:fadeSlideLeft .8s ease both !important;
}

.about-copy{
  animation:fadeSlideRight .8s ease both !important;
}

.about-copy h2::after{
  content:"";
  display:block;
  width:60px;
  height:4px;
  background:var(--blue);
  margin-top:16px;
  border-radius:2px;
  animation:slideInLeft .7s ease .4s both;
}

form input,form button{
  animation:slideInUp .5s ease both;
  opacity:0;
}

form input:nth-child(1){animation-delay:.1s}
form input:nth-child(2){animation-delay:.2s}
form input:nth-child(3){animation-delay:.3s}
form button{animation-delay:.4s}

form input:focus,form button:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(0,88,216,.1);
  animation:glow .4s ease;
}

.sd-header{
  border-bottom:1px solid rgba(16,28,52,.08);
  animation:slideInDown .5s ease;
}

.sd-topbar{
  animation:slideInDown .4s ease;
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}
