/* ═══════════════════════════════════════════
   VIDHAATH CREATION STUDIO — Global CSS
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

/* ══ DESIGN TOKENS ═══════════════════════════ */
:root {
  --ink:      #04080f;
  --ink-2:    #080f1c;
  --ink-3:    #0c1525;
  --ink-4:    #101e30;
  --cyan:     #00d4ff;
  --cyan-lo:  rgba(0,212,255,.12);
  --cyan-xlo: rgba(0,212,255,.05);
  --cyan-bd:  rgba(0,212,255,.25);
  --cyan-bd2: rgba(0,212,255,.15);
  --txt:      #dde8f2;
  --txt-2:    #6a8ca8;
  --txt-3:    #2e4a62;
  --ln:       rgba(0,212,255,.07);
  --ln2:      rgba(0,212,255,.15);
  --ln3:      rgba(0,212,255,.08);
  --f-display: 'Bebas Neue', sans-serif;
  --f-ui:      'Barlow Condensed', sans-serif;
  --f-body:    'Barlow', sans-serif;
  --f-mono:    'Share Tech Mono', monospace;
  --nav-h:    80px;
}

/* ══ RESET ════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--txt);
  font-family: var(--f-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ BACKGROUND GRID ══════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--ln) 1px, transparent 1px),
    linear-gradient(90deg, var(--ln) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(0,212,255,.16) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 24px 24px;
  pointer-events: none; z-index: 0; opacity: .3;
}
.page { position: relative; }

/* ══ NAVIGATION ══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99998;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: var(--nav-h);
  background: rgba(4,8,15,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ln2);
  transition: border-color .3s;
}
nav.scrolled { border-bottom-color: rgba(0,212,255,.22); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 60px; height: 60px;
  border: 1px solid var(--cyan-bd);
  display: grid; place-items: center;
  clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
  background: var(--cyan-xlo);
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logo-mark img {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-logo-mark svg { width: 16px; height: 16px; }
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-logo-text { font-family: var(--f-display); font-size: 22px; letter-spacing: 4px; color: var(--txt); line-height: 1; }
.nav-logo-text em { color: var(--cyan); font-style: normal; }
.nav-sub { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--txt-2); display: block; margin-top: 1px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--f-ui); font-size: 12px;
  font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--txt-2); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-tel { font-family: var(--f-ui); font-size: 12px; font-weight: 500; color: var(--txt-2); letter-spacing: 2px; }

/* ══ BUTTONS ══════════════════════════════════ */
.btn-cta {
  font-family: var(--f-ui); font-size: 11px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink); background: var(--cyan);
  border: none; padding: 10px 24px; cursor: pointer;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta:hover { opacity: .85; transform: translateX(2px); }
.btn-cta svg { width: 12px; height: 12px; stroke: var(--ink); fill: none; stroke-width: 2; }

.btn-ghost {
  font-family: var(--f-ui); font-size: 11px;
  font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); background: transparent;
  border: 1px solid var(--cyan-bd); padding: 10px 24px; cursor: pointer;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
}
.btn-ghost:hover { background: var(--cyan-lo); border-color: var(--cyan); }
.btn-ghost svg { width: 12px; height: 12px; stroke: var(--cyan); fill: none; stroke-width: 2; }

/* ══ PAGE HERO ════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 56px 80px;
  max-width: 1400px; margin: 0 auto; position: relative;
}
.page-hero-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 4px; color: var(--cyan); text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.page-hero-label::before { content: ''; width: 32px; height: 1px; background: var(--cyan); }
.page-hero-title {
  font-family: var(--f-display);
  font-size: clamp(56px,8vw,110px);
  line-height: .92; letter-spacing: 1px; text-transform: uppercase;
}
.page-hero-title em { color: var(--cyan); font-style: normal; }
.page-hero-desc { font-size: 17px; font-weight: 300; color: var(--txt-2); line-height: 1.8; max-width: 540px; margin-top: 24px; }

/* ══ SECTION LABELS & TITLES ═════════════════ */
.sec-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 3px; color: var(--cyan); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
.sec-title { font-family: var(--f-display); font-size: clamp(36px,4.5vw,64px); line-height: .95; text-transform: uppercase; }
.sec-title em { color: var(--cyan); font-style: normal; }

/* ══ DIVIDER ══════════════════════════════════ */
.hr-glow { height: 1px; background: linear-gradient(90deg,transparent,var(--cyan-bd),transparent); border: none; margin: 0; }

/* ══ MARQUEE ══════════════════════════════════ */
.marquee-wrap {
  border-top: 1px solid var(--ln2); border-bottom: 1px solid var(--ln2);
  background: var(--ink-2); overflow: hidden; padding: 13px 0; position: relative; z-index: 1;
}
.marquee-track { display: flex; animation: marquee 28s linear infinite; width: max-content; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item {
  font-family: var(--f-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--txt-3);
  padding: 0 28px; display: flex; align-items: center; gap: 28px; white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ══ STATS BAR ════════════════════════════════ */
.stats-bar { display: flex; border-top: 1px solid var(--ln2); border-bottom: 1px solid var(--ln2); background: var(--ink-2); }
.stat-item {
  flex: 1; padding: 32px 24px; border-right: 1px solid var(--ln2);
  display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--f-display); font-size: 40px; color: var(--cyan); line-height: 1; }
.stat-lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 2.5px; color: var(--txt-3); text-transform: uppercase; }

/* ══ BASE CARD ════════════════════════════════ */
.card { background: var(--ink-2); border: 1px solid var(--ln2); position: relative; overflow: hidden; transition: border-color .3s, background .3s; }
.card:hover { border-color: var(--cyan-bd); background: var(--ink-3); }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--cyan),transparent); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.card:hover::before { transform: scaleX(1); }
.c-tl, .c-br { position: absolute; width: 18px; height: 18px; opacity: 0; transition: opacity .3s; pointer-events: none; }
.c-tl { top: 10px; left: 10px; border-top: 1px solid var(--cyan); border-left: 1px solid var(--cyan); }
.c-br { bottom: 10px; right: 10px; border-bottom: 1px solid var(--cyan); border-right: 1px solid var(--cyan); }
.card:hover .c-tl, .card:hover .c-br { opacity: 1; }

/* ══ PROJECT CARD ═════════════════════════════ */
.proj-card { background: var(--ink-2); border: 1px solid var(--ln2); position: relative; overflow: hidden; cursor: pointer; transition: border-color .3s; }
.proj-card:hover { border-color: var(--cyan-bd); }
.proj-card-img {
  width: 100%; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.proj-card:hover .proj-card-img { transform: scale(1.04); }
.proj-card-img::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.06) 2px,rgba(0,0,0,.06) 3px);
  pointer-events: none;
}
.proj-card-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(4,8,15,.95) 0%, rgba(4,8,15,.35) 55%, transparent 100%); }
.proj-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px 22px; z-index: 4; }
.proj-card-tag {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.proj-card-tag::before { content: ''; width: 14px; height: 1px; background: var(--cyan); }
.proj-card-title { font-family: var(--f-ui); font-size: 18px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; line-height: 1.15; margin-bottom: 8px; }
.proj-card-desc { font-size: 14px; font-weight: 300; color: var(--txt-2); line-height: 1.6; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s ease, opacity .4s ease; }
.proj-card:hover .proj-card-desc { max-height: 80px; opacity: 1; }
.proj-card-arrow {
  position: absolute; top: 18px; right: 18px; z-index: 5;
  width: 34px; height: 34px; border: 1px solid var(--cyan-bd);
  display: grid; place-items: center; background: var(--cyan-xlo);
  clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
  opacity: 0; transform: translate(6px,-6px); transition: all .3s;
}
.proj-card-arrow svg { width: 13px; height: 13px; stroke: var(--cyan); fill: none; stroke-width: 2; }
.proj-card:hover .proj-card-arrow { opacity: 1; transform: translate(0,0); }

/* Card background tints */
.bg-t1 { background: linear-gradient(135deg,#080f1c,#0c1828); }
.bg-t2 { background: linear-gradient(135deg,#080d1a,#0b1422); }
.bg-t3 { background: linear-gradient(135deg,#090d1a,#0c1526); }
.bg-t4 { background: linear-gradient(135deg,#07111c,#0a1624); }
.bg-t5 { background: linear-gradient(135deg,#080d18,#0b1220); }

/* ══ ICON BOX ═════════════════════════════════ */
.icon-box {
  width: 46px; height: 46px; border: 1px solid var(--cyan-bd);
  display: grid; place-items: center;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  background: var(--cyan-xlo); transition: background .3s; flex-shrink: 0;
}
.icon-box svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
.card:hover .icon-box { background: var(--cyan-lo); }

/* ── Section separator ── */
.sec-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.06), transparent);
  border: none;
  margin: 0 56px 60px;
}

/* ══ CTA BAND ═════════════════════════════════ */
.cta-band {
  margin: 0 56px 120px; background: var(--ink-2); border: 1px solid var(--cyan-bd);
  padding: 72px 80px; display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle,rgba(0,212,255,.07) 0%,transparent 70%); pointer-events: none; }
.cta-band-title { font-family: var(--f-display); font-size: clamp(32px,3.5vw,52px); line-height: .95; text-transform: uppercase; margin-bottom: 12px; }
.cta-band-title em { color: var(--cyan); font-style: normal; }
.cta-band-desc { font-size: 16px; font-weight: 300; color: var(--txt-2); line-height: 1.7; max-width: 480px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ══ FORM ELEMENTS ════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 2.5px; color: var(--txt-3); text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  background: var(--ink-3); border: 1px solid var(--ln2); color: var(--txt);
  font-family: var(--f-body); font-size: 16px; font-weight: 300;
  padding: 13px 16px; outline: none; transition: border-color .25s; width: 100%;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--cyan-bd); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--txt-3); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--ink-3); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ══ FOOTER ═══════════════════════════════════ */
footer { background: #020509; border-top: 1px solid var(--ln2); padding: 0 56px; position: relative; z-index: 1; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding: 72px 0 56px; border-bottom: 1px solid var(--ln2); }
.footer-brand-desc { font-size: 15px; font-weight: 300; color: var(--txt-3); line-height: 1.65; max-width: 260px; }
.footer-logo-txt { font-family: var(--f-display); font-size: 26px; letter-spacing: 5px; display: block; text-decoration: none; color: var(--txt); margin-bottom: 6px; }
.footer-logo-txt em { color: var(--cyan); font-style: normal; }
.footer-tagline { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--txt-2); text-transform: uppercase; margin-bottom: 20px; }
.footer-brand-desc { font-size: 15px; font-weight: 300; color: var(--txt-3); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 22px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--f-ui); font-size: 15px; color: var(--txt-3); text-decoration: none; letter-spacing: .5px; transition: color .2s; }
.footer-links a:hover { color: var(--txt); }
.fci { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.fci-lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 2px; color: var(--txt-3); text-transform: uppercase; min-width: 36px; margin-top: 2px; }
.fci a { font-size: 15px; color: var(--txt-2); text-decoration: none; transition: color .2s; }
.fci a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.footer-copy { font-family: var(--f-mono); font-size: 11px; letter-spacing: 1px; color: var(--txt-2); font-weight: 500; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1px; color: var(--txt-3); cursor: default; }
.footer-legal a { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1px; color: var(--txt-3); text-decoration: none; transition: color .25s; }
.footer-legal a:hover { color: var(--cyan); }


/* ══ MOBILE NAV ══════════════════════════════════════ */

/* Hide desktop nav on small screens */
@media (max-width: 900px) {
  .nav-links  { display: none !important; }
  .nav-actions { display: none !important; }
  .nav-menu-btn { display: flex !important; }
  nav { padding: 0 20px; }
}

/* Hamburger button */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(0,212,255,.3);
  cursor: pointer; padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 100001;
}
.nav-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: #e8edf5;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
  pointer-events: none;
}
.nav-menu-btn.open { border-color: var(--cyan); }
.nav-menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #00d4ff; }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #00d4ff; }

/* Mobile dropdown */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 100000;
  background: #04080f;
  border-top: 1px solid rgba(0,212,255,.3);
  border-bottom: 2px solid #00d4ff;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.95);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(232,237,245,.8);
  text-decoration: none;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav a::after { content: '→'; color: rgba(0,212,255,.5); font-size: 13px; }
.mobile-nav a:active { background: rgba(0,212,255,.08); color: #00d4ff; }
.mobile-nav a.active { color: #00d4ff; }
.mobile-nav a.active::after { color: #00d4ff; }
.mobile-nav .mob-cta {
  padding: 16px 20px 20px;
}
.mobile-nav .mob-cta .btn-cta {
  width: 100%;
  justify-content: center;
}

/* ══ REVEAL ANIMATIONS ════════════════════════ */
.reveal, .reveal-l, .reveal-r { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
.reveal   { transform: translateY(28px); }
.reveal-l { transform: translateX(-28px); }
.reveal-r { transform: translateX(28px); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ══ RESPONSIVE ═══════════════════════════════ */
@media (max-width:1100px) {
  nav { padding: 0 28px; }
  .page-hero { padding-left: 28px; padding-right: 28px; }
  .cta-band { padding: 48px 40px; margin-left: 28px; margin-right: 28px; }
  footer { padding: 0 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width:768px) {
  nav { padding: 0 20px; }
  .nav-tel { display: none; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 20px 60px; }
  .cta-band { margin: 0 20px 80px; padding: 48px 28px; grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: row; flex-wrap: wrap; }
  footer { padding: 0 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
}


/* ══ REVEAL SAFETY FALLBACK ══════════════════
   If JS is slow or blocked, content still
   becomes visible after 0.5s automatically   */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
.reveal, .reveal-l, .reveal-r {
  animation: revealFallback 0s 0.5s forwards;
}
.reveal.in, .reveal-l.in, .reveal-r.in {
  animation: none;
  opacity: 1;
  transform: none;
}



/* Footer logo */
.footer-logo-img-wrap { display: block; text-decoration: none; margin-bottom: 6px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity .2s;
}
.footer-logo-img-wrap:hover .footer-logo-img { opacity: 1; }

/* ── FOOTER SOCIAL ICONS ─────────────────────── */
.footer-social-row { display: none; }
.footer-social-col { display: none; }
.footer-social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.soc-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ln2);
  background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-2);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.soc-icon svg { width: 15px; height: 15px; }
.soc-icon .soc-label {
  font-family: var(--f-display);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; line-height: 1;
}
.soc-icon[title="Behance"] svg { display: none; }
.soc-icon:not([title="Behance"]) .soc-label { display: none; }
.soc-icon:hover {
  border-color: var(--cyan); color: var(--cyan); background: var(--cyan-lo);
}

/* ── 16:9 illustration card image ───────────── */
.illus-16-9 {
  aspect-ratio: 16 / 9;
  min-height: unset !important;
  width: 100%;
}
.illus-16-9 .img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ══ ANIMATION CONSISTENCY OVERRIDES ════════
   Standardised timing tokens:
   --t-fast:  .2s  → colour, opacity changes
   --t-base:  .3s  → border, background changes
   --t-slow:  .4s  → transforms, reveals
   ══════════════════════════════════════════ */

/* Buttons — consistent behaviour */
.btn-cta  { transition: opacity .2s, transform .2s; }
.btn-cta:hover  { opacity: .88; transform: translateX(3px); }
.btn-ghost { transition: background .2s, border-color .2s, color .2s; }
.btn-ghost:hover { transform: none; }

/* All card border hover — standardise to .3s */
.sol-tab  { transition: border-color .3s, background .3s; }
.step-tag { transition: border-color .3s, color .3s, background .3s; }
.step-tag:hover { background: var(--ink-3); }

/* All top-bar ::before reveals — standardise to .35s */
.sol-tab::before,
.who-card::before,
.svc-card::before,
.ns-item::before,
.cap-card::before { transition: transform .35s ease; }

/* All left-bar ::after reveals — standardise to .35s */
.appr-item::after,
.studio-point::after,
.diff-item::after { transition: transform .35s ease; }

/* Ghost number stroke — standardise to .3s */
.appr-num,
.cap-num,
.who-card-num,
.sol-tab-num,
.step-big-num { transition: -webkit-text-stroke .3s; }

/* Card title colour — standardise to .25s */
.appr-title,
.cap-title,
.who-card-title,
.sol-tab-title,
.ns-title,
.step-tag,
.svc-card-lbl,
.ind-name { transition: color .25s; }

/* Icon box — standardise */
.icon-box { transition: background .25s; }

/* Social icons — standardise */
.soc-icon { transition: border-color .25s, color .25s, background .25s; }

/* Form inputs — standardise */
.form-input,
.form-textarea { transition: border-color .25s; }

/* Footer links — standardise */
.footer-links a,
.fci a,
.ib-val a { transition: color .25s; }


/* ══ SMALL SCREEN IMPROVEMENTS (≤480px) ═════
   Targets phones — 375px to 480px
   ══════════════════════════════════════════ */

@media (max-width: 480px) {

  /* Nav */
  nav { padding: 0 16px; }
  .nav-logo-mark { width: 48px; height: 48px; }
  .nav-logo-mark img { width: 36px; height: 36px; }
  .nav-logo-img { height: 36px; }

  /* Hero */
  .page-hero { padding: calc(var(--nav-h) + 32px) 16px 48px; }
  .page-hero-title { font-size: clamp(40px,12vw,56px); }
  .page-hero-desc { font-size: 15px; }

  /* Sections */
  .cta-band { padding: 36px 16px; margin: 0 16px 60px; }
  .cta-band-title { font-size: clamp(26px,7vw,36px); }

  /* Footer */
  footer { padding: 0 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Buttons */
  .btn-cta, .btn-ghost { font-size: 10px; padding: 10px 18px; }

  /* Marquee */
  .marquee-wrap { display: none; }

  /* Scroll reveal — reduce distance on mobile */
  .reveal   { transform: translateY(16px); }
  .reveal-l { transform: translateX(-16px); }
  .reveal-r { transform: translateX(16px); }
}

/* ══ TABLET IMPROVEMENTS (769px–1100px) ════ */

@media (min-width: 769px) and (max-width: 1100px) {
  .page-hero-title { font-size: clamp(48px,6vw,80px); }
  .sec-title { font-size: clamp(30px,4vw,52px); }
}


/* ══ ADDITIONAL MOBILE FIXES ════════════════ */

/* Social icons row — wrap on small screens */
@media(max-width:480px){
  .footer-social-icons { gap:6px; flex-wrap:wrap; }
  .soc-icon { width:34px; height:34px; }
  .footer-main { gap:24px; }
  .mobile-nav a { padding:14px 16px; font-size:12px; }
  .mob-cta { margin:12px 16px 0; }
}

/* Fix proj-card image min-height on mobile */
@media(max-width:480px){
  .proj-card-img { min-height:180px !important; }
  .proj-card-body { padding:18px 16px 16px; }
  .proj-card-title { font-size:15px; }
}

/* Fix page-hero on very small screens */
@media(max-width:375px){
  .page-hero-title { font-size:36px; }
  .btn-cta, .btn-ghost { font-size:9px; padding:9px 14px; }
}
