/* ==========================================================================
   DIGITALINT - TechArea Studio Editorial & Fluid Architectural System
   High Character, Soft Curves (20px radius), Multi-Layer Ambient Shadows
   Subtle Border Glows, Soft Gradient Mesh Backdrop, No Rigid/Flat Box Feel
   ========================================================================== */

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

:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Brand Palette (TechArea Soft Studio Palette) */
  --brand-navy: #0f172a;
  --brand-navy-deep: #090d16;
  --brand-slate: #1e293b;
  
  --brand-cyan: #0284c7;
  --brand-cyan-light: #0ea5e9;
  --brand-cyan-subtle: #f0f9ff;
  --brand-cyan-border: #bae6fd;
  --brand-cyan-glow: rgba(2, 132, 199, 0.18);
  
  --color-canvas: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-card: #ffffff;
  --color-surface-hover: #f1f5f9;
  
  --color-border: #e2e8f0;
  --color-border-subtle: #f1f5f9;
  --color-border-dark: #cbd5e1;
  --color-border-glow: rgba(2, 132, 199, 0.35);
  
  --color-text-title: #0f172a;
  --color-text-body: #334155;
  --color-text-muted: #64748b;
  --color-text-subtle: #94a3b8;
  
  --color-whatsapp: #059669;
  --color-whatsapp-hover: #047857;
  --color-whatsapp-glow: rgba(5, 150, 105, 0.35);
  
  /* Soft Rounded Corner System (Eliminates Rigid Box Feel) */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Multi-layered Ambient Shadows for Natural Depth & Richness */
  --shadow-subtle: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 12px 32px -4px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(2, 132, 199, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -6px rgba(2, 132, 199, 0.18), 0 0 0 1px rgba(2, 132, 199, 0.4);
  --shadow-button-hover: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
  --shadow-cyan-glow: 0 10px 30px -5px rgba(2, 132, 199, 0.35);

  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-canvas);
  color: var(--color-text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Typography Scale (Bespoke Agency Style) */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-title);
  font-family: var(--font-main);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.highlight-cyan {
  color: var(--brand-cyan);
  position: relative;
  display: inline-block;
}

.highlight-cyan::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--brand-cyan-subtle);
  z-index: -1;
  border-radius: 4px;
}

/* Section Header Structure (TechArea Editorial Style) */
.section-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--brand-cyan-subtle);
  border: 1px solid var(--brand-cyan-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}

.section-meta-tag::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 8px var(--brand-cyan);
}

.section-head {
  max-width: 740px;
  margin-bottom: 54px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--color-text-muted);
  font-size: 16.5px;
  line-height: 1.65;
}

/* Buttons (TechArea High-Contrast Soft Studio Style) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-navy {
  background: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-navy);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.btn-navy:hover {
  background: var(--brand-slate);
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-button-hover);
}

.btn-cyan {
  background: var(--brand-cyan);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.btn-cyan:hover {
  background: #0369a1;
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-cyan-glow);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--color-whatsapp-glow);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.35);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-text-title);
  border-color: var(--color-border-dark);
  box-shadow: var(--shadow-subtle);
}

.btn-outline:hover {
  background: var(--color-surface);
  border-color: var(--brand-navy);
  color: var(--brand-navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 15.5px;
  border-radius: var(--radius-sm);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px) translateY(-1px);
}

/* Header Navigation Bar (Soft Floating Glass Ambient Shadow) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.6);
  padding: 16px 0;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.12), 0 6px 16px -2px rgba(2, 132, 199, 0.06);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand-logo-wrap:hover {
  transform: scale(1.02);
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  color: var(--color-text-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.nav-link:hover {
  color: var(--brand-navy);
  background: var(--color-surface-hover);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--brand-cyan);
  background: var(--brand-cyan-subtle);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 7px 12px;
  border-radius: var(--radius-xs);
  font-size: 18px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (Soft Ambient Mesh Backdrop & TechArea Split Grid)
   ========================================================================== */
.hero-section {
  padding: 88px 0 80px;
  background: radial-gradient(circle at 50% 0%, #f0f9ff 0%, #ffffff 65%);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* Soft Ambient Lighting Mesh Orbs (Eliminates flat rigidity) */
.hero-bg-mesh-1 {
  position: absolute;
  top: -120px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-bg-mesh-2 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-border-dark) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  max-width: 640px;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: #ffffff;
  border: 1px solid var(--brand-cyan-border);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
  animation: heroFadeSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-tag-pill .tag-dot {
  color: var(--brand-cyan);
  font-size: 8px;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-tag-pill .tag-text {
  color: var(--brand-cyan);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  animation: heroBlurSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.highlight-text-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 34px;
  font-weight: 500;
  animation: heroFadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: heroFadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

.btn-primary-navy {
  background: var(--brand-navy);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1px solid var(--brand-navy);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.btn-primary-navy:hover {
  background: var(--brand-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(15, 23, 42, 0.35);
  color: #ffffff;
}

.btn-secondary-cyan {
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.btn-secondary-cyan:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.15);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  flex-wrap: wrap;
  animation: heroFadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-body);
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-cyan-subtle);
  color: var(--brand-cyan);
  font-size: 11px;
  font-weight: bold;
}

.trust-badge-item strong {
  color: var(--brand-navy);
}

/* Hero Right: Seamless Floating Huge Website Design Artwork */
.hero-showcase-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: heroArtworkEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both, heroGentleFloat 6s ease-in-out 1.5s infinite alternate;
}

.showcase-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.14));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-showcase-box:hover .showcase-img {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 32px 60px rgba(2, 132, 199, 0.22));
}

/* World-Class Hero Page Entrance Animations */
@keyframes heroBlurSlideUp {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(32px) scale(0.98);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroArtworkEntrance {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(40px) scale(0.92) rotate(1deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes heroGentleFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

.hero-showcase-box:hover .showcase-img {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 25px 45px rgba(2, 132, 199, 0.16));
}

.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-cyan-subtle);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.badge-icon.wa {
  background: #ecfdf5;
  color: var(--color-whatsapp);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-size: 12.5px;
  color: var(--color-text-title);
  line-height: 1.2;
}

.badge-text span {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   3 PILAR NILAI BISNIS (Soft Numbered Studio Cards)
   ========================================================================== */
.pillars-section {
  padding: 96px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.pillar-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-glow);
}

.pillar-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--brand-cyan);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.pillar-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   KATALOG TEMPLATE SECTION (Bespoke Studio Cards)
   ========================================================================== */
.portfolio-section {
  padding: 96px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  background: var(--color-surface);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-navy);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.search-box {
  position: relative;
  min-width: 280px;
}

.search-input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-body);
  font-size: 13.5px;
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-subtle);
  font-size: 14px;
}

.btn-copy-wa {
  padding: 9px 20px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-copy-wa:hover {
  background: #dcfce7;
  border-color: #86efac;
  color: #14532d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 101, 52, 0.15);
}

/* Toast Notification for Copy WA */
.copy-wa-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.copy-wa-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.copy-wa-toast .toast-icon {
  background: #059669;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Studio Template Cards */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.template-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.template-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-glow);
}

.card-browser-bar {
  background: #f1f5f9;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot.red { background: #fca5a5; }
.browser-dot.yellow { background: #fde047; }
.browser-dot.green { background: #86efac; }

.browser-url-pill {
  margin-left: 8px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  font-size: 10.5px;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: var(--transition-fast);
}

.template-card:hover .browser-url-pill {
  color: var(--brand-cyan);
  border-color: var(--brand-cyan-border);
}

.card-mockup-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.card-mockup-iframe {
  width: 1350px;
  height: 900px;
  border: none;
  transform: scale(0.27);
  transform-origin: top left;
  pointer-events: none;
  background: #ffffff;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.template-card:hover .card-mockup-iframe {
  transform: scale(0.285) translateY(-8px);
}

.card-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.template-card:hover .card-mockup-img {
  transform: scale(1.05);
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  backdrop-filter: blur(2px);
}

.template-card:hover .card-hover-overlay {
  opacity: 1;
}

.hover-preview-badge {
  background: var(--brand-navy);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  letter-spacing: 0.3px;
  transform: translateY(6px);
  transition: transform 0.25s ease;
}

.template-card:hover .hover-preview-badge {
  transform: translateY(0);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-niche-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 8px;
}

.card-description {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.card-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.feature-tag {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 11.5px;
  color: var(--color-text-body);
  font-weight: 600;
}

.card-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  margin-top: auto;
}

.card-btns {
  display: flex;
  gap: 10px;
}

.card-btns .btn {
  flex: 1;
}

/* ==========================================================================
   CLIENT & SOCIAL PROOF SECTION (TechArea Case Study Style)
   ========================================================================== */
.clients-section {
  padding: 96px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.client-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-glow);
}

.client-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.client-logo-box {
  width: 56px;
  height: 56px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.client-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text-title);
}

.client-info p {
  font-size: 12.5px;
  color: var(--brand-cyan);
  font-weight: 700;
}

.client-quote {
  font-size: 13.5px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.client-stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 10px;
}

.client-link {
  font-size: 12.5px;
  color: var(--brand-cyan);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.client-link:hover {
  text-decoration: underline;
}

/* FAQ Accordion */
.faq-section {
  padding: 40px 0 0;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.faq-item:hover {
  border-color: var(--color-border-dark);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--color-text-title);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--color-text-muted);
  font-size: 13.5px;
  line-height: 1.65;
  display: none;
}

.faq-item.active {
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-card);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--brand-cyan);
}

.faq-icon {
  transition: transform 0.2s;
  color: var(--color-text-subtle);
  font-size: 13px;
}

/* ==========================================================================
   PRICING & FOOTER
   ========================================================================== */
.pricing-section {
  padding: 96px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-glow);
  transform: translateY(-6px);
}

.pricing-card.popular {
  border: 2px solid var(--brand-navy);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-navy);
  color: #ffffff;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.pricing-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  min-height: 40px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: 2px;
  letter-spacing: -0.04em;
}

.pricing-time {
  font-size: 12.5px;
  color: var(--brand-cyan);
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 13.5px;
  color: var(--color-text-body);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li span {
  color: var(--color-whatsapp);
  font-weight: bold;
}

/* Footer */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 13.5px;
  margin: 14px 0 18px;
  max-width: 340px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 14px;
  color: var(--color-text-title);
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-subtle);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating WhatsApp Action Button */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-whatsapp);
  color: #ffffff;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 800;
  font-size: 13.5px;
  box-shadow: 0 10px 30px -5px rgba(5, 150, 105, 0.45);
  transition: var(--transition-smooth);
}

.floating-wa-btn::before {
  content: '';
  width: 9px;
  height: 9px;
  background: #a7f3d0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(167, 243, 208, 0.7);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(167, 243, 208, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(167, 243, 208, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(167, 243, 208, 0);
  }
}

.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--color-whatsapp-hover);
  box-shadow: 0 16px 36px -4px rgba(5, 150, 105, 0.55);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 64px 0 60px;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  }
  .nav-menu.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .templates-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Silky Smooth Studio Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.98);
  filter: blur(8px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Staggered Children Delays for Grids */
.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0.08s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.24s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.40s; }

.pillars-grid .pillar-card:nth-child(1) { transition-delay: 0.08s; }
.pillars-grid .pillar-card:nth-child(2) { transition-delay: 0.24s; }
.pillars-grid .pillar-card:nth-child(3) { transition-delay: 0.40s; }

/* Hero Micro Social Proof (Rekomendasi #2) */
.hero-micro-proof {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  width: fit-content;
}

.hero-micro-proof .proof-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

.hero-micro-proof .proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatar-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #ffffff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.proof-avatar-box:first-child {
  margin-left: 0;
}

.proof-avatar-box:hover {
  transform: translateY(-2px) scale(1.15);
  z-index: 5;
}

.proof-avatar-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.hero-micro-proof .proof-text {
  font-size: 12.5px;
  color: var(--color-text-body);
}

.hero-micro-proof .proof-text strong {
  color: var(--brand-navy);
}

/* Infinite Auto-Scroll Logo Marquee (Direct Logos Only - High Clarity) */
.hero-marquee-section {
  background: #ffffff;
  color: var(--color-text-title);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  border: none;
  box-shadow: none;
}

.marquee-header {
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.marquee-tag {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.marquee-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.marquee-track-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
  padding: 10px 0;
}

.marquee-track-wrap::before,
.marquee-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  transition: transform 0.25s ease;
  cursor: pointer;
  background: transparent;
  border: none;
}

.marquee-item:hover {
  transform: scale(1.12);
}

.marquee-item img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.marquee-item:hover img {
  opacity: 1;
}

.marquee-item span {
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Category Filter Tabs for Clients (Rekomendasi #3) */
.client-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.client-filter-tabs .filter-btn {
  background: #ffffff;
  color: var(--color-text-body);
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.client-filter-tabs .filter-btn:hover {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.client-filter-tabs .filter-btn.active {
  background: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-navy);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* CTA Card inside Clients Grid */
.cta-client-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border: 1px stroke rgba(56, 189, 248, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-client-inner {
  padding: 10px;
}

.cta-client-inner .cta-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-client-inner h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-client-inner p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

/* WhatsApp Authentic Chat Proof Showcase */
.wa-chat-proof-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 14px;
  margin-bottom: 14px;
  position: relative;
}

.wa-chat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #16a34a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.wa-chat-thumb-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #86efac;
  cursor: pointer;
  max-height: 160px;
}

.wa-chat-thumb-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.wa-chat-thumb-wrap:hover img {
  transform: scale(1.05);
}

.wa-chat-zoom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 10px 6px;
  text-align: center;
}

/* Modal Lightbox for WA Screenshot Zoom */
.wa-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wa-modal-content {
  max-width: 420px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wa-modal-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.wa-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


