
/* ══════════════════════════════════════════
   DESIGN SYSTEM — LIGHT THEME
══════════════════════════════════════════ */
:root {
  --void:     #FAFBFF;
  --deep:     #F2F4FC;
  --surface:  #E8ECF8;
  --card:     #FFFFFF;
  --card2:    #F7F9FF;
  --gold:     #C9860A;
  --gold2:    #E09A0A;
  --gold3:    #F5C842;
  --violet:   #6D3FD6;
  --violet2:  #8B5CF6;
  --teal:     #0AA88C;
  --text:     #0D1120;
  --muted:    rgba(13,17,32,0.55);
  --muted2:   rgba(13,17,32,0.35);
  --border:   rgba(13,17,32,0.08);
  --border2:  rgba(201,134,10,0.25);
  --r:        18px;
  --glow-g:   0 0 60px rgba(201,134,10,0.12);
  --glow-v:   0 0 60px rgba(109,63,214,0.1);
  --shadow:   0 4px 24px rgba(13,17,32,0.08);
  --shadow2:  0 16px 48px rgba(13,17,32,0.12);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--void);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 2px; }

/* ──────────── CURSOR ──────────── */
#cur {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold3), 0 0 24px rgba(201,134,10,0.3);
  transition: transform 0.08s;
}
#cur-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(201,134,10,0.4);
  border-radius: 50%;
  transition: all 0.14s ease;
}
body.hovering #cur { transform: scale(3); }
body.hovering #cur-ring { transform: scale(0.6); border-color: rgba(201,134,10,0.8); }

/* ══════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--void);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px; font-weight: 700;
  letter-spacing: 4px;
  color: var(--text);
  text-align: center;
}
.loader-logo span { color: var(--gold); }

.loader-bar-wrap {
  width: 220px; height: 2px;
  background: rgba(13,17,32,0.1);
  border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold2), var(--gold3));
  border-radius: 2px;
  animation: loadFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 12px rgba(201,134,10,0.4);
}
@keyframes loadFill { 0%{width:0%} 100%{width:100%} }

.loader-text {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 1px;
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 64px;
  background: transparent;
  transition: all 0.4s ease;
  height: 100px;
  background: rgba(250,251,255,0.92);

}
.nav.solid {
  background: rgba(250,251,255,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(13,17,32,0.06);
}

/* .nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-mark  {
  border-radius: 10px;
}

.logo-text .lt1 { color: var(--text); font-size: 18px; }
.logo-text .lt2 { color: var(--gold); font-size: 11px; letter-spacing: 3px; font-family: 'Fira Code', monospace; font-weight: 400; } */
.logo-mark{
  width: 200px;
  height: 200px;
}
.logo-mark img{
  width: 100%;
  height: 100%;
}
.nav-links {
  display: flex; list-style: none; gap: 4px; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; transition: all 0.25s; letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--text); background: rgba(13,17,32,0.05); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold2), var(--gold3)) !important;
  color: #fff !important; font-weight: 700 !important; padding: 10px 24px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 20px rgba(201,134,10,0.3) !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 30px rgba(201,134,10,0.45) !important; background: rgba(13,17,32,0.06) !important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:none; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:all 0.3s; }

/* dropdown css */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: var(--card);
  border-radius: 14px;
  padding: 10px;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  box-shadow: 0 20px 50px rgba(13,17,32,0.12);
  border: 1px solid var(--border);

  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW DROPDOWN */
/* REMOVE THIS ❌ */
/* .dropdown:hover .dropdown-menu { ... } */

/* ADD THIS ✅ */
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DEFAULT (same as yours) */
 .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: var(--card);
  border-radius: 14px;
  padding: 10px;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.3s ease;
} 

/* LINKS */
.dropdown-menu li {
  width: 100%;
} 

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  transition: all 0.25s;
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
  background: linear-gradient(135deg, var(--violet), var(--gold));
  color: #fff;
  transform: translateX(6px);
}

/* NAV HOVER ACTIVE */
.dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
 .dropdown > a::after {
  content: "▾";
  font-size: 18px;
  transition: 0.3s;
} 

.dropdown:hover > a::after {
  transform: rotate(180deg);
} 

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: var(--card);
    flex-direction: column;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}
/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 150px 64px 100px;
  position: relative; overflow: hidden;
  background: var(--void);
}

/* CANVAS STARFIELD */
#starCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Mesh gradient */
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(109,63,214,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(201,134,10,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(10,168,140,0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* Diagonal decorative lines */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  width: 1px; height: 300px;
  background: linear-gradient(180deg, transparent, rgba(201,134,10,0.25), transparent);
  left: 15%; top: 10%;
  animation: lineDrop 4s ease-in-out infinite;
}
.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px; height: 200px;
  background: linear-gradient(180deg, transparent, rgba(109,63,214,0.3), transparent);
  right: 20%; top: 30%;
  animation: lineDrop 5s ease-in-out infinite 1.5s;
}
@keyframes lineDrop {
  0%,100%{ transform:translateY(0); opacity:0.6; }
  50%{ transform:translateY(40px); opacity:1; }
}

.hero-content { position: relative; z-index: 2; max-width: 1000px; }

/* Animated badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,134,10,0.07);
  border: 1px solid rgba(201,134,10,0.22);
  padding: 8px 20px; border-radius: 30px;
  font-family: 'Fira Code', monospace; font-size: 12px; font-weight: 400;
  color: var(--gold); letter-spacing: 0.8px;
  margin-bottom: 40px;
  animation: fadeDown 0.8s ease 2.2s both;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: blink 1.4s infinite;
}

/* Main heading */
.hero-h1 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 32px;
  animation: fadeUp 1s ease 2.4s both;
}

.h1-line {
  display: block;
  font-size: clamp(58px, 9vw, 128px);
  overflow: hidden;
}

.h1-line .word {
  display: inline-block;
  animation: wordReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.h1-line:nth-child(1) .word { animation-delay: 2.5s; color: var(--text); }
.h1-line:nth-child(2) .word { animation-delay: 2.65s; }
.h1-line:nth-child(3) .word { animation-delay: 2.8s; color: rgba(13,17,32,0.18); }

.h1-line:nth-child(2) .word {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold3) 50%, var(--gold2) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 2.65s both, shimmer 3s linear 3.5s infinite;
}

@keyframes wordReveal {
  0%{ transform: translateY(100%); opacity: 0; }
  100%{ transform: translateY(0); opacity: 1; }
}
@keyframes shimmer {
  0%{ background-position: 0% center; }
  100%{ background-position: 200% center; }
}

.hero-sub {
  color: var(--muted);
  font-size: 18px; line-height: 1.75; font-weight: 400;
  max-width: 600px; margin: 0 auto 50px;
  animation: fadeUp 1s ease 3s both;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 90px;
  animation: fadeUp 1s ease 3.1s both;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: #fff; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 15px;
  transition: all 0.3s; letter-spacing: 0.3px;
  box-shadow: 0 8px 30px rgba(201,134,10,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  cursor: none;
}
.btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(201,134,10,0.45);
}
.btn-stroke {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  background: transparent; color: var(--text); border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(13,17,32,0.15);
  transition: all 0.3s; cursor: none;
}
.btn-stroke:hover {
  border-color: rgba(201,134,10,0.4);
  color: var(--gold); background: rgba(201,134,10,0.05);
}

/* HERO STATS */
.hero-stats {
  display: flex; justify-content: center; gap: 70px; flex-wrap: wrap;
  padding-top: 50px;
  border-top: 1px solid var(--border);
  animation: fadeUp 1s ease 3.2s both;
}
.hs { text-align: center; }
.hs-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 46px; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hs-label {
  font-family: 'Fira Code', monospace; font-size: 11px;
  color: var(--text); letter-spacing: 1px; margin-top: 6px;
  text-transform: uppercase;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--deep);
  overflow: hidden; padding: 16px 0;
  display: flex;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Fira Code', monospace;
  font-size: 11px; color: var(--text);
  padding: 0 44px; letter-spacing: 2px; text-transform: uppercase;
}
.marquee-track span::before {
  content: '◆ ';
  color: var(--gold); margin-right: 6px; font-size: 8px;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }


/*══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: 120px 64px;
  background: var(--void);
  position: relative; overflow: hidden;
}

.services-inner { max-width: 1200px; margin: auto; }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 70px; gap: 30px; flex-wrap: wrap;
}
.sh-r { max-width: 340px; color: var(--muted); font-size: 15px; line-height: 1.8; }

.sec-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700; line-height: 0.92;
  letter-spacing: -0.5px; color: var(--text);
}
.sec-title em { font-style:normal; color: var(--gold); }

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; transition: 0.2s;
}

.svc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 42px 34px;
  position: relative; overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
  box-shadow: var(--shadow);
}

.svc::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,134,10,0.06), transparent 70%);
  opacity: 0; transition: opacity 0.45s;
}
.svc::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  transform: scaleX(0); transition: transform 0.45s;
}
.svc:hover { border-color: rgba(201,134,10,0.22); transform: translateY(-12px); box-shadow: 0 40px 80px rgba(13,17,32,0.1), var(--glow-g); }
.svc:hover::before { opacity: 1; }
.svc:hover::after { transform: scaleX(1); }

.svc-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 26px; }
.svc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(201,134,10,0.07); border: 1px solid rgba(201,134,10,0.14);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: all 0.35s;
}
.svc:hover .svc-icon {
  background: rgba(201,134,10,0.13); border-color: rgba(201,134,10,0.3);
  box-shadow: 0 0 24px rgba(201,134,10,0.15);
}
.svc-num {
  font-family: 'Fira Code', monospace; font-size: 11px;
  color: var(--muted2); letter-spacing: 1px;
}
.svc-arrow {
  position: absolute; top: 36px; right: 34px; 
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2); font-size: 13px; transition: all 0.3s;
}
.svc:hover .svc-arrow { background: var(--gold2); border-color: var(--gold2); color: #fff; transform: rotate(45deg); }

.svc h3 { font-size: 21px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; color: var(--text); }
.svc p { font-size: 14px; color: var(--muted); line-height: 1.78; margin-bottom: 28px; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-pill {
  font-family: 'Fira Code', monospace; font-size: 10px;
  padding: 5px 10px; border-radius: 6px;
  background: rgba(13,17,32,0.04); border: 1px solid var(--border);
  color: var(--muted2); letter-spacing: 0.5px;
  transition: all 0.25s;
}
.svc:hover .svc-pill { border-color: rgba(201,134,10,0.18); color: var(--muted); }

.svc-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc-link:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/*  */
.svc-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc {
  cursor: pointer;
  transition: 0.3s ease;
}

.svc:hover {
  transform: translateY(-10px) scale(1.02);
}

.svc:hover .svc-arrow {
  transform: translateX(8px);
}

.svc-arrow {
  transition: 0.3s;
}
/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process {
  padding: 120px 64px;
  background: var(--deep);
  position: relative; overflow: hidden;
}
.process-inner { max-width: 1200px; margin: auto; }

.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 22px; overflow: hidden; margin-top: 70px;
}
.proc {
  background: var(--deep); padding: 50px 36px;
  position: relative; transition: background 0.35s;
}
.proc:hover { background: var(--card); }
.proc-n {
  font-family: 'Clash Display', sans-serif; font-size: 64px; font-weight: 700;
  color: rgba(201,134,10,0.1); line-height: 1; margin-bottom: 24px;
  transition: color 0.35s;
}
.proc:hover .proc-n { color: rgba(201,134,10,0.22); }
.proc-icon { font-size: 30px; margin-bottom: 18px; }
.proc h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.proc p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.proc-divider {
  position: absolute; top: 50px; right: 0;
  width: 1px; height: 70px;
  background: linear-gradient(180deg, var(--gold2), transparent); opacity: 0.25;
}

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
    /* ══════════════════════════════════════
       SECTION SHELL
    ══════════════════════════════════════ */
    .portfolio {
      background: var(--void);
      padding: 100px 0 110px;
      position: relative;
      overflow: hidden;
    }

    /* Ambient blobs */
    .portfolio::before {
      content: '';
      position: absolute;
      top: -100px; right: -200px;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(109,63,214,0.055) 0%, transparent 65%);
      pointer-events: none;
    }
    .portfolio::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -150px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,134,10,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .portfolio-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }
    .imges{
      width: 100%;
      border-radius: 20px;
    }

    /* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
    .port-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 60px;
      gap: 24px;
      flex-wrap: wrap;
    }

    .port-head-left {}

    .port-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 14px;
    }

    .port-eyebrow-bar {
      width: 28px; height: 2px;
      background: linear-gradient(90deg, var(--violet), var(--violet2));
      border-radius: 2px;
    }

    .port-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(34px, 4vw, 56px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.06;
      letter-spacing: -0.03em;
    }

    .port-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .port-head-right {
      max-width: 380px;
    }

    .port-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .port-view-all {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--violet);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: gap 0.25s ease;
    }
    .port-view-all:hover { gap: 14px; }
    .port-view-all svg { transition: transform 0.25s ease; }
    .port-view-all:hover svg { transform: translateX(3px); }

    /* ══════════════════════════════════════
       GRID
    ══════════════════════════════════════ */
    .port-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto auto;
      gap: 20px;
    }

    /* Card placement */
    .port-card:nth-child(1) { grid-column: 1 / 8; }  /* wide */
    .port-card:nth-child(2) { grid-column: 8 / 13; }
    .port-card:nth-child(3) { grid-column: 1 / 5; }
    .port-card:nth-child(4) { grid-column: 5 / 9; }
    .port-card:nth-child(5) { grid-column: 9 / 13; }

    /* ── Card base ── */
    .port-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow);
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                  box-shadow 0.35s ease,
                  border-color 0.25s ease;
      position: relative;
    }

    .port-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,63,214,0.15);
    }

    /* ── Visual area ── */
    .port-visual {
      position: relative;
      width: 100%;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* Tall visual for wide card */
    .port-card:nth-child(1) .port-visual { height: 260px; }
    /* Standard height */
    .port-card:not(:nth-child(1)) .port-visual { height: 200px; }

    /* Gradient backgrounds */
    .pv1 { background: linear-gradient(145deg, #1a0f3c 0%, #2d1b69 50%, #1e3a5f 100%); }
    .pv2 { background: linear-gradient(145deg, #0a2a1a 0%, #0d4a2e 50%, #1a3a0a 100%); }
    .pv3 { background: linear-gradient(145deg, #2a0a0a 0%, #4a1a0a 50%, #3a1530 100%); }
    .pv4 { background: linear-gradient(145deg, #0a1a2a 0%, #0a2a4a 50%, #1a0a3a 100%); }
    .pv5 { background: linear-gradient(145deg, #1a1a0a 0%, #2a2a0a 50%, #3a2a0a 100%); }

    /* Subtle grid pattern overlay */
    .port-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
      z-index: 1;
    }

    /* Main icon / mockup area */
    .pv-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    /* Icon circle */
    .pv-icon-wrap {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(4px);
      font-size: 32px;
      transition: transform 0.3s ease;
    }

    .port-card:hover .pv-icon-wrap {
      transform: scale(1.1) rotate(-4deg);
    }

    /* Tech logos strip inside visual */
    .pv-tech-strip {
      position: absolute;
      bottom: 14px;
      left: 16px;
      display: flex;
      gap: 7px;
      z-index: 3;
      flex-wrap: wrap;
    }

    .pv-tech-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      padding: 4px 10px;
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
    }

    .pv-tech-badge svg,
    .pv-tech-badge img {
      width: 13px;
      height: 13px;
      object-fit: contain;
    }

    /* Type chip top-right */
    .port-chip {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 3;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50px;
      padding: 5px 13px;
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
    }

    /* ── Info area ── */
    .port-info {
      padding: 22px 24px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .port-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .port-type {
      font-family: 'Syne', sans-serif;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--violet);
    }

    .port-year {
      font-size: 11px;
      color: var(--muted2);
      font-weight: 500;
    }

    .port-info h3 {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .port-card:nth-child(1) .port-info h3 {
      font-size: 22px;
    }

    .port-info p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 18px;
    }

    /* ── Card footer — links ── */
    .port-footer {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      margin-top: auto;
    }

    /* Live link button */
    .port-btn-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--violet);
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      padding: 8px 16px;
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 14px rgba(109,63,214,0.25);
    }

    .port-btn-live:hover {
      background: var(--violet2);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(109,63,214,0.35);
    }

    .port-btn-live svg { flex-shrink: 0; }

    /* Case study link */
    .port-btn-case {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--muted);
      text-decoration: none;
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 600;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 8px 14px;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .port-btn-case:hover {
      color: var(--text);
      border-color: rgba(13,17,32,0.2);
      background: var(--deep);
    }

    /* Status dot */
    .port-status {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--teal);
      font-weight: 600;
      font-family: 'Syne', sans-serif;
    }

    .port-status-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--teal);
      animation: blink 2.2s ease-in-out infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .port-card:nth-child(1) { grid-column: 1 / 13; }
      .port-card:nth-child(2) { grid-column: 1 / 7; }
      .port-card:nth-child(3) { grid-column: 7 / 13; }
      .port-card:nth-child(4) { grid-column: 1 / 7; }
      .port-card:nth-child(5) { grid-column: 7 / 13; }
    }

    @media (max-width: 680px) {
      .port-card:nth-child(n) { grid-column: 1 / 13; }
      .port-head { flex-direction: column; align-items: flex-start; }
      .portfolio-inner { padding: 0 18px; }
    }

  

/* ══════════════════════════════════════════
   TECH STACK
══════════════════════════════════════════ */
.tech {
  padding: 100px 64px;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-inner { max-width: 1200px; margin: auto; text-align: center; }
.tech-inner h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  letter-spacing: 0px; color: var(--text); margin-bottom: 14px;
}
.tech-inner > p { color: var(--muted); font-size: 15px; margin-bottom: 60px; max-width: 500px; margin-left:auto; margin-right:auto; line-height:1.75; }

.tech-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.tech-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 12px; text-align: center;
  transition: all 0.35s; cursor: none;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.tech-item::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,134,10,0.07), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.tech-item:hover {
  border-color: rgba(201,134,10,0.25); transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13,17,32,0.1);
}
.tech-item:hover::before { opacity: 1; }
.tech-emoji { font-size: 30px; margin-bottom: 10px; }
.tech-item span {
  display: block; font-family: 'Fira Code', monospace;
  font-size: 10px; color: var(--muted); letter-spacing: 0.5px;
}
/* NEW ADD */


/* SECTION */
.programs{
  padding:80px 8%;
  text-align:center;
}

/* TITLE */
.programs h2{
  font-size:42px;
  font-weight: 900;
  margin-bottom:10px;
}

.programs p{
  color:var(--muted);
  margin-bottom:60px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* CARD */
.card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--r);
  padding:30px;
  text-align:left;
  transition:0.4s;
  position:relative;
    border: 1px solid var(--gold);

}

.card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow2);
}

/* ICON */
.icon{
  width:60px;
  height:60px;
  background:#3b82f6;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}

/* TITLE */
.card h3{
  margin-bottom:10px;
}

/* TEXT */
.card p{
  font-size:14px;
  color:var(--muted);
}

/* LIST */
.card ul{
  margin:20px 0;
  padding-left:18px;
}

.card ul li{
  margin-bottom:8px;
  color:var(--text);
  list-style-type: none;
  font-size: 16px;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:10px;
  color:var(--gold2);
  text-decoration:none;
  font-weight:600;
}

/* PREMIUM CARD */
.premium{
  border:1px solid var(--gold);
}

.badge{
  position:absolute;
  top:-10px;
  right:20px;
  background:var(--gold2);
  color:#000;
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}

/* UPGRADE BUTTON */
.upgrade{
  display:block;
  text-align:center;
  background:linear-gradient(135deg,var(--gold2),var(--gold3));
  padding:12px;
  border-radius:10px;
  margin-top:15px;
  color:#000;
  font-weight:600;
  text-decoration: none;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
    /* ══════════════════════════════════════════
       SECTION SHELL
    ══════════════════════════════════════════ */
    .tv3 {
      background: var(--void);
      padding: 100px 0 0;
      overflow: hidden;
      position: relative;
    }

    /* Subtle background blobs */
    .tv3::before {
      content: '';
      position: absolute;
      top: -120px; left: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(109,63,214,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .tv3::after {
      content: '';
      position: absolute;
      top: 60px; right: -150px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,134,10,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .tv3-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }

    /* ══════════════════════════════════════════
       HEADER
    ══════════════════════════════════════════ */
    .tv3-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 32px;
      flex-wrap: wrap;
    }

    .tv3-header-left {}

    .tv3-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 14px;
    }

    .tv3-eyebrow-line {
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--violet), var(--violet2));
      border-radius: 2px;
    }

    .tv3-title {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .tv3-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .tv3-header-right {
      max-width: 360px;
    }

    .tv3-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════════
       CARDS GRID
    ══════════════════════════════════════════ */
    .tv3-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }

    /* ── Single Review Card ── */
    .tv3-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tv3-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow2);
    }

    /* Featured card — gold accent */
    .tv3-card--featured {
      border-color: var(--border2);
      box-shadow: var(--glow-g), var(--shadow);
    }

    /* ── Client Image ── */
    .tv3-img-wrap {
      position: relative;
      width: 100%;
      height: 220px;
      overflow: hidden;
      background: var(--surface);
    }

    .tv3-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.5s ease;
    }

    .tv3-card:hover .tv3-img-wrap img {
      transform: scale(1.04);
    }

    /* Rating badge over image */
    .tv3-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border2);
      border-radius: 50px;
      padding: 5px 12px;
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      box-shadow: 0 2px 12px rgba(201,134,10,0.15);
    }

    .tv3-badge-stars {
      display: flex;
      gap: 1px;
    }

    .tv3-badge-stars span {
      font-size: 10px;
      color: var(--gold3);
    }

    /* Placeholder when no image */
    .tv3-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--deep) 0%, var(--surface) 100%);
    }

    .tv3-av-large {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .tv3-av--gold {
      background: rgba(201,134,10,0.12);
      color: var(--gold);
      border: 2px solid rgba(201,134,10,0.25);
    }

    .tv3-av--violet {
      background: rgba(109,63,214,0.1);
      color: var(--violet);
      border: 2px solid rgba(109,63,214,0.2);
    }

    .tv3-av--teal {
      background: rgba(10,168,140,0.1);
      color: var(--teal);
      border: 2px solid rgba(10,168,140,0.2);
    }

    /* ── Review Body ── */
    .tv3-body {
      padding: 24px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* Quote open mark */
    .tv3-open-q {
      font-family: Georgia, serif;
      font-size: 48px;
      line-height: 0.6;
      color: var(--gold3);
      opacity: 0.5;
      margin-bottom: 10px;
      display: block;
    }

    .tv3-review-text {
      font-size: 14.5px;
      line-height: 1.72;
      color: var(--muted);
      flex: 1;
      margin-bottom: 22px;
    }

    /* Divider */
    .tv3-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 18px;
    }

    /* Author row */
    .tv3-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tv3-av-sm {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      flex-shrink: 0;
    }

    .tv3-author-info strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.2;
    }

    .tv3-author-info span {
      font-size: 11.5px;
      color: var(--muted2);
      letter-spacing: 0.01em;
    }

    /* ══════════════════════════════════════════
       STATS STRIP
    ══════════════════════════════════════════ */
    .tv3-stats {
      display: flex;
      align-items: stretch;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-bottom: 72px;
    }

    .tv3-stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 28px 20px;
      position: relative;
      text-align: center;
    }

    .tv3-stat + .tv3-stat::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: var(--border);
    }

    .tv3-stat-num {
      font-size: 36px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 6px;
    }

    .tv3-stat-num span {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .tv3-stat-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted2);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* ══════════════════════════════════════════
       LOGO MARQUEE
    ══════════════════════════════════════════ */
    .tv3-marquee-wrap {
      border-top: 1px solid var(--border);
      padding: 40px 0 50px;
      background: var(--deep);
    }

    .tv3-marquee-label {
      text-align: center;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 28px;
    }

    .tv3-marquee {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .tv3-marquee-track {
      display: flex;
      width: max-content;
      animation: tv3-scroll 30s linear infinite;
    }

    .tv3-marquee-track:hover {
      animation-play-state: paused;
    }

    @keyframes tv3-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .tv3-logo-slot {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 48px;
      height: 60px;
      border-right: 1px solid var(--border);
      flex-shrink: 0;
    }

    .tv3-logo-slot img {
      height: 34px;
      width: auto;
      object-fit: contain;
      filter: grayscale(1) opacity(0.35);
      transition: filter 0.3s ease;
    }

    .tv3-logo-slot:hover img {
      filter: grayscale(0) opacity(1);
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .tv3-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .tv3-grid {
        grid-template-columns: 1fr;
      }
      .tv3-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .tv3-stats {
        flex-wrap: wrap;
      }
      .tv3-stat {
        flex: 0 0 50%;
      }
      .tv3-stat + .tv3-stat::before {
        display: none;
      }
      .tv3-inner {
        padding: 0 20px;
      }
    }



/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta {
  padding: 130px 64px; position: relative;
  overflow: hidden; text-align: center;
  background: var(--deep);
}
.cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,134,10,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(109,63,214,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,134,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,134,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: auto; }
.cta-inner h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(52px, 8vw, 100px); font-weight: 700;
  line-height: 0.92; letter-spacing: -1px; color: var(--text); margin-bottom: 24px;
}
.cta-inner h2 em { font-style:normal; color: var(--gold); }
.cta-inner p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 46px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #F0F2FA; border-top: 1px solid var(--border);
  padding: 90px 64px 36px;
}
.ft { max-width: 1200px; margin: 0 auto 70px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; }
.fb p { color: var(--muted); font-size: 14px; line-height: 1.8; max-width: 280px; margin: 18px 0 28px; }
.f-soc { display: flex; gap: 10px; }
.f-soc a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 15px; text-decoration: none; transition: all 0.25s;
  box-shadow: var(--shadow);
}
.f-soc a:hover { background: var(--gold2); border-color: var(--gold2); color: #fff; box-shadow: 0 4px 16px rgba(201,134,10,0.3); }
.fc h5 {
  font-family: 'Fira Code', monospace; font-size: 10px; font-weight: 500;
  color: var(--muted2); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px;
}
.fc ul { list-style: none; }
.fc ul li { margin-bottom: 12px; }
.fc ul a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.25s; }
.fc ul a:hover { color: var(--gold); }

.fb-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.fb-bottom p { font-family: 'Fira Code', monospace; font-size: 12px; color: var(--muted2); }
.fb-bottom strong { color: var(--gold); }

/* ══════════════════════════════════════════
   FLOAT BUTTONS
══════════════════════════════════════════ */
#topBtn {
  position: fixed; bottom: 90px; right: 24px;
  width: 44px; height: 44px; background: var(--gold2); color: #fff;
  border: none; border-radius: 12px; font-size: 16px;
  cursor: none; display: none; z-index: 700;
  box-shadow: 0 8px 24px rgba(201,134,10,0.35); transition: all 0.25s;
}
#topBtn:hover { transform: translateY(-3px); }
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 50px; height: 50px; background: #25D366; color: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none; z-index: 700;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45); transition: all 0.25s;
}
.wa-float:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════════
   REVEAL
══════════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(48px); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.active { opacity:1; transform:translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1100px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(4,1fr); }
  .ft { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:900px) {
  .nav { padding: 14px 24px; }
  .nav.solid { padding: 12px 24px; }
  .hero,.about-strip,.services,.process,.portfolio,.tech,.testimonials,.cta,footer { padding-left:24px; padding-right:24px; }
  .about-inner { grid-template-columns:1fr; gap:50px; }
  .section-head { flex-direction:column; align-items:flex-start; }
  .svc-grid { grid-template-columns:1fr; }
  .proc-grid { grid-template-columns:1fr 1fr; }
  .port-grid { grid-template-columns:1fr; }
  .port-card.wide { grid-column: span 1; }
  .test-grid { grid-template-columns:1fr; }
  .hero-stats { gap:30px; }
}
@media(max-width:768px) {
  .nav-links { display:none; flex-direction:column; position:absolute; top:62px; left:0; right:0; background:rgba(250,251,255,0.98); padding:20px 24px; gap:15px; border-bottom:1px solid var(--border); backdrop-filter:blur(20px); }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
  .tech-grid { grid-template-columns:repeat(3,1fr); }
  .ft { grid-template-columns:1fr; }
  .fb-bottom { flex-direction:column; text-align:center; }
  .proc-grid { grid-template-columns:1fr; }
  body { cursor:auto; }
  #cur,#cur-ring { display:none; }
}
@media(max-width:480px) {
  .tech-grid { grid-template-columns:repeat(2,1fr); }
  .hero-stats { flex-direction:column; gap:24px; }
}
