@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap";:root{--bg-color:#0d0f1a;--bg-color-deep:#090e17;--surface-color:#1a1c29;--surface-color-light:#1e293b;--surface-color-lighter:#334155;--primary-color:#6366f1;--primary-color-hover:#4f46e5;--primary-color-light:#818cf8;--primary-color-subtle:#a5b4fc;--accent-color:#fcd34d;--accent-color-hover:#fbbf24;--accent-color-warm:#f59e0b;--success-color:#10b981;--warning-color:#f59e0b;--error-color:#ef4444;--text-primary:#f8fafc;--text-secondary:#94a3b8;--text-tertiary:#64748b;--text-inverse:#000;--border-color:#ffffff14;--border-color-hover:#ffffff2e;--radius-sm:8px;--radius-md:12px;--radius-lg:16px;--radius-xl:24px;--radius-pill:9999px;--font-family:"Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--transition-fast:.15s ease-in-out;--transition-normal:.3s ease-in-out;--transition-smooth:.5s cubic-bezier(.16, 1, .3, 1)}*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family:var(--font-family);background-color:var(--bg-color);color:var(--text-primary);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;flex-direction:column;min-height:100vh;line-height:1.6;display:flex;overflow-x:hidden}#root{flex-direction:column;min-height:100vh;display:flex}.glass-panel{-webkit-backdrop-filter:blur(16px);border:1px solid var(--border-color);border-radius:var(--radius-xl);transition:border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);background:#11182799}.glass-panel:hover{border-color:var(--border-color-hover)}.glass-panel-interactive:hover{border-color:#6366f14d;transform:translateY(-4px);box-shadow:0 8px 32px #6366f114}.glass-nav{-webkit-backdrop-filter:blur(24px);border-bottom:1px solid var(--border-color);background:#090e17e0}.btn{border-radius:var(--radius-pill);font-family:var(--font-family);cursor:pointer;transition:all var(--transition-fast);border:none;justify-content:center;align-items:center;gap:8px;padding:12px 24px;font-size:1rem;font-weight:600;text-decoration:none;display:inline-flex;position:relative;overflow:hidden}.btn:after{content:"";opacity:0;transition:opacity var(--transition-fast);background:linear-gradient(135deg,#ffffff1a 0%,#0000 50%);position:absolute;inset:0}.btn:hover:after{opacity:1}.btn-primary{background:linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);color:#fff;box-shadow:0 4px 20px #6366f140}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 28px #6366f159}.btn-secondary{color:var(--text-primary);border:1px solid var(--border-color);background-color:#ffffff0a}.btn-secondary:hover{border-color:var(--border-color-hover);background-color:#ffffff14;transform:translateY(-2px)}.btn-accent{background:linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);color:var(--text-inverse);box-shadow:0 4px 20px #fcd34d40}.btn-accent:hover{transform:translateY(-2px);box-shadow:0 8px 28px #fcd34d59}.btn:disabled{opacity:.5;cursor:not-allowed;transform:none!important}.text-gradient{background:linear-gradient(135deg,#fff 0%,#94a3b8 100%);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.text-gradient-gold{background:linear-gradient(135deg,#fcd34d 0%,#f59e0b 100%);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.text-gradient-accent{background:linear-gradient(135deg,#818cf8 0%,#6366f1 100%);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}.section{padding:80px 0}.input-group{flex-direction:column;gap:8px;margin-bottom:20px;display:flex}.input-label{color:var(--text-secondary);font-size:.9rem;font-weight:500}.input-field{border:1px solid var(--border-color);border-radius:var(--radius-md);color:var(--text-primary);font-family:var(--font-family);transition:border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);background-color:#ffffff08;padding:14px 16px;font-size:1rem}.input-field:focus{border-color:var(--accent-color);background-color:#ffffff0d;outline:none;box-shadow:0 0 0 3px #6366f126}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(32px)}to{opacity:1;transform:translateY(0)}}@keyframes slideInLeft{0%{opacity:0;transform:translate(-24px)}to{opacity:1;transform:translate(0)}}@keyframes slideInRight{0%{opacity:0;transform:translate(24px)}to{opacity:1;transform:translate(0)}}@keyframes scaleIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-8px)}}@keyframes glow{0%,to{box-shadow:0 0 20px #6366f11a}50%{box-shadow:0 0 40px #6366f133}}.animate-fade-in{animation:.6s cubic-bezier(.16,1,.3,1) both fadeIn}.animate-fade-in-up{animation:.8s cubic-bezier(.16,1,.3,1) both fadeInUp}.animate-slide-left{animation:.6s cubic-bezier(.16,1,.3,1) both slideInLeft}.animate-slide-right{animation:.6s cubic-bezier(.16,1,.3,1) both slideInRight}.animate-scale-in{animation:.5s cubic-bezier(.16,1,.3,1) both scaleIn}.animate-float{animation:4s ease-in-out infinite float}.animate-glow{animation:3s ease-in-out infinite glow}.delay-100{animation-delay:.1s}.delay-200{animation-delay:.2s}.delay-300{animation-delay:.3s}.delay-400{animation-delay:.4s}.delay-500{animation-delay:.5s}.skeleton{border-radius:var(--radius-md);background:linear-gradient(90deg,#ffffff0a 25%,#ffffff14 50%,#ffffff0a 75%) 0 0/200% 100%;animation:1.5s ease-in-out infinite shimmer}.skeleton-text{width:100%;height:16px;margin-bottom:8px}.skeleton-text-sm{width:60%;height:12px}.skeleton-card{border-radius:var(--radius-xl);height:320px}.skeleton-avatar{border-radius:50%;width:48px;height:48px}.badge{border-radius:var(--radius-pill);align-items:center;gap:4px;padding:4px 12px;font-size:.8rem;font-weight:600;line-height:1;display:inline-flex}.badge-success{color:var(--success-color);background:#10b9811f}.badge-warning{color:var(--warning-color);background:#f59e0b1f}.badge-error{color:var(--error-color);background:#ef44441f}.badge-info{color:var(--accent-color);background:#6366f11f}.badge-neutral{color:var(--text-secondary);background:#94a3b81f}.alert{border-radius:var(--radius-md);align-items:flex-start;gap:12px;padding:16px 20px;font-size:.95rem;line-height:1.5;animation:.3s both fadeIn;display:flex}.alert-error{color:#fca5a5;background:#ef444414;border:1px solid #ef444433}.alert-success{color:#6ee7b7;background:#10b98114;border:1px solid #10b98133}.alert-warning{color:#fcd34d;background:#f59e0b14;border:1px solid #f59e0b33}.alert-info{color:#a5b4fc;background:#6366f114;border:1px solid #6366f133}.mobile-menu-btn{color:#fff;cursor:pointer;background:0 0;border:none;padding:8px;display:none}.desktop-menu{display:flex}.mobile-menu{display:none}.nav-link{color:var(--text-secondary);transition:color var(--transition-fast);font-size:.95rem;font-weight:500;text-decoration:none;position:relative}.nav-link:hover{color:var(--text-primary)}.nav-link:after{content:"";background:var(--primary-color);width:0;height:2px;transition:width var(--transition-normal);position:absolute;bottom:-4px;left:0}.nav-link:hover:after{width:100%}.bg-grid{position:relative}.bg-grid:before{content:"";pointer-events:none;z-index:0;background-image:radial-gradient(circle at 20% 30%,#6366f10f 0%,#0000 60%),radial-gradient(circle at 80% 70%,#fcd34d0a 0%,#0000 60%);position:absolute;inset:0}.bg-grid>*{z-index:1;position:relative}.product-card{transition:transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);cursor:pointer;flex-direction:column;display:flex;overflow:hidden}.product-card:hover{border-color:#6366f140;transform:translateY(-6px);box-shadow:0 16px 48px #0000004d,0 0 0 1px #6366f11a}.product-card:hover .product-card-image img{transform:scale(1.05)}.product-card-image{height:200px;position:relative;overflow:hidden}.product-card-image img{object-fit:cover;width:100%;height:100%;transition:transform .5s}@media (width<=1024px){.section{padding:60px 0}}@media (width<=768px){.section{padding:48px 0}.container{padding:0 16px}.desktop-menu{display:none!important}.mobile-menu-btn{display:block}.mobile-menu{-webkit-backdrop-filter:blur(24px);z-index:999;background:#090e17fa;flex-direction:column;gap:8px;padding:80px 32px 32px;animation:.25s both fadeIn;display:flex;position:fixed;inset:0}.mobile-menu a{color:var(--text-primary);border-bottom:1px solid var(--border-color);padding:16px 0;font-size:1.3rem;font-weight:600;text-decoration:none}.mobile-menu .btn{margin-top:16px}}@media (width<=480px){.section{padding:32px 0}.glass-panel{border-radius:var(--radius-lg)}}.reveal{opacity:0;transition:opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1);transform:translateY(24px)}.reveal.visible{opacity:1;transform:translateY(0)}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--bg-color)}::-webkit-scrollbar-thumb{background:#ffffff1a;border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#fff3}::selection{color:#fff;background:#6366f14d}:root{--pink:#d51482;--pink-hover:#c01275;--dark:#222;--dark2:#333;--light-bg:#f2f2f2;--white-bg:#fff;--text:#333;--text-light:#666;--text-muted:#999;--gold:#ffe96d}.landing-theme *{box-sizing:border-box;margin:0;padding:0}.landing-theme{color:var(--text);font-family:Poppins,sans-serif;font-size:14px;overflow-x:hidden}.landing-theme a{color:var(--pink);text-decoration:none;transition:all .3s}.landing-theme a:hover{color:var(--pink-hover)}.landing-theme img{max-width:100%;height:auto}.landing-theme h1,.landing-theme .h1{font-family:Poppins,serif;font-size:48px;font-weight:700}.landing-theme h2,.landing-theme .h2{font-family:Poppins,serif;font-weight:700}.landing-theme .container{max-width:1170px;margin:0 auto;padding:0 15px}.landing-theme .text-center{text-align:center}.landing-theme #main-nav{z-index:1000;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background:#22222240;transition:all .4s;position:fixed;top:0;left:0;right:0}.landing-theme #main-nav.scrolled{background:#f5f5f5f7;box-shadow:0 2px 10px #0000001a}.landing-theme .nav-inner{justify-content:space-between;align-items:center;padding:12px 0;display:flex}.landing-theme .logo img{height:45px;transition:all .3s}.landing-theme .navbar-nav{align-items:center;gap:0;list-style:none;display:flex}.landing-theme .navbar-nav li a{color:#fff;text-transform:uppercase;letter-spacing:.5px;padding:12px 18px;font-size:13px;font-weight:500;transition:all .3s}.landing-theme .navbar-nav li a:hover,.landing-theme .navbar-nav li.active a{color:var(--pink)}.landing-theme #main-nav.scrolled .navbar-nav li a{color:var(--dark)}.landing-theme #main-nav.scrolled .navbar-nav li a:hover,.landing-theme #main-nav.scrolled .navbar-nav li.active a{color:var(--pink)}.landing-theme .mobile-toggle{color:#fff;cursor:pointer;background:0 0;border:none;padding:8px;font-size:24px;display:none}.landing-theme #main-nav.scrolled .mobile-toggle{color:var(--dark)}.landing-theme .mobile-menu-overlay{z-index:2000;background:#000000f2;flex-direction:column;justify-content:center;align-items:center;gap:5px;display:none;position:fixed;inset:0}.landing-theme .mobile-menu-overlay.active{display:flex}.landing-theme .mobile-menu-overlay a{color:#fff;text-transform:uppercase;padding:12px 20px;font-size:18px}.landing-theme .mobile-menu-overlay a:hover{color:var(--pink)}.landing-theme .mobile-menu-overlay .close-btn{color:#fff;cursor:pointer;background:0 0;border:none;font-size:28px;position:absolute;top:20px;right:25px}.landing-theme .search-overlay{z-index:3000;background:#000000eb;justify-content:center;align-items:center;display:none;position:fixed;inset:0}.landing-theme .search-overlay.active{display:flex}.landing-theme .search-overlay input{border:none;border-bottom:2px solid var(--pink);color:#fff;background:0 0;outline:none;width:50%;padding:15px;font-family:Poppins,sans-serif;font-size:22px}.landing-theme .search-overlay .close-search{color:#fff;cursor:pointer;background:0 0;border:none;font-size:28px;position:absolute;top:25px;right:30px}@media (width<=991px){.landing-theme .mobile-toggle{display:block}.landing-theme .navbar-nav{display:none}}.landing-theme .hero-section{color:#fff;background:url(https://brainzeus.com/wp-content/uploads/2022/08/brainzeus-bg-1.jpg) 50%/cover no-repeat;padding:140px 0 90px;position:relative}.landing-theme .hero-section:before{content:"";background:#00000073;position:absolute;inset:0}.landing-theme .hero-section .container{z-index:1;position:relative}.landing-theme .features-layout{align-items:center;display:flex}.landing-theme .features-col{flex:1}.landing-theme .features-col-device{flex:0 0 300px;justify-content:center;padding:0 10px;display:flex}.landing-theme .feature-item{cursor:pointer;opacity:0;border-radius:10px;align-items:flex-start;gap:15px;margin-bottom:28px;padding:10px;transition:background .3s;animation:.6s forwards fadeUp;display:flex;position:relative;transform:translateY(20px)}.landing-theme .feature-item:first-child{animation-delay:.1s}.landing-theme .feature-item:nth-child(2){animation-delay:.3s}.landing-theme .feature-item:nth-child(3){animation-delay:.5s}.landing-theme .feature-item.right{text-align:right;flex-direction:row-reverse}.landing-theme .feature-item.active{background:#ffffff14}.landing-theme .feature-item:hover{background:#ffffff0f}.landing-theme .ia-icon{color:#fff;background:0 0;border:2px solid #ffffff80;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:55px;height:55px;font-size:22px;transition:all .4s;display:flex}.landing-theme .feature-item.active .ia-icon{background:var(--pink);border-color:var(--pink);color:#fff;animation:2s infinite iconPulse;box-shadow:0 0 20px #d5148266}.landing-theme .feature-item:hover .ia-icon{border-color:var(--pink);color:var(--pink)}.landing-theme .icon-box .ia-icon,.landing-theme .cta-layout>.ia-icon{background:var(--gold);color:var(--dark);border:none}@keyframes iconPulse{0%,to{box-shadow:0 0 #d5148266}50%{box-shadow:0 0 0 14px #d5148200}}.landing-theme .feature-item h3{color:#fff;margin-bottom:4px;font-size:16px;font-weight:600}.landing-theme .feature-item p{color:#ffffffa6;font-size:12px;line-height:1.6;transition:color .3s}.landing-theme .feature-item.active p{color:#ffffffe6}.landing-theme .connector-line{background:linear-gradient(90deg, var(--pink), #d5148200);pointer-events:none;z-index:5;width:0;height:2px;transition:width .5s;position:absolute;top:50%}.landing-theme .left-features .connector-line{right:-15px}.landing-theme .right-features .connector-line{background:linear-gradient(270deg, var(--pink), #d5148200);left:-15px}.landing-theme .feature-item.active .connector-line{width:40px}.landing-theme .phone-mockup{background:#111;border:3px solid #444;border-radius:36px;width:240px;height:490px;transition:transform .4s,box-shadow .4s;position:relative;overflow:hidden;box-shadow:0 25px 80px #00000080}.landing-theme .phone-mockup.phone-bounce{animation:.5s phoneBounce}@keyframes phoneBounce{0%{transform:scale(1)}30%{transform:scale(.96)}60%{transform:scale(1.03)}to{transform:scale(1)}}.landing-theme .phone-mockup .notch{z-index:2;background:#111;border-radius:10px;width:40px;height:6px;position:absolute;top:4px;left:50%;transform:translate(-50%)}.landing-theme .phone-screen{box-sizing:border-box;background:#111;border-radius:33px;width:100%;height:100%;padding:4px;overflow:hidden}.landing-theme .phone-screen img{object-fit:cover;object-position:top;border-radius:30px;width:100%;height:100%}.landing-theme .phone-carousel{border-radius:30px;width:100%;height:100%;position:relative;overflow:hidden}.landing-theme .phone-carousel img{object-fit:cover;object-position:top;opacity:0;border-radius:30px;width:100%;height:100%;transition:opacity .8s;position:absolute;inset:0}.landing-theme .phone-carousel img.active{opacity:1}@keyframes spinWheel{0%{transform:rotate(0)}to{transform:rotate(1440deg)}}.landing-theme .lucky-wheel-overlay{z-index:3;background:linear-gradient(135deg,#7b2d8e 0%,#d51482 100%);border-radius:30px;flex-direction:column;justify-content:center;align-items:center;display:flex;position:absolute;inset:0;overflow:hidden}.landing-theme .lucky-wheel-overlay .wheel-container{width:180px;height:180px;margin-bottom:20px;transition:transform 3s cubic-bezier(.17,.67,.12,.99)}.landing-theme .lucky-wheel-overlay .wheel-container.spinning{animation:3s cubic-bezier(.17,.67,.12,.99) forwards spinWheel}.landing-theme .lucky-wheel-overlay .spin-btn{color:#111;cursor:pointer;letter-spacing:1px;text-transform:uppercase;background:linear-gradient(135deg,#fbbf24,#f59e0b);border:none;border-radius:30px;padding:10px 36px;font-family:Poppins,sans-serif;font-size:14px;font-weight:700;transition:transform .2s,box-shadow .2s;box-shadow:0 4px 15px #fbbf2480}.landing-theme .lucky-wheel-overlay .spin-btn:hover{transform:scale(1.05);box-shadow:0 6px 20px #fbbf2499}.landing-theme .lucky-wheel-overlay .spin-btn:disabled{opacity:.6;cursor:not-allowed;transform:none}.landing-theme .lucky-wheel-overlay h4{color:#fff;margin-bottom:6px;font-family:Poppins,sans-serif;font-size:16px;font-weight:700}.landing-theme .lucky-wheel-overlay p{color:#fffc;margin-top:12px;font-family:Poppins,sans-serif;font-size:11px}.landing-theme .iconbox-section{background:var(--light-bg);padding:50px 0 55px}.landing-theme .iconbox-grid{grid-template-columns:repeat(4,1fr);gap:25px;display:grid}.landing-theme .icon-box{text-align:center;background:var(--white-bg);border-radius:8px;padding:30px 20px;transition:transform .3s,box-shadow .3s;box-shadow:0 2px 15px #0000000f}.landing-theme .icon-box:hover{transform:translateY(-6px);box-shadow:0 10px 30px #0000001f}.landing-theme .icon-box .ia-icon{width:60px;height:60px;margin:0 auto 18px;font-size:24px}.landing-theme .icon-box h4{margin-bottom:10px;font-size:17px;font-weight:600}.landing-theme .icon-box p{color:var(--text-light);font-size:13px;line-height:1.6}.landing-theme .readmore-content{max-height:66px;transition:max-height .4s;overflow:hidden}.landing-theme .readmore-content.expanded{max-height:500px}.landing-theme .readmore-btn{background:var(--pink);color:#fff;cursor:pointer;border:none;border-radius:3px;margin-top:12px;padding:6px 20px;font-size:12px;transition:all .3s;display:inline-block;box-shadow:inset 0 -2px #00000040}.landing-theme .readmore-btn:hover{background:var(--gold);color:var(--dark)}.landing-theme .topnotch-section{background:var(--white-bg);padding:65px 0 80px}.landing-theme .topnotch-layout{align-items:center;gap:40px;display:flex}.landing-theme .topnotch-text{flex:1}.landing-theme .topnotch-device{flex:1;justify-content:center;display:flex}.landing-theme .topnotch-text h2{margin-bottom:20px;font-size:36px}.landing-theme .topnotch-text p{color:var(--text-light);margin-bottom:12px;line-height:1.8}.landing-theme .btn-group{flex-wrap:wrap;gap:12px;margin-top:20px;display:flex}.landing-theme .btn{cursor:pointer;border:none;border-radius:4px;align-items:center;gap:8px;padding:14px 28px;font-size:14px;font-weight:600;text-decoration:none;transition:all .3s;display:inline-flex;box-shadow:inset 0 -2px #0003}.landing-theme .btn-default{background:var(--dark2);color:#fff}.landing-theme .btn-default:hover{color:#fff;background:#555}.landing-theme .btn-primary{background:var(--pink);color:#fff}.landing-theme .btn-primary:hover{background:var(--gold);color:var(--dark)}.landing-theme .layers-showcase{width:320px;height:450px;position:relative}.landing-theme .layers-showcase img{border-radius:16px;width:200px;transition:transform .4s;position:absolute;box-shadow:0 15px 50px #00000040}.landing-theme .layers-showcase img:first-child{z-index:3;top:0;left:0}.landing-theme .layers-showcase img:nth-child(2){z-index:2;top:50px;left:60px}.landing-theme .layers-showcase img:nth-child(3){z-index:1;top:100px;left:120px}.landing-theme .layers-showcase img:hover{z-index:10;transform:scale(1.05)translateY(-10px)}.landing-theme .whychoose-section{padding:80px 0}.landing-theme .whychoose-layout{align-items:center;gap:40px;display:flex}.landing-theme .whychoose-device{flex:1;justify-content:center;align-items:flex-end;gap:20px;display:flex}.landing-theme .whychoose-text{flex:1}.landing-theme .whychoose-text h2{margin-bottom:15px;font-size:36px}.landing-theme .whychoose-text>p{color:var(--text-light);margin-bottom:25px;line-height:1.7}.landing-theme .accordion-item{border:1px solid #e8e8e8;border-radius:6px;margin-bottom:8px;overflow:hidden}.landing-theme .accordion-header{cursor:pointer;color:var(--dark);background:#fafafa;justify-content:space-between;align-items:center;padding:14px 20px;font-size:15px;font-weight:600;transition:all .3s;display:flex}.landing-theme .accordion-header:hover{background:#f0f0f0}.landing-theme .accordion-header.active{background:var(--pink);color:#fff}.landing-theme .accordion-header .arrow{transition:transform .3s}.landing-theme .accordion-header.active .arrow{transform:rotate(180deg)}.landing-theme .accordion-header.active .arrow i{color:#fff}.landing-theme .accordion-body{max-height:0;padding:0 20px;transition:max-height .4s,padding .4s;overflow:hidden}.landing-theme .accordion-body.open{max-height:300px;padding:15px 20px}.landing-theme .accordion-body p{color:var(--text-light);margin-bottom:10px;line-height:1.7}.landing-theme .cta-section{background:var(--light-bg);padding:45px 0}.landing-theme .cta-layout{align-items:center;gap:25px;display:flex}.landing-theme .cta-text{flex:1}.landing-theme .cta-text h4{margin-bottom:4px;font-size:19px}.landing-theme .cta-text p{color:var(--text-light);font-size:14px}.landing-theme .cta-btn{flex-shrink:0}.landing-theme .screenshots-section{color:#fff;background:url(https://brainzeus.com/wp-content/uploads/2022/07/brainzeus-bg6.jpg) 50%/cover no-repeat;padding:90px 0;position:relative}.landing-theme .screenshots-section:before{content:"";background:#0000008c;position:absolute;inset:0}.landing-theme .screenshots-section .container{z-index:1;position:relative}.landing-theme .screenshots-section h2{text-align:center;margin-bottom:35px;font-size:36px}.landing-theme .screenshots-grid{scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;gap:18px;padding:20px 0 30px;display:flex;overflow-x:auto}.landing-theme .screenshots-grid::-webkit-scrollbar{height:5px}.landing-theme .screenshots-grid::-webkit-scrollbar-track{background:#ffffff1a;border-radius:3px}.landing-theme .screenshots-grid::-webkit-scrollbar-thumb{background:var(--pink);border-radius:3px}.landing-theme .screenshot-item{scroll-snap-align:center;border:3px solid #ffffff26;border-radius:18px;flex:0 0 180px;transition:transform .4s,border-color .4s,box-shadow .4s;overflow:hidden;box-shadow:0 8px 25px #0000004d}.landing-theme .screenshot-item:hover{border-color:var(--pink);transform:translateY(-8px)scale(1.03);box-shadow:0 15px 40px #0006}.landing-theme .screenshot-item img{width:100%;display:block}.landing-theme .testimonials-section{background:var(--white-bg);padding:50px 0}.landing-theme .testimonial-slider{text-align:center;max-width:650px;margin:0 auto;position:relative;overflow:hidden}.landing-theme .testimonial-item{padding:25px;animation:.6s fadeIn;display:none}.landing-theme .testimonial-item.active{display:block}.landing-theme .testimonial-item .quote-icon{color:var(--pink);margin-bottom:12px;font-size:36px}.landing-theme .testimonial-item blockquote{color:#555;margin-bottom:18px;font-family:Poppins,serif;font-size:15px;font-style:italic;line-height:1.8}.landing-theme .testimonial-user{justify-content:center;align-items:center;gap:12px;display:flex}.landing-theme .testimonial-user img{object-fit:cover;border-radius:50%;width:50px;height:50px}.landing-theme .testimonial-user h6{color:var(--pink);font-size:15px;font-weight:600}.landing-theme .testimonial-user span{color:var(--text-muted);font-size:12px;display:block}.landing-theme .future-section{color:#fff;text-align:center;background:url(https://brainzeus.com/wp-content/uploads/2022/08/brainzeus-bg-1.jpg) 50%/cover no-repeat fixed;padding:80px 0;position:relative}.landing-theme .future-section:before{content:"";background:#0000008c;position:absolute;inset:0}.landing-theme .future-section .container{z-index:1;max-width:750px;position:relative}.landing-theme .future-section h2{margin-bottom:20px;font-size:34px}.landing-theme .future-section p{color:#ffffffd9;font-size:14px;line-height:1.8}.landing-theme .team-section{padding:85px 0}.landing-theme .team-section h2{text-align:center;margin-bottom:40px;font-size:36px}.landing-theme .team-grid{grid-template-columns:repeat(4,1fr);gap:20px;display:grid}.landing-theme .team-member{text-align:center;transition:transform .3s}.landing-theme .team-member:hover{transform:translateY(-6px)}.landing-theme .team-member .member-img{border:3px solid #e0e0e0;border-radius:50%;width:130px;height:130px;margin:0 auto 12px;transition:border-color .3s;overflow:hidden}.landing-theme .team-member:hover .member-img{border-color:var(--pink)}.landing-theme .team-member .member-img img{object-fit:cover;width:100%;height:100%}.landing-theme .team-member h5{margin-bottom:2px;font-size:15px;font-weight:600}.landing-theme .team-member .role{color:var(--pink);text-transform:uppercase;letter-spacing:.5px;font-size:11px;font-weight:600}.landing-theme .team-member .motto{color:var(--text-muted);margin-top:5px;font-size:11px;line-height:1.4}.landing-theme .getapp-section{color:#fff;text-align:center;background:url(https://brainzeus.com/wp-content/uploads/2022/08/brainzeus-bg15.jpg) 50%/cover no-repeat;padding:90px 0;position:relative}.landing-theme .getapp-section:before{content:"";background:#0000008c;position:absolute;inset:0}.landing-theme .getapp-section .container{z-index:1;position:relative}.landing-theme .getapp-section h2{margin-bottom:12px;font-size:36px}.landing-theme .getapp-section>.container>p{margin-bottom:25px;font-size:15px}.landing-theme .btn-ghost{color:#fff;cursor:pointer;background:0 0;border:2px solid #fff;border-radius:4px;align-items:center;gap:8px;padding:14px 28px;font-size:14px;font-weight:600;transition:all .3s;display:inline-flex}.landing-theme .btn-ghost:hover{color:var(--dark);background:#fff}.landing-theme .blog-section{padding:100px 0 80px}.landing-theme .blog-section>.container>h2{text-align:center;margin-bottom:40px;font-size:36px}.landing-theme .blog-section>.container>h2 a{color:var(--dark)}.landing-theme .blog-section>.container>h2 a:hover{color:var(--pink)}.landing-theme .blog-grid{flex-direction:column;gap:25px;display:flex}.landing-theme .blog-item{background:#fff;border-radius:0;gap:0;transition:transform .3s;display:flex;overflow:hidden;box-shadow:0 2px 15px #0000000f}.landing-theme .blog-item:hover{transform:translateY(-3px);box-shadow:0 8px 25px #0000001a}.landing-theme .blog-item .thumb{flex:0 0 42%;position:relative;overflow:hidden}.landing-theme .blog-item .thumb img{object-fit:cover;width:100%;height:100%;transition:transform .4s}.landing-theme .blog-item:hover .thumb img{transform:scale(1.05)}.landing-theme .blog-item .thumb .overlay{opacity:0;background:#d5148299;justify-content:center;align-items:center;transition:opacity .3s;display:flex;position:absolute;inset:0}.landing-theme .blog-item .thumb .overlay i{color:#fff;font-size:24px}.landing-theme .blog-item:hover .thumb .overlay{opacity:1}.landing-theme .blog-item .blog-content{flex:1;padding:25px 30px}.landing-theme .blog-item .meta{color:var(--text-muted);gap:15px;margin-bottom:8px;font-size:12px;display:flex}.landing-theme .blog-item h3{margin-bottom:10px;font-size:18px;font-weight:600}.landing-theme .blog-item h3 a{color:var(--dark)}.landing-theme .blog-item h3 a:hover{color:var(--pink)}.landing-theme .blog-item p{color:var(--text-light);margin-bottom:15px;font-size:13px;line-height:1.7}.landing-theme .blog-item .btn-read{color:var(--dark);background:#f5f5f5;border-radius:3px;padding:6px 18px;font-size:12px;font-weight:500;transition:all .3s;display:inline-block}.landing-theme .blog-item .btn-read:hover{background:var(--pink);color:#fff}.landing-theme footer{background:var(--dark2);color:#fff;padding:55px 0 0}.landing-theme .footer-grid{grid-template-columns:repeat(3,1fr);gap:30px;display:grid}.landing-theme .footer-grid h3{color:var(--pink);margin-bottom:18px;font-size:17px;font-weight:600}.landing-theme .footer-logo img{width:180px;margin-bottom:12px}.landing-theme .footer-grid p{color:#aaa;font-size:13px;line-height:1.7}.landing-theme .footer-post{gap:12px;margin-bottom:15px;display:flex}.landing-theme .footer-post img{object-fit:cover;border-radius:6px;width:65px;height:65px}.landing-theme .footer-post h5{margin-bottom:4px;font-size:13px;font-weight:500}.landing-theme .footer-post h5 a{color:#ddd}.landing-theme .footer-post h5 a:hover{color:var(--pink)}.landing-theme .footer-post span{color:var(--text-muted);font-size:11px}.landing-theme .gallery-grid{grid-template-columns:repeat(3,1fr);gap:5px;display:grid}.landing-theme .gallery-grid img{object-fit:cover;border:2px solid #cfcfcf;border-radius:3px;width:100%;height:75px;transition:border-color .3s}.landing-theme .gallery-grid img:hover{border-color:var(--pink)}.landing-theme .footer-bottom{border-top:1px solid #444;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;margin-top:35px;padding:18px 0;display:flex}.landing-theme .footer-bottom p{color:#aaa;font-size:12px}.landing-theme .footer-bottom a{color:var(--pink)}.landing-theme .social-list{gap:8px;list-style:none;display:flex}.landing-theme .social-list a{color:#ccc;border:1px solid #555;border-radius:3px;justify-content:center;align-items:center;width:34px;height:34px;font-size:14px;transition:all .3s;display:flex}.landing-theme .social-list a:hover{background:var(--pink);border-color:var(--pink);color:#fff}@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}.landing-theme .scroll-animate{opacity:0;transition:opacity .6s,transform .6s;transform:translateY(25px)}.landing-theme .scroll-animate.visible{opacity:1;transform:translateY(0)}.landing-theme .back-to-top{background:var(--dark2);color:#fff;cursor:pointer;z-index:999;border:none;border-radius:50%;justify-content:center;align-items:center;width:42px;height:42px;font-size:18px;transition:all .3s;display:none;position:fixed;bottom:25px;right:25px;box-shadow:0 3px 12px #0000004d}.landing-theme .back-to-top.show{display:flex}.landing-theme .back-to-top:hover{background:var(--pink)}@media (width<=991px){.landing-theme .features-layout{flex-direction:column;gap:30px}.landing-theme .features-col-device{order:-1}.landing-theme .iconbox-grid{grid-template-columns:repeat(2,1fr)}.landing-theme .topnotch-layout,.landing-theme .whychoose-layout{flex-direction:column}.landing-theme .cta-layout{text-align:center;flex-direction:column}.landing-theme .team-grid{grid-template-columns:repeat(3,1fr)}.landing-theme .footer-grid{grid-template-columns:1fr}}@media (width<=768px){.landing-theme h1,.landing-theme .h1{font-size:32px!important}.landing-theme .iconbox-grid{grid-template-columns:1fr 1fr}.landing-theme .team-grid{grid-template-columns:repeat(2,1fr)}.landing-theme .blog-item{flex-direction:column}.landing-theme .blog-item .thumb{flex:none;height:200px}.landing-theme .btn-group{justify-content:center}}@media (width<=480px){.landing-theme .iconbox-grid{grid-template-columns:1fr}.landing-theme .team-grid{grid-template-columns:1fr 1fr}}.landing-theme .form-control,.landing-theme .input-field{color:#333;background:#fff;border:1px solid #ddd;border-radius:6px;outline:none;width:100%;padding:12px 16px;font-family:Poppins,sans-serif;font-size:14px;transition:border-color .3s,box-shadow .3s}.landing-theme .form-control:focus,.landing-theme .input-field:focus{border-color:var(--pink);box-shadow:0 0 0 3px #d5148226}.landing-theme .input-label{color:#555;text-align:left;margin-bottom:8px;font-family:Poppins,sans-serif;font-size:13px;font-weight:500;display:block}.landing-theme select.form-control,.landing-theme select.input-field{appearance:none;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-position:right 12px center;background-repeat:no-repeat;background-size:16px;padding-right:40px}.landing-theme .glass-panel{color:#333;background:#fff;border:1px solid #e2e8f0;border-radius:8px;transition:transform .3s,box-shadow .3s;box-shadow:0 2px 15px #0000000f}.landing-theme .glass-panel:hover{border-color:#cbd5e1;transform:translateY(-6px);box-shadow:0 10px 30px #0000001f}.landing-theme .glass-panel-interactive:hover{border-color:var(--pink);box-shadow:0 10px 30px #d514821a}.landing-theme .product-details-grid{grid-template-columns:1fr 1fr;align-items:start;gap:60px;display:grid}@media (width<=991px){.landing-theme .product-details-grid{grid-template-columns:1fr!important;gap:30px!important}}@media (width<=768px){.landing-theme .glass-panel{padding:16px!important}.landing-theme select.form-control,.landing-theme select.input-field{flex:100%!important;min-width:100%!important}}@media (width<=480px){.landing-theme .glass-panel{padding:24px 16px!important}}
