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

/* ===== SPLASH SCREEN ===== */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: splashFadeIn 0.5s ease;
}
.splash-overlay.closing {
  animation: splashFadeOut 0.4s ease forwards;
}
@keyframes splashFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes splashFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.splash-card {
  background: linear-gradient(160deg, #111b2e, #0c1220);
  border: 1px solid rgba(200, 165, 78, 0.25);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  animation: splashCardIn 0.6s ease 0.1s both;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 80px rgba(200,165,78,0.08);
}
@keyframes splashCardIn {
  from { opacity: 0; transform: scale(0.9) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.splash-header {
  background: linear-gradient(135deg, #162240, #1a2a4a);
  padding: 44px 48px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(200, 165, 78, 0.15);
}
.splash-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
}
.splash-logo { flex-shrink: 0; }
.splash-body {
  padding: 40px 48px;
}
.splash-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c8a54e;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.splash-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: #c5cdd8;
  line-height: 1.85;
  text-align: justify;
}
.splash-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #c8a54e, #e8c86e);
  color: #0c1220;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 24px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.splash-cta:hover {
  background: linear-gradient(135deg, #e8c86e, #f0d878);
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .splash-card { max-width: 92vw; }
  .splash-header { padding: 32px 28px 24px; }
  .splash-title { font-size: 1.8rem; }
  .splash-body { padding: 28px; }
  .splash-question { font-size: 1rem; }
  .splash-desc { font-size: 1rem; }
  .splash-cta { font-size: 1rem; padding: 20px 28px; }
}
@media (max-width: 480px) {
  .splash-header { flex-direction: column; text-align: center; padding: 28px 20px 20px; }
  .splash-title { font-size: 1.5rem; }
  .splash-body { padding: 24px 20px; }
  .splash-desc { font-size: 0.92rem; text-align: left; }
  .splash-question { font-size: 0.9rem; }
}

:root {
  --bg-dark: #0c1220;
  --bg-darker: #080e1a;
  --bg-card: #111b2e;
  --bg-card-hover: #162240;
  --gold: #c8a54e;
  --gold-light: #e8c86e;
  --gold-glow: rgba(200, 165, 78, 0.25);
  --white: #ffffff;
  --text: #c5cdd8;
  --text-light: #8a95a5;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(200, 165, 78, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: url('../images/logo-hexa.jpeg') center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.section-pad { padding: 100px 0; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light h2 { color: var(--white); }
.section-tag {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid var(--border-gold);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header h2 em {
  color: var(--gold);
  font-style: italic;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(12, 18, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-icon {
  font-size: 1.6rem;
  color: var(--gold);
}
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-img-sm {
  width: 34px;
  height: 34px;
}
.splash-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}
.logo-text strong {
  color: var(--gold);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--bg-dark) !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* Hamburger */
.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(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--gold-glow);
}
.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
}
.btn-outline-light {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: center;
}
.btn-outline-light:hover {
  background: var(--gold);
  color: var(--bg-dark);
}
.full-w { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}
.hero-shape.s1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; }
.hero-shape.s2 { width: 400px; height: 400px; background: #1a3a6c; bottom: -50px; left: -100px; }
.hero-shape.s3 { width: 300px; height: 300px; background: var(--gold-light); top: 40%; left: 30%; opacity: 0.1; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-title span {
  color: var(--gold-light);
  font-size: 0.55em;
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
  max-width: 500px;
}
.hero-limit {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.hero-limit strong { color: var(--gold); font-size: 1.1rem; }
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
  position: relative;
}
.hero-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  min-width: 280px;
  text-align: center;
}
.hero-card-badge {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-card-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(200,165,78,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.hch-icon { font-size: 1.5rem; }
.hero-card-highlight strong {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
}
.hero-card-highlight small {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Hero Stats */
.hero-stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 60px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== LAYANAN ===== */
.layanan { background: var(--bg-darker); }
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.layanan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.layanan-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.layanan-card.featured {
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  border-color: transparent;
}
.layanan-card.featured h3,
.layanan-card.featured p { color: var(--bg-dark); }
.lc-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.layanan-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.layanan-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== KEUNGGULAN ===== */
.keunggulan { background: var(--bg-dark); }
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ku-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  overflow: hidden;
}
.ku-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.ku-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200,165,78,0.08);
  line-height: 1;
}
.ku-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.ku-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.ku-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== KALKULATOR ===== */
.kalkulator { background: var(--bg-darker); }
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.calc-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.calc-group {
  margin-bottom: 16px;
}
.calc-group label {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.calc-group input,
.calc-group select {
  width: 100%;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}
.calc-group input:focus,
.calc-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.calc-group input::placeholder { color: var(--text-light); }
.calc-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a95a5'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.calc-group select option { background: var(--bg-dark); color: var(--white); }
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Result panel */
.calc-result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-result-placeholder {
  text-align: center;
  color: var(--text-light);
}
.calc-result-placeholder span { font-size: 3rem; display: block; margin-bottom: 16px; }
.calc-result-placeholder p { font-size: 0.95rem; line-height: 1.6; }
.calc-result-data { width: 100%; }
.calc-result-label {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.calc-result-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: #34d399;
  margin-bottom: 4px;
}
.calc-result-note {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.calc-result-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-darker);
  border-radius: var(--radius-sm);
}
.calc-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.calc-detail-row span:first-child { color: var(--text-light); }
.calc-detail-row span:last-child { color: var(--white); font-weight: 600; }
.calc-badge {
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.risk-low { background: rgba(52, 211, 153, 0.15); color: #34d399; }
.risk-mid { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.risk-high { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.calc-cta { margin-bottom: 16px; }
.calc-disclaimer {
  font-size: 0.72rem;
  color: var(--text-light);
  opacity: 0.7;
  line-height: 1.5;
  text-align: center;
}

/* ===== TIM ===== */
.tim { background: var(--bg-darker); }
.tim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.tim-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.tim-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.tim-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 16px;
}
.tim-photo-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid var(--border-gold);
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tim-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tim-role {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  margin-bottom: 12px;
}
.tim-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.tim-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== TESTIMONI ===== */
.testimoni { background: var(--bg-dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--border-gold); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.testi-card > p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq { background: var(--bg-darker); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-arrow {
  color: var(--gold);
  transition: var(--transition);
  font-size: 1.2rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PARTNER ===== */
.partner { background: var(--bg-dark); }
.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.partner-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}
.partner-logo:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--bg-card-hover);
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-darker);
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(180px);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner {
  position: relative;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner h2 em { color: var(--gold); font-style: italic; }
.cta-inner p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== KONTAK ===== */
.kontak { background: var(--bg-dark); }
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.kontak-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.kontak-info h3 em { color: var(--gold); font-style: italic; }
.kontak-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
}
.kontak-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kontak-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ki-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.kontak-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.kontak-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Kontak Form */
.kontak-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.kontak-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
}

/* ===== FORMS ===== */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.form-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.form-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.form-section h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a95a5'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--bg-dark);
  color: var(--white);
}
.form-agree {
  margin-bottom: 24px;
}
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--gold);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-darker);
  padding: 140px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}
.footer-company-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-company-info small {
  color: var(--text-light);
  font-size: 0.78rem;
  opacity: 0.7;
}
.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-light);
  font-size: 0.82rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease-out; }
.hero-card { animation: fadeUp 0.8s ease-out 0.2s both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .layanan-grid { grid-template-columns: repeat(2, 1fr); }
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .layanan-grid { grid-template-columns: 1fr; }
  .keunggulan-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .tim-grid { grid-template-columns: 1fr; max-width: 360px; }
  .kontak-grid { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
  .calc-input { padding: 24px 20px; }
  .calc-result { min-height: auto; padding: 24px 20px; }
  .calc-result-amount { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .partner-logos { grid-template-columns: 1fr 1fr; }
}

/* ===== FORM TYPE TOGGLE ===== */
.form-type-toggle {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.toggle-btn {
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toggle-btn:hover {
  border-color: var(--border-gold);
  color: var(--white);
}
.toggle-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--bg-dark);
}
.toggle-icon { font-size: 1.2rem; }

/* ===== FORM ROW VARIANTS ===== */
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.form-row-4 {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 0.8fr;
  gap: 16px;
}

/* ===== OPTIONAL BADGE ===== */
.optional-badge {
  display: inline-block;
  background: rgba(138, 149, 165, 0.15);
  color: var(--text-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ===== FORM SUB LABEL ===== */
.form-sub-label {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== FORM DIVIDER ===== */
.form-divider {
  border-top: 1px dashed var(--border);
  margin: 24px 0;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
}
.success-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.success-message h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.success-message p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.success-message strong { color: var(--white); }

/* ===== BUTTON LOADING ===== */
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid var(--bg-dark);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .form-type-toggle { flex-direction: column; }
  .toggle-btn { justify-content: center; }
  .form-row-3 { grid-template-columns: 1fr; }
  .form-row-4 { grid-template-columns: 1fr 1fr; }
  .success-message { padding: 50px 24px; }
}
@media (max-width: 480px) {
  .form-row-4 { grid-template-columns: 1fr; }
}
