/* ═══════════════════════════════════════════════
   KANYAKA TECHNOLOGY – Main Stylesheet
   Palette: White · Cornflower Blue · Tundora · Copper · Silver · Wedgewood
   Font: Cambria (system serif)
   ═══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Brand Palette */
  --white:      #ffffff;
  --blue:       #5dabf4;   /* Cornflower Blue */
  --dark-blue:  #4775a0;   /* Wedgewood */
  --dark:       #434343;   /* Tundora */
  --copper:     #be7434;   /* Copper / Gold accent */
  --silver:     #bbbbbb;   /* Silver */

  /* Backgrounds */
  --bg:         #ffffff;
  --bg-section: #f4f7fb;
  --bg-card:    #ffffff;
  --bg-card-2:  #eef3fa;

  /* Borders */
  --border:       rgba(71, 117, 160, 0.18);
  --border-hover: rgba(93, 171, 244, 0.55);

  /* Transparency helpers */
  --blue-dim:    rgba(93, 171, 244, 0.12);
  --blue-glow:   rgba(93, 171, 244, 0.25);
  --copper-dim:  rgba(190, 116, 52, 0.1);
  --dark-dim:    rgba(67, 67, 67, 0.06);

  /* Text */
  --text-primary:   #434343;
  --text-secondary: #6b7280;
  --text-muted:     #9ca3af;

  /* Typography – Cambria system serif */
  --font-serif: Cambria, 'Book Antiqua', Palatino, Georgia, 'Times New Roman', serif;

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-sm:   0 2px 8px rgba(71, 117, 160, 0.08);
  --shadow-md:   0 6px 24px rgba(71, 117, 160, 0.14);
  --shadow-lg:   0 12px 40px rgba(71, 117, 160, 0.18);
  --shadow-blue: 0 6px 24px rgba(93, 171, 244, 0.35);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-serif);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── Canvas Background ─── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Glass / Card ─── */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ─── Section Shared ─── */
.section {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  background: var(--blue-dim);
  color: var(--dark-blue);
  border: 1px solid rgba(71, 117, 160, 0.25);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-family: var(--font-serif);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-serif);
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(93, 171, 244, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
}
.btn-ghost:hover {
  background: var(--dark-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  color: #fff;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.btn-sm:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Divider ─── */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--copper));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Real logo image */
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  /* No blend mode needed – white bg on white site */
  filter: drop-shadow(0 2px 4px rgba(190, 116, 52, 0.3));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo:hover .logo-img {
  filter: drop-shadow(0 4px 10px rgba(190, 116, 52, 0.5));
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.logo-dot { color: var(--copper); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-serif);
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--dark-blue);
  background: var(--blue-dim);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--dark-blue)) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  box-shadow: var(--shadow-blue);
}
.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(93, 171, 244, 0.5);
  transform: translateY(-1px);
  background: var(--bg) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: transparent;
}

/* Soft blue-tinted hero background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 40%, rgba(93, 171, 244, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(71, 117, 160, 0.07) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-content { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-dim);
  border: 1px solid rgba(93, 171, 244, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--dark-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 2.25rem;
  font-family: var(--font-serif);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-number, .stat-suffix {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(93,171,244,0.2) 0%, transparent 70%);
  top: -20px; right: -20px;
}
.orb-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(190,116,52,0.12) 0%, transparent 70%);
  bottom: -10px; left: 0;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 410px;
  padding: 1.75rem;
  overflow: hidden;
}
.card-glow {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--copper));
  border-radius: 20px 20px 0 0;
}
.hc-header { display: flex; gap: 6px; margin-bottom: 1.25rem; }
.hc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hc-dot.green  { background: #22c55e; }
.hc-dot.yellow { background: #f59e0b; }
.hc-dot.red    { background: #ef4444; }

.hc-body {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.82rem;
  line-height: 2;
  color: var(--dark);
}
.code-line { animation: type-in 0.5s ease both; }
.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.25s; }
.code-line:nth-child(3) { animation-delay: 0.4s; }
.code-line:nth-child(4) { animation-delay: 0.55s; }
.code-line:nth-child(5) { animation-delay: 0.7s; }
.code-line:nth-child(7) { animation-delay: 0.85s; }
.code-line:nth-child(8) { animation-delay: 1s; }
@keyframes type-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cl-purple { color: #9333ea; }
.cl-blue   { color: var(--dark-blue); }
.cl-cyan   { color: #0ea5e9; }
.cl-green  { color: #16a34a; }
.cl-orange { color: var(--copper); }
.cl-comment { color: var(--silver); }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-serif);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.floating-badge svg { width: 14px; height: 14px; }
.badge-ai   { top: 8%; right: -4%; color: #16a34a; animation: float-badge 4s ease-in-out infinite; }
.badge-ai svg { color: #16a34a; }
.badge-data { bottom: 12%; left: -4%; color: var(--dark-blue); animation: float-badge 4s ease-in-out infinite 1.5s; }
.badge-data svg { color: var(--dark-blue); }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: var(--font-serif);
  animation: bounce-indicator 2s infinite;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--silver);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--blue);
  border-radius: 3px;
  animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(8px); opacity: 0; }
}
@keyframes bounce-indicator {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════
   LAYANAN / SERVICES
═══════════════════════════════════════════════ */
.layanan-section { background: var(--bg-section); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--copper));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(93, 171, 244, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.sc-icon-wrap { position: relative; width: fit-content; }
.sc-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: var(--blue-dim);
  border: 1px solid rgba(93, 171, 244, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  transition: transform 0.3s, background 0.3s;
}
.service-card:hover .sc-icon { transform: scale(1.08); background: linear-gradient(135deg, var(--blue), var(--dark-blue)); color: #fff; }
.sc-icon svg { width: 26px; height: 26px; }
.sc-icon--purple { background: rgba(147, 51, 234, 0.08); border-color: rgba(147, 51, 234, 0.2); color: #7c3aed; }
.sc-icon--green  { background: rgba(22, 163, 74, 0.08); border-color: rgba(22, 163, 74, 0.2); color: #15803d; }

.sc-glow { display: none; }

.sc-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
.sc-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  font-family: var(--font-serif);
  flex: 1;
}
.sc-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sc-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
  font-family: var(--font-serif);
}
.sc-features li svg { width: 14px; height: 14px; color: #16a34a; flex-shrink: 0; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--dark-blue);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-serif);
  transition: gap 0.25s, color 0.2s;
  margin-top: auto;
}
.sc-link:hover { gap: 0.7rem; color: var(--blue); }
.sc-link svg { width: 15px; height: 15px; }

/* ═══════════════════════════════════════════════
   PRODUK GRID (static, no slider)
═══════════════════════════════════════════════ */
.produk-section { background: var(--bg); }

.produk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.produk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.produk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--copper));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.produk-card:hover::before { transform: scaleX(1); }
.produk-card:hover {
  border-color: rgba(93, 171, 244, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pc-badge {
  display: inline-block;
  background: var(--blue-dim);
  color: var(--dark-blue);
  border: 1px solid rgba(71, 117, 160, 0.2);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
}

.pc-icon-wrap { margin-block: 0.1rem; }
.pc-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.pc-icon svg { width: 20px; height: 20px; }
.produk-card:hover .pc-icon { transform: scale(1.1) rotate(5deg); }
.pc-icon--gold   { background: var(--copper-dim); color: var(--copper); border: 1px solid rgba(190,116,52,0.25); }
.pc-icon--blue   { background: var(--blue-dim); color: var(--dark-blue); border: 1px solid rgba(93,171,244,0.2); }
.pc-icon--purple { background: rgba(124,58,237,0.08); color: #7c3aed; border: 1px solid rgba(124,58,237,0.2); }
.pc-icon--cyan   { background: rgba(6,182,212,0.08); color: #0891b2; border: 1px solid rgba(6,182,212,0.2); }
.pc-icon--green  { background: rgba(22,163,74,0.08); color: #15803d; border: 1px solid rgba(22,163,74,0.2); }

.pc-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.pc-subtitle {
  font-size: 0.72rem;
  color: var(--dark-blue);
  font-weight: 600;
  font-family: var(--font-serif);
  margin-top: -0.3rem;
  line-height: 1.3;
}
.pc-desc {
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.7;
  font-family: var(--font-serif);
  flex: 1;
}
.pc-desc strong { color: var(--dark); }
.pc-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.tag {
  display: inline-block;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-serif);
}
.pc-footer { margin-top: auto; padding-top: 0.25rem; }



/* ═══════════════════════════════════════════════
   TENTANG
═══════════════════════════════════════════════ */
.tentang-section { background: var(--bg-section); }

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tentang-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  font-family: var(--font-serif);
  margin-bottom: 1rem;
}

.tentang-values { display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.value-item:hover { border-color: rgba(93,171,244,0.4); box-shadow: var(--shadow-md); }
.value-icon {
  width: 42px; height: 42px;
  background: var(--blue-dim);
  border: 1px solid rgba(93,171,244,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  flex-shrink: 0;
}
.value-icon svg { width: 18px; height: 18px; }
.value-item strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.value-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: var(--font-serif);
}

/* Tentang Visual */
.tentang-visual { position: relative; padding: 1rem 2rem; }

.tv-card--main {
  padding: 2rem;
  border-top: 3px solid var(--blue);
}
.tv-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dark-blue);
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}
.tv-header svg { width: 18px; height: 18px; }

.tv-metrics { display: flex; flex-direction: column; gap: 1.25rem; }
.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem;
  align-items: center;
}
.metric-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: var(--font-serif);
  font-weight: 600;
  grid-column: 1;
}
.metric-val {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--dark-blue);
  grid-column: 2;
  grid-row: 1 / span 2;
}
.metric-bar {
  height: 7px;
  background: var(--bg-section);
  border-radius: 100px;
  overflow: hidden;
  grid-column: 1;
}
.metric-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--dark-blue));
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.metric-fill--purple { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.metric-fill--green  { background: linear-gradient(90deg, #16a34a, #4ade80); }

.tv-badge-1, .tv-badge-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
  border-radius: 100px;
}
.tv-badge-1 { top: -0.75rem; right: -1.5rem; color: var(--copper); }
.tv-badge-1 svg { width: 15px; height: 15px; color: var(--copper); }
.tv-badge-2 { bottom: 0; left: -1.75rem; color: #16a34a; }
.tv-badge-2 svg { width: 15px; height: 15px; color: #16a34a; }

/* ═══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
  overflow: hidden;
  /* Gradient wash between white sections */
  background: linear-gradient(135deg, #eef6ff 0%, #f4f7fb 50%, #fdf6ee 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,171,244,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content .section-label { color: var(--copper); background: var(--copper-dim); border-color: rgba(190,116,52,0.2); }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}
.cta-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-family: var(--font-serif);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════════
   KONTAK
═══════════════════════════════════════════════ */
.kontak-section { background: var(--bg); }

.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.ki-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.ki-icon {
  width: 44px; height: 44px;
  background: var(--blue-dim);
  border: 1px solid rgba(93,171,244,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  flex-shrink: 0;
}
.ki-icon svg { width: 18px; height: 18px; }
.ki-body strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.ki-body address, .ki-body a, .ki-body p {
  font-size: 0.875rem;
  font-family: var(--font-serif);
  color: var(--text-secondary);
  line-height: 1.8;
}
.ki-body a:hover { color: var(--dark-blue); }

.kontak-form { padding: 1.75rem; border-top: 3px solid var(--blue); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.75rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--dark);
  letter-spacing: 0.02em;
}
.form-group input, .form-group textarea {
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  color: var(--dark);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(93,171,244,0.12);
  background: var(--white);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(22,163,74,0.07);
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: var(--radius-md);
  color: #15803d;
  font-size: 0.875rem;
  font-family: var(--font-serif);
  font-weight: 600;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-success[hidden] { display: none; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  border-top: 3px solid var(--blue);
}

.footer-top { padding-block: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}

/* Footer logo on dark background */
.footer .logo-img {
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 6px rgba(190, 116, 52, 0.5));
}
.footer .logo-text { color: #fff; }
.footer .logo-dot  { color: var(--copper); }

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-family: var(--font-serif);
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fn-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.fn-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.fn-col a {
  font-size: 0.85rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.fn-col a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.4);
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
}
.footer-location svg { width: 13px; height: 13px; }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: all 0.25s;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top:hover { background: var(--dark-blue); transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 8rem; }
  .hero-visual { max-width: 500px; margin-inline: auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .tentang-grid { grid-template-columns: 1fr; gap: 3rem; }
  .kontak-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }

  .produk-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { width: 100%; }
  .footer-nav { grid-template-columns: 1fr; }
  .kontak-form { padding: 1.5rem; }
  .tv-badge-1 { right: -0.5rem; }
  .tv-badge-2 { left: -0.5rem; }
  .produk-grid { grid-template-columns: repeat(2, 1fr); }
}
