/* ============================================
   CoderTent — Modern Redesign
   ============================================ */

:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-mid: #DBEAFE;
  --cyan: #0EA5E9;
  --ink: #0F172A;
  --ink-mid: #1E293B;
  --muted: #64748B;
  --muted-light: #94A3B8;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-card: #F1F5F9;
  --green: #10B981;
  --orange: #F59E0B;
  --purple: #8B5CF6;
  --pink: #EC4899;
  --red: #EF4444;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }
.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section { padding: 100px 0; }
.bg-light { background: var(--bg-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal, .reveal-right, .reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-right.visible, .reveal-card.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-light); }
.nav-cta { font-size: 14px; padding: 10px 20px; border-radius: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 32px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--bg-light); color: var(--blue); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.trust-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.hero-trust strong { color: var(--ink); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 260px;
  height: 520px;
  background: var(--ink);
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.06) inset;
  position: relative;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #F8FAFC;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--ink);
  border-radius: 0 0 20px 20px;
  margin: 0 auto 12px;
  flex-shrink: 0;
}
.app-ui {
  flex: 1;
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}
.app-avatar {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  flex-shrink: 0;
}
.app-topbar-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.app-topbar-name { font-size: 8px; font-weight: 700; color: var(--ink); }
.app-topbar-role { font-size: 7px; color: var(--muted); }
.app-bell { color: var(--muted); font-size: 12px; }

.blue-card {
  background: linear-gradient(135deg, #2563EB, #0EA5E9);
  border-radius: 14px;
  padding: 14px;
  color: #fff;
}
.card-label { font-size: 8px; opacity: .7; margin-bottom: 4px; }
.card-amount { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.card-sub { font-size: 8px; opacity: .6; }

.mini-stats { display: flex; gap: 8px; }
.mini-stat {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ms-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #fff;
  margin-bottom: 2px;
}
.ms-icon.g { background: var(--green); }
.ms-icon.r { background: var(--red); }
.ms-label { font-size: 7px; color: var(--muted); }
.ms-val { font-size: 10px; font-weight: 700; color: var(--ink); }

.chart-area {
  background: #fff;
  border-radius: 12px;
  padding: 10px 10px 6px;
  flex: 1;
}
.chart-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.chart-title-sm { font-size: 8px; font-weight: 700; color: var(--ink); }
.chart-period { font-size: 7px; color: var(--muted); background: var(--bg-light); padding: 2px 6px; border-radius: 4px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}
.bar {
  flex: 1;
  background: var(--blue-mid);
  border-radius: 4px 4px 0 0;
  transition: background var(--transition);
}
.bar.active { background: var(--blue); }

.txn-list { display: flex; flex-direction: column; gap: 6px; }
.txn-item {
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.txn-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #fff; flex-shrink: 0;
}
.txn-lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.txn-name { font-size: 8px; font-weight: 600; color: var(--ink); }
.txn-date { font-size: 7px; color: var(--muted); }
.txn-amount { font-size: 9px; font-weight: 700; }
.txn-amount.pos { color: var(--green); }
.txn-amount.neg { color: var(--red); }

/* Floating cards */
.fc-card {
  position: absolute;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 160px;
  z-index: 3;
}
.fc-card.fc1 { top: 10%; right: -40px; animation: float1 4s ease-in-out infinite; }
.fc-card.fc2 { bottom: 20%; left: -40px; animation: float2 4s ease-in-out infinite 1s; }
.fc-card.fc3 { top: 50%; right: -50px; animation: float1 4s ease-in-out infinite 2s; }
@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; flex-shrink: 0;
}
.fc-icon.blue { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.fc-icon.gold { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.fc-icon.green { background: linear-gradient(135deg, var(--green), #34D399); }
.fc-info { display: flex; flex-direction: column; }
.fc-info strong { font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.fc-info span { font-size: 11px; color: var(--muted); }

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator {
  width: 26px; height: 42px;
  border: 2px solid var(--border);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--blue);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0%,100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 20px;
}
.marquee-track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-inner .dot { color: var(--border); font-size: 20px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 20px;
}
.sc-icon.blue { background: linear-gradient(135deg, var(--blue), #60A5FA); }
.sc-icon.purple { background: linear-gradient(135deg, var(--purple), #A78BFA); }
.sc-icon.pink { background: linear-gradient(135deg, var(--pink), #F472B6); }
.sc-icon.green { background: linear-gradient(135deg, var(--green), #34D399); }
.sc-icon.orange { background: linear-gradient(135deg, #F59E0B, #FCD34D); }
.sc-icon.cyan { background: linear-gradient(135deg, var(--cyan), #38BDF8); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.sc-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
}
.sc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  transition: all var(--transition);
}
.service-card:hover .sc-arrow { background: var(--blue); color: #fff; transform: translateX(4px); }

/* ============================================
   PROCESS
   ============================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 64px; height: 64px;
  background: #fff;
  border: 2px solid var(--blue-mid);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--blue);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-icon {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: scale(1.1);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.process-step p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.process-connector {
  flex: 0 0 1px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue));
  margin-top: 116px;
  width: 40px;
  flex-shrink: 0;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left .section-label { margin-bottom: 16px; }
.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.why-left > p { font-size: 16px; color: var(--muted); margin-bottom: 40px; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.wf-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.why-feature:hover .wf-icon { background: var(--blue); color: #fff; }
.wf-text h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.wf-text p { font-size: 13.5px; color: var(--muted); }
.why-stats-row {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.why-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
}
.why-stat span { font-size: 13px; color: var(--muted); }

/* Why Right Visual */
.why-right { position: relative; }
.why-visual { position: relative; }
.wv-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.wvm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.wvm-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.wvm-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(16,185,129,.1);
  color: var(--green);
}
.progress-list { display: flex; flex-direction: column; gap: 16px; }
.progress-item { display: flex; flex-direction: column; gap: 6px; }
.pi-top { display: flex; justify-content: space-between; align-items: center; }
.pi-label { font-size: 13px; font-weight: 500; color: var(--ink); }
.pi-pct { font-size: 12px; font-weight: 700; color: var(--blue); }
.pi-bar {
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}
.pi-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 4px;
  transition: width 1.5s ease;
}
.pi-fill.done { background: linear-gradient(90deg, var(--green), #34D399); }
.pi-fill.pending { background: linear-gradient(90deg, var(--orange), #FCD34D); }
.pi-fill.early { background: var(--bg-card); }
.wvm-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wvm-avatars { display: flex; }
.wvm-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
}
.wvm-avatar:nth-child(1) { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.wvm-avatar:nth-child(2) { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.wvm-avatar:nth-child(3) { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.wvm-status { font-size: 12px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 5px; }

.wv-mini {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.wv-mini i { font-size: 18px; }
.wv-mini span { font-size: 13px; font-weight: 600; color: var(--ink); }
.wvm1 { bottom: -24px; left: -32px; animation: float1 4s ease-in-out infinite; }
.wvm2 { top: -24px; right: -24px; animation: float2 4s ease-in-out infinite 1.5s; }

/* ============================================
   STATS
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1E3A8A, #1D4ED8, #2563EB);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 32px 16px; }
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
}
.stat-label { font-size: 15px; color: rgba(255,255,255,.65); font-weight: 500; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.pf-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.pf-btn:hover, .pf-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pc-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pc-mockup-icon { font-size: 56px; color: rgba(255,255,255,.3); }
.pc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.pc-overlay span {
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
}
.portfolio-card:hover .pc-overlay { opacity: 1; }
.pc-info { padding: 20px 24px; }
.pc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
  margin-bottom: 10px;
}
.pc-info h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.pc-info p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.pc-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-tech span { font-size: 11px; font-weight: 500; padding: 3px 9px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 100px; color: var(--muted); }

/* ============================================
   TECH STACK
   ============================================ */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tech-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.tech-tab.active, .tech-tab:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.tech-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.tech-item:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,.1); transform: translateY(-4px); }
.tech-item img { width: 48px; height: 48px; margin: 0 auto 12px; object-fit: contain; }
.tech-item span { font-size: 12px; font-weight: 600; color: var(--muted); display: block; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tc-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.tc-quote { font-size: 15px; color: var(--ink-mid); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.tc-info strong { display: block; font-size: 14px; font-weight: 700; }
.tc-info span { font-size: 12px; color: var(--muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue-mid); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  gap: 16px;
  transition: all var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #1D4ED8 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-glow1 {
  position: absolute;
  top: -100px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.25), transparent 70%);
}
.cta-glow2 {
  position: absolute;
  bottom: -100px; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,.2), transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-trust {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-trust span { display: flex; align-items: center; gap: 6px; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bc-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.bc-body { padding: 24px; }
.bc-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 12px;
}
.bc-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.bc-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.bc-footer { display: flex; align-items: center; justify-content: space-between; }
.bc-author { display: flex; align-items: center; gap: 8px; }
.bc-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; }
.bc-name { font-size: 12px; font-weight: 600; }
.bc-read { font-size: 12px; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { padding: 80px 0; background: var(--bg-light); }
.newsletter-box {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-box h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.newsletter-box p { color: var(--muted); margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  background: transparent;
  color: var(--ink);
}
.newsletter-form input::placeholder { color: var(--muted-light); }
.newsletter-form .btn { border-radius: 10px; flex-shrink: 0; }
.nl-note { font-size: 12px; color: var(--muted-light); margin-top: 14px; }

/* ============================================
   CONTACT
   ============================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin-bottom: 16px; }
.contact-left p { font-size: 15px; color: var(--muted); margin-bottom: 40px; line-height: 1.75; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.ci-text span { font-size: 14px; color: var(--muted); }
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul a:hover { color: rgba(255,255,255,.85); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fc-row { display: flex; gap: 12px; align-items: flex-start; }
.fc-row i { color: var(--blue); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.fc-row a, .fc-row span { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }
.fc-row a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 40px; }
  .contact-form { padding: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* Utility */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.hidden { display: none; }
