/*======================================================================
  JSTECH — PREMIUM DESIGN SYSTEM  (Enhancement Layer)
======================================================================*/

/* ── 1. FONT & ROOT OVERRIDES ─────────────────────────────────────── */
:root {
  --default-font: "Inter", system-ui, -apple-system, sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --nav-font:     "Inter", sans-serif;
  --green:        #10bc69;
  --green-dark:   #0d9f58;
  --green-glow:   rgba(16,188,105,.25);
  --cyan:         #06b6d4;
  --ink:          #0b1120;
  --ink-2:        #111827;
  --ink-3:        #1e293b;
  --muted:        #64748b;
  --surface:      #f8fafc;
}

body { font-family: var(--default-font); -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--heading-font); }

/* ── NAVBAR BRAND NAME ──────────────────────────────────────────────*/
.header .logo .sitename {
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── 2. GRADIENT UTILITIES ──────────────────────────────────────────*/
.g-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-text-warm {
  background: linear-gradient(135deg, #10bc69 0%, #a3e635 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 3. PILL BADGE ──────────────────────────────────────────────────*/
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 16px;
  background: rgba(16,188,105,.1);
  border: 1px solid rgba(16,188,105,.3);
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
}
.pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── 4. BUTTONS ─────────────────────────────────────────────────────*/
.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green), #0ea05a);
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 13px 32px; border-radius: 10px; border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(16,188,105,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-g:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,188,105,.45); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem;
  padding: 13px 32px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }

.btn-outline-g {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green);
  font-weight: 700; font-size: .9rem;
  padding: 13px 32px; border-radius: 10px;
  border: 1.5px solid var(--green);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline-g:hover { background: var(--green); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green);
  font-weight: 700; font-size: .9rem;
  padding: 13px 32px; border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-white:hover { background: #f0fdf9; transform: translateY(-1px); color: var(--green-dark); }

/* ── 5. HERO SECTION ────────────────────────────────────────────────*/
.hero-v2 {
  background: var(--ink);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}

/* Animated gradient orbs */
.hero-v2 .orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.hero-v2 .orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(16,188,105,.18) 0%, transparent 70%);
  bottom: -200px; left: -150px;
  animation: float-orb 14s ease-in-out infinite;
}
.hero-v2 .orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float-orb 18s ease-in-out infinite reverse;
}
.hero-v2 .orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(163,230,53,.08) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: float-orb 10s ease-in-out infinite;
}
@keyframes float-orb {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(.95); }
}

/* Grid overlay */
.hero-v2::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-v2 .container { position: relative; z-index: 2; }

/* Hero typography */
.hero-v2 .hero-heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero-v2 .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Floating trust badges in hero */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--green); }

/* Dashboard card mockup */
.hero-dashboard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(12px);
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-dashboard .db-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.hero-dashboard .db-title { color: rgba(255,255,255,.5); font-size: .7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.db-dot { width:8px; height:8px; border-radius:50%; }
.db-dot.green { background:#10bc69; box-shadow:0 0 8px #10bc69; animation: blink 1.6s infinite; }

.hero-dashboard .db-metric {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.hero-dashboard .db-metric-label { font-size: .7rem; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.hero-dashboard .db-metric-value { font-size: 1.6rem; font-weight: 800; color: #fff; font-family: var(--heading-font); }
.hero-dashboard .db-metric-value span { font-size: .8rem; color: #10bc69; margin-left: 6px; font-weight: 600; }

.hero-dashboard .db-bar-row { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.hero-dashboard .db-bar-label { font-size: .68rem; color: rgba(255,255,255,.45); width: 55px; flex-shrink: 0; }
.hero-dashboard .db-bar-track { flex:1; height:6px; background:rgba(255,255,255,.07); border-radius:99px; overflow:hidden; }
.hero-dashboard .db-bar-fill { height:100%; border-radius:99px; }
.hero-dashboard .db-bar-pct { font-size:.68rem; color:rgba(255,255,255,.4); width:30px; text-align:right; }

/* ── 6. STATS SECTION ───────────────────────────────────────────────*/
.stats-v2 {
  background: linear-gradient(160deg, #0b1929 0%, #0d2218 100%);
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.stat-v2 {
  text-align: center; padding: 16px;
  position: relative;
}
.stat-v2::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.1), transparent);
}
.stat-v2:last-child::after { display: none; }
.stat-v2 .num {
  font-size: 3.2rem; font-weight: 900;
  background: linear-gradient(135deg, #10bc69, #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font); line-height: 1;
}
.stat-v2 .suffix { font-size: 2rem; }
.stat-v2 .lbl { color: rgba(255,255,255,.45); font-size: .8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }
.stat-v2 .ico { font-size: 1.4rem; color: rgba(16,188,105,.5); margin-bottom: 10px; }

/* ── 7. TRUST BAR ───────────────────────────────────────────────────*/
.trust-v2 { background: #f8fafc; padding: 36px 0; border-bottom: 1px solid #e5e7eb; }
.trust-v2 .trust-label { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; font-weight: 700; margin-bottom: 16px; text-align: center; }
.trust-client-v2 {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: .8rem; font-weight: 600; color: #6b7280;
  transition: .25s;
  white-space: nowrap;
}
.trust-client-v2 i { color: var(--green); }
.trust-client-v2:hover { border-color: var(--green); color: var(--green); box-shadow: 0 4px 20px rgba(16,188,105,.1); transform: translateY(-2px); }

/* ── 8. SECTION HEADER ──────────────────────────────────────────────*/
.sh { margin-bottom: 56px; }
.sh .pre { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 10px; }
.sh h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #0f172a; line-height: 1.2; margin: 0 0 14px; }
.sh h2 span { font-size: inherit; }
.sh p { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 580px; margin: 0 auto; }
.sh.light h2 { color: #fff; }
.sh.light p { color: rgba(255,255,255,.6); }
.sh.light .pre { color: rgba(16,188,105,.9); }

/* ── 9. SERVICE CARDS (v2) ──────────────────────────────────────────*/
.scard {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 18px;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.scard::after {
  content: '';
  position: absolute;
  inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(16,188,105,.03), rgba(6,182,212,.03));
  opacity: 0; transition: .3s;
}
.scard:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(16,188,105,.1); border-color: rgba(16,188,105,.35); }
.scard:hover::after { opacity: 1; }
.scard .icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(16,188,105,.12), rgba(6,182,212,.08));
  border: 1px solid rgba(16,188,105,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green);
  margin-bottom: 22px;
  transition: transform .25s;
}
.scard:hover .icon-wrap { transform: scale(1.1) rotate(-4deg); }
.scard h4 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.scard p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.scard .arrow-link { font-size: .82rem; font-weight: 700; color: var(--green); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.scard .arrow-link:hover { gap: 10px; }
/* top accent bar on hover */
.scard::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--green),var(--cyan)); transform:scaleX(0); transform-origin:left; transition:.3s; border-radius: 18px 18px 0 0; }
.scard:hover::before { transform:scaleX(1); }

/* ── 10. PRODUCT CARDS (v2) ─────────────────────────────────────────*/
.pcard {
  border-radius: 22px; overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform .3s, box-shadow .3s;
  height: 100%; display: flex; flex-direction: column;
  background: #fff;
}
.pcard:hover { transform: translateY(-8px); box-shadow: 0 25px 80px rgba(0,0,0,.1); }
.pcard-head {
  background: linear-gradient(140deg, #0b1929 0%, #0d2218 60%, #0b1929 100%);
  padding: 32px 28px 28px;
  position: relative; overflow: hidden;
}
.pcard-head::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,188,105,.15), transparent 70%);
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.pcard-tag {
  display: inline-block;
  background: rgba(16,188,105,.15); border: 1px solid rgba(16,188,105,.3);
  color: var(--green); font-size: .68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.pcard-head .picon { font-size: 2rem; color: var(--green); margin-bottom: 12px; display: block; }
.pcard-head h3 { color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.pcard-head p { color: rgba(255,255,255,.5); font-size: .83rem; margin: 0; }
.pcard-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pcard-body > p { color: var(--muted); font-size: .87rem; line-height: 1.7; margin-bottom: 20px; }
.pfeat { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.pfeat i { color: var(--green); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.pfeat span { font-size: .84rem; color: #374151; line-height: 1.55; }
.pcard-foot { padding: 0 28px 28px; display: flex; gap: 10px; }

/* ── 11. AI SECTION (v2) ────────────────────────────────────────────*/
.ai-v2 {
  background: var(--ink);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
/* Animated grid */
.ai-v2::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ai-v2 .orb-a {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,188,105,.1) 0%, transparent 65%);
  bottom: -200px; left: -100px;
  pointer-events: none; filter: blur(60px);
  animation: float-orb 16s ease-in-out infinite;
}
.ai-v2 .orb-b {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.08) 0%, transparent 65%);
  top: -100px; right: 10%;
  pointer-events: none; filter: blur(60px);
  animation: float-orb 20s ease-in-out infinite reverse;
}
.ai-v2 .container { position: relative; z-index: 1; }
.ai-v2 h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.25; }
.ai-v2 > .container > .row > div > p { color: rgba(255,255,255,.6); line-height: 1.8; }

.ai-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition: background .3s, border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.ai-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(16,188,105,.05), transparent);
  opacity: 0; transition: .3s;
}
.ai-card:hover { background: rgba(16,188,105,.06); border-color: rgba(16,188,105,.35); transform: translateY(-4px); }
.ai-card:hover::after { opacity: 1; }
.ai-card .ai-icon { font-size: 1.7rem; color: var(--green); margin-bottom: 16px; display: block; }
.ai-card h5 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.ai-card p { color: rgba(255,255,255,.5); font-size: .86rem; line-height: 1.7; margin: 0; }

/* ── 12. PROCESS SECTION ────────────────────────────────────────────*/
.process-v2 { padding: 100px 0; background: #f8fafc; }
.proc-step { text-align: center; padding: 10px 20px; }
.proc-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(16,188,105,.3);
  transition: transform .25s;
}
.proc-step:hover .proc-num { transform: scale(1.1) rotate(-4deg); }
.proc-step h5 { font-weight: 700; color: #0f172a; margin-bottom: 8px; font-size: .95rem; }
.proc-step p { color: var(--muted); font-size: .84rem; line-height: 1.65; }

/* ── 13. TEAM CARDS ─────────────────────────────────────────────────*/
.tcard {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 20px;
  transition: transform .25s, box-shadow .25s;
}
.tcard:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(16,188,105,.1); }
.tcard img {
  width: 88px; height: 88px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(#fff,#fff) padding-box,
              linear-gradient(135deg,var(--green),var(--cyan)) border-box;
  margin-bottom: 16px;
}
.tcard h5 { font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.tcard .role { color: var(--green); font-size: .82rem; font-weight: 700; margin-bottom: 10px; }
.tcard p { color: var(--muted); font-size: .84rem; line-height: 1.6; }
.tcard .socials a { color: var(--muted); margin: 0 4px; font-size: .95rem; transition: color .2s; }
.tcard .socials a:hover { color: var(--green); }

/* ── 14. VALUE CARDS ────────────────────────────────────────────────*/
.vcard {
  padding: 32px 24px; text-align: center;
  background: #fff; border: 1px solid #e8f0fe;
  border-radius: 18px; height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.vcard:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(16,188,105,.1); border-color: rgba(16,188,105,.3); }
.vcard .vico { font-size: 1.8rem; color: var(--green); margin-bottom: 14px; display: block; }
.vcard h5 { font-weight: 800; color: #0f172a; margin-bottom: 8px; font-size: .97rem; }
.vcard p { color: var(--muted); font-size: .86rem; line-height: 1.65; margin: 0; }

/* ── 15. PAGE HERO (inner pages) ────────────────────────────────────*/
.ph {
  background: linear-gradient(140deg, #08111f 0%, #0d2218 50%, #050c17 100%);
  padding: 110px 0 72px;
  position: relative; overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ph .orb-ph {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,188,105,.1) 0%, transparent 65%);
  filter: blur(80px);
  bottom: -180px; left: -100px; pointer-events: none;
}
.ph .container { position: relative; z-index: 1; }
.ph h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; }
.ph p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-top: 10px; }
.ph .breadcrumb-item { color: rgba(255,255,255,.4); font-size: .82rem; }
.ph .breadcrumb-item.active { color: var(--green); }
.ph .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }

/* ── 16. CTA SECTIONS ───────────────────────────────────────────────*/
.cta-dark {
  background: linear-gradient(135deg, #0b2a1a 0%, #062010 100%);
  padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(16,188,105,.15);
}
.cta-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(16,188,105,.12) 0%, transparent 60%);
}
.cta-dark .container { position: relative; z-index: 1; }
.cta-dark h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-dark p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── 17. FEATURE ITEMS (service detail) ─────────────────────────────*/
.fi {
  display: flex; gap: 18px;
  padding: 24px;
  background: #fff; border: 1px solid #e8f0fe; border-radius: 16px;
  height: 100%; transition: .25s;
}
.fi:hover { border-color: rgba(16,188,105,.3); box-shadow: 0 8px 30px rgba(16,188,105,.08); }
.fi .fi-icon { font-size: 1.4rem; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.fi h6 { font-weight: 700; color: #0f172a; margin-bottom: 6px; font-size: .93rem; }
.fi p { color: var(--muted); font-size: .84rem; margin: 0; line-height: 1.65; }

/* ── 18. TECH BADGES ────────────────────────────────────────────────*/
.tbadge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f1f5f9; border: 1px solid #e2e8f0;
  color: #475569; font-size: .78rem; font-weight: 600;
  padding: 7px 16px; border-radius: 10px;
  transition: .2s;
}
.tbadge:hover { background: #e8f5ee; border-color: rgba(16,188,105,.4); color: var(--green); }
.tbadge i { color: var(--green); font-size: .7rem; }

/* ── 19. PORTFOLIO ──────────────────────────────────────────────────*/
.port-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.port-filter button {
  padding: 9px 24px; border: 1.5px solid #e5e7eb;
  background: #fff; border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: .2s;
}
.port-filter button.active, .port-filter button:hover {
  background: var(--green); border-color: var(--green); color: #fff;
  box-shadow: 0 4px 14px rgba(16,188,105,.3);
}
.port-item { border-radius: 16px; overflow: hidden; position: relative; }
.port-item img { width: 100%; height: 230px; object-fit: cover; transition: transform .4s; display: block; }
.port-item:hover img { transform: scale(1.06); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8,17,31,.93) 100%);
  opacity: 0; transition: .3s;
  display: flex; align-items: flex-end; padding: 22px;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-overlay h5 { color: #fff; font-weight: 700; margin: 0 0 4px; font-size: .95rem; }
.port-overlay span { color: var(--green); font-size: .76rem; font-weight: 600; }

/* ── 20. TESTIMONIAL CARD ───────────────────────────────────────────*/
.rev-card {
  background: #fff; border: 1px solid #e8f0fe;
  border-radius: 20px; padding: 30px;
  transition: transform .25s, box-shadow .25s;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(16,188,105,.08); }
.rev-stars { color: #f59e0b; margin-bottom: 14px; font-size: .85rem; letter-spacing: 2px; }
.rev-text { color: #475569; font-size: .88rem; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-ava {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.rev-name { font-weight: 700; color: #0f172a; font-size: .9rem; }
.rev-role { color: var(--muted); font-size: .76rem; }

/* ── 21. ACCORDION (FAQ) ────────────────────────────────────────────*/
.faq-item { border: 1.5px solid #e8f0fe !important; border-radius: 14px !important; margin-bottom: 12px; overflow: hidden; }
.faq-btn { font-weight: 700 !important; color: #0f172a !important; background: #fff !important; font-size: .92rem !important; padding: 18px 22px !important; }
.faq-btn:not(.collapsed) { color: var(--green) !important; background: #f0fdf8 !important; box-shadow: none !important; }
.faq-btn::after { filter: hue-rotate(120deg); }
.accordion-body { color: var(--muted); font-size: .88rem; line-height: 1.8; padding: 0 22px 20px; }

/* ── 22. CONTACT FORM ───────────────────────────────────────────────*/
.cform-input {
  width: 100%; border: 1.5px solid #e5e7eb;
  border-radius: 12px; padding: 13px 16px;
  font-size: .9rem; color: #0f172a;
  font-family: var(--default-font);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  background: #fff;
}
.cform-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(16,188,105,.12); }
.cform-label { display: block; font-weight: 600; font-size: .82rem; color: #374151; margin-bottom: 7px; }

/* ── 23. WHATSAPP FLOAT ─────────────────────────────────────────────*/
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform .25s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); color: #fff; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,.75); }
}

/* ── 24. RESPONSIVE TWEAKS ──────────────────────────────────────────*/
@media (max-width: 768px) {
  .hero-v2 { padding: 100px 0 60px; min-height: auto; }
  .hero-v2 .hero-heading { font-size: 2.1rem; }
  .hero-dashboard { display: none; }
  .stat-v2::after { display: none; }
  .stats-v2 { padding: 50px 0; }
  .ph h1 { font-size: 2rem; }
  .ai-v2 h2, .cta-dark h2 { font-size: 1.8rem; }
}

/* ── 25. SCROLL ANIMATIONS ──────────────────────────────────────────*/
[data-aos] { will-change: transform, opacity; }

/* ── 26. SCROLLBAR ──────────────────────────────────────────────────*/
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--green), var(--cyan)); border-radius: 99px; }
