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

:root{
  --lime:#C8F135;
  --coral:#FF5C3A;
  --navy:#0D0F1A;
  --cream:#FAF7F0;
  --sky:#B8E8FF;
  --pink:#FFB3D1;
  --violet:#6B3FFF;
  --yellow:#FFE045;
  --white:#FFFFFF;
  --ff:'Syne',sans-serif;
  --fs:'Cabinet Grotesk',sans-serif;
}

html{scroll-behavior:smooth;}

body{
  font-family:var(--fs);
  background:var(--cream);
  color:var(--navy);
  overflow-x:hidden;
  cursor:none;
}

/* ── CUSTOM CURSOR ── */
#cursor{
  position:fixed;width:18px;height:18px;
  background:var(--coral);border-radius:50%;
  pointer-events:none;z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .2s,height .2s,background .2s;
  mix-blend-mode:multiply;
}
#cursor-ring{
  position:fixed;width:42px;height:42px;
  border:2px solid var(--navy);border-radius:50%;
  pointer-events:none;z-index:9998;
  transform:translate(-50%,-50%);
  transition:transform .12s ease,width .2s,height .2s;
}
body:hover #cursor{width:22px;height:22px;}

/* ── MARQUEE STRIP ── */
.marquee-strip{
  background:var(--navy);color:var(--lime);
  padding:10px 0;overflow:hidden;white-space:nowrap;
  font-family:var(--ff);font-size:0.85rem;letter-spacing:0.05em;
}
.marquee-inner{display:inline-flex;gap:0;animation:marquee 18s linear infinite;}
.marquee-inner span{padding:0 1.5rem;}
.marquee-inner .dot{color:var(--coral);}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 4%;height:68px;
  background:var(--cream);
  border-bottom:2.5px solid var(--navy);
}
.logo{
  font-family:var(--ff);font-size:1.5rem;font-weight:800;
  color:var(--navy);text-decoration:none;display:flex;align-items:center;gap:8px;
}
.logo-fox{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;background:var(--white);
  border:2px solid var(--navy);border-radius:10px;
  transform:rotate(-5deg);transition:transform .3s;
  overflow:hidden;
}
.logo:hover .logo-fox{transform:rotate(5deg);}
.logo-fox img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.logo em{color:var(--coral);font-style:normal;}

.nav-links{display:flex;align-items:center;gap:1.5rem;list-style:none;}
.nav-links a{
  font-size:0.88rem;font-weight:700;color:var(--navy);
  text-decoration:none;padding:6px 14px;border-radius:100px;
  border:2px solid transparent;transition:all .2s;letter-spacing:0.02em;
}
.nav-links a:hover{background:var(--navy);color:var(--lime);}
.nav-cta{
  background:var(--coral) !important;color:var(--white) !important;
  border:2px solid var(--navy) !important;
  box-shadow:3px 3px 0 var(--navy);
  transition:all .15s !important;
}
.nav-cta:hover{transform:translate(-2px,-2px) !important;box-shadow:5px 5px 0 var(--navy) !important;background:var(--coral) !important;}

/* ── HERO ── */
.hero{
  min-height:100vh;
  padding:100px 4% 60px;
  background:var(--cream);
  position:relative;overflow:hidden;
  display:flex;align-items:center;
}
.hero-blob1{
  position:absolute;top:-120px;right:-100px;
  width:500px;height:500px;
  background:var(--lime);border-radius:60% 40% 55% 45%/45% 55% 40% 60%;
  z-index:0;animation:blob1 8s ease-in-out infinite;
}
.hero-blob2{
  position:absolute;bottom:-80px;left:-60px;
  width:320px;height:320px;
  background:var(--sky);border-radius:40% 60% 45% 55%/55% 45% 60% 40%;
  z-index:0;animation:blob2 10s ease-in-out infinite;
}
@keyframes blob1{0%,100%{border-radius:60% 40% 55% 45%/45% 55% 40% 60%}50%{border-radius:45% 55% 40% 60%/60% 40% 55% 45%}}
@keyframes blob2{0%,100%{border-radius:40% 60% 45% 55%/55% 45% 60% 40%}50%{border-radius:55% 45% 60% 40%/40% 60% 45% 55%}}

.hero-inner{
  max-width:1100px;margin:0 auto;width:100%;
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;
  align-items:center;position:relative;z-index:1;
}
.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--yellow);border:2px solid var(--navy);
  border-radius:100px;padding:6px 16px;
  font-size:0.78rem;font-weight:700;letter-spacing:0.06em;
  text-transform:uppercase;color:var(--navy);margin-bottom:1.25rem;
  box-shadow:3px 3px 0 var(--navy);
  animation:wiggle 3s ease-in-out infinite;
}
@keyframes wiggle{0%,100%{transform:rotate(-1deg)}50%{transform:rotate(1.5deg)}}

.hero h1{
  font-family:var(--ff);
  font-size:clamp(3rem,6vw,5.5rem);
  font-weight:800;line-height:1.0;
  color:var(--navy);margin-bottom:1.5rem;
  letter-spacing:-1px;
}
.hero h1 .line2{
  display:inline-block;
  background:var(--coral);color:var(--white);
  padding:0 12px;border-radius:8px;
  transform:rotate(-1.5deg);display:inline-block;
  border:2px solid var(--navy);
}
.hero h1 .line3{color:var(--violet);}

.hero p{
  font-size:1.05rem;color:#3A3A4A;
  max-width:440px;margin-bottom:2rem;line-height:1.75;font-weight:500;
}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap;}
.btn-big{
  padding:14px 30px;border-radius:12px;
  font-family:var(--fs);font-size:0.95rem;font-weight:700;
  text-decoration:none;border:2.5px solid var(--navy);
  cursor:none;display:inline-block;
  transition:transform .15s,box-shadow .15s;
  box-shadow:4px 4px 0 var(--navy);
}
.btn-big:hover{transform:translate(-3px,-3px);box-shadow:7px 7px 0 var(--navy);}
.btn-big:active{transform:translate(2px,2px);box-shadow:2px 2px 0 var(--navy);}
.btn-fill{background:var(--navy);color:var(--lime);}
.btn-outline{background:var(--white);color:var(--navy);}

/* hero right side */
.hero-right{position:relative;}
.hero-big-num{
  font-family:var(--ff);font-size:clamp(8rem,16vw,14rem);
  font-weight:800;color:transparent;
  -webkit-text-stroke:3px var(--navy);
  line-height:1;letter-spacing:-4px;
  position:relative;z-index:0;
  animation:numFloat 5s ease-in-out infinite;
}
@keyframes numFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.hero-cards-over{
  position:absolute;top:0;left:0;right:0;bottom:0;
  display:flex;flex-direction:column;justify-content:center;
  align-items:flex-start;gap:1rem;padding-left:2rem;
  z-index:2;
}
.hchip{
  padding:10px 18px;border-radius:12px;
  border:2px solid var(--navy);font-weight:700;font-size:0.88rem;
  box-shadow:4px 4px 0 var(--navy);
  display:flex;align-items:center;gap:8px;
  animation:chipFloat 4s ease-in-out infinite;
}
.hchip:nth-child(2){animation-delay:.8s;animation-duration:5s;}
.hchip:nth-child(3){animation-delay:1.4s;animation-duration:4.5s;}
@keyframes chipFloat{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-8px) rotate(1deg)}}
.hchip-lime{background:var(--lime);}
.hchip-pink{background:var(--pink);}
.hchip-sky{background:var(--sky);}
.hchip .icon{font-size:1.1rem;}

/* ── TICKER ── */
.ticker-row{
  background:var(--lime);border-top:2.5px solid var(--navy);border-bottom:2.5px solid var(--navy);
  padding:18px 4%;display:flex;gap:3rem;align-items:center;overflow:hidden;
}
.ticker-item{
  display:flex;align-items:baseline;gap:8px;flex-shrink:0;white-space:nowrap;
}
.ticker-num{font-family:var(--ff);font-size:2rem;font-weight:800;color:var(--navy);}
.ticker-lbl{font-size:0.8rem;font-weight:700;color:#444;text-transform:uppercase;letter-spacing:0.08em;}
.ticker-sep{font-size:2rem;color:var(--coral);font-weight:800;}

/* ── SECTION BASE ── */
section{padding:6rem 4%;}
.section-inner{max-width:1100px;margin:0 auto;}
.eyebrow{
  display:inline-block;
  background:var(--navy);color:var(--lime);
  font-size:0.72rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;
  padding:4px 12px;border-radius:100px;margin-bottom:1rem;
}
.big-title{
  font-family:var(--ff);
  font-size:clamp(2.2rem,4vw,3.5rem);
  font-weight:800;line-height:1.1;
  color:var(--navy);letter-spacing:-0.5px;
  margin-bottom:1.25rem;
}
.big-title .squiggle{
  position:relative;display:inline-block;
}
.big-title .squiggle::after{
  content:'';position:absolute;bottom:-6px;left:0;right:0;height:6px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q12.5,0 25,5 T50,5 T75,5 T100,5' stroke='%23FF5C3A' stroke-width='3' fill='none'/%3E%3C/svg%3E") repeat-x center/auto 100%;
}
.body-txt{font-size:1rem;color:#4A4A5A;max-width:540px;line-height:1.75;font-weight:500;}

/* ── SERVICES ── */
#services{background:var(--navy);}
#services .big-title{color:var(--white);}
#services .eyebrow{background:var(--lime);color:var(--navy);}
#services .body-txt{color:rgba(255,255,255,0.6);}

.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.25rem;margin-top:3rem;
}
.scard{
  background:var(--cream);border:2.5px solid var(--cream);
  border-radius:20px;padding:1.75rem;
  transition:transform .2s,box-shadow .2s,border-color .2s,background .2s;
  position:relative;overflow:hidden;
}
.scard::before{
  content:'';position:absolute;top:0;left:0;right:0;height:5px;
  border-radius:20px 20px 0 0;
}
.scard:nth-child(1)::before{background:var(--lime);}
.scard:nth-child(2)::before{background:var(--coral);}
.scard:nth-child(3)::before{background:var(--sky);}
.scard:nth-child(4)::before{background:var(--yellow);}
.scard:nth-child(5)::before{background:var(--pink);}
.scard:nth-child(6)::before{background:var(--sky);}
.scard:nth-child(7)::before{background:var(--violet);}
.scard:hover{
  transform:translate(-4px,-6px);
  box-shadow:6px 8px 0 rgba(250,247,240,0.3);
  border-color:var(--lime);
}
.scard-emoji{font-size:2rem;margin-bottom:1rem;display:block;}
.scard h3{
  font-family:var(--ff);font-size:1.1rem;font-weight:800;
  color:var(--navy);margin-bottom:0.6rem;
}
.scard p{font-size:0.88rem;color:#555;line-height:1.65;font-weight:500;}
.scard-tag{
  display:inline-block;margin-top:1rem;
  padding:3px 10px;border-radius:100px;
  font-size:0.72rem;font-weight:700;letter-spacing:0.06em;
  text-transform:uppercase;border:1.5px solid currentColor;
}
.scard:nth-child(1) .scard-tag{color:darken(#C8F135,30%);background:rgba(200,241,53,0.2);border-color:#9ABF1A;}
.scard:nth-child(2) .scard-tag{color:var(--coral);background:rgba(255,92,58,0.12);border-color:var(--coral);}
.scard:nth-child(3) .scard-tag{color:#1A7FA5;background:rgba(184,232,255,0.3);border-color:#5BC4E8;}
.scard:nth-child(4) .scard-tag{color:#8A6A00;background:rgba(255,224,69,0.25);border-color:#C9A800;}
.scard:nth-child(5) .scard-tag{color:#A0255A;background:rgba(255,179,209,0.3);border-color:#E06090;}
.scard:nth-child(6) .scard-tag{color:#1A7FA5;background:rgba(184,232,255,0.3);border-color:#5BC4E8;}
.scard:nth-child(7) .scard-tag{color:var(--violet);background:rgba(107,63,255,0.12);border-color:var(--violet);}

/* ── CLIENTS ── */
#clients{
  background:var(--cream);
  border-top:2.5px solid var(--navy);
  border-bottom:2.5px solid var(--navy);
}
.client-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1rem;margin-top:2rem;
}
.client-pill{
  background:var(--white);
  border:2.5px solid var(--navy);
  border-radius:16px;
  padding:1rem 1.1rem;
  text-align:center;
  font-family:var(--ff);
  font-size:0.95rem;
  font-weight:800;
  color:var(--navy);
  box-shadow:4px 4px 0 var(--navy);
  transition:transform .2s,box-shadow .2s;
}
.client-pill:hover{
  transform:translate(-3px,-3px) rotate(-1deg);
  box-shadow:7px 7px 0 var(--navy);
}
.feedback-band{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1rem;margin-top:1.5rem;
}
.feedback-stat{
  background:var(--navy);
  border:2.5px solid var(--navy);
  border-radius:18px;
  padding:1.25rem 1rem;
  text-align:center;
  box-shadow:4px 4px 0 rgba(13,15,26,0.22);
}
.feedback-stat strong{
  display:block;
  font-family:var(--ff);
  font-size:2rem;
  font-weight:800;
  color:var(--lime);
  line-height:1;
}
.feedback-stat span{
  display:block;
  margin-top:0.55rem;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.78);
  line-height:1.45;
}

/* ── WHY US ── */
#about{background:var(--cream);}
.why-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;margin-top:3rem;}

.fun-list{list-style:none;display:flex;flex-direction:column;gap:1rem;}
.fun-list li{
  display:flex;align-items:flex-start;gap:14px;
  background:var(--white);border:2.5px solid var(--navy);
  border-radius:14px;padding:1rem 1.25rem;
  font-size:0.92rem;font-weight:500;color:var(--navy);
  box-shadow:4px 4px 0 var(--navy);
  transition:transform .2s,box-shadow .2s;
}
.fun-list li:hover{transform:translate(-3px,-3px);box-shadow:7px 7px 0 var(--navy);}
.fun-list .li-icon{
  width:32px;height:32px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;flex-shrink:0;border:2px solid var(--navy);
}
.fun-list li:nth-child(1) .li-icon{background:var(--lime);}
.fun-list li:nth-child(2) .li-icon{background:var(--sky);}
.fun-list li:nth-child(3) .li-icon{background:var(--pink);}
.fun-list li:nth-child(4) .li-icon{background:var(--yellow);}
.fun-list li:nth-child(5) .li-icon{background:var(--coral);}

.why-right{position:relative;}
.big-card-stack{position:relative;height:420px;}
.bcard{
  position:absolute;border:2.5px solid var(--navy);border-radius:20px;padding:1.75rem;
  box-shadow:6px 6px 0 var(--navy);
}
.bcard-back{
  background:var(--violet);color:var(--white);
  width:280px;top:30px;right:0;
  transform:rotate(4deg);
}
.bcard-mid{
  background:var(--yellow);color:var(--navy);
  width:280px;top:60px;left:0;
  transform:rotate(-3deg);
  animation:cardWobble 5s ease-in-out infinite;
}
.bcard-front{
  background:var(--white);
  width:280px;top:90px;left:40px;
  animation:cardWobble2 5s ease-in-out infinite;
}
@keyframes cardWobble{0%,100%{transform:rotate(-3deg)}50%{transform:rotate(-1.5deg)}}
@keyframes cardWobble2{0%,100%{transform:rotate(1deg)}50%{transform:rotate(2.5deg)}}
.bcard .card-label{font-size:0.7rem;font-weight:800;text-transform:uppercase;letter-spacing:0.1em;opacity:0.7;margin-bottom:0.5rem;}
.bcard .card-num{font-family:var(--ff);font-size:2.4rem;font-weight:800;line-height:1;}
.bcard .card-desc{font-size:0.82rem;margin-top:0.4rem;opacity:0.8;font-weight:500;}

/* bar mini chart in front card */
.mini-bars{display:flex;align-items:flex-end;gap:6px;height:50px;margin-top:1rem;}
.mini-bar{
  flex:1;border-radius:4px 4px 0 0;
  border:2px solid var(--navy);
  transition:height .3s;
}

/* ── PROCESS ── */
#process{
  background:var(--lime);
  border-top:2.5px solid var(--navy);border-bottom:2.5px solid var(--navy);
}
.process-track{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;margin-top:3rem;
  border:2.5px solid var(--navy);border-radius:20px;overflow:hidden;
}
.pstep{
  padding:2rem 1.5rem;
  border-right:2.5px solid var(--navy);
  transition:background .2s;
}
.pstep:last-child{border-right:none;}
.pstep:hover{background:var(--navy);}
.pstep:hover .pstep-num{background:var(--lime);color:var(--navy);border-color:var(--lime);}
.pstep:hover h4,.pstep:hover p{color:var(--white);}
.pstep-num{
  width:44px;height:44px;border-radius:50%;
  background:var(--navy);color:var(--lime);
  border:2.5px solid var(--navy);
  font-family:var(--ff);font-size:1rem;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;transition:all .2s;
}
.pstep h4{font-family:var(--ff);font-size:1.05rem;font-weight:800;margin-bottom:0.5rem;transition:color .2s;}
.pstep p{font-size:0.83rem;color:#444;line-height:1.6;font-weight:500;transition:color .2s;}
.pstep .step-emoji{font-size:1.5rem;margin-bottom:0.75rem;display:block;}

/* ── TESTIMONIALS ── */
#testimonials{background:var(--white);}
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:3rem;}
.tcard2{
  border:2.5px solid var(--navy);border-radius:20px;padding:1.75rem;
  box-shadow:5px 5px 0 var(--navy);
  transition:transform .2s,box-shadow .2s;
}
.tcard2:nth-child(1){background:var(--sky);}
.tcard2:nth-child(2){background:var(--pink);}
.tcard2:nth-child(3){background:var(--yellow);}
.tcard2:hover{transform:translate(-4px,-4px);box-shadow:9px 9px 0 var(--navy);}
.tcard2 .stars2{font-size:1rem;letter-spacing:2px;margin-bottom:0.75rem;}
.tcard2 blockquote{font-size:0.9rem;line-height:1.75;color:var(--navy);font-weight:500;margin-bottom:1.25rem;}
.t-author{display:flex;align-items:center;gap:10px;}
.t-avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--navy);color:var(--lime);
  border:2.5px solid var(--navy);
  font-family:var(--ff);font-size:0.8rem;font-weight:800;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.t-name{font-weight:700;font-size:0.88rem;color:var(--navy);}
.t-role{font-size:0.77rem;color:#555;}
.feedback-quotes{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1rem;margin-top:1.5rem;
}
.fquote{
  background:var(--cream);
  border:2.5px dashed var(--navy);
  border-radius:18px;
  padding:1.25rem 1.3rem;
}
.fquote strong{
  display:block;
  font-family:var(--ff);
  font-size:0.95rem;
  font-weight:800;
  color:var(--coral);
  margin-bottom:0.55rem;
}
.fquote p{
  font-size:0.86rem;
  line-height:1.7;
  color:var(--navy);
  font-weight:500;
}

/* ── CTA ── */
.cta-section{
  background:var(--coral);
  border-top:2.5px solid var(--navy);border-bottom:2.5px solid var(--navy);
  padding:6rem 4%;text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'🦊';font-size:12rem;position:absolute;
  opacity:0.06;top:-40px;right:-30px;transform:rotate(15deg);
  pointer-events:none;
}
.cta-section h2{
  font-family:var(--ff);font-size:clamp(2.5rem,5vw,4rem);
  font-weight:800;color:var(--white);line-height:1.1;margin-bottom:1rem;
}
.cta-section p{font-size:1.05rem;color:rgba(255,255,255,0.8);max-width:500px;margin:0 auto 2.5rem;line-height:1.75;font-weight:500;}
.btn-cta{
  padding:16px 38px;border-radius:14px;
  background:var(--navy);color:var(--lime);
  font-family:var(--ff);font-size:1.1rem;font-weight:800;
  text-decoration:none;border:2.5px solid var(--navy);
  box-shadow:5px 5px 0 rgba(0,0,0,0.25);
  display:inline-block;letter-spacing:0.02em;
  transition:transform .15s,box-shadow .15s;cursor:none;
}
.btn-cta:hover{transform:translate(-4px,-4px);box-shadow:9px 9px 0 rgba(0,0,0,0.2);}

/* ── CONTACT ── */
#contact{background:var(--cream);}
.contact-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;margin-top:3rem;align-items:start;}
.contact-left h3{font-family:var(--ff);font-size:1.6rem;font-weight:800;color:var(--navy);margin-bottom:1rem;}
.contact-left p{font-size:0.92rem;color:#4A4A5A;line-height:1.75;font-weight:500;margin-bottom:2rem;}
.contact-items{display:flex;flex-direction:column;gap:1rem;}
.citem{
  display:flex;gap:12px;align-items:center;
  background:var(--white);border:2.5px solid var(--navy);
  border-radius:12px;padding:12px 16px;
  box-shadow:4px 4px 0 var(--navy);font-size:0.88rem;font-weight:600;
}
.citem-dot{
  width:32px;height:32px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;border:2px solid var(--navy);flex-shrink:0;
}

.cfrom{
  background:var(--white);border:2.5px solid var(--navy);
  border-radius:20px;padding:2.5rem;
  box-shadow:8px 8px 0 var(--navy);
}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.ffield{display:flex;flex-direction:column;gap:6px;margin-bottom:1.2rem;}
.ffield label{font-size:0.82rem;font-weight:700;color:var(--navy);letter-spacing:0.02em;}
.ffield input,.ffield select,.ffield textarea{
  padding:11px 14px;border-radius:10px;
  border:2.5px solid var(--navy);background:var(--cream);
  font-family:var(--fs);font-size:0.9rem;color:var(--navy);font-weight:500;
  outline:none;width:100%;resize:vertical;
  transition:border-color .2s,box-shadow .2s;
}
.ffield input:focus,.ffield select:focus,.ffield textarea:focus{
  border-color:var(--violet);box-shadow:3px 3px 0 var(--violet);
}
.ffield textarea{min-height:110px;}
.btn-submit{
  width:100%;padding:14px;border-radius:12px;
  background:var(--navy);color:var(--lime);
  font-family:var(--ff);font-size:1.1rem;font-weight:800;
  border:2.5px solid var(--navy);cursor:none;
  box-shadow:5px 5px 0 var(--coral);
  transition:transform .15s,box-shadow .15s;letter-spacing:0.02em;
}
.btn-submit:hover{transform:translate(-3px,-3px);box-shadow:8px 8px 0 var(--coral);}

/* ── FOOTER ── */
footer{
  background:var(--navy);color:var(--white);
  padding:4rem 4% 2rem;
  border-top:2.5px solid var(--lime);
}
.footer-inner{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.foot-brand .foot-logo{
  font-family:var(--ff);font-size:1.5rem;font-weight:800;
  margin-bottom:0.75rem;display:flex;align-items:center;gap:8px;
}
.foot-logo em{color:var(--coral);font-style:normal;}
.foot-logo .fox{
  display:inline-flex;width:38px;height:38px;background:var(--white);
  border-radius:8px;border:2px solid var(--white);
  align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;
}
.foot-logo .fox img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.foot-brand p{font-size:0.85rem;color:rgba(255,255,255,0.5);line-height:1.7;max-width:240px;font-weight:500;}
.socials{display:flex;gap:8px;margin-top:1.25rem;}
.social-btn{
  width:34px;height:34px;border-radius:8px;
  background:rgba(255,255,255,0.1);border:1.5px solid rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:0.9rem;text-decoration:none;
  transition:background .2s,transform .2s;
}
.social-btn:hover{background:var(--lime);transform:translateY(-2px);}
.foot-col h4{font-size:0.78rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.4);margin-bottom:1rem;}
.foot-col ul{list-style:none;}
.foot-col ul li{margin-bottom:0.6rem;}
.foot-col ul li a{font-size:0.87rem;color:rgba(255,255,255,0.65);text-decoration:none;font-weight:500;transition:color .2s;}
.foot-col ul li a:hover{color:var(--lime);}
.foot-bottom{
  max-width:1100px;margin:2rem auto 0;
  display:flex;justify-content:space-between;
  font-size:0.8rem;color:rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ── */
.pop-in{opacity:0;transform:translateY(28px) scale(0.97);transition:opacity .55s ease,transform .55s ease;}
.pop-in.visible{opacity:1;transform:translateY(0) scale(1);}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .hero-inner,.why-layout,.contact-layout,.footer-inner{grid-template-columns:1fr;}
  .hero-right{display:none;}
  .services-grid,.tgrid,.client-grid,.feedback-band,.feedback-quotes{grid-template-columns:1fr 1fr;}
  .process-track{grid-template-columns:1fr 1fr;}
  .pstep:nth-child(2){border-right:none;}
  .pstep{border-bottom:2.5px solid var(--navy);}
  .pstep:last-child{border-bottom:none;}
  .footer-inner{grid-template-columns:1fr 1fr;}
  .ticker-row{gap:2rem;}
}
@media(max-width:600px){
  .services-grid,.tgrid,.process-track,.client-grid,.feedback-band,.feedback-quotes{grid-template-columns:1fr;}
  .frow{grid-template-columns:1fr;}
  .nav-links{display:none;}
}
