:root{
  --bg:#f4f8fb;
  --bg-soft:#eef4f8;
  --card:rgba(255,255,255,.78);
  --line:rgba(18,40,58,.08);
  --line-strong:rgba(18,40,58,.14);
  --text:#0d1720;
  --muted:#617283;
  --primary:#8fe1f8;
  --primary-2:#58cde9;
  --primary-deep:#123142;
  --shadow:0 18px 50px rgba(16,39,57,.10);
  --shadow-soft:0 10px 26px rgba(16,39,57,.07);
  --radius:28px;
  --transition:.35s cubic-bezier(.2,.65,.2,1);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143,225,248,.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(88,205,233,.12), transparent 26%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

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

button{
  font:inherit;
}

ul{
  list-style:none;
}

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

.section{
  padding:110px 0;
  position:relative;
}

.section-soft{
  background:linear-gradient(180deg, rgba(255,255,255,.45), rgba(236,243,247,.55));
}

.section-head{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
}

.section-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(143,225,248,.14);
  border:1px solid rgba(88,205,233,.18);
  color:var(--primary-deep);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.section-head h2,
.about-copy h2,
.contact-left h2{
  font-size:clamp(32px, 4vw, 54px);
  line-height:1.05;
  margin-bottom:16px;
  letter-spacing:-.03em;
}

.section-head p,
.about-copy p,
.contact-left p{
  color:var(--muted);
  line-height:1.9;
  font-size:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:52px;
  padding:0 22px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  position:relative;
  overflow:hidden;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-sm{
  min-height:44px;
  padding:0 18px;
  font-size:14px;
}

.btn-lg{
  min-height:56px;
  padding:0 26px;
}

.btn-primary{
  background:linear-gradient(135deg, #ffffff, #dff7ff);
  color:#10212c;
  border-color:rgba(255,255,255,.8);
  box-shadow:0 14px 34px rgba(88,205,233,.18);
}

.btn-primary:hover{
  box-shadow:0 18px 38px rgba(88,205,233,.24);
}

.btn-secondary{
  background:rgba(255,255,255,.7);
  border-color:var(--line-strong);
  color:var(--text);
  backdrop-filter:blur(10px);
}

.btn-glass{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  backdrop-filter:blur(12px);
}

.btn-glass:hover{
  background:rgba(255,255,255,.16);
}

.glass-card{
  background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
  border:1px solid rgba(255,255,255,.7);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}

.cursor-glow{
  position:fixed;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(143,225,248,.18), rgba(143,225,248,0));
  pointer-events:none;
  z-index:0;
  transform:translate(-50%, -50%);
  filter:blur(10px);
  transition:transform .08s linear;
}

/* Preloader */
.preloader{
  position:fixed;
  inset:0;
  background:#09131a;
  z-index:3000;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .7s ease, visibility .7s ease;
}

.preloader.hide{
  opacity:0;
  visibility:hidden;
}

.preloader-inner{
  text-align:center;
  color:#d8eef5;
}

.preloader-logo{
  width:90px;
  margin:0 auto 22px;
  filter:drop-shadow(0 10px 30px rgba(143,225,248,.18));
}

.preloader-line{
  width:220px;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  margin:0 auto 14px;
  overflow:hidden;
}

.preloader-line span{
  display:block;
  width:40%;
  height:100%;
  background:linear-gradient(90deg, #8fe1f8, #ffffff);
  border-radius:inherit;
  animation:loadBar 1.2s ease-in-out infinite;
}

.preloader p{
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.8;
}

@keyframes loadBar{
  0%{ transform:translateX(-120%); }
  100%{ transform:translateX(360%); }
}

/* Header */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1200;
  transition:background var(--transition), box-shadow var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.header.scrolled{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.55);
  box-shadow:0 14px 34px rgba(20,42,58,.08);
}

.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.02em;
}

.brand img{
  width:44px;
  height:44px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-link{
  color:#dbe8f0;
  font-weight:600;
  position:relative;
  transition:color var(--transition);
}

.header.scrolled .nav-link{
  color:var(--text);
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--primary-2);
  transition:width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  background:rgba(255,255,255,.14);
  border-radius:14px;
  cursor:pointer;
  backdrop-filter:blur(10px);
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  margin:4px auto;
  border-radius:999px;
}

.header.scrolled .menu-toggle span{
  background:var(--text);
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:12px;
  padding:0 20px 20px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.mobile-menu.active{
  display:flex;
}

.mobile-menu a{
  padding:12px 14px;
  border-radius:14px;
  background:#f4f8fb;
  color:var(--text);
  font-weight:700;
}

/* Hero */
.hero-video{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#0c141b;
  isolation:isolate;
}

.hero-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
  transform:scale(1.04);
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to bottom, rgba(7,13,18,.25), rgba(7,13,18,.6)),
    radial-gradient(circle at center, rgba(255,255,255,.08), rgba(0,0,0,.22));
}

.hero-noise{
  position:absolute;
  inset:0;
  z-index:2;
  opacity:.08;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size:3px 3px;
  mix-blend-mode:soft-light;
}

.hero-3d-orb,
.hero-3d-ring{
  position:absolute;
  z-index:2;
  pointer-events:none;
}

.hero-3d-orb{
  width:340px;
  height:340px;
  border-radius:50%;
  filter:blur(8px);
  opacity:.9;
}

.orb-1{
  top:10%;
  left:8%;
  background:radial-gradient(circle at 35% 35%, rgba(255,255,255,.8), rgba(143,225,248,.3), rgba(143,225,248,0));
  animation:floatOrb1 8s ease-in-out infinite;
}

.orb-2{
  right:10%;
  bottom:12%;
  width:260px;
  height:260px;
  background:radial-gradient(circle at 35% 35%, rgba(255,255,255,.7), rgba(88,205,233,.24), rgba(88,205,233,0));
  animation:floatOrb2 10s ease-in-out infinite;
}

.hero-3d-ring{
  width:520px;
  height:520px;
  right:-60px;
  top:12%;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:inset 0 0 80px rgba(255,255,255,.04);
  animation:spinSlow 20s linear infinite;
}

@keyframes floatOrb1{
  0%,100%{ transform:translateY(0) translateX(0); }
  50%{ transform:translateY(-24px) translateX(18px); }
}

@keyframes floatOrb2{
  0%,100%{ transform:translateY(0) translateX(0); }
  50%{ transform:translateY(18px) translateX(-14px); }
}

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

.hero-video-content{
  position:relative;
  z-index:3;
  text-align:center;
  max-width:900px;
  color:#fff;
  padding:150px 20px 80px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero-video-content h1{
  font-size:clamp(44px, 8vw, 96px);
  line-height:.95;
  margin-bottom:18px;
  letter-spacing:-.05em;
  text-shadow:0 14px 42px rgba(0,0,0,.24);
}

.hero-video-content p{
  max-width:760px;
  margin:0 auto 28px;
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,.84);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-actions.center{
  justify-content:center;
}

.hero-mini-cards{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.mini-card{
  padding:20px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.mini-card strong{
  display:block;
  margin-bottom:8px;
  font-size:16px;
}

.mini-card span{
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.8;
}

.hero-scroll{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  z-index:3;
  color:rgba(255,255,255,.76);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero-scroll span{
  width:1px;
  height:38px;
  background:linear-gradient(to bottom, rgba(255,255,255,.2), rgba(255,255,255,.9));
  animation:scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine{
  0%,100%{ transform:scaleY(.6); opacity:.5; }
  50%{ transform:scaleY(1); opacity:1; }
}

/* Trust */
.trust-strip{
  margin-top:-1px;
  padding:34px 0;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,.55);
  border-bottom:1px solid rgba(255,255,255,.55);
}

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

.trust-item{
  padding:26px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  text-align:center;
}

.trust-item strong{
  display:block;
  font-size:42px;
  line-height:1;
  margin-bottom:10px;
  color:var(--primary-deep);
}

.trust-item span{
  color:var(--muted);
  line-height:1.8;
}

/* Products */
.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.product-card{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  transition:transform var(--transition), box-shadow var(--transition);
  transform-style:preserve-3d;
}

.product-card:hover{
  box-shadow:0 26px 60px rgba(16,39,57,.14);
}

.product-shine{
  position:absolute;
  inset:-40%;
  background:linear-gradient(120deg, transparent 35%, rgba(255,255,255,.34) 50%, transparent 65%);
  transform:translateX(-120%) rotate(12deg);
  transition:transform .9s ease;
  pointer-events:none;
}

.product-card:hover .product-shine{
  transform:translateX(120%) rotate(12deg);
}

.product-image{
  padding:26px 26px 10px;
  position:relative;
  overflow:hidden;
}

.product-image::before{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  border-radius:50%;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  background:radial-gradient(circle, rgba(143,225,248,.24), rgba(143,225,248,0));
  filter:blur(8px);
}

.product-image img{
  width:100%;
  height:250px;
  object-fit:contain;
  position:relative;
  z-index:1;
  transition:transform .5s ease;
}

.product-card:hover .product-image img{
  transform:translateY(-6px) scale(1.03);
}

.product-body{
  padding:0 24px 24px;
}

.product-tag{
  display:inline-block;
  margin-bottom:10px;
  color:var(--primary-deep);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.product-body h3{
  font-size:24px;
  margin-bottom:10px;
  letter-spacing:-.02em;
}

.product-body p{
  color:var(--muted);
  line-height:1.85;
  min-height:86px;
}

.product-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
  margin-bottom:18px;
}

.product-meta span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(143,225,248,.12);
  border:1px solid rgba(88,205,233,.16);
  color:var(--primary-deep);
  font-size:13px;
  font-weight:800;
}

.text-btn{
  border:none;
  background:transparent;
  padding:0;
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  position:relative;
}

.text-btn::after{
  content:"";
  display:block;
  width:100%;
  height:2px;
  margin-top:6px;
  background:var(--primary-2);
}

/* Pillars */
.pillars-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.pillar-card{
  padding:30px;
  border-radius:28px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.pillar-icon{
  width:56px;
  height:56px;
  margin-bottom:18px;
  color:#162630;
}

.pillar-icon svg{
  width:100%;
  height:100%;
}

.pillar-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.pillar-card p{
  color:var(--muted);
  line-height:1.85;
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  grid-template-rows:280px 280px;
  gap:18px;
}

.gallery-card{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.88);
  box-shadow:var(--shadow);
  cursor:pointer;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.gallery-card:hover img{
  transform:scale(1.06);
}

.gallery-card.large{
  grid-row:span 2;
}

.gallery-card.wide{
  grid-column:span 2;
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}

.about-list{
  display:grid;
  gap:18px;
  margin-top:28px;
}

.about-item{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.about-item strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}

.about-item span{
  color:var(--muted);
  line-height:1.8;
}

.about-frame{
  padding:26px;
  border-radius:30px;
  background:linear-gradient(145deg, rgba(143,225,248,.15), rgba(255,255,255,.84));
  border:1px solid rgba(88,205,233,.2);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.about-frame::before{
  content:"";
  position:absolute;
  inset:auto -20% -35% auto;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(143,225,248,.28), rgba(143,225,248,0));
  filter:blur(14px);
}

.about-frame img{
  border-radius:20px;
  position:relative;
  z-index:1;
}

/* Reviews */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review-card{
  padding:28px;
  border-radius:26px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.stars{
  font-size:20px;
  margin-bottom:14px;
  color:#f4bb2f;
}

.review-card p{
  color:var(--muted);
  line-height:1.9;
}

.review-card h4{
  font-size:17px;
  margin-top:14px;
}

/* Contact */
.contact-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:40px;
  border-radius:32px;
  background:linear-gradient(145deg, rgba(255,255,255,.92), rgba(237,245,249,.92));
  border:1px solid rgba(88,205,233,.18);
  box-shadow:var(--shadow);
}

.contact-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Footer */
.footer{
  padding-top:70px;
  background:#eef5f9;
  border-top:1px solid rgba(15,23,32,.05);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:30px;
  padding-bottom:36px;
}

.footer h3,
.footer h4{
  margin-bottom:16px;
}

.footer p,
.footer li,
.footer a{
  color:var(--muted);
  line-height:2;
}

.footer-bottom{
  text-align:center;
  padding:18px 0;
  border-top:1px solid rgba(15,23,32,.05);
  color:#8293a3;
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1500;
  padding:20px;
}

.modal.active{
  display:flex;
}

.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(9,16,22,.58);
  backdrop-filter:blur(10px);
}

.modal-box{
  position:relative;
  width:min(100%, 980px);
  background:rgba(255,255,255,.97);
  border:1px solid rgba(255,255,255,.6);
  border-radius:30px;
  box-shadow:0 30px 80px rgba(10,25,37,.22);
  z-index:2;
  overflow:hidden;
  animation:modalIn .35s ease;
}

@keyframes modalIn{
  from{
    opacity:0;
    transform:translateY(16px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#f3f7fa;
  color:#182630;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.modal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
}

.modal-image-wrap{
  padding:34px;
  background:linear-gradient(180deg, rgba(143,225,248,.10), rgba(255,255,255,.72));
  min-height:100%;
}

.modal-image-wrap img{
  width:100%;
  max-height:480px;
  object-fit:contain;
}

.modal-content{
  padding:40px;
}

.modal-tag{
  display:inline-block;
  color:var(--primary-deep);
  font-size:13px;
  font-weight:800;
  margin-bottom:12px;
}

.modal-content h3{
  font-size:34px;
  margin-bottom:14px;
  line-height:1.1;
}

.modal-content p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:20px;
}

.modal-specs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:26px;
}

.modal-specs span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(143,225,248,.12);
  border:1px solid rgba(88,205,233,.18);
  color:var(--primary-deep);
  font-size:13px;
  font-weight:800;
}

.modal-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1600;
  padding:30px;
}

.lightbox.active{
  display:flex;
}

.lightbox-overlay{
  position:absolute;
  inset:0;
  background:rgba(8,14,18,.74);
  backdrop-filter:blur(10px);
}

.lightbox img{
  position:relative;
  z-index:2;
  max-width:min(100%, 1100px);
  max-height:85vh;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.28);
}

.lightbox-close{
  position:absolute;
  top:24px;
  right:24px;
  z-index:3;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:30px;
  cursor:pointer;
  backdrop-filter:blur(10px);
}

/* Float / tilt / reveal */
.tilt-card{
  transform-style:preserve-3d;
  transition:transform .18s ease, box-shadow .18s ease;
  will-change:transform;
}

.float-card{
  animation:floatY 5s ease-in-out infinite;
}

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

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

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media (max-width:1100px){
  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pillars-grid,
  .reviews-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }

  .about-grid,
  .modal-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
  }

  .gallery-card.large,
  .gallery-card.wide{
    grid-column:auto;
    grid-row:auto;
  }

  .gallery-card{
    height:280px;
  }

  .contact-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-mini-cards{
    grid-template-columns:1fr;
  }
}

@media (max-width:860px){
  .nav-links,
  .nav-right .btn{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

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

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

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

  .gallery-card{
    height:260px;
  }

  .section{
    padding:90px 0;
  }

  .modal-content{
    padding:28px;
  }

  .modal-image-wrap{
    padding:24px;
  }
}

@media (max-width:520px){
  .hero-video-content{
    padding:130px 18px 70px;
  }

  .hero-video-content p{
    font-size:15px;
    line-height:1.8;
  }

  .section-head h2,
  .about-copy h2,
  .contact-left h2{
    font-size:32px;
  }

  .hero-actions,
  .modal-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .contact-right{
    width:100%;
  }

  .trust-item strong{
    font-size:34px;
  }
}
