/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:100px}
body{font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;line-height:1.6;color:#1a202c;overflow-x:hidden;background:#fff;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
ul{list-style:none}

/* ===== VARIABLES ===== */
:root{
  --primary:#3b82f6;
  --primary-light:#60a5fa;
  --primary-dark:#1d4ed8;
  --accent:#10b981;
  --text-primary:#111827;
  --text-secondary:#374151;
  --text-muted:#6b7280;
  --text-light:#9ca3af;
  --bg-primary:#ffffff;
  --bg-secondary:#f8fafc;
  --bg-tertiary:#f1f5f9;
  --bg-accent:#eff6ff;
  --gradient:linear-gradient(135deg,#3b82f6 0%,#1d4ed8 100%);
  --gradient-hero:linear-gradient(135deg,#f8fafc 0%,#eff6ff 50%,#dbeafe 100%);
  --gradient-card:linear-gradient(145deg,#ffffff 0%,#f8fafc 100%);
  --gradient-section:linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%);
  --dark:#111827;
  --shadow-sm:0 1px 2px 0 rgba(0,0,0,.05);
  --shadow:0 4px 6px -1px rgba(0,0,0,.1);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,.1);
  --shadow-xl:0 20px 25px -5px rgba(0,0,0,.1);
  --radius-sm:.375rem;
  --radius:.5rem;
  --radius-lg:.75rem;
  --radius-xl:1rem;
  --radius-2xl:1.5rem;
  --transition:all .3s ease;
}

/* ===== NAVBAR ===== */
.navbar{position:fixed;top:0;width:100%;background:rgba(248,250,252,.95);backdrop-filter:blur(12px);z-index:1000;transition:var(--transition);padding:1rem 0;box-shadow:var(--shadow);border-bottom:1px solid rgba(59,130,246,.1)}
.nav-container{max-width:1200px;margin:0 auto;padding:0 1rem;display:flex;justify-content:space-between;align-items:center}
.nav-logo{display:flex;align-items:center;gap:.75rem}
.nav-logo a{display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}
.logo-img{width:45px;height:45px;border-radius:50%;object-fit:cover;box-shadow:var(--shadow-sm)}
.nav-logo h2{color:var(--text-primary);font-weight:700;font-size:1.4rem}
.nav-menu{display:flex;list-style:none;gap:1.5rem;align-items:center;transition:var(--transition)}
.nav-link{text-decoration:none;color:var(--text-secondary);font-weight:500;transition:var(--transition);position:relative;padding:.5rem 1rem;border-radius:var(--radius-lg);font-size:.95rem}
.nav-link:hover{background:var(--bg-accent);color:var(--primary);transform:translateY(-1px)}
.login-btn{background:var(--gradient)!important;color:var(--bg-primary)!important;padding:.7rem 1.5rem!important;border-radius:var(--radius-2xl)!important;transition:var(--transition)!important;display:flex!important;align-items:center!important;gap:.5rem!important;font-weight:600;box-shadow:var(--shadow)}
.login-btn:hover{background:var(--primary-dark)!important;transform:translateY(-2px)!important;box-shadow:var(--shadow-lg)!important}
.hamburger{display:none;flex-direction:column;cursor:pointer;z-index:1001;padding:.5rem}
.bar{width:25px;height:3px;background:var(--text-secondary);margin:3px 0;transition:.3s;border-radius:2px}
.hamburger.active .bar:nth-child(1){transform:rotate(-45deg) translate(-5px,6px)}
.hamburger.active .bar:nth-child(2){opacity:0}
.hamburger.active .bar:nth-child(3){transform:rotate(45deg) translate(-5px,-6px)}

/* ===== HERO ===== */
.hero{background:var(--gradient-hero);min-height:100vh;display:flex;align-items:center;padding-top:100px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 30% 20%,rgba(59,130,246,.1) 0%,transparent 50%),radial-gradient(circle at 70% 80%,rgba(16,185,129,.1) 0%,transparent 50%);opacity:.6}
.hero-container{max-width:1200px;margin:0 auto;padding:0 1rem;position:relative;z-index:2}
.hero-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:var(--bg-primary);color:var(--primary);padding:.6rem 1.2rem;border-radius:var(--radius-2xl);font-size:.9rem;font-weight:600;margin-bottom:1.5rem;box-shadow:var(--shadow);border:1px solid rgba(59,130,246,.2)}
.hero-badge i{font-size:1rem}
.hero-subtitle{color:var(--primary);font-weight:600;font-size:.9rem;letter-spacing:1.5px;margin-bottom:.8rem}
.hero-title{font-size:3.2rem;font-weight:800;color:var(--text-primary);margin-bottom:1.5rem;line-height:1.1}
.hero-title .highlight{color:var(--primary);position:relative}
.hero-description{font-size:1.2rem;color:var(--text-secondary);margin-bottom:2rem;line-height:1.7;font-weight:400}
.hero-stats{display:flex;gap:1.5rem;margin-bottom:2rem}
.hero-stat{text-align:center;padding:1rem;background:var(--bg-primary);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);border:1px solid rgba(59,130,246,.1);flex:1}
.hero-stat-number{font-size:1.8rem;font-weight:800;color:var(--primary);display:block}
.hero-stat-label{font-size:.8rem;color:var(--text-muted);font-weight:500}
.cta-button{background:var(--gradient);color:var(--bg-primary);border:none;padding:1.2rem 2.5rem;border-radius:var(--radius-2xl);font-size:1.1rem;font-weight:600;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;transition:var(--transition);position:relative;overflow:hidden;box-shadow:var(--shadow-lg);font-family:'Poppins',sans-serif}
.cta-button:hover{background:var(--primary-dark);transform:translateY(-3px);box-shadow:var(--shadow-xl)}

/* Hero Illustration */
.hero-illustration{display:flex;justify-content:center;align-items:center}
.automation-visual{position:relative;width:350px;height:350px}
.central-hub{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100px;height:100px;background:var(--bg-primary);border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-lg);z-index:3;border:3px solid var(--primary-light);animation:pulse 2s infinite}
.central-hub i{font-size:2.5rem;color:var(--primary)}
.orbit-item{position:absolute;width:70px;height:70px;background:var(--bg-primary);border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow);border:2px solid var(--primary-light);animation:float 3s ease-in-out infinite}
.orbit-item i{font-size:1.3rem;color:var(--primary)}
.orbit-1{top:20px;left:50%;transform:translateX(-50%);animation-delay:0s}
.orbit-2{top:50%;right:20px;transform:translateY(-50%);animation-delay:.5s}
.orbit-3{bottom:20px;left:50%;transform:translateX(-50%);animation-delay:1s}
.orbit-4{top:50%;left:20px;transform:translateY(-50%);animation-delay:1.5s}
@keyframes pulse{0%,100%{transform:translate(-50%,-50%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.05)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* ===== PRODUCT CATALOG ===== */
.product-catalog{padding:5rem 0;background:var(--gradient-section);position:relative}
.catalog-container{max-width:1200px;margin:0 auto;padding:0 1rem;position:relative;z-index:2}
.section-header{text-align:center;margin-bottom:3rem}
.section-title{font-size:2.5rem;font-weight:800;color:var(--text-primary);margin-bottom:1rem;background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.section-subtitle{font-size:1.2rem;color:var(--text-secondary);max-width:600px;margin:0 auto;line-height:1.6}
.catalog-search{display:grid;grid-template-columns:2fr 1fr;gap:1.5rem;margin:3rem 0;align-items:center}
.search-container{position:relative;width:100%}
.search-icon{position:absolute;left:1.5rem;top:50%;transform:translateY(-50%);color:var(--primary);font-size:1.2rem;z-index:2}
.search-input{width:100%;padding:1.2rem 1.5rem 1.2rem 3.5rem;border:2px solid rgba(59,130,246,.2);border-radius:15px;font-size:1rem;background:#fff;transition:var(--transition);box-shadow:0 2px 10px rgba(0,0,0,.05);font-family:'Poppins',sans-serif;color:var(--text-primary)}
.search-input::placeholder{color:var(--text-light)}
.search-input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(59,130,246,.1)}
.sort-container{min-width:180px}
.sort-select{width:100%;padding:1.2rem 1.5rem;border:2px solid rgba(59,130,246,.2);border-radius:15px;font-size:1rem;background:#fff;cursor:pointer;transition:var(--transition);box-shadow:0 2px 10px rgba(0,0,0,.05);font-family:'Poppins',sans-serif;color:var(--text-primary)}
.sort-select:focus{outline:none;border-color:var(--primary)}
.category-filters{display:flex;gap:.8rem;margin:3rem 0;justify-content:center;flex-wrap:wrap;padding:0 1rem}
.category-btn{display:flex;align-items:center;gap:.5rem;padding:.8rem 1.5rem;border:2px solid rgba(59,130,246,.2);background:#fff;color:var(--text-secondary);border-radius:25px;font-size:.9rem;font-weight:600;cursor:pointer;transition:var(--transition);box-shadow:0 2px 10px rgba(0,0,0,.05);font-family:'Poppins',sans-serif;white-space:nowrap}
.category-btn:hover{border-color:var(--primary);color:var(--primary);transform:translateY(-2px);box-shadow:0 4px 15px rgba(59,130,246,.2)}
.category-btn.active{background:var(--gradient);color:#fff;border-color:var(--primary);transform:translateY(-2px);box-shadow:0 4px 15px rgba(59,130,246,.3)}

/* Product Grid (Catalog) */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2rem}
.product-card{background:#fff;border-radius:1.5rem;overflow:hidden;box-shadow:0 1px 3px 0 rgba(0,0,0,.1);transition:all .3s ease;border:1px solid #e5e7eb;display:flex;flex-direction:column;width:100%}
.product-card:hover{box-shadow:0 10px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.04);border-color:rgba(59,130,246,.2)}

.price-original{font-size:.875rem;color:#9ca3af;text-decoration:line-through;display:block;margin-bottom:.25rem}
.product-image{position:relative;height:12rem;width:100%;overflow:hidden;background:linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%);display:flex;align-items:center;justify-content:center}
.product-image img{width:100%;height:100%;object-fit:contain;object-position:center;padding:1rem;transition:transform .5s ease}
.product-card:hover .product-image img{transform:scale(1.05)}
.product-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);font-size:3rem}
.product-badge{position:absolute;top:.75rem;left:.75rem;background:#ef4444;color:#fff;font-size:.625rem;padding:.375rem .75rem;border-radius:9999px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;z-index:2;box-shadow:0 1px 2px 0 rgba(0,0,0,.2)}
.product-info{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.product-category{font-size:.625rem;font-weight:700;color:var(--primary);text-transform:uppercase;letter-spacing:.05em;background:rgba(59,130,246,.1);padding:.25rem .625rem;border-radius:.5rem;width:fit-content;margin-bottom:.5rem}
.product-title{font-size:1.125rem;font-weight:800;color:var(--text-primary);line-height:1.3;margin-bottom:.5rem;display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;-webkit-line-clamp:2}
.product-description{color:var(--text-secondary);font-size:.875rem;line-height:1.5;margin-bottom:1.5rem;display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;-webkit-line-clamp:3}
.product-price{margin-top:auto;padding-top:1.5rem;border-top:1px solid #e5e7eb;margin-bottom:1rem}
.price-current{font-size:1.25rem;font-weight:900;color:var(--primary);letter-spacing:.025em}
.add-to-cart-btn{width:100%;background:#fff;color:var(--primary);border:2px solid var(--primary);padding:.75rem;border-radius:1rem;font-size:.875rem;font-weight:600;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:all .3s ease;font-family:'Poppins',sans-serif}
.add-to-cart-btn:hover{background:var(--primary);color:#fff;transform:translateY(-2px);box-shadow:0 10px 25px -5px rgba(59,130,246,.3)}

/* Carousel Controls */
.carousel-controls{display:flex;justify-content:center;align-items:center;gap:2rem;margin-top:2rem;flex-wrap:wrap}
.carousel-btn{width:50px;height:50px;border-radius:50%;border:2px solid var(--primary);background:#fff;color:var(--primary);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.2rem;transition:var(--transition);box-shadow:0 2px 10px rgba(0,0,0,.1)}
.carousel-btn:hover{background:var(--primary);color:#fff;transform:translateY(-2px);box-shadow:0 4px 15px rgba(59,130,246,.3)}
.auto-scroll-toggle{display:flex;align-items:center;gap:1rem;font-size:.9rem;color:var(--text-secondary);padding:.8rem 1.5rem;background:#fff;border-radius:25px;border:2px solid rgba(59,130,246,.1);box-shadow:0 2px 10px rgba(0,0,0,.05);font-weight:600;cursor:pointer;transition:var(--transition)}
.auto-scroll-toggle:hover{border-color:var(--primary);box-shadow:0 4px 15px rgba(59,130,246,.2)}
.toggle-switch{position:relative;width:50px;height:25px;background:rgba(59,130,246,.3);border-radius:15px;cursor:pointer;transition:var(--transition)}
.toggle-switch.active{background:var(--primary)}
.toggle-slider{position:absolute;top:2px;left:2px;width:21px;height:21px;background:#fff;border-radius:50%;transition:transform .3s ease;box-shadow:0 1px 3px rgba(0,0,0,.2)}
.toggle-switch.active .toggle-slider{transform:translateX(25px)}
.carousel-indicators{display:flex;justify-content:center;gap:.5rem;margin-top:1.5rem}
.indicator{width:10px;height:10px;border-radius:50%;background:rgba(59,130,246,.3);cursor:pointer;transition:var(--transition)}
.indicator.active{background:var(--primary);transform:scale(1.2);width:30px;border-radius:5px}

/* ===== TRUST INDICATORS ===== */
.trust-indicators{background:var(--bg-primary);padding:4rem 0;margin-top:-2rem;position:relative;z-index:3}
.trust-container{max-width:1000px;margin:0 auto;padding:0 1rem}
.trust-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}
.trust-item{text-align:center;padding:2rem 1.5rem;background:var(--gradient-card);border-radius:var(--radius-xl);box-shadow:var(--shadow);transition:var(--transition);border:1px solid rgba(59,130,246,.1)}
.trust-item:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--primary-light)}
.trust-icon{width:60px;height:60px;background:var(--gradient);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.5rem;color:var(--bg-primary);box-shadow:var(--shadow)}
.trust-number{font-size:1.8rem;font-weight:800;color:var(--primary);margin-bottom:.5rem}
.trust-label{font-size:.95rem;font-weight:600;color:var(--text-primary);margin-bottom:.3rem}
.trust-desc{color:var(--text-muted);font-size:.85rem;line-height:1.5}

/* ===== WHY CHOOSE ===== */
.why-choose{padding:6rem 0;background:var(--bg-secondary)}
.why-choose-container{max-width:1200px;margin:0 auto;padding:0 1rem}
.why-features{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:3rem}
.why-feature{text-align:center;padding:2.5rem 2rem;background:var(--gradient-card);border-radius:var(--radius-2xl);box-shadow:var(--shadow);transition:var(--transition);border:1px solid rgba(59,130,246,.1)}
.why-feature:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--primary-light)}
.why-icon{width:70px;height:70px;background:var(--gradient);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-size:1.8rem;color:var(--bg-primary);box-shadow:var(--shadow)}
.why-title{font-size:1.3rem;font-weight:700;color:var(--text-primary);margin-bottom:1rem}
.why-desc{color:var(--text-secondary);line-height:1.6;font-size:1rem}

/* ===== TESTIMONIALS ===== */
.testimonials{padding:6rem 0;background:var(--bg-primary);overflow:hidden}
.testimonials-container{max-width:100%;margin:0 auto;position:relative;padding:0 1rem}
.testimonials-slider{overflow:hidden;width:100%;position:relative;margin-top:3rem;padding:2rem 0}
.testimonials-track{display:flex;gap:0;animation:slideCards 30s linear infinite;width:max-content}
.testimonials-track:hover{animation-play-state:paused}
.testimonial-card{background:var(--bg-secondary);padding:2rem;border-radius:var(--radius-2xl);box-shadow:var(--shadow-lg);position:relative;min-width:350px;max-width:350px;flex-shrink:0;border:1px solid rgba(59,130,246,.1);transition:var(--transition);margin-right:2rem}
.testimonial-card:hover{border-color:var(--primary-light);transform:translateY(-5px)}
.testimonial-card::before{content:'"';position:absolute;top:-10px;left:20px;font-size:4rem;color:var(--primary-light);font-weight:bold}
.testimonial-text{font-size:1rem;color:var(--text-primary);line-height:1.7;margin-bottom:1.5rem;font-style:italic;min-height:80px;font-weight:400}
.testimonial-author{display:flex;align-items:center;gap:1rem}
.author-avatar{width:50px;height:50px;background:var(--gradient);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--bg-primary);font-weight:bold;font-size:1.2rem;box-shadow:var(--shadow)}
.author-info h4{font-weight:600;color:var(--text-primary);margin-bottom:.2rem;font-size:1rem}
.author-role{color:var(--text-muted);font-size:.9rem}
@keyframes slideCards{0%{transform:translateX(0)}100%{transform:translateX(calc(-350px * 5 - 2rem * 5))}}

/* ===== TEAM ===== */
.team{padding:6rem 0;background:var(--bg-secondary)}
.team-container{max-width:1200px;margin:0 auto;padding:0 1rem}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-top:3rem}
.team-card{background:var(--gradient-card);border-radius:var(--radius-2xl);padding:2rem 1.5rem;text-align:center;box-shadow:var(--shadow-lg);transition:var(--transition);position:relative;overflow:hidden;border:1px solid rgba(59,130,246,.1)}
.team-card:hover{transform:translateY(-10px);border-color:var(--primary-light);box-shadow:var(--shadow-xl)}
.team-img{display:flex;justify-content:center;margin-bottom:1.5rem}
.team-avatar{width:100px;height:100px;border-radius:50%;object-fit:cover;border:3px solid var(--primary-light);box-shadow:var(--shadow-lg)}
.team-info h4{font-size:1.2rem;font-weight:600;color:var(--text-primary);margin-bottom:.5rem}
.team-role{color:var(--primary);font-weight:500;margin-bottom:1rem;font-size:1rem}
.team-desc{color:var(--text-secondary);line-height:1.5;margin-bottom:1.5rem;font-size:.9rem}
.team-actions{display:flex;justify-content:center;gap:.5rem;flex-wrap:wrap}
.whatsapp-btn{padding:.6rem 1.2rem;border-radius:var(--radius-2xl);text-decoration:none;font-size:.9rem;font-weight:500;display:flex;align-items:center;gap:.5rem;transition:var(--transition);background:#25D366;color:var(--bg-primary);box-shadow:var(--shadow-sm)}
.whatsapp-btn:hover{background:#128C7E;transform:translateY(-2px);box-shadow:var(--shadow);color:#fff}

/* ===== FOOTER ===== */
.footer{background:var(--text-primary);color:var(--bg-primary);padding:3rem 0 1rem}
.footer-container{max-width:1200px;margin:0 auto;padding:0 1rem}
.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:3rem;align-items:start;margin-bottom:2rem;text-align:left}
.footer-left{display:flex;flex-direction:column;gap:1rem;text-align:left}
.footer-logo{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}
.footer-logo-img{width:60px;height:60px;border-radius:8px;object-fit:contain;background:#fff;padding:5px;box-shadow:var(--shadow)}
.footer-logo h3{color:var(--primary-light);font-size:1.5rem;font-weight:700}
.footer-info{text-align:left}
.footer-info p{margin-bottom:.5rem;color:#d1d5db;line-height:1.6;text-align:left;font-size:.9rem}
.footer-contact{text-align:left}
.footer-contact h4{color:var(--primary-light);margin-bottom:1rem;font-size:1.2rem;text-align:left;font-weight:600}
.contact-info p{display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem;color:#d1d5db;line-height:1.5;text-align:left;font-size:.9rem}
.contact-info i{color:var(--primary-light);width:16px;flex-shrink:0}
.footer-social{display:flex;gap:1rem;justify-content:flex-start;flex-wrap:wrap;margin-top:10px}
.social-link{width:40px;height:40px;background:var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;transition:var(--transition);font-size:1.2rem}
.social-link:hover{background:var(--primary-light);transform:translateY(-2px);box-shadow:var(--shadow)}
.footer-bottom{border-top:1px solid #374151;padding-top:2rem;text-align:center;color:#9ca3af;font-size:.85rem}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float{position:fixed;bottom:30px;right:30px;z-index:999}
.whatsapp-float a{display:flex;align-items:center;justify-content:center;width:60px;height:60px;background:#25D366;border-radius:50%;color:#fff;font-size:1.8rem;box-shadow:0 4px 15px rgba(37,211,102,.4);transition:var(--transition);text-decoration:none}
.whatsapp-float a:hover{transform:scale(1.1);box-shadow:0 8px 25px rgba(37,211,102,.4)}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .nav-container{padding:0 1rem}
  .nav-menu{position:fixed;left:-100%;top:80px;flex-direction:column;background:rgba(248,250,252,.98);width:100%;text-align:center;transition:.3s;box-shadow:var(--shadow);padding:2rem 0;backdrop-filter:blur(10px);border-top:1px solid rgba(59,130,246,.1);gap:0}
  .nav-menu.active{left:0}
  .nav-menu li{margin:1rem 0}
  .hamburger{display:flex}
  .hero-content{grid-template-columns:1fr;text-align:center;gap:2rem}
  .hero-title{font-size:2.5rem}
  .hero-stats{justify-content:center;gap:1rem;flex-wrap:wrap}
  .hero-stat{min-width:120px}
  .hero-illustration{display:none}
  .automation-visual{width:280px;height:280px}
  .orbit-item{width:60px;height:60px}
  .central-hub{width:80px;height:80px}
  .central-hub i{font-size:2rem}
  .catalog-search{grid-template-columns:1fr;gap:1rem}
  .category-filters{gap:.5rem;overflow-x:auto;padding:0 1rem;justify-content:flex-start;scrollbar-width:none;-ms-overflow-style:none}
  .category-filters::-webkit-scrollbar{display:none}
  .category-btn{white-space:nowrap;flex-shrink:0;font-size:.8rem;padding:.7rem 1.2rem}
  .category-btn span{display:none}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .new-product-grid{grid-template-columns:repeat(2,1fr)}
  .product-image{height:240px}
  .product-info{padding:1.5rem}
  .product-title{font-size:1.3rem;line-height:1.4}
  .product-description{font-size:.9rem;line-height:1.6}
  .price-current{font-size:1.4rem}
  .add-to-cart-btn{padding:1.2rem;font-size:1rem}
  .section-title{font-size:2rem}
  .section-subtitle{font-size:1rem}
  .trust-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .trust-item{padding:1.5rem 1rem}
  .why-features{grid-template-columns:1fr;gap:1.5rem}
  .team-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}
  .testimonial-card{min-width:280px;max-width:280px;padding:1.5rem}
  .footer-content{grid-template-columns:1fr;gap:2rem;text-align:left}
  .footer-social{justify-content:flex-start}
  .whatsapp-float{width:50px;height:50px;bottom:20px;right:20px;font-size:24px}
  .whatsapp-float a{width:50px;height:50px;font-size:1.5rem}
}
@media(max-width:480px){
  .hero-title{font-size:2rem}
  .product-grid{grid-template-columns:1fr}
  .new-product-grid{grid-template-columns:1fr}
  .product-image{height:220px}
  .product-info{padding:1.3rem}
  .product-title{font-size:1.2rem}
  .product-description{font-size:.85rem}
  .trust-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .category-btn{font-size:.75rem;padding:.6rem 1rem}
  .footer-content{grid-template-columns:1fr}
}
@media(min-width:769px) and (max-width:1024px){
  .product-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}
  .new-product-grid{grid-template-columns:repeat(2,1fr)}
}

/* ===== BLOG SECTION ===== */
.blog-section{padding:5rem 0;background:var(--bg-primary);position:relative}
.blog-container{max-width:1200px;margin:0 auto;padding:0 1rem;position:relative;z-index:2}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem;margin-top:2rem}
.blog-card-link{text-decoration:none;color:inherit;display:block;transition:var(--transition)}
.blog-card-link:hover{transform:translateY(-5px)}
.blog-card{background:var(--bg-primary);border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow);border:1px solid rgba(59,130,246,.1);transition:var(--transition);height:100%}
.blog-card:hover{box-shadow:var(--shadow-xl);border-color:rgba(59,130,246,.3)}
.blog-card-img{width:100%;height:200px;overflow:hidden}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:var(--transition)}
.blog-card-link:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:1.5rem}
.blog-card-category{display:inline-block;background:var(--bg-accent);color:var(--primary);padding:.3rem .8rem;border-radius:var(--radius-2xl);font-size:.8rem;font-weight:600;margin-bottom:.75rem}
.blog-card-title{font-size:1.2rem;font-weight:700;color:var(--text-primary);margin-bottom:.75rem;line-height:1.4}
.blog-card-excerpt{font-size:.9rem;color:var(--text-muted);line-height:1.6;margin-bottom:1rem}
.blog-card-meta{display:flex;gap:1rem;font-size:.8rem;color:var(--text-light)}
.blog-card-meta i{margin-right:.3rem;color:var(--primary)}
@media(max-width:768px){.blog-grid{grid-template-columns:1fr}}

/* ===== FOCUS & ACCESSIBILITY ===== */
.nav-link:focus,.cta-button:focus,.whatsapp-btn:focus,.social-link:focus,.category-btn:focus,.search-input:focus,.sort-select:focus,.add-to-cart-btn:focus,.carousel-btn:focus{outline:2px solid var(--primary);outline-offset:2px}

/* ===== PRINT ===== */
@media print{.navbar,.whatsapp-float,.carousel-controls,.auto-scroll-toggle{display:none}.hero{padding-top:2rem}body{font-size:12pt;line-height:1.4}}

/* ===== REDUCED MOTION ===== */
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.testimonials-track{animation:none}.whatsapp-float{animation:none}}

/* ============================================================
   NEW LANDING UI (Tailwind-inspired, translated to plain CSS)
   Mirrors feUI.md design: white blurred navbar, hero with
   badge + stat pills + search + avatar rating, stats bar,
   product grid cards, category chips, testimonials, team.
   ============================================================ */
.new-navbar{position:fixed;top:0;width:100%;background:rgba(255,255,255,.8);backdrop-filter:blur(12px);border-bottom:1px solid #f1f5f9;transition:all .3s ease;z-index:1000;padding:0}
.new-nav-inner{max-width:80rem;margin:0 auto;padding:0 1rem;display:flex;justify-content:space-between;align-items:center;height:5rem}
.new-nav-logo{display:flex;align-items:center;gap:.5rem;text-decoration:none;color:inherit}
.new-nav-logo img{width:2.5rem;height:2.5rem;border-radius:.75rem;object-fit:contain;box-shadow:0 10px 25px -5px rgba(59,130,246,.3);padding:1px}
.new-nav-logo span{font-weight:700;font-size:1.25rem;letter-spacing:-.025em;color:var(--text-primary)}
.new-nav-logo span b{color:var(--primary)}
.new-nav-links{display:none;align-items:center;gap:2rem}
.new-nav-links a{color:var(--text-muted);font-weight:500;transition:color .2s;text-decoration:none}
.new-nav-links a:hover{color:var(--primary)}
.new-nav-cta{background:var(--primary);color:#fff;padding:.625rem 1.5rem;border-radius:.75rem;font-weight:500;display:inline-flex;align-items:center;gap:.5rem;transition:all .2s;box-shadow:0 10px 25px -5px rgba(59,130,246,.3);text-decoration:none}
.new-nav-cta:hover{background:var(--primary-dark);color:#fff}
@media(max-width:768px){.new-nav-cta{display:none!important}}
@media(min-width:768px){.new-nav-links{display:flex}.new-nav-cta-wrap{display:flex}.new-hamburger{display:none}}

.new-mobile-menu{display:none;position:absolute;top:4rem;left:0;width:100%;background:#fff;border-top:1px solid #f1f5f9;box-shadow:0 10px 25px -5px rgba(0,0,0,.1);padding:1rem 0;z-index:100}
.new-mobile-menu.open{display:block}
.new-mobile-menu a{display:block;padding:.75rem 1rem;color:#6b7280;font-weight:500;transition:all .3s;text-decoration:none}
.new-mobile-menu a:hover{background:#f9fafb;color:#111827}
.new-mobile-menu a.mcta{background:#3b82f6;color:#fff;text-align:center;margin:1rem;border-radius:.75rem;font-weight:600}
.new-mobile-menu a.mcta:hover{background:#1d4ed8;color:#fff}
@media(min-width:768px){.new-mobile-menu{display:none!important}}

.new-hero{padding:7rem 0 4rem;overflow:hidden;position:relative}
@media(min-width:1024px){.new-hero{padding:9rem 0 6rem}}
.new-hero-bg{position:absolute;inset:0;z-index:-10;background:var(--bg-secondary)}
.new-hero-inner{max-width:80rem;margin:0 auto;padding:0 1rem;position:relative;display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
@media(min-width:1024px){.new-hero-inner{grid-template-columns:1fr 1fr}}
.new-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .75rem;border-radius:9999px;background:var(--bg-accent);border:1px solid rgba(96,165,250,.3);color:var(--primary);font-weight:600;font-size:.875rem;margin-bottom:1.5rem;box-shadow:var(--shadow-sm)}
.new-hero h1{font-size:2.25rem;font-weight:800;letter-spacing:-.025em;color:var(--text-primary);line-height:1.1;margin-bottom:1.5rem}
@media(min-width:1024px){.new-hero h1{font-size:3.5rem}}
.new-hero h1 .hl{color:var(--primary)}
.new-hero p.new-lead{font-size:1.125rem;color:var(--text-muted);margin-bottom:2rem;line-height:1.7}
.new-stat-pills{display:none;flex-wrap:wrap;gap:1.5rem;margin-bottom:2rem}
@media(min-width:768px){.new-stat-pills{display:flex}}
.new-stat-pill{display:flex;align-items:center;gap:.75rem}
.new-stat-pill .ico{width:2.5rem;height:2.5rem;border-radius:9999px;display:flex;align-items:center;justify-content:center;font-size:1rem}
.new-stat-pill .ico.b{background:#dbeafe;color:var(--primary)}
.new-stat-pill .ico.g{background:#dcfce7;color:#16a34a}
.new-stat-pill .ico.p{background:#f3e8ff;color:#9333ea}
.new-stat-pill p{font-size:.875rem;font-weight:600;color:var(--text-primary);line-height:1.1;margin:0}
.new-stat-pill small{font-size:.75rem;color:var(--text-muted)}
.new-search{position:relative;max-width:32rem;margin-bottom:2rem}
.new-search input{width:100%;padding:1rem 8rem 1rem 2.75rem;border:1px solid #e5e7eb;border-radius:1rem;font-size:.875rem;font-weight:500;box-shadow:var(--shadow-sm);transition:all .2s;font-family:'Poppins',sans-serif}
.new-search input:focus{outline:none;box-shadow:0 0 0 2px var(--primary);border-color:var(--primary)}
.new-search .si{position:absolute;left:1rem;top:50%;transform:translateY(-50%);color:#9ca3af}
.new-search button{position:absolute;right:.5rem;top:50%;transform:translateY(-50%);background:var(--primary);color:#fff;border:none;padding:.5rem 1.5rem;border-radius:.75rem;font-weight:500;cursor:pointer;transition:background .2s;font-family:'Poppins',sans-serif}
.new-search button:hover{background:var(--primary-dark)}
.new-hero-actions{display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem}
@media(min-width:640px){.new-hero-actions{flex-direction:row}}
.new-btn-primary{background:var(--primary);color:#fff;text-align:center;padding:.875rem 2rem;border-radius:.75rem;font-weight:600;transition:all .2s;box-shadow:0 10px 25px -5px rgba(59,130,246,.3);text-decoration:none;display:flex;align-items:center;justify-content:center;gap:.5rem}
.new-btn-primary:hover{background:var(--primary-dark);color:#fff}
.new-btn-ghost{background:#fff;color:var(--text-primary);border:1px solid #e5e7eb;text-align:center;padding:.875rem 2rem;border-radius:.75rem;font-weight:600;transition:all .2s;box-shadow:var(--shadow-sm);text-decoration:none;display:flex;align-items:center;justify-content:center;gap:.5rem}
.new-btn-ghost:hover{background:#f9fafb;color:#111827}
.new-rating{display:flex;align-items:center;gap:1rem}
.new-avatars{display:flex}
.new-avatars img{width:2.5rem;height:2.5rem;border-radius:9999px;ring:2px solid #fff;border:2px solid #fff;object-fit:cover;margin-left:-.5rem}
.new-avatars img:first-child{margin-left:0}
.new-stars{color:#facc15;font-size:.875rem;display:flex;gap:2px}
.new-rating p{font-size:.875rem;font-weight:600;color:var(--text-primary);margin:0}
.new-rating small{font-size:.75rem;color:var(--text-muted)}
.new-rating b{color:var(--primary)}

/* Hero mockup card (right column) */
.new-mockup{display:none;position:relative}
@media(min-width:1024px){.new-mockup{display:block}}
.new-mockup-card{background:#fff;border-radius:2rem;box-shadow:0 25px 50px -12px rgba(0,0,0,.25);border:1px solid #f1f5f9;overflow:hidden;height:34rem;display:flex;transform:rotate(-1deg);transition:transform .5s}
.new-mockup-card:hover{transform:rotate(0)}
.new-mockup-side{width:25%;background:#f9fafb;border-right:1px solid #f1f5f9;padding:1rem;display:flex;flex-direction:column;gap:.5rem}
.new-mockup-side .row{display:flex;align-items:center;gap:.75rem;padding:.625rem 1rem;border-radius:.75rem;font-size:.875rem;font-weight:500;color:#6b7280}
.new-mockup-side .row.active{background:var(--primary);color:#fff}
.new-mockup-side .row i{width:1rem}
.new-mockup-main{flex:1;padding:1.5rem}
.new-float-badge{position:absolute;width:4rem;height:4rem;border-radius:1rem;display:flex;align-items:center;justify-content:center;box-shadow:0 20px 25px -5px rgba(0,0,0,.1);z-index:20;font-size:1.5rem}
.new-float-badge.f1{top:-1.5rem;left:-1.5rem;background:#fff;color:var(--primary);animation:floatY 4s ease-in-out infinite}
.new-float-badge.f2{top:50%;right:-2rem;background:var(--accent);color:#fff;animation:floatY 3s ease-in-out infinite}
.new-float-badge.f3{bottom:-2rem;left:2.5rem;background:rgba(255,255,255,.8);backdrop-filter:blur(4px);color:var(--primary-light);animation:floatY 2s ease-in-out infinite}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* Stats bar */
.new-statsbar{max-width:80rem;margin:0 auto;padding:0 1rem;position:relative;z-index:10;margin-top:-2rem;margin-bottom:4rem}
.new-statsbar-inner{background:#fff;border-radius:1rem;box-shadow:0 10px 25px -5px rgba(0,0,0,.08);border:1px solid #f8fafc;padding:1.5rem;display:flex;overflow-x:auto;gap:2rem;justify-content:space-between;align-items:center}
.new-stat-item{display:flex;flex-direction:column;align-items:center;text-align:center;min-width:120px}
.new-stat-item .si{width:3rem;height:3rem;border-radius:9999px;background:#eff6ff;color:var(--primary);display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:.75rem}
.new-stat-item h3{font-size:1.5rem;font-weight:800;color:var(--text-primary);margin:0}
.new-stat-item p{font-size:.875rem;color:var(--text-muted);font-weight:500;margin:0;margin-top:.25rem}
.new-stat-div{display:none;width:1px;height:3rem;background:#e5e7eb}
@media(min-width:768px){.new-stat-div{display:block}}

/* Section heading (new) */
.new-section{padding:3rem 0;background:var(--bg-secondary)}
.new-container{max-width:80rem;margin:0 auto;padding:0 1rem}
.new-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}
.new-head h2{font-size:1.5rem;font-weight:700;color:var(--text-primary);margin:0 0 .5rem}
@media(min-width:768px){.new-head h2{font-size:1.875rem}}
.new-head p{color:var(--text-muted);font-size:.875rem;margin:0}
.new-head a.new-seeall{display:none;align-items:center;gap:.25rem;font-size:.875rem;font-weight:600;color:var(--text-primary);border:1px solid #e5e7eb;background:#fff;padding:.5rem 1rem;border-radius:.5rem;transition:background .2s;text-decoration:none}
.new-head a.new-seeall:hover{background:#f9fafb}
@media(min-width:768px){.new-head a.new-seeall{display:flex}}

/* Category chips */
.new-cats{display:flex;overflow-x:auto;gap:1rem;padding-bottom:1rem;margin-bottom:2rem;scrollbar-width:none}
.new-cats::-webkit-scrollbar{display:none}
.new-cat{flex-shrink:0;width:9rem;background:#fff;border:1px solid #e5e7eb;border-radius:1rem;padding:1.25rem;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.75rem;box-shadow:var(--shadow-sm);transition:all .2s;cursor:pointer;text-decoration:none;color:inherit}
.new-cat:hover{border-color:var(--primary-light);box-shadow:var(--shadow)}
.new-cat.active{border:2px solid var(--primary);box-shadow:var(--shadow-sm)}
.new-cat .ci{width:3rem;height:3rem;border-radius:9999px;background:#eff6ff;color:var(--primary);display:flex;align-items:center;justify-content:center;font-size:1.5rem;transition:transform .2s}
.new-cat:hover .ci{transform:scale(1.1)}
.new-cat span{font-weight:600;font-size:.875rem;color:var(--text-primary)}

/* Product grid (new card style) */
.new-product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;padding-bottom:2rem}
.new-product-grid::-webkit-scrollbar{display:none}
.new-pcard{background:#fff;border-radius:1.5rem;border:1px solid #f1f5f9;overflow:hidden;box-shadow:0 10px 25px -5px rgba(0,0,0,.08);transition:all .3s;display:flex;flex-direction:column}
.new-pcard:hover{box-shadow:0 20px 30px -5px rgba(0,0,0,.12);transform:translateY(-4px)}
.new-pcard .pimg{position:relative;height:12rem;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(135deg,#1e3a8a,#1e293b)}
.new-pcard .pimg img{width:100%;height:100%;object-fit:contain;padding:1rem;transition:transform .5s}
.new-pcard:hover .pimg img{transform:scale(1.05)}
.new-pcard .ptag{position:absolute;top:.75rem;left:.75rem;background:var(--primary);color:#fff;font-size:.625rem;font-weight:700;padding:.25rem .5rem;border-radius:.375rem;z-index:10;box-shadow:var(--shadow-sm)}
.new-pcard .pbody{padding:1.25rem;display:flex;flex-direction:column;flex:1}
.new-pcard .pcat{font-size:.625rem;font-weight:700;color:var(--primary);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem;background:#eff6ff;width:max-content;padding:.125rem .5rem;border-radius}
.new-pcard .ptitle{font-weight:700;color:var(--text-primary);font-size:1.125rem;line-height:1.3;margin-bottom:.5rem}
.new-pcard .pdesc{font-size:.75rem;color:var(--text-muted);margin-bottom:1rem;line-height:1.5}
.new-pcard .pfoot{margin-top:auto}
.new-pcard .pprice{font-size:1.25rem;font-weight:800;color:var(--primary);margin-bottom:1rem;display:block}
.new-pcard .pbtn{width:100%;padding:.625rem;border:1px solid var(--primary);color:var(--primary);font-weight:600;border-radius:.75rem;transition:all .2s;font-size:.875rem;display:flex;align-items:center;justify-content:center;gap:.5rem;text-decoration:none;font-family:'Poppins',sans-serif}
.new-pcard .pbtn:hover{background:var(--primary);color:#fff}

/* Testimonials (new) */
.new-testi{padding:4rem 0;background:#fff;overflow:hidden}
.new-testi-track{display:flex;gap:1.5rem;overflow-x:auto;padding:1rem 0;scrollbar-width:none}
.new-testi-track::-webkit-scrollbar{display:none}
.new-tcard{background:var(--bg-secondary);padding:2rem;border-radius:1.5rem;box-shadow:var(--shadow-lg);min-width:22rem;max-width:22rem;flex-shrink:0;border:1px solid #f1f5f9}
.new-tcard .ttext{font-size:1rem;color:var(--text-primary);line-height:1.7;font-style:italic;margin-bottom:1.5rem}
.new-tcard .tauthor{display:flex;align-items:center;gap:1rem}
.new-tcard .tavatar{width:3rem;height:3rem;border-radius:9999px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.2rem;box-shadow:var(--shadow)}
.new-tcard .tauthor h4{font-weight:600;color:var(--text-primary);margin:0 0 .25rem;font-size:1rem}
.new-tcard .tauthor p{color:var(--text-muted);font-size:.9rem;margin:0}

/* Team (new) */
.new-team{padding:4rem 0;background:var(--bg-secondary)}
.new-team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(15rem,1fr));gap:2rem;margin-top:2rem}
.new-tmember{background:#fff;border-radius:1.5rem;padding:2rem 1.5rem;text-align:center;box-shadow:var(--shadow-lg);border:1px solid #f1f5f9;transition:all .3s}
.new-tmember:hover{transform:translateY(-10px);box-shadow:var(--shadow-xl)}
.new-tmember img{width:6.25rem;height:6.25rem;border-radius:9999px;object-fit:cover;border:3px solid var(--primary-light);box-shadow:var(--shadow-lg);margin-bottom:1.5rem}
.new-tmember .tnofoto{width:6.25rem;height:6.25rem;border-radius:9999px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#3b82f6,#1d4ed8);color:#fff;font-size:2rem;font-weight:700;margin:0 auto 1.5rem}
.new-tmember h4{font-size:1.2rem;font-weight:600;color:var(--text-primary);margin-bottom:.5rem}
.new-tmember .trole{color:var(--primary);font-weight:500;margin-bottom:1rem}
.new-tmember .tdesc{color:var(--text-secondary);font-size:.9rem;line-height:1.5;margin-bottom:1.5rem}
.new-tmember .twa{padding:.6rem 1.2rem;border-radius:9999px;background:#25D366;color:#fff;text-decoration:none;font-size:.9rem;font-weight:500;display:inline-flex;align-items:center;gap:.5rem;transition:all .2s}
.new-tmember .twa:hover{background:#128C7E;color:#fff}

/* Why choose (new) */
.new-why{padding:4rem 0;background:var(--bg-secondary)}
.new-why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(18rem,1fr));gap:2rem;margin-top:2rem}
.new-why-card{text-align:center;padding:2.5rem 2rem;background:#fff;border-radius:1.5rem;box-shadow:var(--shadow);border:1px solid #f1f5f9;transition:all .3s}
.new-why-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.new-why-card .wico{width:4.5rem;height:4.5rem;border-radius:9999px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-size:1.8rem;box-shadow:var(--shadow)}
.new-why-card h3{font-size:1.3rem;font-weight:700;color:var(--text-primary);margin-bottom:1rem}
.new-why-card p{color:var(--text-secondary);line-height:1.6;font-size:1rem}

/* Mobile nav dropdown (new) */
.new-mobile-menu{display:none;position:absolute;top:5rem;left:0;width:100%;background:#fff;border-top:1px solid #f1f5f9;box-shadow:var(--shadow-lg);padding:1rem 0}
.new-mobile-menu.open{display:block}
.new-mobile-menu a{display:block;padding:.75rem 1rem;color:var(--text-muted);font-weight:500}
.new-mobile-menu a:hover{background:#f9fafb;color:var(--text-primary)}
.new-mobile-menu a.mcta{background:var(--primary);color:#fff;text-align:center;margin:1rem;border-radius:.75rem}
.new-hamburger{display:flex;flex-direction:column;cursor:pointer;padding:.5rem;gap:5px}
.new-hamburger .bar{width:25px;height:3px;background:var(--text-secondary);border-radius:2px;transition:.3s}
.new-hamburger.active .bar:nth-child(1){transform:rotate(-45deg) translate(-5px,6px)}
.new-hamburger.active .bar:nth-child(2){opacity:0}
.new-hamburger.active .bar:nth-child(3){transform:rotate(45deg) translate(-5px,-6px)}
@media(min-width:768px){.new-mobile-menu{display:none!important}}
