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

:root{
  --black:#000000;
  --dark:#030408;
  --card:#080a0f;
  --card2:#0a0e14;
  --lime:#0066ff;
  --lime2:#0044cc;
  --white:#ffffff;
  --muted:#7a7a7a;
  --muted2:#555;
  --border:#111520;
}

html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
  cursor:auto;
}

/* CURSOR */
.cur{
  display: none !important;
  width:10px;height:10px;
  background:var(--lime);
  border-radius:50%;
  position:fixed;top:0;left:0;
  pointer-events:none;z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .25s,height .25s;
  mix-blend-mode:difference;
}
.cur-ring{
  display: none !important;
  width:36px;height:36px;
  border:1px solid rgba(0,102,255,0.5);
  border-radius:50%;
  position:fixed;top:0;left:0;
  pointer-events:none;z-index:9998;
  transform:translate(-50%,-50%);
  transition:left .12s ease,top .12s ease,width .3s,height .3s,opacity .3s;
}
.cur-ring.big{width:60px;height:60px;opacity:.4;}

/* NAV */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 3.5%;
  background:#ffffff;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,0,0,0.1);
}
.nav-logo{
  font-size:1.25rem;font-weight:900;
  letter-spacing:0.05em;color:var(--black);
  text-decoration:none;
  outline:none;
}
.nav-logo:focus, .nav-logo:active { outline: none !important; }
.nav-logo:focus-visible { outline: 2px solid var(--lime) !important; outline-offset: 4px; border-radius: 4px; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; display: block; outline:none; }
.nav-links{display:flex;gap:0.5rem;list-style:none;align-items:center;position:absolute;left:50%;transform:translateX(-50%);}

.nav-links a{
  font-size:.9rem;font-weight:600;
  color:rgba(0,0,0,0.7);
  text-decoration:none;
  padding:0.45rem 1rem;
  border-radius:8px;
  transition:all .3s cubic-bezier(0.4,0,0.2,1);
  cursor:pointer;
}
.nav-links a:focus, .nav-links a:focus-visible { outline: none; }
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--lime);
  background: rgba(0, 102, 255, 0.12);
  box-shadow: 0 0 18px rgba(0, 102, 255, 0.35), inset 0 0 8px rgba(0, 102, 255, 0.1);
  text-shadow: 0 0 8px rgba(0, 102, 255, 0.3);
}
.nav-links a.active{
  color:var(--lime);
  background: rgba(0, 102, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}
.nav-cta{
  background:linear-gradient(90deg, #0066ff, #0044cc);color:#ffffff;
  border:none;padding:.6rem 1.4rem;
  border-radius:40px;
  font-family:'Inter',sans-serif;
  font-size:.85rem;font-weight:700;
  cursor:pointer;
  transition:background .25s,transform .25s;
  letter-spacing:.01em;
}
.nav-cta:hover{background:var(--lime2);transform:scale(1.04);}

/* HERO */
.hero{
  min-height:100vh;
  position:relative;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:7rem 5% 4rem;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background-color:#000000;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px, 20px 20px;
  background-position: 0 0, 0 0;
  z-index:0;
  animation: floatingDots 60s linear infinite;
}
@keyframes floatingDots {
  0% { background-position: 0px 0px, 0px 0px; }
  100% { background-position: 400px 400px, -200px 200px; }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, #000000 100%);
}
.hero-orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.orb1{
  width:520px;height:520px;
  top:-100px;left:-80px;
  background:radial-gradient(circle at 40% 40%,rgba(15,40,100,0.5),rgba(2,10,30,0.2) 60%,transparent);
  animation:orbFloat 12s ease-in-out infinite;
  filter:blur(1px);
}
.orb2{
  width:420px;height:420px;
  top:-60px;right:-60px;
  background:radial-gradient(circle at 60% 35%,rgba(8,25,60,0.4),rgba(2,8,20,0.15) 60%,transparent);
  animation:orbFloat 15s ease-in-out infinite reverse;
  animation-delay:-6s;
  filter:blur(2px);
}
.gem{
  position:absolute;
  pointer-events:none;
}
.gem1{
  left:3%;top:15%;
  width:200px;height:200px;
  animation:gemSpin 20s linear infinite;
}
.gem2{
  right:4%;top:8%;
  width:180px;height:180px;
  animation:gemSpin 25s linear infinite reverse;
  animation-delay:-8s;
}
@keyframes gemSpin{
  0%{transform:rotate(0deg) scale(1);}
  50%{transform:rotate(180deg) scale(1.08);}
  100%{transform:rotate(360deg) scale(1);}
}
@keyframes orbFloat{
  0%,100%{transform:translateY(0) scale(1);}
  50%{transform:translateY(-30px) scale(1.04);}
}

.hero-content{position:relative;z-index:2;}

.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid rgba(0,102,255,0.3);
  background:rgba(0,102,255,0.06);
  color:rgba(255,255,255,0.85);
  padding:.45rem 1.2rem;
  border-radius:40px;
  font-size:.8rem;font-weight:400;
  margin-bottom:2.5rem;
  opacity:0;
  animation:fadeUp .8s .2s forwards;
}
.badge-dot{
  width:7px;height:7px;
  background:var(--lime);
  border-radius:50%;
  animation:blink 2s infinite;
}
@keyframes blink{
  0%,100%{opacity:1;}50%{opacity:.3;}
}

.hero h1{
  font-family:'Canaro', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size:clamp(2.5rem,5.5vw,4.5rem);
  font-weight:600;
  line-height:1.1;
  letter-spacing:-0.01em;
  margin-bottom:1rem;
  opacity:0;
  animation:fadeUp .9s .4s forwards;
}
.hero h1 .line1 { color: #E2E8F0; display:block; }
.hero h1 .line2 { color: #8BA9F5; display:block; }
.hero h1 .line3 { color: #3B82F6; display:block; }

.hero-robot {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 1rem auto 2rem;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.cute-robot-float {
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 70px;
  z-index: 999999;
  opacity: 0;
  perspective: 800px;
  pointer-events: none;
}
.cute-robot-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}
.cute-robot-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.robot-eye-ray {
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(0, 150, 255, 0.6) 15%, transparent 100%);
  transform-origin: top center;
  pointer-events: none;
  filter: blur(1px) drop-shadow(0 0 8px #0088ff);
  z-index: 3;
  border-radius: 2px;
}
.left-eye { top: 33%; left: 23.5%; }
.right-eye { top: 33%; left: 43.5%; }
.robot-thruster {
  position: absolute;
  width: 8px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(0, 200, 255, 0.8) 30%, transparent 100%);
  border-radius: 50% 50% 10% 10%;
  filter: blur(1px) drop-shadow(0 0 6px #00aaff) drop-shadow(0 2px 8px #0088ff);
  z-index: 1;
  pointer-events: none;
  animation: thrusterPulse 0.1s infinite alternate;
  transform-origin: top center;
}
@keyframes thrusterPulse {
  0% { opacity: 0.7; transform: scaleY(0.85); }
  100% { opacity: 1; transform: scaleY(1.15); }
}
.left-thruster { top: 92%; left: 31%; }
.right-thruster { top: 94%; left: 60%; }
@media (max-width: 1024px) {
  .cute-robot-float { right: 5%; width: 55px; }
}
@media (max-width: 768px) {
  .cute-robot-float { width: 45px; right: 2%; }
}
@media (max-width: 600px) {
  .cute-robot-float { width: 35px; right: 2%; }
}

.hero-sub{
  max-width:600px;
  margin:0 auto 2.8rem;
  color:rgba(255,255,255,0.55);
  font-size:1rem;font-weight:400;
  line-height:1.75;
  opacity:0;
  animation:fadeUp .9s .6s forwards;
}

.hero-btns{
  display:flex;gap:1rem;align-items:center;justify-content:center;
  opacity:0;
  animation:fadeUp .9s .8s forwards;
}
.btn-lime{
  background:linear-gradient(90deg, #0066ff, #0044cc);color:#ffffff;
  padding:.85rem 2rem;
  border-radius:50px;font-size:.92rem;font-weight:700;
  text-decoration:none;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .25s,transform .3s,box-shadow .3s;
  cursor:auto;
  border:none;
}
.btn-lime:hover{background:var(--lime2);transform:translateY(-3px);box-shadow:0 10px 30px rgba(0,102,255,0.3);}
.btn-ghost{
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;padding:.85rem 2rem;
  border-radius:50px;font-size:.92rem;font-weight:400;
  text-decoration:none;
  transition:border-color .25s,background .25s;
  cursor:auto;
}
.btn-ghost:hover{border-color:rgba(255,255,255,0.5);background:rgba(255,255,255,0.05);}

/* HERO STATS */
.hero-stats{
  display:flex;gap:1.2rem;justify-content:center;
  margin-top:3.5rem;
  padding-top:0;
  border-top:none;
  opacity:0;
  animation:fadeUp .9s 1s forwards;
  flex-wrap: wrap;
}
.stat-item{
  text-align:center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  min-width: 180px;
  transition: border-color .3s, background .3s;
}
.stat-item:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}
.stat-num{
  font-size:2rem;font-weight:800;
  color:#ffffff;
  line-height:1;margin-bottom:.6rem;
  font-variant-numeric:tabular-nums;
  letter-spacing: -0.02em;
}
.stat-suffix{
  color: var(--lime);
  font-size: 1.6rem;
}
.stat-label{
  font-size:.7rem;
  color:var(--muted);
  font-weight:700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:translateY(0);}
}

/* BRANDS MARQUEE */
.marquee-section{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--black);
  overflow:hidden;
  padding:.1rem 0;
}
.marquee-inner{
  display:flex;
  animation:scrollLeft 30s linear infinite;
  width:max-content;
}
.marquee-inner:hover{animation-play-state:paused;}
.brand-name{
  padding:1.3rem 3.5rem;
  font-size:1.05rem;font-weight:700;
  color:rgba(255,255,255,0.25);
  white-space:nowrap;
  letter-spacing:.04em;
  transition:color .3s;
  cursor:default;
}
.brand-name:hover{color:rgba(255,255,255,0.7);}
.brand-name.italic{font-style:italic;}
@keyframes scrollLeft{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* WHAT WE DO */
.services-section{padding:7rem 5%;}
.section-label{
  font-size:.75rem;font-weight:700;
  color:var(--lime);
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:1.2rem;
}
.services-header{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:4rem;
  flex-wrap:wrap;gap:2rem;
}
.services-header-left h2{
  font-size:clamp(2rem,4.5vw,3.5rem);
  font-weight:900;text-transform:uppercase;
  line-height:1.05;letter-spacing:-.02em;
}
.services-header-right{
  display:flex;flex-direction:column;align-items:flex-end;gap:1rem;
}
.services-header-right p{
  color:var(--muted);font-size:.9rem;
  line-height:1.6;max-width:380px;text-align:right;
}
.link-lime{
  color:var(--lime);font-size:.9rem;font-weight:600;
  text-decoration:none;
  display:inline-flex;align-items:center;gap:6px;
  transition:gap .3s;cursor:auto;
}
.link-lime:hover{gap:12px;}



/* SERVICE CARDS GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.service-card{
  background:#ffffff;
  color: #0044cc;
  border:1px solid rgba(0, 102, 255, 0.15);
  border-radius:12px;
  padding:0;
  overflow:hidden;
  cursor:auto;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.15);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
  position:relative;
}
.service-card:hover{
  transform:translateY(-10px) !important;
  box-shadow: 0 0 40px #ffffff;
  border-color:rgba(0, 102, 255, 0.6);
  background:#f8fbff;
}
.card-img-bg{
  width:100%;height:220px;
  position:relative;overflow:hidden;
}
.card-img-bg::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to bottom, transparent 30%, rgba(8,10,15,0.85) 100%);
}
.card-body{padding:1.5rem 1.5rem 2rem;}
.card-icon{
  width:42px;height:42px;
  background:transparent;
  border:1px solid rgba(0,102,255,0.6);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.2rem;
  font-size:1.2rem;
  color:var(--lime);
  box-shadow: inset 0 0 10px rgba(0,102,255,0.1);
}
.service-card h3{
  font-size:1.15rem;font-weight:700;
  margin-bottom:1rem;line-height:1.3;
  color:var(--lime);
}
.service-card h3 span {
  color: var(--lime) !important;
  text-shadow: none;
}
.service-card p{
  color:#000000;font-size:.85rem;
  line-height:1.65;font-weight:400;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  color: #000000;
  font-size: .85rem;
  line-height: 1.65;
  font-weight: 500;
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}
.service-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: #000000;
  border-radius: 50%;
  box-shadow: none;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Card image abstract visuals */
.card-visual{
  width:100%;height:220px;
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.cv-social{background:linear-gradient(135deg,#1a0e30 0%,#0d1a10 50%,#0a1808 100%);}
.cv-video{background:linear-gradient(135deg,#0a1020 0%,#0d2010 50%,#0a1008 100%);}
.cv-design{background:linear-gradient(135deg,#1a0a18 0%,#1a1200 50%,#0a0c08 100%);}
.cv-illus{background:linear-gradient(135deg,#080f20 0%,#101808 50%,#0a0808 100%);}
.cv-web{background:linear-gradient(135deg,#081020 0%,#0a1810 50%,#080a08 100%);}
.cv-growth{background:linear-gradient(135deg,#0a1808 0%,#181008 50%,#080a08 100%);}
.cv-site{background:linear-gradient(135deg,#0a1a25 0%,#0d151a 50%,#0a0d10 100%);}
.cv-host{background:linear-gradient(135deg,#101a2a 0%,#0d121a 50%,#080a0d 100%);}
.cv-commerce{background:linear-gradient(135deg,#1a140a 0%,#15100a 50%,#0a0805 100%);}
.cv-ugc{background:linear-gradient(135deg,#1a0a20 0%,#15081a 50%,#0a050d 100%);}
.cv-ai-video{background:linear-gradient(135deg,#121020 0%,#0d0a15 50%,#08050a 100%);}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* SELECTED WORK */
.work-section{padding:7rem 5%;background:var(--dark);}
.work-section .section-label{text-align:center;}
.work-section h2{
  font-size:clamp(2.5rem,5.5vw,5rem);
  font-weight:900;text-transform:uppercase;
  letter-spacing:-.03em;
  text-align:center;
  margin-bottom:5rem;
}

.case-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
  padding:4rem 0;
  border-top:1px solid var(--border);
}
.case-row.reverse .case-img-col{order:2;}
.case-row.reverse .case-text-col{order:1;}
.case-img{
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.case-text-col .case-cat{
  font-size:.72rem;font-weight:700;
  color:var(--lime);letter-spacing:.12em;
  text-transform:uppercase;margin-bottom:1rem;
}
.case-text-col h3{
  font-size:clamp(1.8rem,3vw,2.8rem);
  font-weight:900;margin-bottom:1.5rem;
  line-height:1.1;
}
.case-quote{
  border-left:3px solid var(--lime);
  padding-left:1.2rem;
  margin-bottom:2rem;
}
.case-quote p{
  color:rgba(255,255,255,0.65);
  font-size:1rem;line-height:1.65;
}
.btn-case{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;padding:.7rem 1.6rem;
  border-radius:40px;font-size:.85rem;font-weight:500;
  text-decoration:none;cursor:auto;
  transition:border-color .25s,background .25s;
}
.btn-case:hover{border-color:rgba(255,255,255,0.5);background:rgba(255,255,255,0.05);}
@media (max-width: 900px) {
  .case-row { grid-template-columns: 1fr; gap: 3rem; }
  .case-row.reverse .case-img-col{order:1;}
  .case-row.reverse .case-text-col{order:2;}
}

/* HOW WE WORK */
.process-section{
  padding:7rem 5%;
  text-align:center;
}
.process-section .section-label{margin-bottom:1rem;}
.process-section h2{
  font-size:clamp(2rem,5vw,4.5rem);
  font-weight:900;text-transform:uppercase;
  letter-spacing:-.03em;margin-bottom:4rem;
}
.process-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.2rem;
  text-align:left;
}
.process-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:2rem 1.8rem;
  cursor:auto;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}
.process-card:hover{
  transform:translateY(-10px) !important;
  border-color:rgba(0,102,255,0.3);
  background:var(--card2);
}
.process-num{
  font-size:.75rem;font-weight:700;
  color:var(--lime);letter-spacing:.1em;
  margin-bottom:1.2rem;
  font-variant-numeric:tabular-nums;
}
.process-card h3{
  font-size:1.2rem;font-weight:800;
  margin-bottom:.9rem;line-height:1.2;
}
.process-card p{
  color:var(--muted);font-size:.85rem;line-height:1.65;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* THE STUDIO */
.studio-section{
  padding:7rem 5%;
  background:var(--dark);
}
.studio-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:center;
}
.studio-img{
  border-radius:20px;overflow:hidden;
  aspect-ratio:3/4;max-height:560px;
  background:linear-gradient(160deg,#0d2018,#1a0d10,#0d0d18);
  display:flex;align-items:center;justify-content:center;
}
.studio-text .section-label{margin-bottom:1rem;}
.studio-text h2{
  font-size:clamp(2.2rem,4vw,3.8rem);
  font-weight:900;text-transform:uppercase;
  letter-spacing:-.03em;
  line-height:1.05;
  margin-bottom:1.5rem;
}
.studio-text p{
  color:rgba(255,255,255,0.55);
  font-size:.95rem;line-height:1.75;
  margin-bottom:1rem;
}
@media (max-width: 900px) { .studio-grid { grid-template-columns: 1fr; } }

/* CONTACT QUICK ACCESS */
.contact-quick-section {
  padding: 5rem 5%;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-quick-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(0,102,255,0.03) 0%, transparent 60%);
}
.contact-quick-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-quick-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--lime);
  border-radius: 50px;
  background: linear-gradient(90deg, var(--lime), var(--lime2));
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-quick-label:hover {
  background: var(--lime2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}
.contact-quick-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.contact-quick-content .lime-italic {
  color: var(--lime);
  font-style: italic;
}
.contact-quick-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.10);
}
.contact-card:hover {
  transform: translateY(-5px);
  background: #f8fbff;
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 0 40px #ffffff;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,102,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
}
.contact-card-text {
  text-align: center;
}
.contact-card-label {
  font-size: 0.8rem;
  color: #555555;
  margin-bottom: 0.4rem;
}
.contact-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-card-value:hover {
  color: var(--lime);
}
@media (max-width: 768px) {
  .contact-quick-grid { grid-template-columns: 1fr; }
}

/* CTA CONTACT */
.cta-section{
  padding:7rem 5%;
  position:relative;overflow:hidden;
}
.cta-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 90% at 50% 50%,rgba(10,30,60,0.5) 0%,var(--black) 70%);
}
.cta-box{
  position:relative;z-index:1;
  background:#ffffff;
  border:1px solid rgba(0,102,255,0.15);
  border-radius:24px;
  padding:4rem 5%;
  max-width:820px;
  margin:0 auto;
  text-align:center;
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.1);
}
.cta-box h2{
  font-size:clamp(2.2rem,5vw,4rem);
  font-weight:900;text-transform:uppercase;
  letter-spacing:-.03em;line-height:1.05;
  margin-bottom:1rem;
  color:#000000;
}
.cta-box p{
  color:rgba(0,0,0,0.6);
  font-size:.95rem;margin-bottom:2.5rem;
}
.contact-form{text-align:left;}
.form-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1rem;margin-bottom:1rem;
}
.form-group{display:flex;flex-direction:column;gap:.4rem;}
.form-group label{
  font-size:.78rem;color:#333333;
  font-weight:600;
}
.form-group input,
.form-group textarea,
.form-group select{
  background:#f8fbff;
  border:1px solid rgba(0,102,255,0.2);
  border-radius:10px;
  padding:.85rem 1rem;
  color:#000000;
  font-family:'Inter',sans-serif;
  font-size:.88rem;
  outline:none;
  transition:border-color .25s;
  width:100%;
}
.form-group select option { background: #ffffff; color: #000; }
.form-group input::placeholder,
.form-group textarea::placeholder{color:rgba(0,0,0,0.4);}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{border-color:rgba(0,102,255,0.4);}
.form-group textarea{height:120px;resize:none;}
.form-full{margin-bottom:1.2rem;}
.btn-submit{
  width:100%;
  background:linear-gradient(90deg, #0066ff, #0044cc);color:#ffffff;
  border:none;padding:1rem;
  border-radius:10px;
  font-family:'Inter',sans-serif;
  font-size:.95rem;font-weight:800;
  cursor:auto;
  transition:background .25s,transform .3s;
  letter-spacing:.02em;
}
.btn-submit:hover{background:var(--lime2);transform:translateY(-2px);}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* FOOTER GRID */
footer{
  background:var(--dark);
  border-top:1px solid var(--border);
  padding:4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
}
.footer-logo:focus, .footer-logo:active { outline: none !important; }
.footer-logo:focus-visible { outline: 2px solid var(--lime) !important; outline-offset: 4px; border-radius: 4px; }
.footer-logo img { height: 60px; width: auto; object-fit: contain; display: block; outline:none; }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 1.2rem 0 2rem;
  max-width: 320px;
}
.footer-address, .footer-phone, .footer-email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.footer-address span { color: rgba(255,255,255,0.6); }
.footer-phone a, .footer-email a { color: var(--lime); text-decoration: none; }
.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}
.footer-col .footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
  cursor: auto;
}
.footer-col .footer-links a:hover { color: #fff; }
.studio-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.studio-urgent {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
.footer-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
  cursor: auto;
}
.footer-socials a:hover { color: var(--white); }
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* REVEAL ANIMATIONS */
.reveal{
  opacity:0;transform:translateY(32px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.in{opacity:1;transform:translateY(0);}
.reveal-left{
  opacity:0;transform:translateX(-40px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal-left.in{opacity:1;transform:translateX(0);}
.reveal-right{
  opacity:0;transform:translateX(40px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal-right.in{opacity:1;transform:translateX(0);}

/* Stagger delays */
.d1{transition-delay:.1s;}
.d2{transition-delay:.2s;}
.d3{transition-delay:.3s;}
.d4{transition-delay:.4s;}
.d5{transition-delay:.5s;}
.d6{transition-delay:.6s;}

/* Top bar accent */
.topbar{
  height:3px;
  background:linear-gradient(90deg,var(--lime),rgba(0,102,255,0.3),transparent);
}

/* Extra Responsive Overrides */
@media (max-width: 900px) {
  
  
  .hero-stats { flex-wrap: wrap; gap: 2rem; }
  .hero-btns { flex-wrap: wrap; }
  .services-header { justify-content: center; text-align: center; }
  .services-header-right { align-items: center; }
  .services-header-right p { text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .hero { padding: 10rem 5% 3rem; justify-content: flex-start; }
  .services-section, .work-section, .process-section, .studio-section, .cta-section { padding: 4rem 5%; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .services-header, .work-section h2, .process-section h2 { margin-bottom: 2.5rem; }
  .case-row { padding: 2.5rem 0; gap: 2.5rem; }
  .studio-grid { gap: 2.5rem; }
  .cta-box { padding: 3rem 5%; }
}
@media (max-width: 600px) {
  .hero { padding-top: 12rem; }
  
  
  
  .hero-stats { gap: 1.5rem; flex-direction: column; }
  .stat-item { width: 100%; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-lime, .btn-ghost { width: 100%; justify-content: center; }
  .hero h1 { font-size: clamp(1.8rem, 10vw, 2.2rem); }
}
/* HERO SLIDER BANNER */
.hero-slider-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 5rem auto;
  padding: 0 5%;
  position: relative;
  z-index: 10;
}

.slider-wrapper {
  width: 100%;
  aspect-ratio: 16 / 5;
  background: var(--card);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
}

.slider-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 768px) {
  .slider-wrapper {
    aspect-ratio: 16 / 9;
  }
  .hero-slider-container {
    margin-bottom: 3rem;
  }
}

/* Force pointer on all clickable elements */
a, button, [role='button'], .footer-links a, .nav-links a { cursor: pointer !important; }

/* Strategy Section CSS */
.strategy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    @media (max-width: 900px) { .strategy-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .strategy-grid { grid-template-columns: 1fr; } }
    
    .strategy-card {
      background: #ffffff;
      border: 1px solid rgba(0, 102, 255, 0.15);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
    }
    .strategy-card:hover {
      transform: translateY(-10px) !important;
      border-color: rgba(255, 255, 255, 0.5);
      background: #f8fbff;
      box-shadow: 0 0 40px #ffffff;
    }
    .strategy-icon {
      margin-bottom: 1.5rem;
      color: var(--lime);
    }
    .strategy-card h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--lime);
    }
    .strategy-card p {
      color: #000000;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .goal-box {
      position: relative;
      background: rgba(2, 6, 12, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 5rem 3rem;
      text-align: center;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.4);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .goal-box-bg {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background-image: 
        radial-gradient(circle at 15% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 100%, rgba(0, 200, 100, 0.1) 0%, transparent 50%);
      z-index: 0;
    }
    .goal-box::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: 0.3;
      z-index: 0;
      pointer-events: none;
    }
    .goal-box-content {
      position: relative;
      z-index: 1;
    }
    .goal-box h3 {
      font-size: 0.8rem;
      color: var(--lime);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 2rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0.6rem 1.5rem;
      border: 1px solid rgba(0, 255, 128, 0.2);
      border-radius: 50px;
      background: rgba(0, 255, 128, 0.05);
      box-shadow: 0 0 20px rgba(0, 255, 128, 0.1);
    }
    .goal-box p {
      font-size: clamp(1.4rem, 3.5vw, 2.2rem);
      color: #fff;
      line-height: 1.5;
      font-weight: 700;
      max-width: 900px;
      margin: 0 auto;
      font-family: 'Canaro', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }
    @media (max-width: 768px) {
      .goal-box { padding: 3rem 1.5rem; }
    }

/* --- MOBILE NAV MENU STYLES --- */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 6px;
  color: var(--black);
  cursor: pointer;
  z-index: 202;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn:hover {
  background: rgba(0,0,0,0.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  nav {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    padding: 1rem 5% !important;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 201;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1.5rem !important;
    position: static;
    transform: none;
  }
  .nav-links a {
    font-size: 1.1rem !important;
    display: block;
    padding: 0.8rem !important;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 1rem !important;
    font-size: 1rem !important;
  }
}

/* ============================
   PREMIUM FOOTER — AARAZEN
   ============================ */
.footer-pro {
  position: relative;
  background: #020612;
  border-top: 1px solid rgba(0, 102, 255, 0.12);
  padding: 5rem 5% 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Dot-grid texture overlay */
.footer-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Glowing blue orb */
.footer-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,0.13) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

/* Top section: brand col + nav cols */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

/* Brand column */
.fp-brand .fp-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 2rem;
}
.fp-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0066ff;
  margin: 0.9rem 0 1.4rem;
}
.fp-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
  line-height: 1.72;
  max-width: 300px;
  margin-bottom: 2rem;
}

/* Contact chips */
.fp-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fp-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s;
}
.fp-contact-item:hover { color: #fff; }
.fp-contact-item svg {
  flex-shrink: 0;
  color: #0066ff;
}

/* Nav columns */
.fp-col-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0066ff;
  margin-bottom: 1.6rem;
}
.fp-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.fp-links a {
  color: rgba(255,255,255,0.52);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
  position: relative;
}
.fp-links a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0066ff;
  opacity: 0;
  transition: opacity 0.25s;
}
.fp-links a:hover { color: #fff; padding-left: 8px; }
.fp-links a:hover::before { opacity: 1; }

/* Hours column */
.fp-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.fp-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.fp-hours-row .fp-day { color: rgba(255,255,255,0.75); font-weight: 500; }
.fp-hours-row .fp-time { font-variant-numeric: tabular-nums; }
.fp-hours-row .fp-closed { color: rgba(255,80,80,0.7); font-weight: 600; }

/* WhatsApp CTA pill */
.fp-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
  color: rgba(37,211,102,0.9);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
  margin-top: 0.5rem;
}
.fp-wa-pill:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.5);
  transform: translateY(-2px);
  color: #25d366;
}
.fp-wa-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
  animation: fp-pulse 2s infinite;
}
@keyframes fp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* Middle divider strip */
.footer-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fp-strip-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.fp-strip-text span {
  color: #0066ff;
  font-weight: 600;
}

/* Social icon buttons */
.fp-socials {
  display: flex;
  gap: 0.7rem;
}
.fp-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.fp-social-btn:hover {
  background: rgba(0,102,255,0.15);
  border-color: rgba(0,102,255,0.4);
  color: #fff;
  transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom-pro {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.fp-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.fp-copy .fp-flag { font-size: 0.9rem; }
.fp-legal-links {
  display: flex;
  gap: 1.5rem;
}
.fp-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.25s;
}
.fp-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* Responsive */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .fp-brand { grid-column: span 3; }
  .fp-desc { max-width: 100%; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fp-brand { grid-column: span 2; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  .fp-brand { grid-column: span 1; }
  .footer-bottom-pro { flex-direction: column; align-items: flex-start; }
  .footer-strip { flex-direction: column; align-items: flex-start; }
}
