:root{
  --shopify:#95BF47;
  --mint:#5fd1b5;
  --dark:#0a0a0a;
  --glass:rgba(255,255,255,.06);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:#050505;
  color:#fff;
  overflow-x:hidden;
  line-height:1.5;
}

/* ---------- ANIMATED BACKGROUND ---------- */
.bg{
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 20% 30%, rgba(149,191,71,.35), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(95,209,181,.35), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(149,191,71,.25), transparent 40%);
  animation:bgmove 12s ease-in-out infinite alternate;
}
@keyframes bgmove{
  from{filter:hue-rotate(0deg)}
  to{filter:hue-rotate(25deg)}
}

/* ---------- LAYOUT ---------- */
.container{
  width:92%;
  max-width:1400px;
  margin:auto;
}

/* ---------- HEADER ---------- */
header{
  padding:18px 0;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  transition:all .3s ease;
}
header.scrolled{
  background:rgba(5,5,5,.95);
  backdrop-filter:blur(20px);
  padding:12px 0;
  box-shadow:0 4px 30px rgba(0,0,0,.3);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo-section{
  display:flex;
  align-items:center;
  z-index:1001;
  position:relative;
}
.logo-text{
  display:flex;
  flex-direction:column;
  gap:1px;
}
.logo{
  font-weight:800;
  letter-spacing:2px;
  font-size:19px;
  position:relative;
  background:linear-gradient(135deg,#fff,var(--shopify));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  transition:.3s;
}
.logo:hover{
  letter-spacing:4px;
  filter:drop-shadow(0 0 10px rgba(149,191,71,.5));
}
.logo-subtitle{
  font-size:10px;
  color:#aaa;
  font-weight:600;
  letter-spacing:1px;
}
.logo::after{
  content:'';
  position:absolute;
  bottom:-3px;
  left:0;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--shopify),var(--mint));
  transition:.3s;
}
.logo:hover::after{
  width:100%;
}
nav a{
  margin-left:28px;
  color:#ddd;
  text-decoration:none;
  font-size:13px;
  font-weight:500;
  opacity:.85;
  transition:all .3s ease;
  position:relative;
}
nav a::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:2px;
  background:var(--shopify);
  transition:.3s;
}
nav a:hover{
  opacity:1;
  color:#fff;
}
nav a:hover::after{
  width:100%;
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  z-index:1001;
  padding:8px;
  position:relative;
}
.hamburger::before{
  content:'';
  position:absolute;
  inset:-5px;
  background:rgba(149,191,71,.1);
  border-radius:8px;
  opacity:0;
  transition:.3s;
}
.hamburger:hover::before{
  opacity:1;
}
.hamburger span{
  width:24px;
  height:2px;
  background:linear-gradient(90deg,var(--shopify),var(--mint));
  border-radius:3px;
  transition:all .3s ease;
  box-shadow:0 2px 8px rgba(149,191,71,.3);
  position:relative;
}
.hamburger:hover span{
  background:linear-gradient(90deg,var(--mint),var(--shopify));
}
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translateY(10px);
  background:linear-gradient(90deg,#ff5f56,#ffbd2e);
}
.hamburger.active span:nth-child(2){
  opacity:0;
  transform:translateX(20px);
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translateY(-10px);
  background:linear-gradient(90deg,#ff5f56,#ffbd2e);
}
.mobile-nav{
  display:none;
  position:fixed;
  top:0;
  right:-100%;
  width:260px;
  height:100vh;
  background:rgba(10,10,10,.98);
  backdrop-filter:blur(20px);
  border-left:1px solid rgba(149,191,71,.2);
  padding:80px 24px 24px;
  transition:right .4s cubic-bezier(.165,.84,.44,1);
  z-index:1000;
  box-shadow:-10px 0 30px rgba(0,0,0,.5);
}
.mobile-nav.active{
  right:0;
}
.mobile-nav a{
  display:block;
  padding:14px 0;
  color:#ddd;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.05);
  transition:.3s;
  opacity:0;
  transform:translateX(20px);
}
.mobile-nav.active a{
  opacity:1;
  transform:translateX(0);
}
.mobile-nav.active a:nth-child(1){transition-delay:.1s}
.mobile-nav.active a:nth-child(2){transition-delay:.15s}
.mobile-nav.active a:nth-child(3){transition-delay:.2s}
.mobile-nav.active a:nth-child(4){transition-delay:.25s}
.mobile-nav.active a:nth-child(5){transition-delay:.3s}
.mobile-nav.active a:nth-child(6){transition-delay:.35s}
.mobile-nav a:hover{
  color:var(--shopify);
  padding-left:8px;
}
.mobile-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(5px);
  z-index:999;
  opacity:0;
  transition:opacity .3s ease;
}
.mobile-overlay.active{
  opacity:1;
}

/* ---------- HERO (COMPACT) ---------- */
.hero{
  padding:120px 0 60px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(149,191,71,.12), transparent 70%);
  animation:heroGlow 8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes heroGlow{
  0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.5}
  50%{transform:translate(-50%,-50%) scale(1.2);opacity:.8}
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-left h1{
  font-size:clamp(28px, 4vw, 36px);
  line-height:1.15;
  font-weight:800;
  animation:fadeInUp 1s ease;
  margin-bottom:16px;
}
.hero span{
  background:linear-gradient(135deg,var(--shopify),var(--mint));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:gradientShift 3s ease infinite;
}
@keyframes gradientShift{
  0%,100%{filter:hue-rotate(0deg)}
  50%{filter:hue-rotate(10deg)}
}
.hero p{
  font-size:clamp(13px, 1.5vw, 15px);
  color:#bbb;
  animation:fadeInUp 1s ease .2s both;
  line-height:1.6;
  margin-bottom:12px;
}
.hero-badges{
  display:flex;
  gap:12px;
  margin:16px 0;
  flex-wrap:wrap;
  animation:fadeInUp 1s ease .3s both;
}
.badge-item{
  display:flex;
  align-items:center;
  gap:6px;
  padding:7px 14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:50px;
  font-size:11px;
  font-weight:600;
  transition:.3s;
}
.badge-item:hover{
  background:rgba(149,191,71,.15);
  border-color:var(--shopify);
  transform:translateY(-2px);
}
.hero-results{
  display:flex;
  gap:14px;
  margin:20px 0;
  animation:fadeInUp 1s ease .4s both;
}
.result-item{
  flex:1;
  padding:14px 10px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  transition:.3s;
  text-align:center;
}
.result-item:hover{
  background:rgba(149,191,71,.1);
  border-color:var(--shopify);
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(149,191,71,.2);
}
.result-num{
  font-size:24px;
  font-weight:800;
  background:linear-gradient(135deg,var(--shopify),var(--mint));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
  margin-bottom:4px;
}
.result-label{
  font-size:10px;
  color:#999;
  font-weight:500;
  line-height:1.3;
}
.hero-cta{
  margin-top:24px;
  animation:fadeInUp 1s ease .5s both;
}
.hero-right{
  position:relative;
  animation:fadeInUp 1s ease .3s both;
}
.hero-mockup{
  position:relative;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:24px;
  backdrop-filter:blur(12px);
  box-shadow:0 20px 40px rgba(0,0,0,.5);
  transition:.3s;
}
.hero-mockup:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(149,191,71,.3);
}
.mockup-browser{
  background:#1a1a1a;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.6);
}
.browser-bar{
  background:#2a2a2a;
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:6px;
}
.browser-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#666;
}
.browser-dot:nth-child(1){background:#ff5f56}
.browser-dot:nth-child(2){background:#ffbd2e}
.browser-dot:nth-child(3){background:#27c93f}
.browser-content{
  background:linear-gradient(135deg,#1a1a1a,#2a2a2a);
  padding:40px 20px;
  text-align:center;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.browser-content h3{
  font-size:20px;
  margin-bottom:8px;
  color:#fff;
}
.browser-content p{
  color:#999;
  font-size:12px;
  margin-bottom:14px;
}
.btn{
  display:inline-block;
  padding:12px 28px;
  background:linear-gradient(135deg,var(--shopify),var(--mint));
  color:#000;
  text-decoration:none;
  border-radius:50px;
  font-weight:700;
  font-size:13px;
  transition:all .3s ease;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(149,191,71,.4);
}
.btn-outline{
  background:transparent;
  border:2px solid var(--shopify);
  color:#fff;
  margin-left:12px;
}
.btn-outline:hover{
  background:var(--shopify);
  color:#000;
}

/* ---------- SECTION (COMPACT) ---------- */
.section{
  padding:6px 0;
  opacity:0;
  transform:translateY(30px);
  transition:all .8s ease;
}
.section.visible{
  opacity:1;
  transform:translateY(0);
}
.section-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}
.section h2{
  font-size:clamp(26px, 4vw, 38px);
  font-weight:800;
}
.section-badge{
  display:inline-block;
  padding:6px 14px;
  background:rgba(149,191,71,.15);
  border:1px solid rgba(149,191,71,.3);
  border-radius:50px;
  font-size:11px;
  color:var(--shopify);
  font-weight:600;
}

/* ---------- GLASS CARD (COMPACT) ---------- */
.glass{
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
  border-radius:20px;
  padding:36px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  border:1px solid rgba(255,255,255,.08);
  transition:all .4s ease;
}
.glass:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

/* ---------- CERTIFICATION (COMPACT) ---------- */
.cert{
  display:flex;
  gap:30px;
  align-items:center;
}
.cert-badges{
  display:flex;
  flex-direction:column;
  gap:14px;
  flex-shrink:0;
}
.cert-badge-img{
  width:140px;
  height:auto;
  transition:.3s;
}
.cert-badge-img:hover{
  transform:scale(1.05);
}
.cert-content h3{
  font-size:20px;
  margin-bottom:10px;
}
.cert-content p{
  color:#ccc;
  line-height:1.6;
  margin-bottom:14px;
  font-size:13px;
}
.cert-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin:14px 0;
}
.cert-highlight-item{
  padding:8px 12px;
  background:rgba(149,191,71,.15);
  border:1px solid rgba(149,191,71,.3);
  border-radius:8px;
  font-size:11px;
  font-weight:600;
  color:var(--shopify);
}
.cert a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-bottom:2px solid var(--shopify);
  padding-bottom:3px;
  transition:.3s;
  font-size:13px;
}
.cert a:hover{
  color:var(--shopify);
  transform:translateX(5px);
}

/* ---------- TECH STACK (COMPACT) ---------- */
.tech-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
  gap:12px;
  margin-top:24px;
}
.tech-item{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  padding:14px 8px;
  text-align:center;
  transition:all .3s ease;
}

@media (min-width: 1024px) {
  .hero-mockup{
    position: relative;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
    transition: .3s;
    margin-top: -8rem;
  }
}

.tech-item:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-3px);
  border-color:var(--shopify);
}
.tech-icon{
  font-size:24px;
  margin-bottom:6px;
}
.tech-name{
  font-size:11px;
  font-weight:600;
  color:#ddd;
}

/* ---------- EXPERIENCE JOURNEY (COMPACT) ---------- */
.journey-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.journey-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  padding:18px;
  transition:.3s;
  position:relative;
  overflow:hidden;
}
.journey-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:3px;
  height:100%;
  background:linear-gradient(180deg,var(--shopify),var(--mint));
  opacity:0;
  transition:.3s;
}
.journey-card:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-3px);
  border-color:var(--shopify);
}
.journey-card:hover::before{
  opacity:1;
}
.journey-year{
  display:inline-block;
  padding:4px 10px;
  background:rgba(149,191,71,.15);
  border-radius:16px;
  font-size:10px;
  color:var(--shopify);
  font-weight:700;
  margin-bottom:8px;
}
.journey-card h4{
  font-size:14px;
  margin-bottom:6px;
  line-height:1.3;
}
.journey-card p{
  color:#bbb;
  font-size:11px;
  line-height:1.5;
}

/* ---------- PROJECT CARDS (COMPACT) ---------- */
.projects-carousel-wrapper {
  position: relative;
  width: 100%;
}
.projects-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: 100%;
}
.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: block;
  width: 100%;
}
.card a {
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}
.card a:visited,.card a:link,.card a:active {
  color: #fff;
}
.thumb {
  height: 130px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #000;
  background: linear-gradient(135deg, #95BF47, #5fd1b5);
  position: relative;
  overflow: hidden;
}
.thumb::after {
  content: 'VIEW';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  font-size: 10px;
  color: #fff;
  letter-spacing: 2px;
}
.card:hover .thumb::after { opacity: 1; }
.info {
  padding: 14px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
}
.info h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
  color: #fff;
}
.tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 6px 0;
}
.tag {
  padding: 2px 8px;
  background: rgba(149, 191, 71, 0.15);
  border-radius: 8px;
  font-size: 9px;
  color: #95BF47;
  font-weight: 600;
}
.info p {
  font-size: 10px;
  color: #aaa;
  margin-bottom: 6px;
  line-height: 1.4;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(149, 191, 71, 0.25));
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.card:hover::before { opacity: 1; }
.carousel-dots { display: none; }

/* ---------- TESTIMONIALS (COMPACT) ---------- */
.testimonials{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}
.review{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px;
  transition:all .4s ease;
}
.review:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}
.stars{
  color:var(--shopify);
  font-size:12px;
  margin-bottom:8px;
  letter-spacing:2px;
}
.review-text{
  font-size:11px;
  line-height:1.5;
  color:#ccc;
  margin-bottom:12px;
  font-style:italic;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.reviewer{
  display:flex;
  gap:8px;
  align-items:center;
}
.reviewer-avatar{
  width:30px;
  height:30px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--shopify),var(--mint));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#000;
  font-size:11px;
  flex-shrink:0;
}
.reviewer-info h5{
  font-size:11px;
  font-weight:700;
  margin-bottom:1px;
}
.reviewer-info p{
  font-size:9px;
  color:#888;
  line-height:1.3;
}

/* ---------- CONTACT (COMPACT) ---------- */
.contact{
  text-align:center;
  padding:50px 20px;
}
.contact h2{
  font-size:clamp(30px, 5vw, 44px);
  margin-bottom:12px;
  font-weight:800;
}
.contact p{
  font-size:14px;
  color:#bbb;
  margin-bottom:24px;
}
.contact-methods{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}
.contact-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:50px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  transition:all .3s ease;
}
.contact-btn:hover{
  background:var(--shopify);
  color:#000;
  transform:translateY(-2px);
  border-color:var(--shopify);
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:52px;
  height:52px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,.4);
  z-index:999;
  cursor:pointer;
  transition:all .3s ease;
  animation:pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover{
  transform:scale(1.1);
  box-shadow:0 12px 30px rgba(37,211,102,.6);
}
.whatsapp-float svg{
  width:28px;
  height:28px;
  fill:#fff;
}
@keyframes pulse{
  0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.4)}
  50%{box-shadow:0 8px 24px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.15)}
}

/* ---------- MODAL (COMPACT) ---------- */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(10px);
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.modal.active{
  display:flex;
  animation:fadeIn .3s ease;
}
.modal-content{
  background:rgba(20,20,20,.98);
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;
  padding:36px 30px;
  max-width:460px;
  width:100%;
  position:relative;
  box-shadow:0 24px 60px rgba(0,0,0,.8);
  animation:slideUp .4s ease;
}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideUp{from{transform:translateY(30px);opacity:0}to{transform:translateY(0);opacity:1}}
.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  transition:.3s;
}
.modal-close:hover{
  background:rgba(255,255,255,.2);
  transform:rotate(90deg);
}
.modal h3{
  font-size:22px;
  margin-bottom:8px;
  text-align:center;
}
.modal p{
  color:#aaa;
  text-align:center;
  margin-bottom:20px;
  font-size:13px;
}
.form-group{
  margin-bottom:14px;
}
.form-group label{
  display:block;
  margin-bottom:5px;
  font-size:12px;
  font-weight:600;
  color:#ddd;
}
.form-group input,
.form-group textarea{
  width:100%;
  padding:10px 14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  color:#fff;
  font-size:13px;
  font-family:inherit;
  transition:.3s;
}
.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--shopify);
  background:rgba(255,255,255,.08);
}
.form-group textarea{
  min-height:80px;
  resize:vertical;
}
.form-submit{
  width:100%;
  padding:12px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  border:none;
  border-radius:10px;
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.form-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(37,211,102,.4);
}
.form-submit svg{
  width:18px;
  height:18px;
  fill:#fff;
}

/* ---------- GAME POPUP (COMPACT) ---------- */
.game-popup{
  position:fixed;
  bottom:-500px;
  right:24px;
  width:340px;
  background:linear-gradient(145deg, rgba(20,20,20,.98), rgba(30,30,30,.98));
  border:2px solid var(--shopify);
  border-radius:16px;
  padding:24px;
  z-index:10000;
  box-shadow:0 16px 40px rgba(149,191,71,.4);
  transition:all .5s cubic-bezier(.68,-.55,.265,1.55);
}
.game-popup.show{
  bottom:24px;
  animation:bounceIn .6s ease;
}
@keyframes bounceIn{
  0%{transform:scale(0.3) translateY(100px);opacity:0}
  50%{transform:scale(1.05) translateY(-10px)}
  70%{transform:scale(0.9) translateY(5px)}
  100%{transform:scale(1) translateY(0);opacity:1}
}
.game-popup-close{
  position:absolute;
  top:8px;
  right:8px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(255,0,0,.2);
  border:2px solid rgba(255,0,0,.4);
  color:#ff4444;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.game-popup-close:hover{
  background:rgba(255,0,0,.4);
  transform:rotate(90deg) scale(1.1);
}
.game-popup-emoji{
  font-size:36px;
  text-align:center;
  margin-bottom:10px;
  animation:float 2s ease-in-out infinite;
}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.game-popup h3{
  font-size:20px;
  text-align:center;
  margin-bottom:6px;
  background:linear-gradient(135deg,var(--shopify),var(--mint));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  font-weight:800;
}
.game-popup p{
  text-align:center;
  color:#ccc;
  font-size:12px;
  margin-bottom:14px;
  line-height:1.5;
}
.game-popup-input{
  width:100%;
  padding:10px 12px;
  background:rgba(255,255,255,.08);
  border:2px solid rgba(149,191,71,.3);
  border-radius:10px;
  color:#fff;
  font-size:12px;
  margin-bottom:8px;
  transition:.3s;
}
.game-popup-input:focus{
  outline:none;
  border-color:var(--shopify);
  background:rgba(255,255,255,.12);
  box-shadow:0 0 16px rgba(149,191,71,.3);
}
.game-popup-btn{
  width:100%;
  padding:10px;
  background:linear-gradient(135deg,var(--shopify),var(--mint));
  border:none;
  border-radius:10px;
  color:#000;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  box-shadow:0 4px 16px rgba(149,191,71,.4);
}
.game-popup-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(149,191,71,.6);
}
.game-popup-skip{
  text-align:center;
  margin-top:8px;
  font-size:10px;
  color:#888;
  cursor:pointer;
  transition:.3s;
}
.game-popup-skip:hover{color:var(--shopify);}

/* ---------- FAQ SECTION (COMPACT) ---------- */
.faq-grid-compact{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.faq-item-compact{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  padding:14px;
  transition:.3s;
}
.faq-item-compact:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(149,191,71,.3);
  transform:translateY(-2px);
}
.faq-item-compact h4{
  font-size:12px;
  margin-bottom:6px;
  color:var(--shopify);
  font-weight:700;
}
.faq-item-compact p{
  font-size:11px;
  color:#bbb;
  line-height:1.5;
  margin:0;
}
.faq-cta{
  text-align:center;
  margin-top:24px;
  padding:20px;
  background:linear-gradient(135deg, rgba(149,191,71,.08), rgba(95,209,181,.08));
  border:1px solid rgba(149,191,71,.15);
  border-radius:12px;
}
.faq-cta p{
  font-size:13px;
  margin-bottom:10px;
  color:#ddd;
  font-weight:600;
}
.faq-cta .btn{
  padding:10px 24px;
}

/* ---------- RESULTS SECTION (COMPACT) ---------- */
.results-comparison{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:24px;
  align-items:center;
  margin-bottom:30px;
}
.results-col h3{
  text-align:center;
  margin-bottom:16px;
  font-size:18px;
}
.result-metric{
  padding:14px;
  border-radius:10px;
  margin-bottom:10px;
  text-align:center;
}
.result-metric.bad{
  background:rgba(255,100,100,.1);
  border:1px solid rgba(255,100,100,.2);
}
.result-metric.good{
  background:rgba(149,191,71,.1);
  border:1px solid rgba(149,191,71,.3);
}
.metric-label{
  font-size:11px;
  color:#aaa;
  margin-bottom:4px;
  font-weight:600;
}
.metric-value{
  font-size:24px;
  font-weight:800;
  margin-bottom:2px;
}
.result-metric.bad .metric-value{color:#ff6464}
.result-metric.good .metric-value{color:var(--shopify)}
.metric-growth{
  font-size:10px;
  color:var(--mint);
  font-weight:600;
}
.results-arrow{
  font-size:36px;
  color:var(--shopify);
  font-weight:800;
}
.results-impact{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:24px;
}
.results-impact h4{
  text-align:center;
  font-size:clamp(24px, 4vw, 36px);
  margin-bottom:20px;
}
.impact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.impact-item{
  text-align:center;
  padding:4px;
  background:rgba(255,255,255,.05);
  border-radius:10px;
  transition:.3s;
}
.impact-item:hover{
  background:rgba(149,191,71,.1);
  transform:translateY(-3px);
}
.impact-icon{font-size:28px;margin-bottom:6px}
.impact-value{
  font-size:22px;
  font-weight:800;
  color:var(--shopify);
  margin-bottom:4px;
}
.impact-label{
  font-size:9px;
  color:#aaa;
  font-weight:600;
}

/* ---------- BRANDS CAROUSEL ---------- */
.brands-section{
  padding:40px 0;
  background:rgba(255,255,255,.02);
  overflow:hidden;
}
.brands-section .section-header{
  text-align:center;
  margin-bottom:30px;
  font-size:1.8rem;
}
.brands-carousel{
  width:100%;
  overflow:hidden;
  position:relative;
  padding:12px 0;
}
.brands-carousel::before,
.brands-carousel::after{
  content:'';
  position:absolute;
  top:0;
  width:150px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.brands-carousel::before{
  left:0;
  background:linear-gradient(90deg, rgba(10,15,10,1) 0%, transparent 100%);
}
.brands-carousel::after{
  right:0;
  background:linear-gradient(270deg, rgba(10,15,10,1) 0%, transparent 100%);
}
.brands-track{
  display:flex;
  gap:14px;
  animation:scrollBrands 40s linear infinite;
  width:max-content;
}
.brands-track:hover{animation-play-state:paused}
@keyframes scrollBrands{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.brand-item{
  flex-shrink:0;
  width:180px;
  height:350px;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  transition:.3s;
  border:1px solid rgba(255,255,255,.1);
  background:#0a0f0a;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-item:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:var(--shopify);
  box-shadow:0 10px 30px rgba(149,191,71,.3);
}
.brand-item img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* ---------- FOMO NOTIFICATION ---------- */
.fomo-notification{
  position:fixed;
  bottom:80px;
  left:20px;
  background:rgba(20,20,20,.98);
  border:1px solid var(--shopify);
  border-radius:10px;
  padding:10px 14px;
  display:none;
  align-items:center;
  gap:10px;
  max-width:300px;
  z-index:9998;
  box-shadow:0 8px 30px rgba(0,0,0,.5);
  animation:slideInLeft .5s ease;
}
.fomo-notification.show{display:flex}
@keyframes slideInLeft{
  from{transform:translateX(-100px);opacity:0}
  to{transform:translateX(0);opacity:1}
}
.fomo-icon{font-size:24px;flex-shrink:0}
.fomo-text{
  font-size:11px;
  color:#fff;
  font-weight:600;
  margin-bottom:2px;
  line-height:1.3;
}
.fomo-time{font-size:9px;color:#888}
.fomo-close{
  width:20px;
  height:20px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  border:none;
  color:#fff;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
  flex-shrink:0;
}
.fomo-close:hover{
  background:rgba(255,255,255,.2);
  transform:rotate(90deg);
}

/* ===================================================================
   PHYSICS FOOTER - Matter.js Interactive
   =================================================================== */
.physics-footer {
  position: relative;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050505;
  overflow: hidden;
}

.physics-container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  cursor: grab;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.physics-container:active { cursor: grabbing; }
.physics-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Footer Name Overlay */
.footer-name-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.footer-name-main {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(
    135deg,
    #b07cd8 0%,
    #7ec8e3 25%,
    #7ed957 50%,
    #e88bc4 75%,
    #b07cd8 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nameGradient 4s ease infinite;
  filter: drop-shadow(0 4px 30px rgba(176,124,216,.3));
  text-transform: uppercase;
}

@keyframes nameGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-name-sub {
  font-size: clamp(12px, 2vw, 18px);
  color: rgba(255,255,255,.4);
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Footer Info overlay on canvas */
.footer-info {
  position: absolute;
  bottom: 20px;
  left: clamp(20px, 3vw, 40px);
  z-index: 10;
  pointer-events: none;
}
.footer-info > * { pointer-events: auto; }

.footer-info-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-info-block h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.footer-info-block h4 svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.footer-info-block p,
.footer-info-block a {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.footer-info-block a:hover { color: #fff; }

.submit-brief {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
  transition: gap 0.3s;
}
.submit-brief:hover { gap: 8px; }

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

.footer-nav {
  display: flex;
  gap: 16px;
  list-style: none;
}
.footer-nav a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.3s;
}
.footer-nav a:hover { color: #fff; }

.footer-socials-bottom {
  display: flex;
  gap: 16px;
  list-style: none;
}
.footer-socials-bottom a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-socials-bottom a:hover { color: #fff; }

/* ========== WHY BRANDS SWITCH (COMPACT) ========== */
.why-switch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.why-card {
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(149,191,71,.2);
  border-radius: 12px;
  padding: 18px 14px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(149,191,71,.1), transparent 70%);
  opacity: 0;
  transition: .3s;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--shopify);
  background: linear-gradient(145deg, rgba(149,191,71,.1), rgba(149,191,71,.05));
  box-shadow: 0 10px 30px rgba(149,191,71,.25);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  font-size: 28px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.why-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 11px;
  line-height: 1.5;
  color: #bbb;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.why-highlight {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(149,191,71,.15);
  border: 1px solid rgba(149,191,71,.3);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  color: var(--shopify);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.why-cta {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(149,191,71,.08), rgba(95,209,181,.08));
  border: 1px solid rgba(149,191,71,.25);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.why-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(149,191,71,.15), transparent 60%);
  animation: rotateBg 15s linear infinite;
}
@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.why-cta-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.why-cta .btn {
  position: relative;
  z-index: 1;
  font-size: 13px;
  padding: 10px 24px;
}
.why-cta-subtext {
  font-size: 10px;
  color: #999;
  margin-top: 8px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ========== SEO CONTENT SECTION (COMPACT) ========== */
.seo-content-section { padding: 30px 0; }
.seo-content-wrapper { position: relative; z-index: 1; }
.seo-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 18px 16px;
  background: linear-gradient(145deg, rgba(149,191,71,.06), rgba(95,209,181,.03));
  border: 1px solid rgba(149,191,71,.15);
  border-radius: 12px;
}
.seo-intro h2 {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
  background: linear-gradient(135deg, #fff, var(--shopify));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-intro .lead-text {
  font-size: clamp(11px, 1.4vw, 13px);
  line-height: 1.5;
  color: #aaa;
  margin: 0;
}
.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}
.seo-content-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.seo-content-block:hover {
  border-color: rgba(149,191,71,.25);
}
.seo-content-block h3 {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  margin: 0;
  color: #ddd;
  background: rgba(255,255,255,.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}
.seo-content-block h3::after {
  content: '+';
  font-size: 16px;
  color: var(--shopify);
  font-weight: 400;
  transition: transform 0.3s ease;
}
.seo-content-block.active h3 {
  background: rgba(149,191,71,.08);
  color: var(--shopify);
  border-bottom: 1px solid rgba(149,191,71,.15);
}
.seo-content-block.active h3::after {
  content: '−';
}
.seo-block-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 14px;
}
.seo-content-block.active .seo-block-content {
  max-height: 2000px;
  padding: 14px;
  padding-top: 10px;
}
.seo-content-block p {
  font-size: 11px;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 8px;
}
.seo-content-block ul,.seo-content-block ol {
  padding-left: 0;
  list-style: none;
  margin: 8px 0;
}
.seo-content-block li {
  padding: 5px 0 5px 20px;
  font-size: 11px;
  line-height: 1.5;
  color: #999;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.02);
}
.seo-content-block li:last-child { border-bottom: none; }
.seo-content-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--shopify);
  font-weight: 700;
  font-size: 10px;
}
.seo-content-block ol { counter-reset: step-counter; }
.seo-content-block ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--shopify), var(--mint));
  color: #000;
  font-size: 8px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-list { display: grid; gap: 6px; margin: 10px 0; }
.service-item {
  padding: 8px 10px;
  background: rgba(149,191,71,.04);
  border: 1px solid rgba(149,191,71,.1);
  border-radius: 6px;
}
.service-item strong {
  display: block;
  font-size: 11px;
  color: var(--shopify);
  margin-bottom: 2px;
}
.service-item p {
  font-size: 10px;
  color: #888;
  margin: 0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 6px;
  margin: 10px 0;
}
.industry-tag {
  padding: 6px 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #bbb;
  transition: all 0.3s ease;
}
.industry-tag:hover {
  background: rgba(149,191,71,.1);
  border-color: var(--shopify);
  color: var(--shopify);
}
.seo-cta {
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(149,191,71,.12), rgba(95,209,181,.08));
  border: 2px solid rgba(149,191,71,.25);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.seo-cta h3 {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #fff, var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-cta p {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.seo-cta .btn {
  position: relative;
  z-index: 1;
  font-size: 13px;
  padding: 10px 24px;
}

.seo-text{
  max-width: 800px;
  margin: 24px auto 0;
  font-size: 11px;
  line-height: 1.5;
  color: #aaa;
  opacity: .5;
  text-align: center;
}

/* ========== CASE STUDY MODAL (COMPACT) ========== */
.case-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  backdrop-filter:blur(10px);
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.case-modal.active{display:flex;animation:fadeIn .3s ease}
.case-modal-content{
  background:rgba(20,20,20,.98);
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;
  padding:30px;
  max-width:600px;
  width:100%;
  position:relative;
  box-shadow:0 24px 60px rgba(0,0,0,.8);
  animation:slideUp .4s ease;
  max-height:90vh;
  overflow-y:auto;
}
.case-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  transition:.3s;
  z-index:10;
}
.case-modal-close:hover{
  background:rgba(255,255,255,.2);
  transform:rotate(90deg);
}

/* ========== BLOG DROPDOWNS ========== */
.nav-dropdown { position: relative; display: inline-block; }
.dropdown-toggle {
  color: #ddd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-toggle .arrow { font-size: 9px; transition: transform 0.3s; }
.nav-dropdown:hover .arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(149, 191, 71, 0.2);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #ddd;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: .3s;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(149, 191, 71, 0.1);
  color: var(--shopify);
  padding-left: 20px;
}

/* Mobile Dropdown */
.mobile-dropdown { position: relative; }
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.mobile-dropdown-toggle:hover { color: var(--shopify); }
.mobile-arrow { font-size: 10px; transition: transform 0.3s ease; margin-left: 6px; }
.mobile-dropdown.active .mobile-arrow { transform: rotate(180deg); }
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: rgba(20, 20, 20, 0.98);
  border-left: 2px solid var(--shopify);
  margin: 6px 0 6px 16px;
  padding: 6px 0;
  border-radius: 6px;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--shopify) rgba(255,255,255,0.1);
}
.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
  animation: slideDown 0.3s ease forwards;
  max-height: 100% !important;
}
.mobile-dropdown-menu a {
  padding: 12px 16px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  flex-shrink: 0;
  display: block;
}
.mobile-dropdown-menu a:hover {
  background: rgba(149, 191, 71, 0.1);
  color: var(--shopify);
  border-left-color: var(--shopify);
  padding-left: 20px;
}
@keyframes slideDown {
  from { opacity: 0; max-height: 0; transform: translateY(-10px); }
  to { opacity: 1; max-height: 70vh; transform: translateY(0); }
}
body.mobile-menu-open { overflow: hidden; }
.mobile-nav { overflow-y: auto; overflow-x: hidden; max-height: calc(100vh - 60px); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

/* ========== RESPONSIVE ========== */
@media(max-width:1200px){
  .projects-carousel{grid-template-columns:repeat(3,1fr)}
  .testimonials{grid-template-columns:repeat(3,1fr)}
  .brand-item{width:200px;height:320px}
}

@media(max-width:968px){
  .hero-grid{grid-template-columns:1fr;gap:30px}
  .hero-right{order:-1}
  .mockup-browser{max-width:360px;margin:0 auto}
  .projects-carousel{grid-template-columns:repeat(2,1fr)}
  .testimonials{grid-template-columns:repeat(2,1fr)}
  .why-switch-grid{grid-template-columns:1fr;gap:10px}
  .seo-content-grid{grid-template-columns:1fr;gap:6px}
}

@media(max-width:768px){
  .desktop-nav{display:none}
  .hamburger{display:flex}
  .mobile-nav{display:block}
  .hero{padding:100px 0 50px}
  .hero-results{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}
  .section-header{flex-direction:column;align-items:flex-start;gap:10px}
  .cert{flex-direction:column;text-align:center}
  .cert-badges{flex-direction:row;justify-content:center}
  .cert-badge-img{width:110px}
  .cert-highlights{grid-template-columns:1fr}
  .glass{padding:24px 18px}
  .brand-item{width:120px;height:240px}
  .brands-carousel::before,.brands-carousel::after{width:60px}
  .testimonials{grid-template-columns:repeat(2,1fr);gap:8px}
  .btn-outline{margin-left:0;margin-top:8px}
  .whatsapp-float{bottom:16px;right:16px;width:48px;height:48px}
  .tech-grid{grid-template-columns:repeat(4,1fr);gap:8px}
  .tech-item{padding:10px 6px}
  .tech-icon{font-size:18px;margin-bottom:4px}
  .tech-name{font-size:9px}
  .journey-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .faq-grid-compact{grid-template-columns:repeat(2,1fr);gap:8px}
  .results-comparison{grid-template-columns:1fr;gap:16px}
  .results-arrow{transform:rotate(90deg);font-size:28px}
  .impact-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .game-popup{width:88%;right:6%;padding:18px 14px}

  /* Physics Footer Mobile */
  .physics-container{height:300px}
  .footer-name-main{font-size:clamp(36px,10vw,56px)}
  .footer-info-row{gap:20px}
  .footer-bottom{flex-direction:column;text-align:center;gap:8px}
  .footer-bottom-left{flex-direction:column;gap:8px}

  /* Mobile Carousel for projects */
  .projects-carousel-wrapper{overflow:hidden;padding-bottom:36px}
  .projects-carousel{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    gap:10px;
    padding:0 16px 12px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .projects-carousel::-webkit-scrollbar{display:none}
  .card{flex:0 0 82%;scroll-snap-align:center;max-width:360px}
  .thumb{height:180px}
  .carousel-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:12px;
  }
  .carousel-dot{
    width:6px;height:6px;border-radius:50%;
    background:rgba(149,191,71,.3);border:none;cursor:pointer;transition:all .3s;padding:0;
  }
  .carousel-dot.active{background:#95BF47;width:20px;border-radius:4px}
}

@media(max-width:480px){
  .projects-carousel .card{flex:0 0 88%}
  .thumb{height:160px}
  .testimonials{grid-template-columns:1fr}
  .tech-grid{grid-template-columns:repeat(3,1fr)}
  .journey-grid{grid-template-columns:1fr}
  .faq-grid-compact{grid-template-columns:1fr}
  .hero-results{grid-template-columns:repeat(2,1fr)}
  .impact-grid{grid-template-columns:repeat(2,1fr)}
  .physics-container{height:260px}
  .footer-info-row{flex-direction:column;gap:10px}
  .footer-info{bottom:12px}
}

@media (min-width: 769px) and (max-width: 1199px) {
  .projects-carousel { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .projects-carousel { grid-template-columns: repeat(5, 1fr); }
}