/* ===================== TOKENS ===================== */
:root{
  --navy-950:#0b0e13;
  --navy-900:#10141b;
  --navy-800:#161c25;
  --navy-700:#1e2733;
  --navy-600:#2a3646;
  --steel-300:#c7ccd3;
  --steel-400:#9aa4b2;
  --steel-500:#6b7684;
  --blue-500:#2e6fd1;
  --blue-600:#245bb0;
  --blue-400:#4d8ce0;
  --amber-500:#e8952e;
  --white:#f5f7fa;
  --off-white:#eef1f5;
  --radius:14px;
  --shadow-lg:0 24px 60px -20px rgba(0,0,0,.5);
  --shadow-md:0 12px 30px -12px rgba(0,0,0,.4);
  --ff-head:'Poppins',sans-serif;
  --ff-body:'Inter',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--ff-body);
  background:var(--navy-950);
  color:var(--off-white);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
h1,h2,h3,h4{font-family:var(--ff-head);color:var(--white);font-weight:700;line-height:1.2;}
::selection{background:var(--blue-500);color:#fff;}

/* ===================== PRELOADER ===================== */
#preloader{
  position:fixed;inset:0;background:var(--navy-950);
  display:flex;align-items:center;justify-content:center;
  z-index:9999;transition:opacity .5s ease, visibility .5s ease;
}
#preloader.hidden{opacity:0;visibility:hidden;}
.loader-ring{
  width:48px;height:48px;border-radius:50%;
  border:3px solid var(--navy-700);
  border-top-color:var(--blue-500);
  animation:spin 0.9s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg);}}

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 28px;border-radius:100px;
  font-weight:600;font-size:.95rem;
  border:1px solid transparent;
  cursor:pointer;transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--blue-500),var(--blue-600));
  color:#fff;
  box-shadow:0 10px 30px -8px rgba(46,111,209,.55);
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 16px 36px -8px rgba(46,111,209,.7);}
.btn-ghost{
  background:rgba(255,255,255,.06);
  color:#fff;
  border-color:rgba(255,255,255,.25);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{background:rgba(255,255,255,.14);transform:translateY(-3px);}

/* ===================== HEADER ===================== */
.site-header{
  position:fixed;top:0;left:0;right:0;
  z-index:1000;
  padding:18px 0;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled{
  background:rgba(11,14,19,.9);
  backdrop-filter:blur(14px);
  padding:10px 0;
  box-shadow:0 8px 30px -14px rgba(0,0,0,.6);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;}
.brand-logo{height:108px;width:auto;transition:height .3s ease;border-radius:8px;}
.site-header.scrolled .brand-logo{height:78px;}
.main-nav{display:flex;gap:34px;}
.main-nav a{
  font-size:.95rem;font-weight:500;color:var(--steel-300);
  position:relative;padding:6px 0;transition:color .25s ease;
}
.main-nav a::after{
  content:'';position:absolute;left:0;bottom:0;height:2px;width:0;
  background:var(--blue-400);transition:width .3s ease;
}
.main-nav a:hover{color:#fff;}
.main-nav a:hover::after{width:100%;}
.header-actions{display:flex;align-items:center;gap:18px;}
.header-phone{
  display:flex;align-items:center;gap:8px;
  color:#fff;font-weight:600;font-size:.92rem;
  padding:10px 18px;border-radius:100px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.15);
  transition:background .25s ease;
}
.header-phone:hover{background:rgba(255,255,255,.14);}
.menu-toggle{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;padding:8px;
}
.menu-toggle span{width:24px;height:2px;background:#fff;border-radius:2px;transition:.3s;}

/* ===================== HERO ===================== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center 25%;
  transform:scale(1.08);
  animation:heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom{to{transform:scale(1);}}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(42,47,54,.6) 0%,rgba(42,47,54,.5) 40%,rgba(30,34,40,.88) 100%),
    linear-gradient(100deg,rgba(30,34,40,.88) 10%,rgba(42,47,54,.42) 55%,rgba(42,47,54,.6) 100%);
}
.hero-content{position:relative;z-index:2;padding-top:120px;padding-bottom:60px;}
.eyebrow{
  display:inline-block;
  color:var(--blue-400);
  font-weight:600;letter-spacing:.14em;
  font-size:.8rem;text-transform:uppercase;
  margin-bottom:18px;
}
.hero h1{
  font-size:clamp(2.2rem,5vw,3.8rem);
  max-width:820px;margin-bottom:22px;
}
.hero h1 span{color:var(--blue-400);}
.hero-sub{
  max-width:620px;color:var(--steel-300);
  font-size:1.08rem;margin-bottom:34px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:56px;}
.hero-stats{
  display:flex;gap:48px;flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:28px;max-width:700px;
}
.hero-stats strong{
  display:block;font-family:var(--ff-head);
  font-size:2rem;color:#fff;font-weight:700;
}
.hero-stats span{color:var(--steel-400);font-size:.88rem;}

.hero-youtube{
  position:absolute;top:152px;right:24px;z-index:5;
  display:flex;align-items:center;gap:8px;
  padding:10px 18px;border-radius:100px;
  background:rgba(255,0,0,.15);border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(6px);
  color:#fff;font-weight:600;font-size:.88rem;
  transition:background .25s ease, transform .25s ease;
}
.hero-youtube:hover{background:#ff0000;transform:translateY(-2px);}
.hero-youtube svg{color:#ff0000;flex-shrink:0;}
.hero-youtube:hover svg{color:#fff;}

.hero-share{
  position:absolute;top:206px;right:24px;z-index:5;
  display:flex;align-items:center;gap:8px;
  padding:10px 18px;border-radius:100px;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(6px);
  color:#fff;font:inherit;font-weight:600;font-size:.88rem;cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.hero-share:hover{background:rgba(255,255,255,.28);transform:translateY(-2px);}
.hero-share svg{flex-shrink:0;}

.scroll-cue{
  position:absolute;bottom:28px;left:50%;transform:translateX(-50%);
  width:26px;height:42px;border:2px solid rgba(255,255,255,.4);
  border-radius:20px;z-index:2;
}
.scroll-cue span{
  position:absolute;top:8px;left:50%;transform:translateX(-50%);
  width:4px;height:8px;background:#fff;border-radius:2px;
  animation:scrollDown 1.8s ease infinite;
}
@keyframes scrollDown{
  0%{opacity:1;top:8px;}
  70%{opacity:0;top:22px;}
  100%{opacity:0;top:8px;}
}

/* ===================== SECTION GENERIC ===================== */
.section{padding:110px 0;position:relative;}
.section-alt{background:var(--navy-900);}
.section-eyebrow{
  color:var(--blue-400);font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;font-size:.8rem;margin-bottom:14px;
}
.section-head{max-width:680px;margin:0 auto 60px;text-align:center;}
.section-head h2{font-size:clamp(1.8rem,3.2vw,2.6rem);margin-bottom:16px;}
.section-desc{color:var(--steel-400);font-size:1.02rem;}
.section:not(.section-head) h2{font-size:clamp(1.8rem,3.2vw,2.6rem);margin-bottom:20px;}

/* ===================== ABOUT ===================== */
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:70px;align-items:center;
}
.about-media{position:relative;}
.about-img-main{
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/5;object-fit:cover;
}
.about-img-sub{
  position:absolute;bottom:-40px;right:-40px;
  width:52%;border-radius:var(--radius);
  border:6px solid var(--navy-950);
  box-shadow:var(--shadow-md);
  aspect-ratio:4/3;object-fit:cover;
}
.about-badge{
  position:absolute;top:24px;left:-24px;
  background:linear-gradient(135deg,var(--blue-500),var(--blue-600));
  color:#fff;padding:18px 22px;border-radius:var(--radius);
  box-shadow:0 16px 30px -10px rgba(46,111,209,.6);
  text-align:center;
}
.about-badge strong{display:block;font-family:var(--ff-head);font-size:1.7rem;}
.about-badge span{font-size:.75rem;opacity:.9;}
.about-text p{color:var(--steel-300);margin-bottom:18px;}
.check-list{margin:26px 0;display:flex;flex-direction:column;gap:12px;}
.check-list li{
  position:relative;padding-left:30px;color:var(--steel-300);font-size:.96rem;
}
.check-list li::before{
  content:'';position:absolute;left:0;top:5px;
  width:18px;height:18px;border-radius:50%;
  background:rgba(46,111,209,.18);
  border:1px solid var(--blue-400);
}
.check-list li::after{
  content:'';position:absolute;left:5px;top:8px;
  width:8px;height:4px;border-left:2px solid var(--blue-400);
  border-bottom:2px solid var(--blue-400);
  transform:rotate(-45deg);
}

/* ===================== SERVICES ===================== */
.services-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:26px;
}
.service-card{
  background:var(--navy-800);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:36px 28px;
  transition:transform .3s ease, border-color .3s ease, background .3s ease;
}
.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(77,140,224,.4);
  background:var(--navy-700);
}
.service-icon{
  width:60px;height:60px;border-radius:14px;
  background:linear-gradient(135deg,rgba(46,111,209,.2),rgba(46,111,209,.05));
  color:var(--blue-400);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:22px;
}
.service-icon svg{width:30px;height:30px;}
.service-card h3{font-size:1.15rem;margin-bottom:10px;}
.service-card p{color:var(--steel-400);font-size:.92rem;}
.service-photos{display:flex;gap:10px;margin-top:20px;}
.service-photos img{
  width:50%;aspect-ratio:4/3;object-fit:cover;border-radius:10px;
  box-shadow:var(--shadow-md);
  transition:transform .4s ease;
}
.service-photos img:hover{transform:scale(1.05);}

.service-photos.single{
  position:relative;width:100%;aspect-ratio:16/10;
  border-radius:10px;overflow:hidden;cursor:pointer;
  box-shadow:var(--shadow-md);
}
.service-photos.single img{
  position:absolute;inset:0;width:100%;height:100%;
  border-radius:0;box-shadow:none;
  opacity:0;transition:opacity .5s ease, transform .5s ease;
}
.service-photos.single img.active{opacity:1;}
.service-photos.single:hover img.active{transform:scale(1.04);}
.slider-hint{
  position:absolute;bottom:10px;right:12px;z-index:2;
  background:rgba(11,14,19,.65);color:#fff;
  font-size:.68rem;padding:5px 10px;border-radius:100px;
  backdrop-filter:blur(4px);
  opacity:0;transition:opacity .3s ease;
  pointer-events:none;
}
.service-photos.single:hover .slider-hint{opacity:1;}

/* ===================== SERVICE SHOWCASE ===================== */
.showcase{
  margin-top:60px;
  background:var(--navy-800);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:40px;
  display:grid;grid-template-columns:1fr 1fr;
  gap:40px;align-items:center;
}
.showcase-media{display:flex;gap:14px;}
.showcase-media img{
  width:50%;border-radius:12px;object-fit:cover;aspect-ratio:4/3;
  box-shadow:var(--shadow-md);
}
.showcase-text h3{font-size:1.4rem;margin:8px 0 14px;}
.showcase-text p{color:var(--steel-400);font-size:.95rem;}

/* ===================== WHY US ===================== */
.why-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center;}
.why-media img{border-radius:var(--radius);box-shadow:var(--shadow-lg);aspect-ratio:16/9;object-fit:cover;}
.why-list{display:flex;flex-direction:column;gap:30px;margin-top:30px;}
.why-item{display:flex;gap:22px;}
.why-num{
  font-family:var(--ff-head);font-size:1.6rem;font-weight:700;
  color:var(--blue-500);opacity:.6;flex-shrink:0;min-width:44px;
}
.why-item h4{font-size:1.08rem;color:#fff;margin-bottom:6px;}
.why-item p{color:var(--steel-400);font-size:.92rem;}

/* ===================== PRODUCTS ===================== */
.products-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:26px;
}
.products-grid-3{grid-template-columns:repeat(3,1fr);max-width:960px;margin:0 auto;}
.product-card{
  background:var(--navy-800);
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  transition:transform .3s ease, box-shadow .3s ease;
}
.product-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);}
.product-img{aspect-ratio:1/1;overflow:hidden;background:#fff;}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.product-card:hover .product-img img{transform:scale(1.08);}
.product-info{padding:22px;}
.product-info h3{font-size:1.05rem;margin-bottom:8px;}
.product-info p{color:var(--steel-400);font-size:.88rem;margin-bottom:14px;}
.product-footer{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;}
.product-tag{
  display:inline-block;padding:5px 14px;border-radius:100px;
  background:rgba(46,111,209,.15);color:var(--blue-400);
  font-size:.75rem;font-weight:600;letter-spacing:.04em;
}
.product-price{
  font-family:var(--ff-head);font-weight:700;font-size:1rem;color:#fff;
  white-space:nowrap;
}
.product-price small{
  display:block;font-family:var(--ff-body);font-weight:500;
  font-size:.68rem;color:var(--steel-500);
}
.products-note{text-align:center;margin-top:40px;color:var(--steel-400);}
.products-note a{color:var(--blue-400);font-weight:600;}

/* ===================== GALLERY ===================== */
.gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:220px;gap:18px;
}
.gallery-item{border-radius:var(--radius);overflow:hidden;}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.gallery-item:hover img{transform:scale(1.1);}
.gallery-item.wide{grid-column:span 2;}
.gallery-item.video-item{position:relative;cursor:pointer;}
.play-btn{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:64px;height:64px;border-radius:50%;
  background:rgba(46,111,209,.9);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px -6px rgba(0,0,0,.6);
  transition:transform .3s ease, background .3s ease;
}
.video-item:hover .play-btn{transform:translate(-50%,-50%) scale(1.12);background:var(--blue-500);}

/* ===================== VIDEO SHOWCASE ===================== */
.video-showcase{
  position:relative;cursor:pointer;
  max-width:820px;margin:0 auto;
  aspect-ratio:16/9;border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow-lg);
}
.video-showcase img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.video-showcase:hover img{transform:scale(1.06);}
.video-showcase::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(11,14,19,.15) 0%,rgba(11,14,19,.55) 100%);
}
.video-showcase .play-btn{width:84px;height:84px;z-index:2;}
.video-showcase-label{
  position:absolute;left:24px;bottom:22px;z-index:2;
  color:#fff;font-family:var(--ff-head);font-weight:600;font-size:1.1rem;
}

/* ===================== VIDEO MODAL ===================== */
.video-modal{
  position:fixed;inset:0;z-index:2000;
  display:none;align-items:center;justify-content:center;padding:24px;
}
.video-modal.open{display:flex;}
.video-modal-backdrop{position:absolute;inset:0;background:rgba(5,7,10,.9);backdrop-filter:blur(4px);}
.video-modal-inner{position:relative;width:100%;max-width:900px;z-index:1;}
.video-modal-inner video{width:100%;border-radius:12px;box-shadow:var(--shadow-lg);background:#000;}
.video-modal-close{
  position:absolute;top:-46px;right:0;
  background:none;border:none;color:#fff;font-size:2rem;line-height:1;
  cursor:pointer;
}

/* ===================== FAQ ===================== */
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:14px;}
.faq-item{
  background:var(--navy-800);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:22px 26px;
}
.faq-item summary{
  cursor:pointer;list-style:none;
  font-family:var(--ff-head);font-weight:600;color:#fff;
  font-size:1.02rem;display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:'+';flex-shrink:0;
  width:28px;height:28px;border-radius:50%;
  background:rgba(46,111,209,.15);color:var(--blue-400);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;transition:transform .3s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{color:var(--steel-400);font-size:.94rem;margin-top:14px;line-height:1.7;}

/* ===================== CONTACT ===================== */
.contact-grid{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;margin-bottom:50px;
}
.contact-info{display:flex;flex-direction:column;gap:26px;}
.contact-item{display:flex;gap:18px;align-items:flex-start;}
.contact-icon{
  width:48px;height:48px;border-radius:12px;flex-shrink:0;
  background:rgba(46,111,209,.15);color:var(--blue-400);
  display:flex;align-items:center;justify-content:center;
}
.contact-item h4{font-size:.95rem;color:#fff;margin-bottom:4px;}
.contact-item a,.contact-item p{color:var(--steel-400);font-size:.94rem;}
.contact-item a:hover{color:var(--blue-400);}
.whatsapp-btn{margin-top:8px;background:linear-gradient(135deg,#25D366,#1aa851);box-shadow:0 10px 30px -8px rgba(37,211,102,.5);width:fit-content;}
.contact-form{
  background:var(--navy-800);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:36px;
  display:flex;flex-direction:column;gap:16px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.contact-form input,.contact-form textarea{
  width:100%;background:var(--navy-700);
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;padding:14px 16px;
  color:#fff;font-family:var(--ff-body);font-size:.94rem;
  transition:border-color .25s ease;
  resize:vertical;
}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:var(--steel-500);}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--blue-500);}
.form-note{font-size:.78rem;color:var(--steel-500);text-align:center;}
.map-wrap{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg);filter:grayscale(.15) contrast(1.05);}

/* ===================== FOOTER ===================== */
.site-footer{background:var(--navy-950);border-top:1px solid rgba(255,255,255,.06);padding-top:70px;}
.footer-inner{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:50px;padding-bottom:50px;
}
.footer-brand img{height:64px;width:auto;margin-bottom:18px;border-radius:6px;}
.footer-brand p{color:var(--steel-500);font-size:.88rem;max-width:340px;}
.footer-links h4,.footer-contact h4{color:#fff;font-size:.95rem;margin-bottom:18px;}
.footer-links{display:flex;flex-direction:column;gap:12px;}
.footer-links a{color:var(--steel-400);font-size:.9rem;transition:color .2s ease;}
.footer-links a:hover{color:var(--blue-400);}
.footer-contact p{color:var(--steel-400);font-size:.9rem;margin-bottom:10px;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.06);padding:22px 0;}
.footer-bottom p{color:var(--steel-500);font-size:.82rem;text-align:center;}

/* ===================== FLOATING WHATSAPP ===================== */
.floating-whatsapp{
  position:fixed;bottom:26px;right:26px;z-index:900;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px -8px rgba(37,211,102,.7);
  animation:pulse 2.4s ease infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);}
  70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ===================== SCROLL REVEAL ===================== */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1;transform:translateY(0);}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .products-grid,.products-grid-3{grid-template-columns:repeat(2,1fr);}
  .showcase{grid-template-columns:1fr;}
  .about-grid,.why-grid,.contact-grid{grid-template-columns:1fr;gap:50px;}
  .why-media{order:2;}
  .why-text{order:1;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-item.wide{grid-column:span 2;}
  .footer-inner{grid-template-columns:1fr 1fr;}
}
@media (max-width:820px){
  .main-nav{
    position:fixed;top:0;right:-320px;width:300px;height:100vh;
    background:var(--navy-900);flex-direction:column;
    padding:100px 32px 32px;gap:26px;
    transition:right .35s ease;
    box-shadow:-20px 0 50px rgba(0,0,0,.4);
  }
  .main-nav.open{right:0;}
  .menu-toggle{display:flex;}
  .header-phone span{display:none;}
  .hero-stats{gap:30px;}
  .about-img-sub{width:56%;right:-16px;bottom:-30px;}
  .about-badge{left:0;}
}
@media (max-width:640px){
  .section{padding:80px 0;}
  .services-grid,.products-grid,.products-grid-3{grid-template-columns:1fr;}
  .showcase{padding:26px;}
  .showcase-media{flex-direction:column;}
  .showcase-media img{width:100%;}
  .form-row{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr;gap:34px;}
  .gallery-grid{grid-template-columns:1fr;grid-auto-rows:260px;}
  .gallery-item.wide{grid-column:span 1;}
  .hero-actions{flex-direction:column;align-items:flex-start;}
  .hero-actions .btn{width:100%;justify-content:center;}
  .hero-youtube{top:112px;right:16px;padding:8px 14px;}
  .hero-youtube span{display:none;}
  .hero-share{top:158px;right:16px;padding:8px 14px;}
  .hero-share span{display:none;}
}
