/* ====================================================================
   LUXEDEV — style.css
   Palette (per brief): Emerald #10B981 | Dark Navy #0F172A
                        White #FFFFFF | Cyan Accent #06B6D4
   Type: Space Grotesk (display) + Inter (body/UI)
==================================================================== */

/* ---------- 1. RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand colors (exact brief values) */
  --emerald: #10B981;
  --emerald-dark: #059669;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --white: #FFFFFF;
  --cyan: #06B6D4;

  /* Derived neutrals */
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;

  /* Effects */
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --cyan-glow: rgba(6, 182, 212, 0.2);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 40px var(--emerald-glow);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Tambahkan bagian ini untuk mengatur ukuran logo */
.brand img {
  height: 50px;       /* Mengatur tinggi logo */
  width: auto;        /* Menjaga proporsi agar tidak gepeng */
  vertical-align: middle;
  
  /* TAMBAHKAN BARIS INI untuk lengkungan sudut */
  border-radius: 8px; /* Semakin besar angkanya, semakin bulat sudutnya */
}
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

::selection { background: var(--emerald); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 3px; }

/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

.text-grad {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-dark);
  background: rgba(16, 185, 129, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---------- 3. LAYOUT UTILITIES ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container-narrow { max-width: 760px; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-alt { background: var(--gray-50); }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.section-head p { color: var(--gray-500); font-size: 1.08rem; margin-top: 0.75rem; }

/* ---------- 4. REVEAL ANIMATIONS ---------- */
.reveal-up, .reveal-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-right { transform: translateX(48px); }
.reveal-up.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.btn .ic { width: 19px; height: 19px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 50px var(--emerald-glow); }
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--emerald); color: var(--emerald-dark); background: rgba(16,185,129,0.04); transform: translateY(-2px); }

.btn-lg { padding: 1.15rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- 6. PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.preloader-mark .mark-accent { color: var(--emerald); }

.preloader-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  border-radius: 999px;
  transition: width 0.25s ease;
}

/* ---------- 7. CURSOR GLOW ---------- */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease, left 0.15s linear, top 0.15s linear;
}
.cursor-glow.is-active { opacity: 0.55; }

@media (max-width: 900px) { .cursor-glow { display: none; } }

/* ---------- 8. HEADER / NAVBAR ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 84px;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1240px; margin: 0 auto; width: 100%;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--emerald);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-text em { font-style: normal; color: var(--emerald-dark); }

.primary-nav { display: flex; align-items: center; gap: 2.1rem; margin: 0 auto; }
.nav-link {
  font-size: 0.92rem; font-weight: 500; color: var(--gray-600);
  position: relative; padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--emerald);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active-link { color: var(--navy); }
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border-radius: 10px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s var(--ease); margin: 0 auto; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 9. MOBILE NAV DRAWER ---------- */
.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100%; width: min(320px, 86vw);
  background: var(--white);
  z-index: 300;
  padding: 6rem 2rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: -10px 0 40px rgba(15,23,42,0.12);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav nav { display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-link { font-size: 1.15rem; font-weight: 600; color: var(--navy); }
.mobile-link:hover { color: var(--emerald-dark); }

.mobile-nav-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,0.45);
  z-index: 290; opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- 10. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 84px;
  overflow: hidden;
}

.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); z-index: 0; pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: var(--emerald-glow); top: -120px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: var(--cyan-glow); bottom: -100px; left: -60px; animation-delay: -4s; }
.blob-3 { width: 280px; height: 280px; background: rgba(16,185,129,0.12); top: 40%; left: 38%; animation-delay: -8s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 25px) scale(0.95); }
}

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 0%, transparent 80%);
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 0) 0 5rem;
  width: 100%;
}

.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 0.5rem 1.1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-600);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald);
  position: relative;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--emerald);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3); opacity: 0; } }

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  margin-bottom: 1.4rem;
  min-height: clamp(7.5rem, 16vw, 11.5rem);
}
.typed-line { display: inline; }
.type-cursor {
  display: inline-block; color: var(--emerald);
  animation: caretBlink 0.9s step-end infinite;
  font-weight: 300;
}
@keyframes caretBlink { 50% { opacity: 0; } }

.hero-subtitle {
  font-size: 1.15rem; color: var(--gray-500);
  max-width: 540px; margin-bottom: 2.25rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.trust-badge {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.88rem; font-weight: 600; color: var(--gray-600);
}
.trust-badge .ic { width: 19px; height: 19px; color: var(--emerald); flex-shrink: 0; }

/* Hero visual: laptop mockup */
.hero-visual { position: relative; }

.laptop-mock { position: relative; max-width: 560px; margin: 0 auto; }
.laptop-screen {
  background: var(--navy);
  border-radius: 18px 18px 6px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--navy);
}
.screen-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 0.7rem 1rem;
  background: var(--navy-light);
}
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.screen-dot.red { background: #FF5F57; }
.screen-dot.yellow { background: #FEBC2E; }
.screen-dot.green { background: #28C840; }
.screen-url {
  margin-left: 0.75rem;
  font-size: 0.72rem; color: var(--gray-400);
  background: rgba(255,255,255,0.06);
  padding: 0.25rem 0.85rem; border-radius: 999px;
  flex: 1; max-width: 160px;
  text-align: center;
}

.screen-body { background: var(--white); padding: 1.5rem; min-height: 320px; }

.sb-nav { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-100); }
.sb-logo { width: 28px; height: 28px; border-radius: 7px; background: var(--emerald); flex-shrink: 0; }
.sb-link { width: 36px; height: 7px; border-radius: 4px; background: var(--gray-200); }
.sb-btn { width: 56px; height: 22px; border-radius: 999px; background: var(--navy); margin-left: auto; }

.sb-hero { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.sb-line { height: 14px; border-radius: 5px; background: var(--navy); opacity: 0.92; }
.sb-line.w70 { width: 70%; }
.sb-line.w50 { width: 50%; margin-bottom: 0.3rem; }
.sb-line-sub { height: 8px; border-radius: 4px; background: var(--gray-200); }
.sb-line-sub.w90 { width: 90%; }
.sb-line-sub.w60 { width: 60%; margin-bottom: 0.5rem; }
.sb-cta { width: 110px; height: 30px; border-radius: 999px; background: var(--emerald); margin-top: 0.4rem; }

.sb-chart-card {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gray-100);
}
.sb-chart-header {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; font-weight: 600; color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.sb-chart-tag { color: var(--emerald-dark); background: rgba(16,185,129,0.1); padding: 0.15rem 0.55rem; border-radius: 999px; font-size: 0.74rem; }
.sb-chart-svg { width: 100%; height: 60px; display: block; }
#chartLine { stroke-dasharray: 480; stroke-dashoffset: 480; animation: drawLine 2.4s var(--ease) 0.6s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.laptop-base {
  height: 14px; width: 92%; margin: 0 auto;
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
  border-radius: 0 0 14px 14px;
}

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-md);
  animation: floatCard 5s ease-in-out infinite;
}
.float-card .ic { width: 26px; height: 26px; flex-shrink: 0; }
.float-card strong { display: block; font-size: 0.95rem; font-family: 'Space Grotesk', sans-serif; color: var(--navy); }
.float-card span { font-size: 0.74rem; color: var(--gray-500); }

.float-card-1 { top: 6%; right: -4%; animation-delay: 0s; }
.float-card-2 { bottom: 8%; left: -6%; animation-delay: -2.5s; }

@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--gray-300, #CBD5E1);
  border-radius: 14px; z-index: 1;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px; border-radius: 2px;
  background: var(--emerald); margin: 7px auto 0;
  animation: scrollCue 1.8s ease infinite;
}
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- 11. FEATURE CARDS (Layanan) ---------- */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16,185,129,0.25);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(16,185,129,0.08);
  display: grid; place-items: center;
  color: var(--emerald-dark);
  margin-bottom: 1.4rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card:hover .feature-icon { background: var(--emerald); color: var(--white); transform: scale(1.08) rotate(-4deg); }

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--gray-500); font-size: 0.94rem; }

/* ---------- 12. PORTFOLIO ---------- */
.grid-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.port-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.port-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.port-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.port-card:hover .port-media img { transform: scale(1.1); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15,23,42,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.port-card:hover .port-overlay { opacity: 1; }
.port-tag {
  align-self: flex-start;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--emerald);
  background: rgba(16,185,129,0.15);
  padding: 0.3rem 0.7rem; border-radius: 999px;
  margin-bottom: 0.6rem;
}
.port-overlay h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.3rem; }
.port-overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* ---------- 13. STATS ---------- */
.stats-section {
  background: var(--navy);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
}

.grid-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative; z-index: 1;
}
.stat-block { text-align: center; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--gray-400); font-size: 0.92rem; font-weight: 500; }

/* ---------- 14. PRICING ---------- */
.grid-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.price-card-popular {
  border: 2px solid var(--emerald);
  box-shadow: 0 25px 60px -12px var(--emerald-glow);
  position: relative;
}
@media (min-width: 1024px) { .price-card-popular { transform: scale(1.04); z-index: 2; } }

.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: var(--white);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.45rem 1.25rem; border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.price-head { margin-bottom: 1.6rem; }
.price-kicker { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); }
.price-kicker-accent { color: var(--emerald-dark); }
.price-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 700; color: var(--navy);
  margin: 0.6rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.price-value-custom { font-size: 2.3rem; }
.price-currency { font-size: 1.2rem; font-weight: 600; margin-right: 0.15rem; color: var(--gray-500); }
.price-desc { color: var(--gray-500); font-size: 0.9rem; }

.price-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--navy); }
.ic-check { width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

.price-renewal {
  font-size: 0.82rem; color: var(--gray-500);
  background: var(--gray-50); border-radius: 10px;
  padding: 0.7rem 0.9rem; margin-bottom: 1.4rem;
}
.price-renewal strong { color: var(--navy); }

.price-note { text-align: center; color: var(--gray-400); font-size: 0.85rem; margin-top: 2.5rem; }

/* ---------- 15. TESTIMONIALS ---------- */
.testi-slider { max-width: 760px; margin: 0 auto; }
.testi-track { overflow: hidden; border-radius: var(--radius-md); }
.testi-track { position: relative; }
#testiTrack { display: flex; transition: transform 0.55s var(--ease); }

.testi-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: #FBBF24; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 1.25rem; }
.testi-quote { font-size: 1.1rem; color: var(--navy); line-height: 1.7; margin-bottom: 1.75rem; font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 0.85rem; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gray-100); }
.testi-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testi-author span { font-size: 0.8rem; color: var(--gray-500); }

.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 1.75rem; }
.testi-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-200);
  font-size: 1.4rem; color: var(--navy);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.testi-arrow:hover { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dots button { width: 8px; height: 8px; border-radius: 999px; background: var(--gray-200); transition: all 0.3s var(--ease); }
.testi-dots button.is-active { background: var(--emerald); width: 24px; }

/* ---------- 16. PROCESS TIMELINE ---------- */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--emerald), var(--cyan), transparent);
  transform: translateX(-50%);
}

.timeline-step {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 1.5rem;
  margin-bottom: 3rem;
}
.timeline-step:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.timeline-dot-accent { background: var(--emerald); }

.timeline-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--gray-500); font-size: 0.92rem; }
.timeline-right { text-align: right; }
.timeline-left { text-align: left; }
.timeline-spacer 

/* ---------- 17. FAQ ACCORDION ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item.is-open { border-color: var(--emerald); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.02rem;
  color: var(--navy); text-align: left;
}

.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--emerald-dark);
  top: 50%; left: 50%; transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 1.6rem 1.4rem; color: var(--gray-500); font-size: 0.94rem; line-height: 1.7; }

/* ---------- 18. FINAL CTA ---------- */
.cta-section { padding: clamp(4rem, 8vw, 6rem) 0; position: relative; overflow: hidden; }
.cta-blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  z-index: 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #142036 100%);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.75rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.25) 0%, transparent 70%);
}
.cta-box::after {
  content: ''; position: absolute; bottom: -30%; right: -10%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
}

.cta-box h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 1.1rem; font-size: clamp(1.8rem, 4.5vw, 2.85rem); }
.cta-box p { color: var(--gray-400); position: relative; z-index: 1; max-width: 480px; margin: 0 auto 2.25rem; font-size: 1.05rem; }
.cta-box .btn { position: relative; z-index: 1; }

/* ---------- 19. CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info p { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 2rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(16,185,129,0.08); color: var(--emerald-dark);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-ic svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-list a, .contact-list span { font-size: 0.92rem; color: var(--gray-500); }
.contact-list a:hover { color: var(--emerald-dark); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-row input, .form-row textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.12);
}
.form-success {
  display: none;
  margin-top: 1rem; text-align: center;
  font-size: 0.88rem; color: var(--emerald-dark);
  background: rgba(16,185,129,0.08);
  padding: 0.85rem; border-radius: 10px;
}
.form-success.is-visible { display: block; }

/* ---------- 20. FOOTER ---------- */
.site-footer { background: var(--navy); color: var(--gray-400); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-brand .brand-text { color: var(--white); }
.footer-brand .brand-mark { background: var(--emerald); color: var(--navy); }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; max-width: 280px; line-height: 1.7; }

.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; margin-bottom: 0.7rem; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--emerald); }

.footer-bottom { text-align: center; padding-top: 1.75rem; font-size: 0.85rem; }

/* ---------- 21. FLOATING WHATSAPP BUTTON ---------- */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4); } 50% { box-shadow: 0 10px 40px rgba(37,211,102,0.65); } }

.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--navy); color: var(--white);
  font-size: 0.82rem; font-weight: 600;
  padding: 0.6rem 1rem; border-radius: 10px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- 22. STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 140;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.95rem; border-radius: 12px;
  box-shadow: var(--shadow-glow);
}

/* ====================================================================
   RESPONSIVE
==================================================================== */

@media (max-width: 1100px) {
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-portfolio { grid-template-columns: repeat(2, 1fr); }
  .grid-pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card-popular { transform: none !important; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (max-width: 980px) {
  .primary-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: block; }
  .wa-float { bottom: 5.5rem; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto 1rem; }
  .float-card { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .grid-6 { grid-template-columns: 1fr; }
  .grid-portfolio { grid-template-columns: 1fr; }
  .grid-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }

  .timeline-line { left: 24px; }
  .timeline-step { grid-template-columns: auto 1fr; }
  .timeline-step .timeline-spacer { display: none; }
  .timeline-dot { width: 44px; height: 44px; font-size: 0.95rem; }
  .timeline-right, .timeline-left { text-align: left !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-ctas .btn { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; min-height: 9.5rem; }
  .trust-badges { gap: 1.1rem; }
}
