/* ═══════════════════════════════════════════
   V Ventures Tech Solutions — Main Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --bg:       #050b18;
  --card:     #081a30;
  --text:     #e2e8f0;
  --muted:    #7da8c8;
  --blue:     #1a6cf6; 
  --blue-lt:  #3b82f6; 
  --blue-br:  #38bdf8;
  --green:    #10b981;
  --green-lt: #34d399;
  --orange:   #f97316;
  --orange-lt:#fb923c;
  --purple:   #8b5cf6;
  --purple-lt:#a78bfa;
  --gold:     #f59e0b;
  --gold-lt:  #fbbf24;
  --border:   rgba(59, 130, 246, 0.18);
  --border-h: rgba(59, 130, 246, 0.45);
  --glow:     rgba(26, 108, 246, 0.38);
  --r:        16px;
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ─── NOISE TEXTURE ─── */
.noise {
  position: fixed; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}

/* ─── BACKGROUND ORBS ─── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-orb  { position: absolute; border-radius: 50%; filter: blur(100px); }
.bo1 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(26,108,246,0.1) 0%, transparent 70%); top: -300px; left: -200px; animation: bgDrift1 32s ease-in-out infinite; }
.bo2 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%); bottom: -200px; right: -150px; animation: bgDrift2 28s ease-in-out infinite; }
.bo3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 70%); top: 45%; left: 35%; transform: translate(-50%,-50%); animation: bgDrift3 38s ease-in-out infinite; }
.bo4 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 70%); top: 55%; right: 10%; animation: bgDrift1 24s ease-in-out infinite reverse; animation-delay: -12s; }

/* ─── PARTICLES CANVAS ─── */
.particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; }

/* ─── FLOATING TECH SYMBOLS ─── */
.tech-float { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.tf {
  position: absolute; font-weight: 800; user-select: none;
  animation: tfFloat linear infinite;
}
.tf1 { top: 12%; left: 6%;  font-size: 1.8rem; opacity: 0.045; color: var(--blue-br);  animation-duration: 22s; animation-delay: 0s; }
.tf2 { top: 65%; left: 94%; font-size: 1.6rem; opacity: 0.04;  color: var(--green-lt); animation-duration: 26s; animation-delay: -6s; }
.tf3 { top: 28%; left: 88%; font-size: 2.2rem; opacity: 0.04;  color: var(--orange-lt);animation-duration: 19s; animation-delay: -11s; }
.tf4 { top: 78%; left: 12%; font-size: 1.8rem; opacity: 0.04;  color: var(--purple-lt);animation-duration: 24s; animation-delay: -8s; }
.tf5 { top: 48%; left: 52%; font-size: 1.4rem; opacity: 0.03;  color: var(--blue-br);  animation-duration: 31s; animation-delay: -16s; }
.tf6 { top: 85%; left: 72%; font-size: 2rem;   opacity: 0.04;  color: var(--green-lt); animation-duration: 18s; animation-delay: -4s; }
.tf7 { top: 20%; left: 42%; font-size: 1.5rem; opacity: 0.03;  color: var(--orange-lt);animation-duration: 28s; animation-delay: -13s; }
.tf8 { top: 55%; left: 25%; font-size: 1.9rem; opacity: 0.035; color: var(--purple-lt);animation-duration: 21s; animation-delay: -9s; }

/* ─── LOADING OVERLAY ─── */
.proj-loading {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.proj-loading.active { opacity: 1; pointer-events: all; }
.pl-content { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pl-logo-box {
  position: relative; width: 80px; height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #040e22, #081e3a);
  border: 1px solid rgba(59,130,246,0.3);
  display: grid; place-items: center; overflow: visible;
}
.pl-logo-img { width: 60px; height: 60px; object-fit: contain; border-radius: 14px; }
.pl-logo-ring {
  position: absolute; inset: -8px; border-radius: 28px;
  border: 2px solid transparent;
  background: conic-gradient(var(--blue), var(--blue-br), var(--gold), var(--green), var(--blue)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: rotateBorder 2s linear infinite;
}
.pl-label {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  letter-spacing: 0.05em;
}
.pl-bar-track {
  width: 260px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.pl-bar {
  height: 100%; border-radius: 4px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-br), var(--green));
  transition: width 0.3s ease;
  background-size: 200% 100%;
  animation: barShimmer 1.5s linear infinite;
}
.pl-status { font-size: 0.82rem; color: var(--muted); }

/* ─── PROJECT MODAL ─── */
.proj-modal {
  position: fixed; inset: 0; z-index: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.proj-modal.open { opacity: 1; pointer-events: all; }
.pm-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.pm-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 780px;
  background: #060f20;
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s ease;
}
.proj-modal.open .pm-box { transform: translateY(0) scale(1); }
.pm-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer; font-size: 1rem;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.pm-close:hover { background: rgba(255,255,255,0.2); }
.pm-browser { border-bottom: 1px solid rgba(59,130,246,0.2); }
.pm-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(4, 12, 26, 0.9);
}
.pm-dots { display: flex; gap: 6px; }
.pmd1,.pmd2,.pmd3 { width: 11px; height: 11px; border-radius: 50%; }
.pmd1 { background: #ff5f57; }
.pmd2 { background: #febc2e; }
.pmd3 { background: #28c840; }
.pm-url-bar {
  flex: 1; text-align: center; font-size: 0.75rem; color: var(--muted);
  background: rgba(255,255,255,0.06); padding: 4px 10px;
  border-radius: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 400px; margin: 0 auto;
}
.pm-refresh { color: var(--muted); font-size: 1rem; cursor: default; }
.pm-screen {
  height: 340px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pm-screen-label {
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.18); letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center;
}
.pm-screen-soon {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 20px; text-align: center;
}
.pm-cs-icon { font-size: 3rem; animation: bounce 2s ease-in-out infinite; }
.pm-cs-title { font-size: 1.5rem; font-weight: 800; color: #fff; }
.pm-cs-text { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 340px; }
.pm-details {
  padding: 24px; display: flex;
  align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.pm-meta { flex: 1; min-width: 0; }
.pm-proj-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--blue-br); margin-bottom: 6px;
}
.pm-meta h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.pm-meta p  { color: var(--muted); font-size: 0.88rem; }
.pm-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.pm-visit-btn.hidden { display: none; }
.pm-cs-wa {
  display: inline-block; margin-top: 14px; padding: 11px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #fff; font-weight: 700; font-size: 0.9rem;
}

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(3, 8, 20, 0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-overlay.open { display: flex; }
.close-menu {
  position: absolute; top: 24px; right: 24px;
  background: none; border: 1px solid var(--border);
  color: var(--text); width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; font-size: 1rem; transition: border-color 0.2s;
}
.close-menu:hover { border-color: var(--border-h); }
.mobile-logo-wrap {
  width: 72px; height: 72px; border-radius: 18px;
  background: linear-gradient(135deg, #040e22, #081e3a);
  border: 1px solid rgba(59,130,246,0.3);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 0 30px rgba(26,108,246,0.3); margin-bottom: 8px;
}
.mobile-logo-img { width: 56px; height: 56px; object-fit: contain; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mnav-link { font-size: 1.4rem; font-weight: 700; color: var(--muted); transition: color 0.2s; }
.mnav-link:hover { color: var(--text); }
.mnav-cta {
  margin-top: 12px; padding: 14px 32px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-br));
  color: #fff; font-weight: 700; font-size: 1rem;
}

/* ─── TOPBAR ─── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 6vw;
  background: rgba(3, 8, 20, 0.9); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  animation: slideDown 0.6s ease forwards;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo-img-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #040e22, #081e3a);
  border: 1px solid rgba(59,130,246,0.35);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 0 20px rgba(26,108,246,0.25); flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.logo-img-wrap:hover { box-shadow: 0 0 30px rgba(56,189,248,0.4); }
.logo-img { width: 34px; height: 34px; object-fit: contain; }
.brand-names { display: flex; flex-direction: column; line-height: 1.2; }
.brand-main { font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; }
.brand-sub { font-size: 0.7rem; color: var(--blue-br); letter-spacing: 0.05em; font-weight: 500; }
.nav { display: flex; gap: 24px; color: var(--muted); font-weight: 500; }
.nav a { transition: color 0.2s; position: relative; }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--blue-br);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.cta {
  padding: 9px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-br));
  color: #fff; font-weight: 600; font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(26,108,246,0.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }

/* ─── MAIN ─── */
main { position: relative; z-index: 2; padding: 0 6vw 120px; }

/* ─── BUTTONS ─── */
.btn-primary, .btn-ghost {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-br));
  color: #fff; box-shadow: 0 10px 28px rgba(26,108,246,0.4);
  animation: btnPulse 3s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(56,189,248,0.45); animation: none; }
.btn-ghost { border-color: var(--border); color: var(--text); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--border-h); }

/* ─── HERO ─── */
.hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px; align-items: center; padding: 96px 0 64px;
}
.hero-content { animation: slideInLeft 0.8s ease forwards; }
.eyebrow {
  color: var(--blue-br); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18rem; font-size: 0.74rem;
  margin-bottom: 12px; animation: eyebrowIn 0.7s ease 0.1s both;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.8rem);
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue-lt), var(--blue-br), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto;
  animation: textShimmer 4s linear infinite;
}
.sub { color: var(--muted); font-size: 1rem; max-width: 520px; margin-bottom: 16px; }
.tagline-pill {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold); font-weight: 700; font-size: 0.88rem;
  margin-bottom: 24px; letter-spacing: 0.08em;
  animation: pillGlow 3s ease-in-out infinite;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat {
  padding: 14px 12px; border-radius: var(--r);
  background: rgba(8,26,48,0.8); border: 1px solid var(--border); text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.stat:nth-child(1) .stat-num { background: linear-gradient(135deg, var(--blue-lt), var(--blue-br)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat:nth-child(2) .stat-num { background: linear-gradient(135deg, var(--green), var(--green-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat:nth-child(3) .stat-num { background: linear-gradient(135deg, var(--orange), var(--orange-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat:hover { transform: translateY(-2px); border-color: var(--border-h); }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; }
.stat-label { color: var(--muted); font-size: 0.8rem; }

/* ─── HERO VISUAL ─── */
.hero-visual { position: relative; min-height: 500px; animation: slideInRight 0.8s ease 0.2s both; overflow: visible; }
.orb { position: absolute; width: 140px; height: 140px; border-radius: 50%; opacity: 0.4; animation: float 10s ease-in-out infinite; }
.orb-a { background: radial-gradient(circle at 30% 30%, var(--blue), transparent 70%); top: 20px; left: 8%; }
.orb-b { background: radial-gradient(circle at 30% 30%, var(--blue-br), transparent 70%); bottom: 20px; right: 12%; animation-delay: -3s; }
.orb-c { background: radial-gradient(circle at 30% 30%, var(--gold), transparent 70%); top: 40%; right: 28%; animation-delay: -5s; opacity: 0.25; }

/* ─── PROFILE PHOTO ─── */
.profile-frame {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%);
  width: 270px; height: 270px;
}
.profile-ring-outer {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue), var(--blue-br), var(--gold), var(--green), var(--blue-br), var(--blue));
  animation: rotateBorder 4s linear infinite;
}
.profile-ring-inner {
  position: absolute; top: 4px; left: 4px; right: 4px; bottom: 4px;
  border-radius: 50%; background: var(--bg);
}
.profile-photo {
  position: absolute;
  top: 9px; left: 9px;
  width: calc(100% - 18px); height: calc(100% - 18px);
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  object-fit: cover; object-position: center 20%;
  z-index: 2;
  animation: profilePulse 4s ease-in-out infinite;
}
.profile-tag {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 7px;
  background: rgba(8,26,48,0.95); border: 1px solid rgba(34,197,94,0.45);
  padding: 5px 14px; border-radius: 999px;
  font-size: 0.76rem; font-weight: 600; white-space: nowrap; z-index: 3;
  backdrop-filter: blur(12px); box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
}
.hero-badges { position: absolute; bottom: 0; right: 0; display: grid; gap: 10px; }
.badge-card {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(8,26,48,0.88); border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(1,13,30,0.5); min-width: 200px;
  transition: transform 0.25s, border-color 0.25s;
  animation: badgeIn 0.6s ease both;
}
.badge-card:nth-child(1) { animation-delay: 0.6s; }
.badge-card:nth-child(2) { animation-delay: 0.75s; }
.badge-card:nth-child(3) { animation-delay: 0.9s; }
.badge-card:hover { transform: translateX(-4px); border-color: var(--border-h); }
.badge-ico { font-size: 1.4rem; flex-shrink: 0; }
.badge-card strong { display: block; font-size: 0.88rem; color: var(--text); }
.badge-card p { font-size: 0.75rem; color: var(--muted); margin: 0; }

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden; padding: 14px 0; margin: 64px -6vw;
  background: linear-gradient(135deg, rgba(26,108,246,0.07), rgba(16,185,129,0.04));
  border-top: 1px solid rgba(59,130,246,0.12);
  border-bottom: 1px solid rgba(59,130,246,0.12);
}
.marquee-track {
  display: inline-flex; gap: 20px; white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1rem; text-transform: uppercase;
  color: var(--blue-br);
}
.sep    { color: var(--gold);       opacity: 0.7; }
.sep-g  { color: var(--green-lt);   opacity: 0.7; }
.sep-o  { color: var(--orange-lt);  opacity: 0.7; }

/* ─── SECTIONS ─── */
.section { margin-top: 96px; padding-top: 24px; border-top: 1px solid rgba(59,130,246,0.08); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section-label {
  color: var(--blue-br); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18rem; margin-bottom: 6px;
  display: inline-block; position: relative;
}
.section-label::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--blue-br), transparent);
  animation: labelLine 2.5s ease-in-out infinite;
}
.section-head h2 { font-size: clamp(1.7rem, 2vw + 1rem, 2.8rem); letter-spacing: -0.02em; line-height: 1.15; }
.section-desc { color: var(--muted); max-width: 420px; }

/* ─── SERVICES ─── */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card {
  border-radius: var(--r); background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  padding: 0; transform-style: preserve-3d;
}
.svc-color-bar { height: 3px; width: 100%; flex-shrink: 0; border-radius: 0; }
.svc-blue  .svc-color-bar { background: linear-gradient(90deg, var(--blue), var(--blue-br)); }
.svc-green .svc-color-bar { background: linear-gradient(90deg, var(--green), var(--green-lt)); }
.svc-orange .svc-color-bar { background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }

/* Inner padding: children get side margins; last visible child gets bottom margin */
.service-card > *:not(.svc-color-bar) { margin-left: 24px; margin-right: 24px; }
.service-card > .svc-cta { margin-bottom: 24px; align-self: flex-start; }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.35); }
.svc-blue:hover  { border-color: rgba(56,189,248,0.5); box-shadow: 0 24px 56px rgba(26,108,246,0.2); }
.svc-green:hover { border-color: rgba(52,211,153,0.5); box-shadow: 0 24px 56px rgba(16,185,129,0.2); }
.svc-orange:hover{ border-color: rgba(251,146,60,0.5);  box-shadow: 0 24px 56px rgba(249,115,22,0.2); }

.service-icon-wrap { font-size: 2.2rem; margin-top: 20px; display: inline-block; transition: transform 0.3s; }
.service-card:hover .service-icon-wrap { transform: scale(1.15) rotate(-8deg); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; }
.service-card > p { color: var(--muted); font-size: 0.93rem; }
.svc-list { list-style: none; display: grid; gap: 7px; padding: 0; }
.svc-list li { font-size: 0.87rem; color: var(--muted); padding-left: 16px; position: relative; }
.svc-list li::before { content: "→"; position: absolute; left: 0; font-size: 0.8rem; }
.svc-blue  .svc-list li::before { color: var(--blue-br); }
.svc-green .svc-list li::before { color: var(--green-lt); }
.svc-orange .svc-list li::before { color: var(--orange-lt); }

/* Tech stack toggle */
.svc-expand-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); cursor: pointer; font-size: 0.84rem; font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  align-self: stretch;
}
.svc-expand-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); border-color: rgba(255,255,255,0.2); }
.sei { transition: transform 0.3s; display: inline-block; font-size: 0.7rem; }
.service-card.expanded .sei { transform: rotate(180deg); }
.svc-skills { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s; opacity: 0; }
.service-card.expanded .svc-skills { max-height: 200px; opacity: 1; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 7px; padding: 8px 0 4px; }
.skill-tag {
  padding: 4px 11px; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
  transition: transform 0.2s;
}
.skill-tag:hover { transform: scale(1.05); }
.svc-blue   .skill-tag { background: rgba(26,108,246,0.15);  border: 1px solid rgba(56,189,248,0.3);  color: var(--blue-br);  }
.svc-green  .skill-tag { background: rgba(16,185,129,0.12);  border: 1px solid rgba(52,211,153,0.3);  color: var(--green-lt); }
.svc-orange .skill-tag { background: rgba(249,115,22,0.12);  border: 1px solid rgba(251,146,60,0.3);  color: var(--orange-lt);}

.svc-cta {
  display: inline-block; margin-top: 4px;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.svc-blue  .svc-cta { background: rgba(26,108,246,0.12);  border: 1px solid rgba(56,189,248,0.3);  color: var(--blue-br);  }
.svc-green .svc-cta { background: rgba(16,185,129,0.12);  border: 1px solid rgba(52,211,153,0.3);  color: var(--green-lt); }
.svc-orange .svc-cta{ background: rgba(249,115,22,0.12);  border: 1px solid rgba(251,146,60,0.3);  color: var(--orange-lt);}
.svc-cta:hover { transform: translateX(4px); filter: brightness(1.2); }

/* ─── CTA STRIP ─── */
.cta-strip {
  margin-top: 60px; padding: 40px 32px; border-radius: var(--r);
  background: linear-gradient(135deg, rgba(26,108,246,0.1) 0%, rgba(16,185,129,0.06) 100%);
  border: 1px solid rgba(59,130,246,0.22); position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.04), transparent);
  animation: stripShine 4s ease-in-out infinite;
}
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip-text h2 { font-size: clamp(1.3rem, 2vw, 1.9rem); margin-bottom: 6px; }
.cta-strip-text p { color: var(--muted); }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── WHY GRID ─── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-bottom: 32px; }
.why-card {
  padding: 28px; border-radius: var(--r); background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden; transform-style: preserve-3d;
}
.why-blue   { border-color: rgba(56,189,248,0.25); }
.why-green  { border-color: rgba(52,211,153,0.25); }
.why-purple { border-color: rgba(167,139,250,0.25); }
.why-orange { border-color: rgba(251,146,60,0.25); }
.why-blue:hover   { border-color: rgba(56,189,248,0.55);  box-shadow: 0 20px 48px rgba(26,108,246,0.2); }
.why-green:hover  { border-color: rgba(52,211,153,0.55);  box-shadow: 0 20px 48px rgba(16,185,129,0.2); }
.why-purple:hover { border-color: rgba(167,139,250,0.55); box-shadow: 0 20px 48px rgba(139,92,246,0.2); }
.why-orange:hover { border-color: rgba(251,146,60,0.55);  box-shadow: 0 20px 48px rgba(249,115,22,0.2); }
.why-card:hover   { transform: translateY(-4px); }
.why-num { display: block; font-size: 2.2rem; font-weight: 900; opacity: 0.2; margin-bottom: 10px; line-height: 1; transition: opacity 0.3s; }
.why-blue   .why-num { color: var(--blue-br); }
.why-green  .why-num { color: var(--green-lt); }
.why-purple .why-num { color: var(--purple-lt); }
.why-orange .why-num { color: var(--orange-lt); }
.why-card:hover .why-num { opacity: 0.5; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 0.92rem; }

.trust-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 20px 24px;
  background: rgba(8,26,48,0.7); border: 1px solid var(--border); border-radius: var(--r);
}
.trust-item { display: flex; align-items: center; gap: 10px; padding: 10px 24px; font-weight: 700; font-size: 0.9rem; transition: transform 0.2s; }
.trust-item:hover { transform: translateY(-2px); }
.ti-blue   strong { color: var(--blue-br); }
.ti-green  strong { color: var(--green-lt); }
.ti-orange strong { color: var(--orange-lt); }
.ti-purple strong { color: var(--purple-lt); }
.trust-item span { font-size: 1.2rem; }
.trust-div { width: 1px; height: 32px; background: var(--border); }

/* ─── PROJECTS ─── */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.project-card {
  border-radius: var(--r); background: var(--card); border: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}
.project-card:hover { transform: translateY(-6px); border-color: var(--border-h); box-shadow: 0 24px 56px rgba(1,13,30,0.7); }

/* Browser chrome mockup */
.project-browser { position: relative; }
.pb-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(4, 10, 24, 0.95);
  border-bottom: 1px solid rgba(59,130,246,0.15);
}
.pb-dots { display: flex; gap: 5px; flex-shrink: 0; }
.pb-dots span { width: 10px; height: 10px; border-radius: 50%; }
.pb-dots span:nth-child(1) { background: #ff5f57; }
.pb-dots span:nth-child(2) { background: #febc2e; }
.pb-dots span:nth-child(3) { background: #28c840; }
.pb-url {
  flex: 1; font-size: 0.68rem; color: var(--muted);
  background: rgba(255,255,255,0.06); padding: 3px 8px; border-radius: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center;
}
.pb-screen {
  height: 170px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .pb-overlay { opacity: 1; }
.pb-preview-btn {
  padding: 10px 22px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 700; font-size: 0.88rem; color: #fff;
  backdrop-filter: blur(8px); white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.pb-preview-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.05); }
.proj-label {
  font-size: 1.5rem; font-weight: 900; color: rgba(255,255,255,0.18);
  letter-spacing: 0.05em; user-select: none; transition: color 0.3s; text-transform: uppercase;
}
.project-card:hover .proj-label { color: rgba(255,255,255,0.3); }
.live-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.5);
  color: #4ade80; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  animation: livePulse 2s ease-in-out infinite;
}
.coming-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(245,158,11,0.2); border: 1px solid rgba(245,158,11,0.5);
  color: var(--gold-lt); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
}
.project-body { padding: 18px; display: flex; flex-direction: column; gap: 7px; }
.proj-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-br); }
.project-body h3 { font-size: 1rem; font-weight: 700; }
.project-body p  { color: var(--muted); font-size: 0.85rem; }
.proj-link { display: inline-block; margin-top: 2px; color: var(--blue-br); font-weight: 600; font-size: 0.85rem; transition: opacity 0.2s, transform 0.2s; }
.project-card:hover .proj-link { transform: translateX(4px); }

/* ─── CONTACT ─── */
.contact-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.contact-main { padding: 32px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); }
.contact-main h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.contact-main > p { color: var(--muted); margin-bottom: 24px; }
.contact-methods { display: grid; gap: 12px; margin-bottom: 20px; }
.cmethod {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 12px; border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cmethod:hover { transform: translateY(-2px); border-color: var(--border-h); }
.whatsapp-btn { background: rgba(34,197,94,0.07); border-color: rgba(34,197,94,0.22); }
.whatsapp-btn:hover { border-color: rgba(34,197,94,0.5); }
.email-btn { background: rgba(26,108,246,0.07); }
.cmethod-icon { width: 22px; height: 22px; flex-shrink: 0; }
.cmethod div { flex: 1; }
.cmethod strong { display: block; font-size: 0.95rem; }
.cmethod span { font-size: 0.8rem; color: var(--muted); }
.cmethod .arrow { color: var(--muted); }
.contact-info-row { display: flex; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 0.88rem; }

/* ─── SOCIAL PANEL ─── */
.social-panel { padding: 28px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); display: flex; flex-direction: column; }
.social-panel h4 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.social-duo { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.social-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 14px;
  background: rgba(5,16,34,0.8);
  border: 1px solid rgba(56,189,248,0.18);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; color: var(--text); flex: 1;
}
.social-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.social-card.tiktok-card:hover  { border-color: rgba(254,44,85,0.5);  box-shadow: 0 12px 32px rgba(254,44,85,0.12); }
.social-card.youtube-card:hover { border-color: rgba(255,0,0,0.5);    box-shadow: 0 12px 32px rgba(255,0,0,0.12); }
.s-icon-lg { width: 30px; height: 30px; flex-shrink: 0; }
.social-card div { flex: 1; }
.social-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.social-card span { font-size: 0.82rem; color: var(--muted); }
.s-arrow { color: var(--muted); font-size: 1.1rem; transition: transform 0.2s; }
.social-card:hover .s-arrow { transform: translateX(4px); color: var(--text); }

/* ─── FOOTER ─── */
.footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding: 24px 6vw 40px;
  border-top: 1px solid rgba(59,130,246,0.1); color: var(--muted); font-size: 0.88rem;
  position: relative; z-index: 2;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-wrap {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, #040e22, #081e3a);
  border: 1px solid rgba(59,130,246,0.25);
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.footer-logo-img { width: 26px; height: 26px; object-fit: contain; }
.footer-tagline { color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ════════════════════════════════
   KEYFRAME ANIMATIONS
════════════════════════════════ */
@keyframes slideDown    { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(40px);  } to { opacity:1; transform:translateX(0); } }
@keyframes eyebrowIn    { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:translateX(0); } }
@keyframes badgeIn      { from { opacity:0; transform:translateX(30px);  } to { opacity:1; transform:translateX(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-18px); } }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes bgDrift1 { 0%,100% { transform:translate(0,0); } 33% { transform:translate(60px,-40px); } 66% { transform:translate(-30px,50px); } }
@keyframes bgDrift2 { 0%,100% { transform:translate(0,0); } 33% { transform:translate(-50px,35px); } 66% { transform:translate(60px,-25px); } }
@keyframes bgDrift3 { 0%,100% { transform:translate(-50%,-50%); } 33% { transform:translate(calc(-50% + 70px),calc(-50% - 50px)); } 66% { transform:translate(calc(-50% - 40px),calc(-50% + 60px)); } }
@keyframes rotateBorder { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes profilePulse {
  0%,100% { box-shadow:0 0 0 0px rgba(56,189,248,0.4), 0 0 30px rgba(26,108,246,0.4); }
  50%      { box-shadow:0 0 0 6px rgba(56,189,248,0.08), 0 0 60px rgba(26,108,246,0.6); }
}
@keyframes statusPulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.5); opacity:0.6; } }
@keyframes textShimmer { 0% { background-position:0% center; } 100% { background-position:200% center; } }
@keyframes btnPulse {
  0%,100% { box-shadow:0 10px 28px rgba(26,108,246,0.4); }
  50%      { box-shadow:0 10px 40px rgba(26,108,246,0.65), 0 0 20px rgba(56,189,248,0.25); }
}
@keyframes pillGlow {
  0%,100% { border-color:rgba(245,158,11,0.35); box-shadow:none; }
  50%      { border-color:rgba(245,158,11,0.65); box-shadow:0 0 12px rgba(245,158,11,0.2); }
}
@keyframes labelLine { 0%,100% { transform:scaleX(0); opacity:0; } 50% { transform:scaleX(1); opacity:1; } }
@keyframes livePulse { 0%,100% { opacity:1; } 50% { opacity:0.6; } }
@keyframes stripShine { 0% { left:-100%; } 100% { left:200%; } }
@keyframes tfFloat {
  0%,100% { transform:translateY(0) rotate(0deg); }
  25%      { transform:translateY(-28px) rotate(90deg); }
  50%      { transform:translateY(-14px) rotate(180deg); }
  75%      { transform:translateY(-36px) rotate(270deg); }
}
@keyframes barShimmer {
  0%   { background-position:0% center; }
  100% { background-position:200% center; }
}
@keyframes bounce {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-12px); }
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity:0; transform:translateY(24px) scale(0.98); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0) scale(1); }

/* ════════════════════════════════
   CHAT WIDGET
════════════════════════════════ */
.chat-hidden { display:none !important; }

#chat-widget {
  position: fixed; bottom: 20px; right: 20px; z-index: 9000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

/* ── Toggle button ── */
#chat-toggle {
  display: flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #1a6cf6 0%, #0ea5e9 100%);
  color: #fff; border: none; padding: 12px 20px; border-radius: 999px;
  cursor: pointer; font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 6px 28px rgba(26,108,246,0.6);
  transition: transform 0.2s, box-shadow 0.2s; position: relative;
}
#chat-toggle:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(14,165,233,0.5); }
.chat-toggle-label { white-space: nowrap; }
.chat-unread-badge {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #f59e0b; color: #000;
  font-size: 0.68rem; font-weight: 900; display: grid; place-items: center;
  border: 2px solid var(--bg);
}

/* ── Chat window ── */
#chat-window {
  width: 356px;
  background: #040e20;
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.85), 0 0 0 1px rgba(59,130,246,0.08);
  display: flex; flex-direction: column;
  max-height: 560px;
}

/* ── Header ── */
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 13px;
  background: linear-gradient(135deg, #0f4fc7 0%, #0284c7 100%);
  flex-shrink: 0;
}
.chat-hinfo { display: flex; align-items: center; gap: 10px; }
.chat-logo-wrap {
  position: relative; width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; overflow: hidden;
}
.chat-logo-img { width: 30px; height: 30px; object-fit: contain; border-radius: 5px; }
.chat-online-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; border: 1.5px solid #0f4fc7;
  animation: statusPulse 2s ease-in-out infinite;
}
.chat-hinfo strong { display: block; font-size: 0.85rem; color: #fff; font-weight: 700; line-height: 1.2; }
.chat-online { font-size: 0.65rem; color: rgba(255,255,255,0.72); }
.chat-header-btns { display: flex; align-items: center; gap: 5px; }
.chat-end-btn {
  padding: 3px 8px; border-radius: 5px; font-size: 0.66rem; font-weight: 700;
  background: rgba(248,113,113,0.15); border: 1px solid rgba(248,113,113,0.35);
  color: #fca5a5; cursor: pointer; transition: background 0.2s;
}
.chat-end-btn:hover { background: rgba(248,113,113,0.3); }
#chat-close {
  background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.75);
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  font-size: 0.8rem; display: grid; place-items: center; transition: background 0.2s;
}
#chat-close:hover { background: rgba(255,255,255,0.25); }

/* ── Messages ── */
.chat-messages {
  flex: 1; overflow-y: auto; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px; max-height: 280px;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.2); border-radius: 4px; }

/* ── Bubbles ── */
.chat-msg { display: flex; flex-direction: column; max-width: 80%; gap: 2px; }
.admin-msg { align-self: flex-start; }
.user-msg  { align-self: flex-end; }
.admin-msg p {
  background: rgba(15,79,199,0.13);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 8px 12px; border-radius: 3px 14px 14px 14px;
  font-size: 0.865rem; color: #dde8f5; margin: 0; line-height: 1.55; word-break: break-word;
}
.user-msg p {
  background: linear-gradient(135deg, #1a6cf6, #0284c7);
  padding: 8px 12px; border-radius: 14px 3px 14px 14px;
  font-size: 0.865rem; color: #fff; margin: 0; line-height: 1.55; word-break: break-word;
}
.msg-time { font-size: 0.6rem; color: var(--muted); padding: 0 2px; opacity: 0.75; }
.admin-msg .msg-time { align-self: flex-start; }
.user-msg  .msg-time { align-self: flex-end; }

/* ── Chat ended ── */
.chat-ended-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-top: 1px solid rgba(59,130,246,0.14);
  font-size: 0.78rem; color: var(--muted); flex-shrink: 0;
  background: #040e20;
}
.chat-ended-inner button {
  padding: 5px 12px; border-radius: 7px; font-size: 0.76rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-br));
  border: none; color: #fff; cursor: pointer;
}

/* ── Start form ── */
#chat-start-form {
  padding: 10px 12px; border-top: 1px solid rgba(59,130,246,0.14);
  display: flex; flex-direction: column; gap: 7px; flex-shrink: 0;
  background: rgba(4,14,32,0.98);
}
#chat-name {
  width: 100%; padding: 8px 12px; border-radius: 9px;
  background: rgba(8,22,50,0.95); border: 1px solid rgba(59,130,246,0.18);
  color: var(--text); font-size: 0.84rem; outline: none;
}
#chat-name:focus { border-color: var(--blue-lt); }

/* ── Reply area ── */
#chat-reply-area {
  padding: 8px 12px 8px; border-top: 1px solid rgba(59,130,246,0.14);
  display: flex; flex-direction: column; gap: 5px; flex-shrink: 0;
  background: rgba(4,14,32,0.98);
}

/* ── Shared input row ── */
.chat-input-row { display: flex; gap: 7px; align-items: center; }
.chat-input-row input {
  flex: 1; padding: 8px 12px; border-radius: 9px;
  background: rgba(8,22,50,0.95); border: 1px solid rgba(59,130,246,0.18);
  color: var(--text); font-size: 0.84rem; outline: none;
}
.chat-input-row input:focus { border-color: var(--blue-lt); }
#chat-start-btn, .chat-send-btn {
  padding: 8px 14px; border-radius: 9px;
  background: linear-gradient(135deg, #1a6cf6, #0ea5e9);
  border: none; color: #fff; cursor: pointer; font-size: 0.95rem; font-weight: 700;
  flex-shrink: 0; display: grid; place-items: center; transition: opacity 0.2s;
}
#chat-start-btn:hover, .chat-send-btn:hover { opacity: 0.85; }
.chat-send-btn { width: 38px; height: 38px; padding: 0; }

/* ── Image bar ── */
.chat-action-bar { display: flex; gap: 6px; }
.chat-img-btn {
  flex: 1; padding: 6px 10px; border-radius: 8px; cursor: pointer;
  background: rgba(30,58,100,0.5); border: 1px solid rgba(59,130,246,0.18);
  color: #7da8c8; font-size: 0.76rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: background 0.2s, color 0.2s;
}
.chat-img-btn:hover { background: rgba(56,189,248,0.12); color: var(--blue-br); }

/* ── Upload progress ── */
.file-upload-progress {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.71rem; color: var(--muted);
}
.file-prog-bar {
  flex: 1; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-br));
  transition: width 0.25s; width: 0%;
}

/* ── Images / files in bubble ── */
.chat-img {
  max-width: 150px; max-height: 120px; border-radius: 8px;
  cursor: pointer; display: block; object-fit: cover; transition: opacity 0.2s;
}
.chat-img:hover { opacity: 0.85; }
.chat-file-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 10px; border-radius: 7px;
  background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.2);
  color: var(--blue-br); font-size: 0.8rem; font-weight: 600; text-decoration: none;
}
.chat-file-link span { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── System / error ── */
.chat-sys {
  text-align: center; font-size: 0.68rem; color: var(--muted);
  padding: 3px 0; opacity: 0.65;
}

.chat-typing { padding: 2px 12px; font-size: 0.73rem; color: var(--blue-br); animation: chatPulse 1.5s ease-in-out infinite; }
@keyframes chatPulse { 0%,100% { opacity:0.4; } 50% { opacity:1; } }


/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) { .nav { display:none; } .hamburger { display:flex; } }
@media (max-width: 768px) {
  main { padding:0 5vw 80px; }

  /* ── Hero: text top-left, photo top-right, badges full-width below ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 130px;
    grid-template-rows: auto auto;
    grid-template-areas:
      "content photo"
      "badges  badges";
    column-gap: 12px;
    row-gap: 18px;
    align-items: start;
    padding: 48px 0 24px;
  }
  .hero-content { grid-area: content; }

  /* Make hero-visual transparent so its children become direct grid items */
  .hero-visual {
    display: contents;
  }
  .orb { display: none; }

  /* Profile circle in top-right */
  .profile-frame {
    grid-area: photo;
    position: relative;
    top: auto; left: auto; transform: none;
    width: 130px; height: 130px; flex-shrink: 0;
    border-radius: 50%; overflow: hidden;
    box-shadow: 0 0 0 3px var(--blue-lt), 0 0 0 6px rgba(26,108,246,0.18),
                0 8px 24px rgba(0,0,0,0.5);
    margin-top: 6px; justify-self: end;
  }
  .profile-ring-outer, .profile-ring-inner { display: none; }
  .profile-tag { display: none; }
  .profile-photo {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto; inset: unset;
    width: 100%; height: 100%; border-radius: 0; clip-path: none;
    object-fit: cover; object-position: center 20%;
    animation: none;
  }

  /* Badges: full width below in 2 columns; last spans full row */
  .hero-badges {
    grid-area: badges;
    position: static;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; width: 100%; margin: 0;
  }
  .badge-card { min-width: unset; padding: 10px 11px; gap: 9px; }
  .badge-card:last-child { grid-column: 1 / -1; }
  .badge-ico { font-size: 1.1rem; flex-shrink: 0; }
  .badge-card strong { font-size: 0.8rem; }
  .badge-card p { font-size: 0.7rem; }

  /* Site cards — 2 columns on phone, tighter inner padding */
  .service-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid     { grid-template-columns: 1fr 1fr; gap: 12px; }
  .project-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .service-card { gap: 10px; }
  .service-card > *:not(.svc-color-bar) { margin-left: 14px; margin-right: 14px; }
  .service-card > .svc-cta { margin-bottom: 14px; }
  .service-icon-wrap { font-size: 1.7rem; margin-top: 14px; }
  .service-card h3 { font-size: 0.95rem; }
  .service-card > p { font-size: 0.78rem; line-height: 1.4; }
  .svc-list li { font-size: 0.74rem; }

  .why-card { padding: 16px 14px; }
  .why-card h3 { font-size: 0.92rem; margin-bottom: 6px; }
  .why-card p  { font-size: 0.76rem; line-height: 1.45; }
  .why-num     { font-size: 1.6rem; }

  .project-card .proj-info { padding: 12px 14px; }
  .project-card h3, .project-card .proj-title { font-size: 0.95rem; }
  .project-card .proj-desc, .project-card p { font-size: 0.76rem; }

  .stats { grid-template-columns:repeat(3,1fr); }
  .section-head { flex-direction:column; align-items:flex-start; }
  .contact-wrap { grid-template-columns:1fr; }
  .cta-strip-inner { flex-direction:column; align-items:flex-start; }
  .trust-bar { flex-direction:column; align-items:flex-start; }
  .trust-div { width:100%; height:1px; }
  .footer { flex-direction:column; align-items:center; text-align:center; }
  .pm-box { border-radius:16px; }
  .pm-screen { height:220px; }
  .pm-details { flex-direction:column; }
}
@media (max-width: 520px) {
  .hero-content h1 { font-size:clamp(1.7rem,7vw,2.2rem); }
  .topbar { flex-wrap:wrap; }
  .cta { display:none; }

  .hero { grid-template-columns: 1fr 110px; column-gap: 10px; row-gap: 14px; }
  .profile-frame { width:110px; height:110px; }

  .badge-card { padding:8px 9px; gap:7px; }
  .badge-ico { font-size:1rem; }
  .badge-card strong { font-size:0.74rem; }
  .badge-card p { font-size:0.65rem; }

  .stats { grid-template-columns:repeat(3,1fr); gap:6px; }
  .stat-num { font-size:1.2rem; }
  .stat-label { font-size:0.66rem; }
  .trust-bar { padding:16px; }
  .trust-item { padding:8px 0; }

  /* Cards stay 2-col but tighter */
  .service-grid, .why-grid, .project-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .pm-screen { height:180px; }

  /* Chat — full-screen tall bottom sheet, hide toggle when open */
  #chat-widget { bottom: 0; right: 0; left: 0; gap: 0; align-items: flex-end; }
  #chat-toggle { margin: 0 14px 14px auto; padding: 11px 17px; font-size: 0.85rem; }
  #chat-window {
    width: 100%; height: 92dvh; max-height: 92dvh;
    border-radius: 18px 18px 0 0; border-bottom: none;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.7);
  }
  #chat-widget:has(#chat-window:not(.chat-hidden)) #chat-toggle { display: none; }
  .chat-messages { max-height: none; min-height: 160px; }
  .chat-img { max-width: 120px; max-height: 95px; }
}

/* ════════════════════════════════
   NAV DROPDOWNS
════════════════════════════════ */
.nav-item {
  position: relative;
  display: flex; align-items: center;
}
.nav-link {
  display: flex; align-items: center; gap: 5px;
  cursor: pointer; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-caret {
  font-size: 0.6rem; display: inline-block;
  transition: transform 0.25s;
}
.nav-item:hover .nav-caret,
.nav-item.open .nav-caret { transform: rotate(180deg); }

.nav-drop {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #060f22;
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.65);
  padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
}
.nav-drop::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px; height: 11px;
  background: #060f22;
  border-top: 1px solid rgba(59,130,246,0.22);
  border-left: 1px solid rgba(59,130,246,0.22);
}
.nav-item:hover .nav-drop,
.nav-item.open .nav-drop {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.ndrop-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  font-size: 0.87rem; font-weight: 500; color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.ndrop-link:hover { background: rgba(56,189,248,0.09); color: var(--text); }
.ndi { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.ndrop-more {
  border-top: 1px solid var(--border); margin-top: 4px; padding-top: 13px;
  color: var(--blue-br); font-weight: 700;
}
.ndrop-more:hover { background: rgba(56,189,248,0.09); color: var(--blue-br); }

/* ════════════════════════════════
   THEME TOGGLE
════════════════════════════════ */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--text); cursor: pointer; font-size: 1rem;
  display: grid; place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.14); border-color: var(--border-h); transform: rotate(20deg); }

/* ════════════════════════════════
   LIGHT MODE
════════════════════════════════ */
[data-theme="light"] {
  --bg:       #eef2ff;
  --card:     #ffffff;
  --text:     #0f172a;
  --muted:    #4a5568;
  --border:   rgba(59, 130, 246, 0.15);
  --border-h: rgba(59, 130, 246, 0.4);
}
[data-theme="light"] body { background: #eef2ff; }
[data-theme="light"] .topbar { background: rgba(238,242,255,0.92); border-bottom-color: rgba(59,130,246,0.1); }
[data-theme="light"] .noise  { opacity: 0.012; }
[data-theme="light"] .tech-float .tf { opacity: 0.06; }
[data-theme="light"] .particles-canvas { opacity: 0.25; }
[data-theme="light"] .bo1 { background: radial-gradient(circle, rgba(26,108,246,0.07) 0%, transparent 70%); }
[data-theme="light"] .bo2 { background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%); }
[data-theme="light"] .bo3 { background: radial-gradient(circle, rgba(249,115,22,0.04) 0%, transparent 70%); }
[data-theme="light"] .bo4 { background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 70%); }
[data-theme="light"] .profile-ring-inner { background: #eef2ff; }
[data-theme="light"] .profile-tag { background: rgba(255,255,255,0.95); border-color: rgba(34,197,94,0.4); }
[data-theme="light"] .badge-card { background: rgba(255,255,255,0.9); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
[data-theme="light"] .stat { background: rgba(255,255,255,0.85); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
[data-theme="light"] .marquee-wrap { background: linear-gradient(135deg,rgba(26,108,246,0.05),rgba(16,185,129,0.03)); border-color:rgba(59,130,246,0.1); }
[data-theme="light"] .service-card,
[data-theme="light"] .why-card,
[data-theme="light"] .project-card,
[data-theme="light"] .contact-main,
[data-theme="light"] .social-panel { background: #ffffff; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
[data-theme="light"] .service-card { border-color: rgba(59,130,246,0.12); }
[data-theme="light"] .svc-expand-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); color: var(--muted); }
[data-theme="light"] .svc-expand-btn:hover { background: rgba(0,0,0,0.08); color: var(--text); }
[data-theme="light"] .cta-strip { background: linear-gradient(135deg,rgba(26,108,246,0.07),rgba(16,185,129,0.04)); }
[data-theme="light"] .trust-bar { background: rgba(255,255,255,0.8); }
[data-theme="light"] .trust-item { color: var(--text); }
[data-theme="light"] .pb-topbar { background: rgba(238,242,255,0.97); border-bottom-color: rgba(59,130,246,0.12); }
[data-theme="light"] .pb-url { color: #475569; background: rgba(0,0,0,0.05); }
[data-theme="light"] .social-card { background: rgba(255,255,255,0.9); border-color: rgba(59,130,246,0.15); }
[data-theme="light"] .nav-drop { background: #ffffff; border-color: rgba(59,130,246,0.15); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
[data-theme="light"] .nav-drop::before { background: #ffffff; border-color: rgba(59,130,246,0.15); }
[data-theme="light"] .mobile-overlay { background: rgba(238,242,255,0.97); }
[data-theme="light"] .mobile-logo-wrap { background: linear-gradient(135deg,#e0e8f8,#d4e0f5); }
[data-theme="light"] .proj-loading { background: rgba(238,242,255,0.97); }
[data-theme="light"] .pl-label { color: var(--text); }
[data-theme="light"] .pl-bar-track { background: rgba(0,0,0,0.08); }
[data-theme="light"] .pl-logo-box { background: linear-gradient(135deg,#dce8f8,#ccdaf0); border-color: rgba(59,130,246,0.2); }
[data-theme="light"] .pm-box { background: #ffffff; border-color: rgba(59,130,246,0.18); }
[data-theme="light"] .pm-topbar { background: rgba(238,242,255,0.95); border-bottom-color: rgba(59,130,246,0.1); }
[data-theme="light"] .pm-close { background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.15); color: var(--text); }
[data-theme="light"] .pm-meta h3 { color: var(--text); }
[data-theme="light"] #chat-window { background: #ffffff; border-color: rgba(59,130,246,0.15); }
[data-theme="light"] .admin-msg p { background: rgba(26,108,246,0.07); border-color: rgba(59,130,246,0.18); color: var(--text); }
[data-theme="light"] #chat-start-form input,
[data-theme="light"] .chat-input-row input { background: rgba(0,0,0,0.04); color: var(--text); }
[data-theme="light"] .footer { border-top-color: rgba(59,130,246,0.1); }
[data-theme="light"] .theme-toggle { background: rgba(0,0,0,0.06); border-color: rgba(59,130,246,0.2); }
[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.1); }
[data-theme="light"] .logo-img-wrap { background: linear-gradient(135deg,#dce8f8,#ccdaf0); border-color: rgba(59,130,246,0.25); }
[data-theme="light"] .footer-logo-wrap { background: linear-gradient(135deg,#dce8f8,#ccdaf0); }
[data-theme="light"] .brand-sub { color: var(--blue); }
[data-theme="light"] .section { border-top-color: rgba(59,130,246,0.07); }
[data-theme="light"] .cmethod { border-color: rgba(59,130,246,0.12); }
[data-theme="light"] .whatsapp-btn { background: rgba(34,197,94,0.05); }
[data-theme="light"] .email-btn { background: rgba(26,108,246,0.05); }

/* ════════════════════════════════
   PROJECT SCREENSHOT IMAGE
════════════════════════════════ */
.pb-screenshot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  animation: imgFadeIn 0.5s ease 0.3s forwards;
}
.project-card:hover .pb-screenshot { transform: scale(1.06); }
@keyframes imgFadeIn { to { opacity: 1; } }

/* ════════════════════════════════
   PROJECT MOCK UI (coming-soon)
════════════════════════════════ */
.pb-mock {
  position: absolute; inset: 0;
  padding: 12px; display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}

/* Shared atoms */
.pbm-chip {
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.18);
}
.pbm-chip-sm { height: 4px; }
.pbm-dot { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.pbm-dot.a { background: rgba(255,95,87,0.6); }
.pbm-dot.b { background: rgba(254,188,46,0.6); }
.pbm-row { display: flex; align-items: center; gap: 7px; }
.pbm-toprow { margin-bottom: 2px; }

/* ── Code editor mock ── */
.pbm-split { display: flex; gap: 8px; flex: 1; }
.pbm-sidebar-col { width: 28%; display: flex; flex-direction: column; gap: 5px; padding-top: 2px; }
.pbm-file-item { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.pbm-file-item.active { background: rgba(255,255,255,0.3); }
.pbm-code-col { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pbm-codeline { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.18); }
.pbm-codeline.indent { margin-left: 12px; background: rgba(255,255,255,0.12); }

/* ── Banking mock ── */
.pbm-bank-card {
  background: rgba(255,255,255,0.12); border-radius: 8px;
  padding: 8px 10px; display: flex; flex-direction: column; gap: 6px;
}
.pbm-balance-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.pbm-bal-amount { height: 12px; width: 55%; border-radius: 4px; background: rgba(255,255,255,0.3); }
.pbm-action-row { justify-content: space-around; margin: 4px 0; }
.pbm-action-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.pbm-tx-list { display: flex; flex-direction: column; gap: 5px; }
.pbm-tx-item { display: flex; align-items: center; gap: 7px; }
.pbm-tx-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.pbm-tx-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }

/* ── Education mock ── */
.pbm-course-row { display: flex; gap: 8px; }
.pbm-course-card { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pbm-course-thumb { height: 36px; border-radius: 6px; background: rgba(255,255,255,0.15); margin-bottom: 2px; }
.pbm-progress-row { display: flex; flex-direction: column; gap: 5px; margin-top: 2px; }
.pbm-progress-bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.1); overflow: hidden; }
.pbm-progress-fill { height: 100%; border-radius: 3px; background: rgba(255,255,255,0.45); }

/* ── Virtual SIM mock ── */
.pbm-sim-wrap { display: flex; gap: 10px; align-items: flex-start; flex: 1; }
.pbm-phone-outline {
  width: 52px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 6px;
  display: flex; flex-direction: column; gap: 5px;
}
.pbm-chip-num { height: 7px; background: rgba(255,255,255,0.35); }
.pbm-sim-flags { display: flex; gap: 4px; margin-top: 3px; }
.pbm-flag-dot { width: 10px; height: 10px; border-radius: 2px; background: rgba(255,255,255,0.2); }
.pbm-sim-list { flex: 1; display: flex; flex-direction: column; gap: 6px; padding-top: 2px; }
.pbm-sim-item { height: 18px; border-radius: 5px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }

/* ── Social boost mock ── */
.pbm-stats-row { display: flex; gap: 7px; }
.pbm-stat-box {
  flex: 1; background: rgba(255,255,255,0.12); border-radius: 7px;
  padding: 6px 7px; display: flex; flex-direction: column; gap: 5px;
}
.pbm-stat-val { height: 10px; width: 60%; border-radius: 3px; background: rgba(255,255,255,0.35); }
.pbm-chart-wrap {
  flex: 1; display: flex; align-items: flex-end; gap: 5px;
  padding: 4px 2px 0; margin-top: 2px;
}
.pbm-bar-v {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.25);
  transition: height 0.3s;
  min-height: 8px;
}
.project-card:hover .pbm-bar-v { background: rgba(255,255,255,0.38); }

/* ════════════════════════════════
   IMPROVED MOBILE (PHONE)
════════════════════════════════ */
@media (max-width: 480px) {
  /* General */
  body { font-size: 14px; }
  main { padding: 0 4vw 80px; }

  /* Topbar */
  .topbar { padding: 10px 4vw; }
  .brand-main { font-size: 0.9rem; }
  .brand-sub  { font-size: 0.62rem; }
  .logo-img-wrap { width: 38px; height: 38px; }
  .logo-img { width: 28px; height: 28px; }
  .theme-toggle { width: 32px; height: 32px; font-size: 0.9rem; }

  /* Hero */
  .hero { padding: 56px 0 32px; gap: 24px; }
  .hero-content h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); margin-bottom: 14px; }
  .sub { font-size: 0.88rem; }
  .tagline-pill { font-size: 0.8rem; padding: 5px 13px; }
  .btn-primary, .btn-ghost { padding: 11px 20px; font-size: 0.88rem; }
  .hero-actions { gap: 10px; margin-bottom: 24px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.72rem; }

  /* Profile visual */
  .hero-visual { min-height: 340px; }
  .profile-frame { width: 170px; height: 170px; top: 36%; }
  .hero-badges { margin-top: 60px; gap: 8px; }
  .badge-card { padding: 8px 12px; gap: 9px; }
  .badge-ico { font-size: 1.2rem; }
  .badge-card strong { font-size: 0.8rem; }
  .badge-card p { font-size: 0.7rem; }

  /* Marquee */
  .marquee-wrap { margin: 40px -4vw; }
  .marquee-track { font-size: 0.74rem; }

  /* Sections */
  .section { margin-top: 64px; }
  .section-head h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-desc { font-size: 0.85rem; }

  /* Service cards */
  .service-icon-wrap { font-size: 1.8rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card > p { font-size: 0.85rem; }
  .svc-list li { font-size: 0.82rem; }
  .skill-tag { font-size: 0.7rem; padding: 3px 9px; }

  /* Why cards */
  .why-num { font-size: 1.8rem; }
  .why-card h3 { font-size: 1rem; }
  .why-card p { font-size: 0.85rem; }
  .trust-item { font-size: 0.82rem; }
  .trust-item span { font-size: 1rem; }

  /* Project cards */
  .pb-screen { height: 140px; }
  .proj-label { font-size: 1.2rem; }
  .project-body h3 { font-size: 0.92rem; }
  .project-body p { font-size: 0.8rem; }

  /* Contact */
  .contact-main h3 { font-size: 1.2rem; }
  .cmethod { padding: 11px 14px; gap: 10px; }
  .cmethod strong { font-size: 0.88rem; }
  .cmethod span { font-size: 0.75rem; }
  .social-card { padding: 14px 16px; gap: 12px; }
  .social-card strong { font-size: 0.9rem; }
  .s-icon-lg { width: 24px; height: 24px; }

  /* Modal */
  .pm-box { border-radius: 14px; }
  .pm-screen { height: 160px; }
  .pm-details { padding: 16px; gap: 14px; }
  .pm-meta h3 { font-size: 1rem; }
  .pm-meta p  { font-size: 0.82rem; }
  .btn-primary, .btn-ghost { padding: 10px 18px; font-size: 0.85rem; }

  /* CTA strip */
  .cta-strip { padding: 28px 20px; }
  .cta-strip-text h2 { font-size: 1.15rem; }

  /* Footer */
  .footer { padding: 20px 4vw 32px; font-size: 0.8rem; }
  .footer-tagline { font-size: 0.82rem; }
}

