/* ============================================================
   VELIAN Digital Solutions — Main Stylesheet
   Build. Connect. Grow.
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --blue-primary: #1A56DB;
  --blue-dark: #0D2E6E;
  --blue-light: #EFF6FF;
  --blue-mid: #3B82F6;
  --yellow: #F59E0B;
  --yellow-light: #FEF3C7;
  --green: #10B981;
  --red: #EF4444;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --navy: #0F1B3C;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-blue: 0 8px 32px rgba(26,86,219,.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  border: 1px solid rgba(26,86,219,.2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.section-label svg { width: 14px; height: 14px; }
.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: .9375rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.text-center { text-align: center; }
.text-blue { color: var(--blue-primary); }
.highlight { color: var(--blue-primary); position: relative; }
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-mid));
  border-radius: 2px;
  opacity: .3;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-mid) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1448b8 0%, var(--blue-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,86,219,.35);
}
.btn-outline {
  background: var(--white);
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, #FBBF24 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245,158,11,.3);
}
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,.4); }
.btn-white {
  background: var(--white);
  color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-size: 1.25rem; font-weight: 800; color: var(--blue-primary); line-height: 1; letter-spacing: -.02em; }
.nav-logo-text .tagline { font-size: .65rem; color: var(--gray-500); letter-spacing: .06em; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--blue-primary);
  background: var(--blue-light);
}
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta .btn { padding: 10px 20px; font-size: .875rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: 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 Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 1px solid var(--gray-100);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--blue-primary); background: var(--blue-light); }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu .mobile-cta .btn { justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 40%, #EFF6FF 100%);
  padding: 92px 0 36px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,86,219,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid rgba(26,86,219,.2);
  color: var(--blue-primary);
  font-size: .8125rem;
  font-weight: 700;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.hero-title .color-word {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 480px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gray-700);
}
.hero-feature svg { width: 16px; height: 16px; color: var(--blue-primary); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--blue-light), #BFDBFE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .625rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-left: -8px;
  overflow: hidden;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: .8125rem; color: var(--gray-500); }
.trust-text strong { color: var(--gray-800); font-weight: 700; }

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}
.hero-stat-card:nth-child(2) { bottom: 20px; left: -20px; animation-delay: -2s; }
.hero-stat-card:nth-child(3) { top: 20px; right: -20px; animation-delay: -1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.stat-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon.green { background: #D1FAE5; }
.stat-icon.blue { background: var(--blue-light); }
.stat-icon svg { width: 16px; height: 16px; }
.stat-icon.green svg { color: var(--green); }
.stat-icon.blue svg { color: var(--blue-primary); }
.stat-info .val { font-size: .9375rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.stat-info .lbl { font-size: .675rem; color: var(--gray-400); margin-top: 2px; }

/* ============================================================
   LAYANAN SECTION
   ============================================================ */
#layanan {
  padding: 40px 0 28px;
  background: var(--white);
}
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.layanan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.layanan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-mid));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.layanan-card:hover {
  border-color: rgba(26,86,219,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.layanan-card:hover::before { transform: scaleX(1); }
.layanan-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  transition: var(--transition);
}
.layanan-icon svg { width: 26px; height: 26px; }
.layanan-icon.blue { background: #DBEAFE; color: var(--blue-primary); }
.layanan-icon.green { background: #D1FAE5; color: var(--green); }
.layanan-icon.yellow { background: #FEF3C7; color: var(--yellow); }
.layanan-card:hover .layanan-icon { transform: scale(1.08); }
.layanan-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.layanan-card p {
  font-size: .8375rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.layanan-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue-primary);
  transition: var(--transition);
  margin-top: auto;
}
.layanan-link svg { width: 15px; height: 15px; transition: var(--transition); }
.layanan-link:hover { gap: 8px; }
.layanan-link:hover svg { transform: translateX(4px); }

/* ============================================================
   PAKET & HARGA
   ============================================================ */
#harga {
  padding: 32px 0 40px;
  background: var(--gray-50);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-blue);
  transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--blue-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pricing-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.45;
  min-height: 36px;
}
.pricing-price { margin-bottom: 4px; }
.pricing-strike-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.pricing-strike {
  font-size: .75rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.pricing-discount-badge {
  font-size: .65rem;
  font-weight: 800;
  color: #DC2626;
  background: #FEE2E2;
  padding: 1px 6px;
  border-radius: 4px;
}
.pricing-price .from { font-size: .7rem; color: var(--gray-400); }
.pricing-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
}
.pricing-price .per { font-size: .75rem; color: var(--gray-500); }
.pricing-note { font-size: .7rem; color: var(--gray-400); margin-bottom: 16px; }
.pricing-features { margin-bottom: 20px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: .78rem;
  color: var(--gray-700);
  padding: 4px 0;
}
.pricing-features li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; padding: 10px 16px; font-size: .8125rem; }
.pricing-card.popular .btn { background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid)); }
.pricing-care {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1A2F60 100%);
  color: var(--white);
  border-color: transparent;
}
.pricing-care .pricing-type { color: #93C5FD; }
.pricing-care .pricing-name,
.pricing-care .pricing-price .amount { color: var(--white); }
.pricing-care .pricing-desc,
.pricing-care .pricing-note,
.pricing-care .pricing-price .per { color: rgba(255,255,255,.6); }
.pricing-care .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-care .pricing-features li svg { color: #6EE7B7; }
.pricing-care .btn { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.pricing-care .btn:hover { background: rgba(255,255,255,.25); }
.pricing-note-bottom {
  margin-top: 18px;
  text-align: center;
  font-size: .78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pricing-note-bottom svg { color: var(--blue-primary); }

/* ============================================================
   PROMO BANNER
   ============================================================ */
#promo {
  padding: 24px 0 36px;
  background: var(--white);
}
.promo-banner {
  background: linear-gradient(135deg, #091E42 0%, #0D2E6E 55%, #1A3A7A 100%);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,46,110,.25);
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: 180px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(59,130,246,.25) 0%, transparent 70%);
  pointer-events: none;
}
.promo-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.promo-badge-tag {
  background: var(--yellow);
  color: var(--gray-900);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
  text-transform: uppercase;
}
.promo-discount-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.promo-discount-title span {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 45%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.promo-mid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.promo-package-target {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.promo-period-text {
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
}
.promo-btn-wrap {
  margin-top: 6px;
}
.promo-gift-visual {
  font-size: 5rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
  animation: float 3s ease-in-out infinite;
}

/* ============================================================
   PROSES
   ============================================================ */
#proses {
  padding: 36px 0 36px;
  background: var(--gray-50);
}
.proses-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.proses-step {
  text-align: center;
  padding: 18px 12px;
  position: relative;
}
.proses-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 34px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--gray-200);
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.15rem;
  background: var(--blue-light);
  transition: var(--transition);
}
.proses-step:hover .step-num {
  background: var(--blue-primary);
  color: white;
}
.proses-step h4 { font-size: .8125rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.proses-step p { font-size: .72rem; color: var(--gray-500); line-height: 1.45; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portfolio {
  padding: 36px 0 40px;
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  aspect-ratio: 4/3;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,27,60,.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.portfolio-overlay p { font-size: .72rem; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.portfolio-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  width: fit-content;
  transition: var(--transition);
}
.portfolio-overlay a:hover { background: var(--blue-primary); border-color: var(--blue-primary); }

/* ============================================================
   WHY VELIAN
   ============================================================ */
#kenapa {
  padding: 36px 0 40px;
  background: var(--gray-50);
}
.kenapa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.kenapa-list { display: flex; flex-direction: column; gap: 12px; }
.kenapa-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.kenapa-item:hover {
  border-color: rgba(26,86,219,.2);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.kenapa-item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.kenapa-item-text h4 { font-size: .875rem; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.kenapa-item-text p { font-size: .78rem; color: var(--gray-500); line-height: 1.55; }

/* Founder Card */
.founder-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.founder-img-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A7A 100%);
  padding: 24px 24px 0;
  text-align: center;
}
.founder-img-wrap img {
  width: 180px;
  height: 230px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: 0 auto;
}
.founder-info {
  padding: 20px 24px 24px;
  text-align: center;
}
.founder-info h3 { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); margin-bottom: 3px; }
.founder-info .role { font-size: .8125rem; color: var(--blue-primary); font-weight: 600; margin-bottom: 8px; }
.founder-info .bio { font-size: .78rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.founder-socials { display: flex; justify-content: center; gap: 8px; }
.founder-social-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  transition: var(--transition);
}
.founder-social-btn.ig { background: linear-gradient(135deg, #F09433, #E6683C, #DC2743, #CC2366); color: var(--white); }
.founder-social-btn.wa { background: #25D366; color: var(--white); }
.founder-social-btn.fb { background: #1877F2; color: var(--white); }
.founder-social-btn:hover { opacity: .85; transform: translateY(-2px); }
.founder-social-btn svg { width: 15px; height: 15px; }

/* ============================================================
   KONTAK / TERHUBUNG
   ============================================================ */
#kontak {
  padding: 36px 0 44px;
  background: var(--white);
}
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.kontak-channels { display: flex; flex-direction: column; gap: 10px; }
.kontak-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}
.kontak-channel:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.kontak-channel-left { display: flex; align-items: center; gap: 12px; }
.kontak-ch-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.kontak-ch-icon.ig { background: linear-gradient(135deg, #FFECD2, #FCB69F); }
.kontak-ch-icon.wa { background: #D1FAE5; }
.kontak-ch-icon.fb { background: #DBEAFE; }
.kontak-channel-left h4 { font-size: .875rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.kontak-channel-left p { font-size: .75rem; color: var(--gray-500); }
.kontak-channel svg.arrow { width: 16px; height: 16px; color: var(--gray-400); transition: var(--transition); }
.kontak-channel:hover svg.arrow { color: var(--blue-primary); transform: translateX(4px); }

/* Location map placeholder */
.location-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: 100%;
}
.location-card h3 { font-size: .9375rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.location-card p { font-size: .8125rem; color: var(--gray-500); margin-bottom: 12px; }
.map-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  border: 2px dashed rgba(26,86,219,.2);
  font-size: 2.5rem;
}
.map-placeholder p { font-size: .78rem; color: var(--blue-primary); font-weight: 600; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  padding: 48px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 12px; background: white; border-radius: 8px; padding: 4px 10px; }
.footer-brand .tagline { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-primary); }
.footer-col h4 {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   FLOATING CTA (Mobile)
   ============================================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 12px 20px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  gap: 10px;
}
.floating-cta .btn { flex: 1; justify-content: center; font-size: .875rem; padding: 13px 16px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-up { animation: fadeInUp .7s ease forwards; }
.animate-right { animation: fadeInRight .7s ease forwards; }
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 997;
  width: 44px; height: 44px;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { transform: translateY(-3px); background: #1448b8; }
#scrollTop svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; max-width: 540px; margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-features { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-stat-card:nth-child(2) { left: -10px; }
  .hero-stat-card:nth-child(3) { right: -10px; }

  .layanan-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .proses-grid { grid-template-columns: repeat(3, 1fr); }
  .proses-step:nth-child(3)::after { display: none; }
  .kenapa-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  #hero { padding: 80px 0 48px; }
  .hero-title { font-size: 1.875rem; }
  .hero-stat-card { display: none; }

  .layanan-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }

  .promo-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .promo-actions { flex-direction: column; width: 100%; }
  .promo-actions .btn { width: 100%; justify-content: center; }
  .promo-visual { font-size: 4rem; }

  .proses-grid { grid-template-columns: repeat(2, 1fr); }
  .proses-step:nth-child(2)::after { display: none; }
  .proses-step:nth-child(4)::after { display: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-overlay { opacity: 1; }

  .kenapa-grid { gap: 32px; }
  .founder-socials { flex-wrap: wrap; gap: 8px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .floating-cta { display: flex; }
  #scrollTop { bottom: 96px; }
}
/* === VELIAN REFERENCE LAYOUT OVERRIDE === */
:root{--content-width:1180px}
.container{max-width:1180px!important;margin:auto;padding-left:22px!important;padding-right:22px!important}
body{background:#fff;color:#0b1736;font-family:'Plus Jakarta Sans',Arial,sans-serif}
header,.navbar,.nav-wrap{height:72px!important}
.nav-inner{max-width:1180px!important}
.hero{padding:55px 0 70px!important}
.hero-inner{display:grid!important;grid-template-columns:0.9fr 1.1fr!important;align-items:center!important;gap:35px!important}
.hero-title{font-size:52px!important;line-height:1.12!important;letter-spacing:-1.5px!important}
.hero-desc{max-width:480px!important;font-size:16px!important;line-height:1.8!important}
.hero-img-wrap img{max-width:100%!important;border-radius:24px!important}
.section{padding:55px 0!important}
.section-title{font-size:32px!important;line-height:1.25!important}
.layanan-grid{grid-template-columns:repeat(3,1fr)!important;gap:22px!important}
.layanan-card{min-height:220px!important;border-radius:18px!important;padding:28px!important;box-shadow:0 10px 30px rgba(20,40,90,.08)!important}
.pricing-grid{grid-template-columns:repeat(4,1fr)!important;gap:16px!important}
.price-card{border-radius:18px!important;padding:24px!important}
.promo-banner{border-radius:22px!important;overflow:hidden}
.proses-grid{display:grid!important;grid-template-columns:repeat(5,1fr)!important}
.portfolio-grid{grid-template-columns:repeat(3,1fr)!important;gap:22px!important}
.portfolio-card{border-radius:18px!important}
.kenapa-grid{grid-template-columns:1fr 1fr 1fr!important;gap:22px!important}
.founder-card{border-radius:20px!important}
footer{margin-top:40px!important}
@media(max-width:900px){
.hero-inner{grid-template-columns:1fr!important}
.hero-title{font-size:36px!important}
.layanan-grid,.pricing-grid,.portfolio-grid,.kenapa-grid{grid-template-columns:1fr!important}
.proses-grid{grid-template-columns:1fr!important}
}
