@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap");

:root{
  color-scheme: dark;
  --bg:#0b0c0f;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);
  --panel: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --max: 1280px;
  --accent: #ff7f32;
  --accent-2: #ffb347;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Syne", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #050607;
  color: #f5f5f7;
  overflow-x:hidden;
  overflow-y:auto;
}
/* subtle noise overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.085;
  mix-blend-mode: overlay;
  background-image:url("Image/Main BG.jpg");
  z-index:0;
}
a{ color:inherit; text-decoration:none; }
.muted{ color: var(--muted); }
.container{ max-width:var(--max); margin:0 auto; padding:0 20px; position:relative; z-index:1; }
.row{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* top nav */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: radial-gradient(80% 120% at 10% -10%, rgba(255,255,255,.04), transparent 45%), rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-inner{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:20px;
  padding:16px 0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  letter-spacing:.18px;
}
.brand-mark{
  height:56px;
  width:auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}
.brand-text{
  display:none;
  height:22px;
  width:auto;
}
.blog1-page .brand-text{
  display:block;
}
.nav-toggle{
  position:fixed;
  top:16px;
  right:16px;
  z-index:60;
  display:none;
  align-items:center;
  justify-content:center;
  width:auto;
  height:auto;
  padding: 0;
  border:0;
  border-radius:0;
  background: transparent;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  box-shadow: none;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.nav-toggle:hover{
  transform: translateY(-1px);
  background: transparent;
}
.navlinks{
  display:none;
  justify-content:center;
  gap:26px;
  font-size:14px;
  color:var(--muted);
}
.navlinks a{
  position:relative;
  padding:10px 0;
  transition: color .2s var(--ease);
}
.navlinks a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:6px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity:0;
  transform: scaleX(.6);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.navlinks a:hover,
.navlinks a.active{ color:#fff; }
.navlinks a:hover::after,
.navlinks a.active::after{
  opacity:1;
  transform: scaleX(1);
}
.mobile-logo{
  position:absolute;
  top:14px;
  left:50%;
  transform: translateX(-50%);
  z-index:55;
  width:100%;
  display:none;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.mobile-logo img{
  height:26px;
  width:auto;
}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(120deg, #ff7b2f 0%, #ffb347 40%, #0f6f74 100%);
  padding:10px 20px;
  border-radius:999px;
  font-size:14px;
  transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  user-select:none;
}
.pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(0,0,0,.45), 0 0 20px rgba(255,187,102,.45);
}
.nav-cta{
  color:#ffffff;
  font-weight:600;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.10);
}

/* hero */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 150px 0 120px;
  overflow:hidden;
  isolation:isolate;
}
.hero-backdrop{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(120deg, rgba(0,0,0,.48), rgba(0,0,0,.30)),
    radial-gradient(60% 70% at 18% 38%, rgba(255,126,50,.22), transparent 40%),
    radial-gradient(70% 80% at 78% 18%, rgba(72,108,255,.18), transparent 55%),
    url("Image/Main BG.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(75% 65% at 50% 60%, rgba(0,0,0,.08), rgba(0,0,0,.55));
  z-index:0;
}
.hero-body{
  position:relative;
  z-index:1;
  max-width: 1180px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.kicker{
  font-size:12px;
  letter-spacing:.22em;
  color:rgba(255,255,255,.68);
}
h1{
  margin:12px 0 0;
  font-size: clamp(52px, 7vw, 86px);
  line-height:1.05;
  font-weight:700;
  color:#fff;
  text-shadow: 0 12px 35px rgba(0,0,0,.45);
}
.shine{
  display:inline-block;
  background: linear-gradient(90deg, #ffffff, #f3f4fa 45%, #8c8f99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub{
  margin:12px 0 0;
  color: rgba(255,255,255,.86);
  max-width: 720px;
  line-height:1.6;
  text-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.cta{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
.btn{
  border-radius:999px;
  padding:13px 22px;
  font-size:15px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease), opacity .2s var(--ease), box-shadow .2s var(--ease);
  color:var(--text);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.btn:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }
.btn.primary{
  position:relative;
  overflow:hidden;
  background: linear-gradient(120deg, #ff7b2f 0%, #ffb347 40%, #0f6f74 100%);
  color:#fff;
  border:2px solid #1d1f23;
  font-weight:600;
  letter-spacing: .01em;
  padding:14px 30px;
  box-shadow:
    0 14px 40px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .24s var(--ease), box-shadow .28s var(--ease), filter .24s var(--ease), background-color .28s var(--ease);
}
.btn.primary:hover{ opacity:.96; transform: translateY(-1px); filter: brightness(1.02); }
.btn.primary.hero-cta{
  min-width: 220px;
  justify-content:center;
  font-size:16px;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.10);
  display:inline-flex;
  align-items:center;
}
.btn.primary.hero-cta:hover{
  box-shadow:
    0 24px 70px rgba(0,0,0,.55),
    0 0 28px rgba(255,187,102,.45);
  filter: brightness(1.05);
}

.panel{
  border:1px solid var(--border);
  background: var(--panel);
  border-radius: 18px;
}

/* sections */
section{
  padding:34px 0;
  scroll-margin-top: 120px;
}
.portfolio{
  padding: 40px 0 20px;
}
.container.portfolio{
  max-width: 100vw;
  padding: 0 10px;
}
.portfolio-head{
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-left:150px;
  padding-right:150px;
}
.portfolio-head h2{
  margin:0;
  font-size: clamp(26px, 3vw, 42px);
  font-weight:600;
  letter-spacing:.01em;
}
.portfolio-window{
  margin-top:28px;
  overflow:hidden;
  border-radius: 46px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  padding: 18px 6px;
  display:flex;
  justify-content:center;
}
.portfolio-track{
  display:flex;
  gap:20px;
  width:max-content;
  min-width:max-content;
  flex: 0 0 auto;
  transform: translateX(var(--pf-shift, 0));
  transition: transform .35s cubic-bezier(.22,.8,.24,1);
  margin:0 auto;
}
.portfolio-card{
  position:relative;
  width: clamp(260px, 32vw, 380px);
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  min-height: 260px;
  border-radius: 36px;
  overflow:hidden;
  background:#0f1012;
  box-shadow: 0 16px 44px rgba(0,0,0,.35);
  transform: scale(.82);
  opacity:0;
  transition:
    transform .7s cubic-bezier(.22,.8,.24,1),
    opacity .7s cubic-bezier(.22,.8,.24,1),
    box-shadow .7s cubic-bezier(.22,.8,.24,1);
}
.portfolio-card::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:40%;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.85));
  pointer-events:none;
}
.portfolio-card.in{
  transform: scale(1);
  opacity:1;
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}
.portfolio-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .6s cubic-bezier(.22,.8,.24,1), filter .6s cubic-bezier(.22,.8,.24,1);
}
.portfolio-card:hover video{
  transform: scale(1.05);
  filter: saturate(1.05);
}
.portfolio-meta{
  position:absolute;
  left:16px; bottom:16px; right:16px;
  color:#fff;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.portfolio-meta .title{
  font-size:18px;
  font-weight:600;
}
.portfolio-meta .tag{
  margin-top:4px;
  font-size:13px;
  color: rgba(255,255,255,.78);
}
.showreel-section{
  padding:0;
  background:#050607;
  overflow:hidden;
}
.showreel-section .container{
  max-width: 100vw;
  padding:0;
  position:relative;
  min-height: min(100vh, 2160px);
  display:flex;
  align-items:center;
  justify-content:center;
}
.showreel-title{
  position:absolute;
  top:6vh;
  left:0; right:0;
  text-align:center;
  font-size: clamp(96px, 15vw, 260px);
  letter-spacing:0.08em;
  line-height:.9;
  font-weight:700;
  text-transform:uppercase;
  background: linear-gradient(90deg, #ffffff, #8d929c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin:0;
  z-index:0;
  pointer-events:none;
}
.showreel-frame{
  position:relative;
  z-index:1;
  width:100vw;
  height: min(100vh, 2160px);
  max-width: 3840px;
  max-height: 2160px;
  margin:0 auto;
  border-radius: 30px;
  overflow:hidden;
  background:#0c0c0f;
  box-shadow: 0 40px 120px rgba(0,0,0,.65);
  transform-origin:center;
  transform: scale(var(--sr-scale, .35));
  transition: transform .35s cubic-bezier(.22,.8,.24,1), box-shadow .6s cubic-bezier(.22,.8,.24,1), filter .6s cubic-bezier(.22,.8,.24,1);
  will-change: transform, filter;
}
.showreel-frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  background:#000;
  display:block;
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
}
.section-head h2{
  margin:0;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight:650;
}
.section-head p{
  margin:10px 0 0;
  color:var(--muted);
}
.partners-head{
  justify-content:center;
}
.partners-head h2{
  font-size: clamp(30px, 4vw, 48px);
  font-weight:600;
  letter-spacing: .02em;
}
.link{
  font-size:14px;
  color:var(--muted);
  white-space:nowrap;
}
.link:hover{ color:var(--text); }

/* marquee */
.marquee-wrap{
  margin-top:24px;
  overflow:hidden;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.marquee-wrap.partners{
  padding:10px 4px;
}
.marquee{
  display:flex;
  gap:32px;
  padding:18px 24px;
  white-space:nowrap;
  animation: marquee 16s linear infinite;
}
.logo{
  color:rgba(255,255,255,.78);
  font-size:16px;
  letter-spacing:.06em;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 26px;
  border-right:1px solid rgba(255,255,255,.08);
}
.logo:last-child{ border-right:none; }
@keyframes marquee { from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* cards */
/* about + stats */
.grid2{ display:grid; grid-template-columns:1fr; gap:14px; }
.box{ padding:18px; border-radius: 18px; border:1px solid var(--border); background: var(--panel); }
.box h3{ margin:0; font-size:20px; font-weight:650; }
.box p{ margin:10px 0 0; color:var(--muted); line-height:1.55; }
.stats{ margin-top:14px; display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.stat{
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  padding:12px 12px;
}
.stat .v{ font-size:18px; font-weight:650; }
.stat .l{ font-size:12px; color:var(--muted); margin-top:2px; }

/* services */
.services{
  padding: 60px 0 40px;
  max-width: 1360px;
  padding-left: 24px;
  padding-right: 24px;
}
.services-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:24px;
}
.services-intro{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.services-intro h2{
  margin:0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight:600;
  line-height:1.2;
}
.services-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.service-card{
  position:relative;
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.12);
  background: radial-gradient(120% 140% at 20% 20%, rgba(255,255,255,.05), rgba(255,255,255,.02) 50%, rgba(255,255,255,.01) 70%, transparent 80%), rgba(0,0,0,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  overflow:hidden;
  padding: 30px 28px 32px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
}
.service-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.05);
  pointer-events:none;
}
.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.20);
  background: radial-gradient(140% 160% at 30% 30%, rgba(255,255,255,.07), rgba(255,255,255,.03) 55%, rgba(255,255,255,.01) 70%, transparent 80%), rgba(0,0,0,.38);
}
.service-content h3{
  margin:0;
  font-size:20px;
  font-weight:600;
  letter-spacing:.01em;
}
.service-content p{
  margin:12px 0 16px;
  color: rgba(255,255,255,.78);
  line-height:1.6;
}
.service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  text-decoration:none;
  transition: background-color .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.service-link .icon{
  width:26px;
  height:26px;
  border-radius:50%;
  border:2px solid var(--accent);
  color: var(--accent);
  display:grid;
  place-items:center;
  font-size:12px;
  background: rgba(255,123,47,.12);
  transform: rotate(0deg);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.service-link:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}
.service-link:hover .icon{
  transform: rotate(90deg) translateY(1px);
  background: rgba(255,123,47,.18);
  border-color: var(--accent-2);
}

/* industries */
.industries{
  padding: 50px 0 30px;
}
.industries-inner{
  max-width: 2000px;
  padding: 0 20px;
}
.industries-head{
  text-align:center;
  margin-bottom: 18px;
}
.industries-head h2{
  margin:0;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight:600;
}
.industries-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.industry-card{
  position:relative;
  border-radius: 26px;
  overflow:hidden;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transform: scale(.97);
  transition: transform .4s cubic-bezier(.22,.8,.24,1), box-shadow .4s cubic-bezier(.22,.8,.24,1);
  border:1px solid rgba(255,255,255,.08);
  isolation:isolate;
}
.industry-card:nth-child(1){ grid-column: span 2; min-height: 320px; }
.industry-card:nth-child(2){ grid-column: span 1; }
.industry-card:nth-child(3){ grid-column: span 1; min-height: 360px; }
.industry-card:nth-child(4){ grid-column: span 1; min-height: 280px; }
.industry-card:nth-child(5){ grid-column: span 1; min-height: 280px; }
.industry-card:nth-child(6){ grid-column: span 2; min-height: 320px; }
.industry-card:nth-child(7){ grid-column: span 1; }
.industry-card::after{
  content:"";
  position:absolute;
  inset:-30%;
  background: linear-gradient(115deg, rgba(255,255,255,.28), rgba(255,255,255,.10), rgba(255,255,255,0));
  transform: translateX(-180%) rotate(12deg);
  opacity:0;
  transition: transform 3s cubic-bezier(.18,.8,.18,1), opacity 3s cubic-bezier(.18,.8,.18,1);
  pointer-events:none;
  mix-blend-mode: screen;
  z-index:1;
}
.industry-card:hover{
  transform: scale(1.04);
  box-shadow: 0 32px 90px rgba(0,0,0,.6);
  z-index:2;
}
.industry-card .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55));
  transition: background-color .35s var(--ease), opacity .35s var(--ease);
}
.industry-card .title{
  position:absolute;
  top:14px; left:14px; right:14px;
  color:#fff;
  font-weight:600;
  font-size:30px;
  text-shadow: 0 8px 20px rgba(0,0,0,.45);
  transition: transform .35s var(--ease), opacity .35s var(--ease), filter .35s var(--ease), color .25s var(--ease);
}
.industry-card p{
  position:absolute;
  left:14px; right:14px; bottom:14px;
  margin:0;
  color: rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.45;
  text-shadow: 0 8px 20px rgba(0,0,0,.45);
  opacity:0;
  transform: translateY(12px);
  transition: opacity 2s var(--ease), transform 2s var(--ease), filter 2s var(--ease);
}
.industries-cta{
  margin-top:24px;
  display:flex;
  justify-content:center;
}

/* testimonials */
.testimonials{
  position:relative;
  padding: 90px 0 80px;
  background:#050607;
  overflow:visible;
}
.testimonials::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(35% 45% at 20% 40%, rgba(255,255,255,.08), transparent 55%), radial-gradient(40% 50% at 75% 30%, rgba(255,255,255,.06), transparent 60%);
  opacity:.35;
  pointer-events:none;
}
.testimonials-head{
  text-align:center;
  max-width: 880px;
  margin: 0 auto 14px;
  z-index:1;
}
.testimonials-head h2{
  margin:8px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
}
.testimonials-head p{
  margin:0;
  color: var(--muted);
  line-height:1.55;
}
.testimonial-stage{
  position:relative;
  max-width: 100vw;
  margin: 24px auto 0;
  padding: 12px 0 12px;
  isolation:isolate;
}
.testimonial-bg{
  position:absolute;
  inset:0 12px;
  border-radius: 36px;
  display:none;
}
.testimonial-slider{
  position:relative;
  overflow-x:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding: 28px 0 32px;
  cursor: grab;
  scroll-behavior:smooth;
  scroll-snap-type: x mandatory;
  z-index:1;
  user-select:none;
  -webkit-user-select:none;
  touch-action: pan-y;
  --side-gap: 0px;
}
.testimonial-slider:active{ cursor: grabbing; }
.testimonial-slider.dragging{
  scroll-behavior:auto;
  cursor: grabbing;
}
.testimonial-slider::-webkit-scrollbar{ display:none; }
.testimonial-track{
  display:flex;
  align-items:stretch;
  gap:40px;
  width:max-content;
  padding: 0 var(--side-gap, 0px) 6px;
}
.testimonial-card{
  position:relative;
  flex: 0 0 clamp(320px, 70vw, 980px);
  min-height: clamp(280px, 36vw, 460px);
  padding: clamp(26px, 3.8vw, 38px);
  border-radius: 32px;
  border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(120% 140% at 20% 20%, rgba(255,255,255,.05), rgba(255,255,255,.02) 45%, rgba(255,255,255,.01) 70%, transparent 78%), rgba(6,7,10,.7);
  color:#fff;
  box-shadow: 0 26px 70px rgba(0,0,0,.50);
  scroll-snap-align:center;
  scroll-snap-stop:always;
  transform: scale(1);
  filter: saturate(.92);
  transition:
    transform .55s cubic-bezier(.22,.8,.22,1),
    box-shadow .55s cubic-bezier(.22,.8,.22,1),
    border-color .55s cubic-bezier(.22,.8,.22,1),
    filter .55s cubic-bezier(.22,.8,.22,1),
    background-color .55s cubic-bezier(.22,.8,.22,1);
  overflow:hidden;
  isolation:isolate;
  user-select:none;
  will-change: transform, filter, box-shadow;
}
.testimonial-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius: 30px;
  border:1px solid rgba(255,255,255,.06);
  pointer-events:none;
  z-index:0;
}
.testimonial-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 32px;
  background: linear-gradient(115deg, rgba(255,255,255,.08), rgba(255,255,255,.4), rgba(255,255,255,0) 60%);
  transform: translateX(-120%);
  opacity:0;
  pointer-events:none;
}
.testimonial-card:hover::after{
  opacity:.55;
  animation: sweep 1.1s ease-out forwards;
}
.testimonial-card:hover{
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  border-color: rgba(255,255,255,.18);
  filter: saturate(1);
}
.testimonial-card.active{
  transform: scale(1.02);
  box-shadow:
    0 28px 90px rgba(0,0,0,.62),
    0 0 0 1px rgba(255,255,255,.10),
    0 0 32px rgba(255,189,120,.16);
  border-color: rgba(255,255,255,.18);
  background: radial-gradient(120% 140% at 50% 40%, rgba(255,255,255,.08), rgba(255,255,255,.02) 55%, rgba(255,255,255,.01) 75%, transparent 88%), rgba(6,7,10,.82);
}
.testimonial-slider.dragging .testimonial-card{
  transition: none;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  transform: scale(1);
}
.t-logo{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  background: radial-gradient(circle at 30% 30%, #ffffff, #cbd2ff 40%, rgba(255,255,255,0));
  color:#0b0c0f;
  font-weight:700;
  font-size:18px;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4), 0 10px 26px rgba(0,0,0,.35);
  overflow:hidden;
}
.t-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.t-title{
  font-size: clamp(24px, 3.6vw, 36px);
  line-height:1.2;
  font-weight:600;
  margin: 0 0 14px;
}
.t-quote{
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing:-2px;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
}
.t-footer{
  display:flex;
  flex-direction:column;
  gap:4px;
  color: rgba(255,255,255,.8);
}
.t-name{
  font-weight:650;
  letter-spacing:.01em;
  text-transform:uppercase;
  font-size:14px;
}
.t-role{
  font-size:12px;
  color: var(--muted);
  letter-spacing:.03em;
}
.testimonial-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.55);
  color:#fff;
  font-size:28px;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.testimonial-nav:hover{
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(255,255,255,.32);
  background: rgba(0,0,0,.75);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}
.testimonial-nav.prev{ left: 32px; }
.testimonial-nav.next{ right: 32px; }

@keyframes sweep{
  to{ transform: translateX(130%); }
}

/* faq */
.faqs{
  padding: 70px 0 60px;
  background:#050607;
}
.faqs .container{
  max-width: var(--max);
  margin:0 auto;
  padding:0 20px;
}
.faq-head{
  text-align:center;
  margin-bottom: 18px;
}
.faq-head h2{
  margin:6px 0 0;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight:600;
}
.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width: 1060px;
  margin: 0 auto;
}
.faq-item{
  position:relative;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.08);
  background: radial-gradient(140% 160% at 30% 10%, rgba(255,255,255,.05), rgba(255,255,255,.01) 55%, transparent 70%), rgba(0,0,0,.45);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  overflow:hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.faq-item.open{
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 28px 80px rgba(0,0,0,.58);
  transform: translateY(-2px);
}
.faq-item:hover{
  border-color: rgba(255,255,255,.16);
  box-shadow:
    0 26px 78px rgba(0,0,0,.58),
    inset 0 0 30px rgba(255,255,255,.08);
}
.faq-toggle{
  width:100%;
  padding: 18px 18px;
  background: transparent;
  border:none;
  color:#fff;
  font-size:17px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  text-align:left;
}
.faq-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  font-size:14px;
}
.faq-item.open .faq-icon{
  transform: rotate(180deg);
  color: var(--accent);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}
.faq-body{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s var(--ease);
  padding: 0 18px 0;
  color: rgba(255,255,255,.78);
}
.faq-item.open .faq-body{
  padding-bottom: 16px;
}
.faq-body p{
  margin: 0;
  line-height:1.55;
}

@media (max-width: 640px){
  .faqs{
    padding: 50px 0;
  }
  .faq-head h2{
    font-size: clamp(22px, 6vw, 28px);
  }
  .faq-list{
    gap:10px;
    max-width: 540px;
  }
  .faq-item{
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
  }
  .faq-toggle{
    padding: 14px 16px;
    font-size:15px;
  }
  .faq-icon{
    width:28px;
    height:28px;
    font-size:12px;
  }
  .faq-body{
    padding: 0 16px 0;
  }
  .faq-item.open .faq-body{
    padding-bottom: 12px;
  }
  .faq-body p{
    line-height:1.5;
  }
}

/* blogs */
.blogs{
  padding: 70px 0 70px;
  background:#050607;
}
.blogs-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
  margin-bottom:26px;
}
.blogs-head h2{
  margin:0;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight:650;
}
.blog-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:22px;
}
.blog-grid::-webkit-scrollbar{ display:none; }
.blog-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  display:flex;
  flex-direction:column;
}
.blog-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 28px 80px rgba(0,0,0,.58);
  background: rgba(255,255,255,.04);
}
.blog-media{
  position:relative;
  flex: 0 0 auto;
  height: clamp(220px, 26vw, 320px);
  background-size: cover;
  background-position: center;
  transition: transform .45s var(--ease), filter .45s var(--ease), opacity .45s var(--ease);
  filter: grayscale(.15);
}
.blog-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));
}
.blog-media::before{
  content:"Read Blog";
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:14px;
  letter-spacing:.08em;
  color:#f3f4f8;
  text-transform:uppercase;
  background: radial-gradient(70% 70% at 50% 50%, rgba(0,0,0,.58), rgba(0,0,0,.65));
  opacity:0;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.blog-card:hover .blog-media{
  transform: scale(1.08);
  filter: grayscale(.5) saturate(.85);
}
.blog-card:hover .blog-media::before{
  opacity:1;
}
.blog-meta{
  padding: 16px 18px 18px;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.blog-desc{
  margin: 4px 0 0;
  color: rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.5;
}
.blog-tag{
  font-size:12px;
  letter-spacing:.18em;
  color: var(--accent);
}
.blog-card h3{
  margin:0;
  font-size: 17px;
  line-height:1.45;
  font-weight:600;
}
.blog-author{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color: var(--muted);
}
.blog-author .dot{
  width:4px; height:4px;
  border-radius:50%;
  background: rgba(255,255,255,.35);
}

/* services marquee */
.services-marquee{
  padding: 30px 0 10px;
  background:#050607;
  overflow:hidden;
  position:relative;
}
.marquee-line{
  position:relative;
  width:100%;
  overflow:hidden;
}
.marquee-track{
  display:inline-flex;
  align-items:center;
  gap:24px;
  white-space: nowrap;
  animation: marquee-line 26s linear infinite;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight:600;
  color:#e2e2e5;
  letter-spacing:.01em;
}
.marquee-track .dot{
  width:12px; height:12px;
  border-radius:50%;
  background: #ff2f2f;
  display:inline-block;
  box-shadow: 0 0 18px rgba(255,47,47,.45);
}
.marquee-track span{
  display:inline-flex;
  align-items:center;
  background: linear-gradient(90deg, rgba(255,255,255,.58), rgba(255,255,255,.28), rgba(255,255,255,.58));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity:.88;
}
.collab{
  padding: 90px 0 24px;
  background:#050607;
  margin-bottom:0;
}
.collab .container{
  max-width: min(1500px, 96vw);
}
.collab-hero{
  border-radius: 30px;
  padding: clamp(52px, 7vw, 90px) clamp(40px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(255,123,47,.35), rgba(12,15,20,.75)),
    radial-gradient(50% 60% at 80% 30%, rgba(255,255,255,.05), transparent 60%),
    rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.collab-body{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:16px;
}
.collab-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:6px;
}
.collab-logo .brand-mark{
  display:block;
  height:86px;
  width:auto;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.45));
}
.collab-logo .brand-text{
  display:none;
  height:28px;
  width:auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
.collab-title{
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight:700;
  line-height:1.2;
}
.collab-sub{
  margin:0;
  color: var(--muted);
  font-size:16px;
}
.collab-btn{
  margin-top:8px;
  padding: 16px 40px;
  font-size:17px;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.10);
}
.collab .footer-panels{
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:18px;
}
.collab-card{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 20px 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.collab-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.collab-heading{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
}
.collab-list{
  display:flex;
  flex-direction:column;
  gap:6px;
  color: rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.4;
}
.link-columns{
  display:grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap:10px 18px;
}
.link-col{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.link-col a{
  color: rgba(255,255,255,.82);
  font-size:14px;
  transition: color .2s var(--ease);
}
.link-col a:hover{
  color:#fff;
}
.marquee-preview{
  position:absolute;
  top:100%;
  left:0;
  width:120px;
  height:120px;
  border-radius:20px;
  overflow:hidden;
  pointer-events:none;
  background-size:cover;
  background-position:center;
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  opacity:0;
  transform: translate(-50%, 16px) scale(.9) rotate(15deg);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index:2;
}
@keyframes marquee-line{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* agency about */
.agency-about{
  padding: 90px 0 70px;
  background:
    linear-gradient(180deg, rgba(5,6,7,.86), rgba(5,6,7,.82)),
    url("Image/BGimage2.avif");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position:relative;
}
.agency-about::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 140px 1px, 1px 140px;
  opacity:.12;
  pointer-events:none;
}
.agency-container{
  max-width: 1680px;
  width:100%;
  position:relative;
  z-index:1;
}
.agency-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:32px;
  align-items:start;
}
.agency-title{
  margin:0;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight:400;
  text-align:center;
}
.agency-right{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width: 1320px;
  margin:0 auto;
  text-align:center;
}
.agency-lead{
  margin:0;
  color: rgba(255,255,255,.84);
  font-size: clamp(24px, 3.4vw, 38px);
  line-height:1.3;
  font-weight:300;
}
.agency-lead span{
  color:#fff;
  font-weight:600;
}
.agency-copy{
  margin:0;
  color: rgba(255,255,255,.68);
  font-size:15px;
  line-height:1.55;
  font-weight:300;
}
.agency-stats{
  display:grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap:22px;
  margin-top:30px;
}
.stat-card{
  border:none;
  border-radius: 0;
  padding:12px 10px 12px;
  background: transparent;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.stat-card:hover{
  transform: translateY(-2px);
  box-shadow: none;
}
.stat-card .label{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(255,255,255,.55);
  text-align:center;
}
.stat-card .value{
  margin-top:8px;
  font-size: clamp(56px, 8vw, 86px);
  font-weight:700;
  color:rgba(255,255,255,.65);
  text-align:center;
}
.stat-card:hover .value{ color: var(--accent); }
.agency-cta{
  align-self:center;
  margin-top:20px;
  padding:14px 30px;
}

/* values ladder */
.values-ladder{
  position:relative;
  padding: 90px 0 110px;
  background:#050607;
  overflow:hidden;
}
.values-ladder::before{
  content:"";
  position:absolute;
  inset:0;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,.05) 0px,
    rgba(255,255,255,.05) 1px,
    transparent 1px,
    transparent 16%
  );
  opacity:.14;
  pointer-events:none;
}
.values-ladder::after{
  content:"";
  position:absolute;
  top:60px;
  bottom:60px;
  left:50%;
  width:1px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  transform: translateX(-0.5px);
  pointer-events:none;
}
.values-ladder-inner{
  max-width: 1320px;
  margin:0 auto;
  padding:0 22px;
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:46px;
}
.values-ladder-head h2{
  margin:0;
  text-align:center;
  font-size: clamp(26px, 3vw, 32px);
  font-weight:500;
  letter-spacing:.01em;
}
.values-ladder-list{
  display:flex;
  flex-direction:column;
  gap:60px;
}
.value-line{
  position:relative;
  min-height:160px;
  padding:12px 0;
}
.value-line::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width: clamp(120px, 24vw, 320px);
  height:1px;
  background: rgba(255,255,255,.18);
  transform: translate(-100%, -50%);
  pointer-events:none;
}
.value-line .value-num{
  position:absolute;
  top:-20px;
  left: clamp(12px, 14vw, 220px);
  font-size:160px;
  font-weight:800;
  color: rgba(255,255,255,.07);
  line-height:1;
  pointer-events:none;
}
.value-line.right .value-num{
  left:auto;
  right: clamp(12px, 14vw, 220px);
}
.value-line.right::after{
  transform: translate(0, -50%);
}
.value-body{
  max-width: 520px;
  position:relative;
}
.value-body h3{
  margin:0 0 10px;
  font-size:22px;
  font-weight:500;
}
.value-body p{
  margin:0;
  color: rgba(255,255,255,.70);
  line-height:1.6;
}
.value-line.right .value-body{
  margin-left:auto;
  text-align:right;
}
@media (max-width: 900px){
  .values-ladder{ padding: 70px 0 80px; }
  .values-ladder-list{ gap:38px; }
  .value-line{ min-height:auto; }
  .values-ladder::after,
  .value-line::after{ display:none; }
  .value-line .value-num,
  .value-line.right .value-num{
    font-size:90px;
    left:16px;
    right:auto;
    top:-8px;
  }
  .value-line.right .value-body{
    margin-left:0;
    text-align:left;
  }
}

.team-feature{
  background:#050607;
  padding: 70px 0 110px;
}
.team-wrap{
  max-width: 1500px;
  margin:0 auto;
  padding:0 24px;
}
.team-layout{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 60px);
  align-items:center;
}
.team-kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.65);
  display:flex;
  align-items:center;
  gap:12px;
}
.team-kicker::after{
  content:"";
  flex:1;
  height:1px;
  background: rgba(255,255,255,.18);
}
.team-headline{
  margin:14px 0 12px;
  font-size: clamp(42px, 6vw, 68px);
  line-height:1.05;
  font-weight:800;
}
.team-sub{
  margin:0;
  max-width: 640px;
  color: rgba(255,255,255,.75);
  line-height:1.6;
  font-size:15px;
}
.team-contacts{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.contact-item{
  display:grid;
  grid-template-columns: auto 1fr;
  gap:12px;
  align-items:center;
}
.contact-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#0b0c0f;
  display:grid;
  place-items:center;
  font-size:18px;
  font-weight:700;
}
.contact-label{
  font-size:13px;
  color: rgba(255,255,255,.6);
}
.contact-link{
  display:inline-block;
  margin-top:2px;
  font-size:16px;
  font-weight:700;
  color:#fff;
}
.contact-link:hover{ color: var(--accent, #ff7f32); }
.contact-btn{
  margin-top:6px;
  padding:12px 18px;
  font-size:15px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.contact-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
  filter: brightness(1.03);
}
.team-visual{
  position:relative;
  justify-self:end;
  width:100%;
  max-width:760px;
  border-radius:28px;
  overflow:hidden;
  background:#0b0c0f;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}
.team-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.team-mark{
  position:absolute;
  right:22px;
  bottom:22px;
  width:60px;
  height:60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  clip-path: polygon(0 20%, 60% 20%, 60% 0, 100% 0, 40% 80%, 0 80%);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.4));
}
@media (max-width: 980px){
  .team-layout{
    grid-template-columns:1fr;
  }
  .team-visual{
    justify-self:start;
    max-width: 520px;
  }
}

.brands-showcase{
  background:#050607;
  padding: 80px 0 90px;
}
.brands-wrap{
  max-width: 100vw;
  width:100vw;
  margin:0 calc(50% - 50vw);
  padding:0 32px;
  display:grid;
  gap:28px;
  text-align:center;
}
.brands-title{
  margin:0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight:500;
}
.brands-marquee{
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  padding:20px 24px;
}
.brands-track{
  display:flex;
  align-items:center;
  gap:40px;
  animation: brands-marquee 18s linear infinite;
  width:max-content;
}
.brand-logo{
  width:160px;
  height:80px;
  display:grid;
  place-items:center;
}
.brand-logo img{
  display:block;
  height:60px;
  width:auto;
  max-width:140px;
  object-fit:contain;
}

.how-we-work{
  background:#050607;
  padding: 70px 0 90px;
}
.how-card{
  margin:0 auto;
  max-width: 1500px;
  padding: 32px 26px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
}
.how-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:center;
}
.how-copy{
  display:grid;
  gap:14px;
}
.how-kicker{
  font-size:28px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(255,255,255,.7);
  font-weight:600;
}
.how-lead{
  margin:0;
  color: rgba(255,255,255,.74);
  line-height:1.55;
}
.how-headline{
  margin:2px 0 4px;
  font-size: clamp(16px, 2.6vw, 24px);
  line-height:1.2;
}
.how-headline span{
  color: rgba(255,255,255,.65);
  font-weight:500;
}
.how-copy p{
  margin:0;
  color: rgba(255,255,255,.72);
  line-height:1.6;
}
.how-visual{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0b0c0f;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.how-visual img,
.how-visual video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
@media (max-width: 1024px){
  .how-card{
    padding:24px 20px;
  }
  .how-grid{
    grid-template-columns:1fr;
  }
}

.why-us{
  background:#050607;
  padding: 60px 0 90px;
}
.why-card{
  max-width: 1500px;
  margin:0 auto;
  padding: 28px 22px 32px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  display:grid;
  gap:28px;
}
.why-top{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap:24px;
  align-items:center;
}
.why-media{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0b0c0f;
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}
.why-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.why-copy{
  display:grid;
  gap: 20px;
}
.why-kicker{
  font-size:28px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  color: rgba(255,255,255,.74);
}
.why-copy p{
  margin:0;
  color: rgba(255,255,255,.72);
  line-height:1.6;
}
.why-headline{
  margin:6px 0 2px;
  font-size: clamp(16px, 2.5vw, 24px);
  line-height:1.2;
}
.why-headline span{
  color: rgba(255,255,255,.68);
  font-weight:500;
}
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap:32px;
  row-gap:28px;
  padding-top:12px;
}
.why-item{
  display:grid;
  grid-template-columns: auto 1fr;
  gap:10px;
  align-items:start;
}
.why-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  color: var(--accent);
  font-size:22px;
}
.why-text b{
  display:block;
  margin-bottom:4px;
  font-weight:700;
  font-size:16px;
}
.why-text p{
  margin:0;
  color: rgba(255,255,255,.70);
  line-height:1.6;
  font-size:14px;
}
@media (max-width: 1024px){
  .why-top{
    grid-template-columns:1fr;
  }
  .why-grid{
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
.why-more-title{
  text-align:center;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight:600;
  margin:10px 0 6px;
}
@keyframes brands-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.industry-card:hover{
  transform: scale(1.04);
  box-shadow: 0 32px 90px rgba(0,0,0,.7);
  z-index:2;
}
.industry-card:hover::after{
  transform: translateX(180%) rotate(12deg);
  opacity:.75;
}
.industry-card:hover .overlay{
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.78));
  opacity:1;
}
.industry-card:hover .title{
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55));
  color: var(--accent);
}
.industry-card:hover p{
  opacity:1;
  transform: translateY(0);
}

/* footer cta */
.cta-footer{
  padding:20px;
  border-radius: 18px;
  border:1px solid var(--border);
  background: var(--panel);
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
}
.fine{ margin-top:16px; font-size:12px; color:var(--muted); }

/* footer */
.footer{
  padding: 70px 0 50px;
  background:#050607;
  margin-top:0;
}
.footer .container{
  max-width: min(1500px, 96vw);
}
.footer-panels{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:18px;
  margin-bottom:20px;
}
.footer-card{
  border:1px solid var(--border);
  border-radius: 24px;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display:grid;
  gap:12px;
}
.footer-heading{
  font-weight:700;
  letter-spacing:.01em;
  font-size:16px;
}
.footer-links a{ line-height:1.6; }
.footer-list{
  display:grid;
  gap:6px;
  color: rgba(255,255,255,.85);
  font-size:14px;
}
.footer-columns{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap:10px;
}
.footer-links a{
  display:inline-block;
  padding:6px 0;
  color: rgba(255,255,255,.85);
  font-size:14px;
}
.footer-links a.active,
.footer-links a:hover{
  color: var(--accent);
}
.footer-subscribe{
  display:grid;
  gap:10px;
  margin-top:6px;
}
.footer-subscribe-label{
  font-size:14px;
  color: rgba(255,255,255,.88);
}
.footer-subscribe-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-subscribe-row input{
  flex:1;
  min-width: 200px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  padding: 16px 18px;
  color:#fff;
  outline:none;
}
.footer-subscribe-row input::placeholder{
  color: rgba(255,255,255,.45);
}
.footer-subscribe-btn{
  padding: 13px 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
  margin-top:12px;
}
.social-card{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  padding: 16px 18px;
  border-radius: 28px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  color:#fff;
  gap:12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration:none;
}
.social-card .icon{
  width:34px; height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background: radial-gradient(circle at 30% 30%, rgba(255,123,47,.6), rgba(255,123,47,.3));
  border:1px solid rgba(255,123,47,.35);
  font-size:14px;
}
.social-card svg{
  width:18px;
  height:18px;
  fill:#ff7b2f;
  opacity:1;
}
.social-card .label{
  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;
}
.social-card .arrow{
  font-size:18px;
  color: #ff7b2f;
}
.social-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.footer-meta{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  color: var(--muted);
  gap:12px;
}

/* remove stray gap below footer on dark pages */
body.projects-body{
  background:#050607;
}
.footer-meta .attribution{
  color: rgba(255,255,255,.7);
}

/* reveal animations */
.reveal{
  opacity:0;
  transform: translateY(18px);
  filter: blur(8px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* modal */
.modal-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(10px);
  display:none;
  align-items:flex-start;
  justify-content:center;
  padding: 80px 16px 16px;
  z-index:200;
}
.modal-backdrop.open{ display:flex; }
.modal{
  width:min(920px, 96vw);
  border-radius: 18px;
  border:1px solid var(--border);
  background: #07080b;
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: translateY(10px) scale(.98);
  opacity:0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.modal-backdrop.open .modal{
  transform: translateY(0) scale(1);
  opacity:1;
}
.modal-top{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.modal-top .m-title{ font-size:14px; font-weight:600; }
.modal-top button{
  background: transparent;
  border: none;
  color: var(--muted);
  cursor:pointer;
  font-size:14px;
  padding:6px 10px;
  border-radius: 10px;
}
.modal-top button:hover{ color: var(--text); background: rgba(255,255,255,.06); }
.video{
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.05);
  display:grid;
  place-items:center;
  color: var(--muted);
  font-size:14px;
}

/* responsive */
@media (min-width: 880px){
  .navlinks{ display:flex; }
  .hero{ padding: 170px 0 160px; }
  .grid3{ grid-template-columns: repeat(3, 1fr); gap:16px; }
  .grid2{ grid-template-columns: 1fr 1fr; gap:16px; }
  .cta-footer{ flex-direction:row; align-items:center; }
  .services-grid{ grid-template-columns: 1fr 1.5fr; align-items:start; }
  .industries-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px){
  .nav{
    left:auto;
    right:0;
    width: 60vw;
    transform: translateX(110%);
    opacity:0;
    pointer-events:none;
    max-height: 80vh;
    height:auto;
    border-left: 1px solid rgba(255,255,255,.08);
    border-radius: 16px 0 0 16px;
    margin-top:12px;
  }
  .nav.show{
    transform: translateX(0);
    opacity:1;
    pointer-events:auto;
    padding-bottom:20px;
  }
  .nav-inner{
    grid-template-columns: 1fr;
    justify-items:center;
    align-items:flex-start;
    gap:16px;
    padding:18px 16px;
  }
  .brand{ display:none; }
  .brand-mark{ display:none; }
  .brand-text{ display:none; }
  .navlinks{
    display:none;
    flex-direction:column;
    gap:14px;
    align-items:flex-end;
    width:100%;
    padding-right:14px;
  }
  .nav.show .navlinks{
    display:flex;
  }
  .nav-toggle{
    display:flex;
  }
  .nav-cta{ display:none; }
  .mobile-logo{ display:flex; }
}

@media (max-width: 1024px){
  .hero{ padding: 130px 0 120px; }
  .hero-body{ padding: 0 10px; }
  .portfolio-window{ border-radius: 30px; }
  .portfolio-card{ width: clamp(220px, 42vw, 320px); border-radius: 26px; }
  .services{ padding-left: 16px; padding-right: 16px; }
  .services-grid{ grid-template-columns: 1fr; }
  .industries-inner{ max-width: 100%; padding: 0 10px; }
  .industries-grid{ grid-template-columns: repeat(2, 1fr); }
  .industry-card{ min-height: 240px; }
  .industry-card:nth-child(1),
  .industry-card:nth-child(6){ grid-column: span 2; }
  .testimonials{ padding: 70px 0 60px; }
  .testimonial-slider{ padding: 16px 12vw; }
  .testimonial-nav.prev{ left: 20px; }
  .testimonial-nav.next{ right: 20px; }
  .agency-grid{ grid-template-columns: 1fr; }
  .agency-about{ min-height: auto; padding: 60px 14px; }
  .agency-container{ max-width: 100%; }
  .agency-stats{ grid-template-columns: repeat(2, minmax(160px, 1fr)); }
}

@media (max-width: 720px){
  .nav-inner{ grid-template-columns: auto auto; }
  .hero{ padding: 110px 0 100px; }
  .hero-backdrop{ background-position: center; }
  .cta{ justify-content:flex-start; }
  .portfolio-head{ flex-direction:column; align-items:flex-start; gap:10px; }
  .portfolio-window{
    padding: 12px 8px;
    display:block;
    overflow-x:auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    direction: ltr;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .portfolio-window::-webkit-scrollbar{ display:none; }
  .portfolio-track{
    gap:12px;
    transform: none;
    width: max-content;
    min-width: max-content;
    flex: 0 0 auto;
    direction: ltr;
    flex-direction: row;
    padding: 0 8px;
    margin:0;
  }
  .portfolio-card{
    width: clamp(220px, 85vw, 360px);
    flex: 0 0 clamp(220px, 85vw, 360px);
    min-height: 280px;
    scroll-snap-align: start;
    transform:none;
    opacity:1;
  }
  .services-intro h2{ font-size: clamp(26px, 6vw, 32px); }
  .services{ padding: 40px 14px; }
  .services-list{ gap:12px; }
  .service-card{ padding: 22px 20px 24px; }
  .industries-head h2{ font-size: clamp(24px, 6vw, 30px); }
  .industries-grid{ grid-template-columns: 1fr; }
  .industry-card{ min-height: 240px; grid-column: span 1 !important; }
  .showreel-frame{
    height: 60vh;
    max-height: 60vh;
    border-radius: 18px;
  }
  .showreel-title{
    top:5vh;
    font-size: clamp(48px, 12vw, 88px);
    letter-spacing:0.06em;
  }
  .showreel-frame video{
    object-fit: contain;
  }
  .agency-grid{ grid-template-columns: 1fr; }
  .agency-left, .agency-right{ gap:14px; }
  .agency-stats{ grid-template-columns: 1fr 1fr; }
  .testimonials{ padding: 60px 0 50px; }
  .testimonials-head{ padding: 0 14px; }
  .testimonial-stage{ padding-top: 12px; }
  .testimonial-slider{ padding: 20px 12px 24px; }
  .testimonial-track{ gap:15px; }
  .testimonial-card{
    flex-basis: 90vw;
    min-height: 280px;
    transform: scale(1);
  }
  .testimonial-card.active{ transform: scale(1); }
  .testimonial-nav{
    top:auto;
    bottom: 10px;
    transform: none;
    width:46px; height:46px;
    font-size:22px;
    background: rgba(0,0,0,.6);
  }
  .testimonial-nav.prev{ left: 14px; }
  .testimonial-nav.next{ right: 14px; }
  .blogs{ padding: 60px 0; }
  .blogs-head{ margin-bottom:18px; }
  .blog-grid{ grid-template-columns: 1fr; gap:18px; }
  .blog-card{ }
  .blog-media{ height: clamp(220px, 65vw, 320px); }
  .collab-hero{ padding: 30px 20px; }
  .collab-grid{ grid-template-columns: 1fr; }
  .collab .footer-panels{
    grid-template-columns: 1fr;
    gap:14px;
  }
  .footer-card{
    padding: 22px 18px;
  }
  .footer-subscribe-row input{
    padding: 14px 16px;
  }
  .footer-subscribe-btn{
    padding: 12px 18px;
  }
  .collab-logo{ gap:10px; }
  .collab-logo .brand-mark{ display:none; }
  .collab-logo .brand-text{
    display:block;
    height:24px;
  }
}
