/* ============================================================
   TRINOVA LAW — style.css
   Brand: Navy Blue + Gold (seragam dengan trinasi.com)
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --navy-deep:    #0A1628;
  --navy-mid:     #1B3A5C;
  --navy-light:   #243E6B;
  --navy-border:  #2C4F7F;
  --gold:         #D4A843;
  --gold-light:   #F0C860;
  --gold-dark:    #B8882A;
  --white:        #FFFFFF;
  --white-off:    #F0F4F8;
  --gray-100:     #F7F9FC;
  --gray-200:     #E8EDF5;
  --gray-400:     #9DADC4;
  --gray-600:     #6B7A99;
  --gray-800:     #2D3748;
  --green:        #10B981;
  --red:          #EF4444;

  /* Gradients */
  --gradient-hero:    linear-gradient(135deg, #0A1628 0%, #1B3A5C 60%, #243E6B 100%);
  --gradient-gold:    linear-gradient(135deg, #D4A843 0%, #F0C860 100%);
  --gradient-card:    linear-gradient(135deg, rgba(27,58,92,0.6) 0%, rgba(10,22,40,0.8) 100%);
  --gradient-section: linear-gradient(180deg, #F7F9FC 0%, #EEF2F8 100%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:   80px;
  --container:    1200px;

  /* Effects */
  --shadow-sm:    0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:    0 8px 32px rgba(10,22,40,0.15);
  --shadow-lg:    0 20px 60px rgba(10,22,40,0.25);
  --shadow-gold:  0 8px 32px rgba(212,168,67,0.25);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy-mid); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.fw-700       { font-weight: 700; }
.fw-600       { font-weight: 600; }
.d-none       { display: none; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-2        { gap: 8px; }
.gap-3        { gap: 12px; }
.gap-4        { gap: 16px; }

/* Section Padding */
.section-py { padding: var(--section-py) 0; }
.section-py-sm { padding: 48px 0; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(212,168,67,0.15);
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.3);
}
.badge-navy {
  background: rgba(27,58,92,0.1);
  color: var(--navy-mid);
  border: 1px solid rgba(27,58,92,0.2);
}
.badge-green {
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,168,67,0.4);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-mid);
  color: var(--navy-mid);
}
.btn-outline-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-mid);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  font-size: 16px;
  padding: 16px 32px;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-block { width: 100%; }

/* Icon in button */
.btn svg, .btn .btn-icon { flex-shrink: 0; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-title-white {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.section-desc-white {
  color: rgba(255,255,255,0.75);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Divider */
.title-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 20px auto 0;
}
.title-divider-left {
  margin: 20px 0 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

#navbar.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  line-height: 1;
}

.logo-text span {
  color: var(--gold);
}

.logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-menu a:hover {
  color: var(--gold);
  background: rgba(212,168,67,0.08);
}

/* Nav right */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.announcement-bar a {
  text-decoration: underline;
  font-weight: 700;
  color: var(--navy-deep);
}

/* Push content below announcement bar + navbar */
body { padding-top: 36px; }
#navbar { top: 36px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Geometric background pattern */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,168,67,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27,58,92,0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating circles decoration */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(212,168,67,0.08);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: rgba(27,58,92,0.6);
  bottom: -50px; left: -50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .gold-text {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

/* Price tag */
.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 16px;
  padding: 12px 20px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-price .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.hero-price .amount {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.hero-price .per {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat {}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Hero image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* Floating card on hero image */
.hero-float-card {
  position: absolute;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-card-1 {
  bottom: -16px;
  left: -24px;
}

.hero-float-card-2 {
  top: -16px;
  right: -24px;
}

.float-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(212,168,67,0.15);
  flex-shrink: 0;
}

.float-text-main {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}

.float-text-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  animation: fadeIn 1s ease 1s both;
}

.scroll-indicator .arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   KEUNGGULAN SECTION
   ============================================================ */
#keunggulan {
  background: var(--gradient-section);
  padding: var(--section-py) 0;
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.keunggulan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.keunggulan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

.keunggulan-card:hover::before { opacity: 1; }

.keunggulan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.keunggulan-card:hover .card-icon-bg {
  background: rgba(212,168,67,0.2);
}

.keunggulan-card:hover .card-title,
.keunggulan-card:hover .card-desc {
  color: var(--white);
}

.keunggulan-card:hover .card-title { color: var(--gold); }

.card-icon-bg {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(27,58,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

/* ============================================================
   LAYANAN / PRICING SECTION
   ============================================================ */
#layanan {
  background: var(--navy-deep);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

#layanan::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(212,168,67,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(27,58,92,0.8) 0%, transparent 40%);
  pointer-events: none;
}

.layanan-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.layanan-content {}

.layanan-content .section-label { color: var(--gold); }
.layanan-content .section-title { color: var(--white); }
.layanan-content .section-desc { color: rgba(255,255,255,0.65); margin: 0; max-width: 100%; }

.layanan-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.layanan-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.layanan-item:hover {
  background: rgba(212,168,67,0.06);
  border-color: rgba(212,168,67,0.2);
  transform: translateX(6px);
}

.layanan-num {
  width: 32px; height: 32px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.layanan-text { flex: 1; }

.layanan-name {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.layanan-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.layanan-check {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}

/* Pricing card */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.pricing-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.pricing-sub {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.pricing-amount-wrapper {
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 24px;
}

.pricing-from {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
}

.pricing-amount small {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-600);
}

.pricing-period {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #059669;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
}

.pricing-addon {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.pricing-addon-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 14px;
}

.addon-item:last-child { border-bottom: none; }

.addon-name { color: var(--gray-800); }
.addon-price { font-weight: 700; color: var(--navy-mid); }

/* ============================================================
   PROSES SECTION
   ============================================================ */
#proses {
  background: var(--white);
  padding: var(--section-py) 0;
}

.proses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  list-style: none;
  padding: 0;
}

/* Connector line between steps */
.proses-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy-mid) 100%);
  opacity: 0.3;
  z-index: 0;
}

.proses-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px; height: 80px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 3px solid rgba(212,168,67,0.2);
  transition: var(--transition);
}

.step-number .num {
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}

.proses-step:hover .step-number {
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.step-icon { font-size: 28px; }

.step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   SYARAT DOKUMEN SECTION
   ============================================================ */
#syarat {
  background: var(--gradient-section);
  padding: var(--section-py) 0;
}

.syarat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.syarat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.syarat-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.syarat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.syarat-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
}

.syarat-list { display: flex; flex-direction: column; gap: 10px; }

.syarat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.5;
}

.syarat-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq {
  background: var(--white);
  padding: var(--section-py) 0;
}

.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(27,58,92,0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-deep);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover { background: var(--gray-100); }
.faq-item.open .faq-question { background: rgba(27,58,92,0.04); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: var(--transition);
  color: var(--navy-mid);
  font-weight: 700;
}

.faq-item.open .faq-icon {
  background: var(--navy-mid);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONI SECTION
   ============================================================ */
#testimoni {
  background: var(--gradient-section);
  padding: var(--section-py) 0;
}

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

.testimoni-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.testimoni-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,58,92,0.15);
}

.quote-icon {
  font-size: 40px;
  color: rgba(212,168,67,0.2);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimoni-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimoni-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimoni-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.testimoni-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

.testimoni-role {
  font-size: 12px;
  color: var(--gray-400);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  font-size: 16px;
}

.star-filled { color: #F59E0B; }

.verified-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  background: var(--gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,168,67,0.05) 0%, transparent 50%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-title span { color: var(--gold); }

.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.cta-info-item .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   CONTACT / FOOTER SECTION
   ============================================================ */
#kontak {
  background: var(--gray-100);
  padding: var(--section-py) 0 48px;
}

.kontak-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.kontak-brand {}

.kontak-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.kontak-logo img {
  height: 32px;
  width: auto;
  filter: none;
}

.kontak-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
}

.kontak-logo-text span { color: var(--gold); }

.kontak-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.kontak-parent {
  font-size: 12px;
  color: var(--gray-400);
}

.kontak-parent a {
  color: var(--navy-mid);
  font-weight: 600;
}

.kontak-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.kontak-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontak-links a {
  font-size: 14px;
  color: var(--gray-600);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.kontak-links a:hover { color: var(--navy-mid); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-item .icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--navy-mid);
}

.contact-item a {
  color: var(--navy-mid);
  font-weight: 500;
  transition: var(--transition);
}

.contact-item a:hover { color: var(--gold); }

/* Footer divider */
.footer-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-copy a {
  color: var(--navy-mid);
  font-weight: 500;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--navy-mid); }

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 36px; height: 36px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: var(--gray-600);
}

.social-icon:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  animation: floatIn 0.8s ease 1s both;
}

.floating-wa:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}

.floating-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.floating-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s ease infinite;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 60px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image-wrapper img { max-width: 360px; }
  .hero-title { font-size: 40px; }

  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .layanan-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .proses-grid { grid-template-columns: repeat(2, 1fr); }
  .proses-grid::before { display: none; }
  .testimoni-grid { grid-template-columns: repeat(2, 1fr); }
  .kontak-grid { grid-template-columns: 1fr 1fr; }

  .navbar-menu { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 48px; }

  body { padding-top: 0; }
  .announcement-bar { position: relative; top: auto; font-size: 12px; z-index: 1001; }
  #navbar { 
    position: sticky; 
    top: 0; 
    background: var(--navy-deep); /* Memberikan warna background karena berubah menjadi sticky */
  }
  #nav-cta-btn { display: none; } /* Menyembunyikan tombol agar tidak sesak di mobile */

  .hero-title { font-size: 32px; }
  .hero-stats { gap: 20px; }
  .hero-float-card { display: none; }

  .keunggulan-grid { grid-template-columns: 1fr; }
  .proses-grid { grid-template-columns: 1fr; }
  .syarat-grid { grid-template-columns: 1fr; }
  .testimoni-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-cta { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .floating-wa .wa-text { display: none; }
  .floating-wa { padding: 14px; border-radius: 50%; }

  .pricing-card { padding: 28px 24px; }
  .pricing-amount { font-size: 38px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-badge { font-size: 11px; }
}
