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

/********************************************************
 * STYLE.CSS GABUNGAN
 * Tema warna Telkomsel / IndiHome
 ********************************************************/

:root {
  --primary: #111827;
  --primary-light: #F3F4F6;

  --accent: #E60012;
  --accent-dark: #B8000F;
  --accent-soft: #FFF1F3;
  --accent-light: #FF4D5E;

  --red: #E60012;
  --red-dark: #B8000F;
  --red-soft: #FFF1F3;

  --yellow: #FFD100;
  --green: #25D366;
  --green-dark: #128C7E;

  --text-primary: #181B24;
  --text-secondary: #5A5D66;
  --page-bg: #F8F9FA;
  --card: #FFFFFF;
  --muted: #6B6F76;

  --radius: 1rem;
  --radius-lg: 30px;
  --radius-md: 24px;
  --pill: 999px;

  --shadow: 0 10px 30px rgba(0,0,0,.07);
  --shadow-soft: 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 20px 48px rgba(16,17,20,.1);
  --shadow-lg: 0 30px 80px rgba(16,17,20,.18);
  --shadow-red: 0 18px 36px rgba(230,0,18,.24);

  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 65px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top left, rgba(230,0,18,.07), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, var(--page-bg) 100%);
  color: var(--text-primary);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll,
body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.icon-lite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  font-weight: 900;
  line-height: 1;
}

.feature-icon .icon-lite,
.fitur-icon .icon-lite {
  font-size: 1.65rem;
}

.social-list .icon-lite {
  font-size: 1rem;
}

a,
button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

h1,
h2,
.section-title {
  color: var(--text-primary);
  font-weight: 800;
  text-align: center;
  margin: 0 0 1.1rem;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.08;
}

h2,
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 700;
}

ul,
ol {
  padding-left: 1.5rem;
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.7;
}

ul li::marker,
ol li::marker {
  color: var(--accent);
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.color-secondary {
  color: var(--accent);
  font-weight: 600;
}

/********************************************************
 * NAVBAR WEBSITE
 ********************************************************/
.navbar {
  background: rgba(17, 24, 39, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.nav-shadow,
.navbar.scrolled {
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  position: relative;
}

.brand,
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.menu,
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  padding: 0;
}

.menu a,
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  transition: var(--transition);
}

.menu a:hover,
.nav-links a:hover {
  background: rgba(230,0,18,.18);
}

.menu a.is-active,
.menu a.active,
.nav-links a.active {
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(230,0,18,.28);
}

.nav-toggle,
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: var(--nav-h);
  width: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nav-toggle-bar,
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 3px 0;
  transition: var(--transition);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1),
.hamburger.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2),
.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3),
.hamburger.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/********************************************************
 * HERO WEBSITE + PANEL LANDINGPAGE
 ********************************************************/
.hero {
  position: relative;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background: #101114;
}

.hero-image-wrapper,
.hero-media,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image-wrapper,
.hero-media {
  z-index: 0;
}

.hero-image-wrapper img,
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(10,11,15,.9) 0%, rgba(17,24,39,.68) 48%, rgba(230,0,18,.42) 100%),
    rgba(0,0,0,.35);
}

.hero-inner,
.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
}

.hero-left {
  color: white;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero h1,
.hero p,
.hero-left h1,
.hero-desc {
  color: #fff;
}

.hero-left h1 {
  text-align: center;
  max-width: 760px;
  margin: 18px auto;
}

.hero-highlight {
  color: #FFE3E7;
}

.hero p,
.hero-desc {
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.btn-main,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
}

.btn-main,
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: 0;
  padding: 1rem 2.3rem;
  box-shadow: 0 4px 20px rgba(230,0,18,.32);
}

.btn-outline {
  color: white;
  padding: 1rem 1.8rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.34);
}

.btn-main:hover,
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}

.stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.stat span {
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-panel {
  width: 100%;
  max-width: 380px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  text-align: left;
  margin-bottom: 20px;
}

.hero-mini-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-panel h2 {
  margin: 0 0 10px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text-primary);
  text-align: left;
}

.hero-panel h2 span {
  font-size: 1rem;
  color: var(--muted);
}

.hero-panel p {
  font-size: 14px;
  color: black;
  text-align: left;
}

.hero-panel-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
}

.hero-panel-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 15px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

/********************************************************
 * SECTION UMUM
 ********************************************************/
.section {
  padding: 4rem 0;
}

.section-alt {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.section-subtitle,
.section-header p {
  color: var(--text-secondary);
  text-align: center;
  font-size: 1.05rem;
  margin: 0 auto 1rem;
  max-width: 720px;
  line-height: 1.7;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: var(--pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/********************************************************
 * FLOATING WHATSAPP
 ********************************************************/
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 36px rgba(37,211,102,.28);
  animation: pulse-wa 2.7s infinite;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.03);
}

@keyframes pulse-wa {
  0%, 100% {
    box-shadow: 0 18px 36px rgba(37,211,102,.28);
  }
  50% {
    box-shadow:
      0 18px 42px rgba(37,211,102,.34),
      0 0 0 8px rgba(37,211,102,.08);
  }
}

/********************************************************
 * FEATURES WEBSITE
 ********************************************************/
.features-list,
.fitur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.feature-card,
.fitur-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #F1F1F4;
  transition: var(--transition);
}

.feature-card:hover,
.fitur-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon,
.fitur-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.fitur-icon {
  border-radius: 18px;
}

.fitur-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.fitur-item p {
  margin: 0;
  text-align: center;
  font-size: 13px;
}

/********************************************************
 * PAKET DINAMIS LANDINGPAGE
 * Final: card paket disamakan dengan CSS 2
 ********************************************************/
.paket,
.section-paket {
  padding: 86px 0;
  background: #fff;
}

.paket-loading {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 12px 16px;
  border-radius: var(--pill);
  background: #f8fafc;
  border: 1px solid #e8ebf2;
  box-shadow: none;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.paket-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  justify-content: stretch;
  gap: 18px;
  align-items: stretch;
}

.paket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 352px;
  padding: 24px;
  overflow: hidden;
  text-align: left;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e8ebf2;
  box-shadow: 0 12px 32px rgba(16, 24, 40, .07);
  transition: .22s ease;
}

.paket-card::before {
  display: none;
}

.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(16, 24, 40, .10);
}

.paket-card.populer {
  color: #172033;
  background: #fff;
  border: 2px solid rgba(230, 0, 18, .28);
  box-shadow: 0 12px 32px rgba(16, 24, 40, .07);
}

.paket-card.populer:hover {
  box-shadow: 0 22px 60px rgba(16, 24, 40, .10);
}

.paket-card.populer::after {
  content: "POPULER";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: var(--pill);
  background: #fff2f3;
  color: #e60012;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.paket-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: var(--pill);
  background: #fff2f3;
  color: #e60012;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.paket-icon-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 0 18px;
  border-radius: 18px;
  background: #fff2f3;
  color: #e60012;
}

.paket-card.populer .paket-icon-wrap {
  background: #fff2f3;
}

.icon-paket {
  width: 27px;
  height: 27px;
  color: #e60012;
}

.paket-card.populer .icon-paket {
  color: #e60012;
}

.paket-icon-wrap i {
  font-size: 27px;
  color: #e60012;
}

.paket-card h3,
.speed,
.paket-desc,
.price,
.btn-paket {
  position: relative;
  z-index: 1;
}

.paket-card h3 {
  margin: 0;
  padding-right: 82px;
  color: #172033;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.02em;
  font-weight: 800;
  text-align: left;
}

.paket-card.populer h3 {
  color: #172033;
}

.speed {
  margin: 8px 0 0;
  color: #e60012;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

.paket-card.populer .speed {
  color: #e60012;
}

.paket-desc {
  flex: 1;
  max-width: none;
  margin: 16px 0 22px;
  color: #667085;
  font-size: 14px;
  line-height: 1.72;
  text-align: left;
}

.paket-card.populer .paket-desc {
  color: #667085;
}

.price {
  min-height: auto;
  margin: 0;
  color: #172033;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.045em;
  text-align: left;
}

.price span {
  margin-left: 4px;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.paket-card.populer .price {
  color: #172033;
}

.paket-card.populer .price span {
  color: #667085;
}

.btn-paket {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--pill);
  color: #fff;
  background: linear-gradient(135deg, #e60012, #c90010);
  box-shadow: none;
  font-size: 14px;
  font-weight: 900;
  transition: .22s ease;
}

.btn-paket:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(230, 0, 18, .22);
}

.btn-paket-white {
  color: #fff !important;
  background: linear-gradient(135deg, #e60012, #c90010) !important;
}

.paket-empty {
  grid-column: 1 / -1;
  padding: 26px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e8ebf2;
  box-shadow: none;
  text-align: center;
  color: #667085;
  font-weight: 800;
}

.ppn-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 12px 16px;
  border-radius: var(--pill);
  background: #f8fafc;
  border: 1px solid #e8ebf2;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  box-shadow: none;
}

/********************************************************
 * MODAL PAKET
 ********************************************************/
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: 24px 16px;
  overflow-y: auto;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  width: min(100%, 680px);
  margin: auto;
}

.modal-content {
  position: relative;
  width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: modalFadeIn .28s cubic-bezier(.4,0,.2,1);
}

.modal-content-wide {
  max-width: 680px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #999;
  font-size: 28px;
  line-height: 1;
}

.close-modal:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.modal-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-content h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: left;
}

.modal-subtitle {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
}

.modal-list {
  display: grid;
  gap: 12px;
}

.modal-paket-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  background: #F8F9FA;
}

.modal-paket-item > div:first-child {
  flex: 1;
  min-width: 0;
}

.modal-paket-item.is-populer {
  border: 2px solid rgba(230,0,18,.22);
  background: var(--accent-soft);
}

.modal-paket-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
}

.modal-badge-populer {
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 50px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.modal-paket-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

.modal-paket-price span {
  font-size: 11px;
  font-weight: 500;
  color: #666;
}

.modal-paket-note {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.5;
}

.modal-paket-benefits {
  color: #555;
}

.modal-paket-recommendation {
  color: #333;
}

.modal-paket-link {
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
  padding: 11px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.modal-paket-link:hover {
  transform: translateY(-1px);
}

/********************************************************
 * SKEMA PEMBAYARAN
 ********************************************************/
.skema-wrapper {
  margin-top: 10px;
}

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

.skema-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skema-option {
  position: relative;
  cursor: pointer;
}

.skema-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F1F5F9;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: .2s ease;
}

.badge.highlight {
  background: #ECFDF5;
  color: #059669;
}

.skema-option:hover .badge {
  transform: translateY(-1px);
}

.skema-option input[type="radio"]:checked + .badge {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 14px rgba(230,0,18,.24);
}

.skema-option input[type="radio"]:checked + .badge.highlight {
  background: #059669;
}

.skema-benefit-info {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 12px;
  font-weight: 600;
}

.skema-benefit-info[hidden] {
  display: none !important;
}

/********************************************************
 * CARA PASANG
 ********************************************************/
.cara {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
}

.cara-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cara-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid rgba(15,17,21,.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.cara-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.step-content h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}

.step-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

/********************************************************
 * FAQ SUPPORT DETAILS & BUTTON ACCORDION
 ********************************************************/
.faq-list,
.faq-container {
  display: grid;
  gap: 14px;
  margin-top: 1.2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #F1F1F4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--text-primary);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  padding: 0 18px 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid #F1F1F4;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: #fff;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
}

.faq-item.active {
  border-color: rgba(230,0,18,.24);
}

.faq-item.active .faq-question {
  color: var(--accent);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: var(--transition);
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: max-height .4s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
  max-height: 520px;
  padding: 0 22px 22px;
}

/********************************************************
 * REVEAL ANIMATION
 ********************************************************/
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/********************************************************
 * FOOTER WEBSITE
 ********************************************************/
.footer,
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 18px;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.1rem;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1.2fr;
  gap: 28px 36px;
  align-items: start;
}

.footer-brand img,
.footer-logo-img {
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer h4,
.footer-links h4,
.footer-contact h4 {
  margin: 0 0 10px;
  font-weight: 800;
  color: #fff;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li + li {
  margin-top: 8px;
}

.footer a,
.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: .85;
  transition: var(--transition);
}

.footer a:hover,
.footer-links a:hover {
  opacity: 1;
  color: #FF6B7A;
}

.footer p,
.footer-contact p {
  color: #fff;
  opacity: .85;
  font-size: 14px;
  line-height: 1.6;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5CF19D !important;
  font-weight: 800;
}

.social-list {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.social-list a {
  font-size: 1.3rem;
}

.social-list a:hover {
  transform: translateY(-2px) scale(1.1);
}

.footer-bottom {
  max-width: 1160px;
  margin: 26px auto 0;
  padding: 12px 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,.22);
  text-align: center;
  font-size: .98rem;
  opacity: .8;
}

.footer-bottom-wrap {
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.8;
}

.footer-bottom-wrap > p:first-child {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.footer-disclaimer {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  margin-top: 4px !important;
}

.footer-disclaimer-small {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  margin-top: 2px !important;
}

/********************************************************
 * RESPONSIVE
 ********************************************************/
@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right {
    justify-content: center;
  }

  .cara-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 200px 1fr 1fr;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 750px) {
  .nav-toggle,
  .hamburger {
    display: flex;
  }

  .menu,
  .nav-links {
    flex-direction: column;
    width: 100%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: var(--nav-h);
    display: none;
    border-top: 1px solid rgba(255,255,255,.2);
    padding: 8px 0;
    z-index: 1001;
  }

  .menu.is-open,
  .nav-links.active {
    display: flex;
  }

  .menu li,
  .nav-links a {
    width: 100%;
  }

  .menu li a,
  .nav-links a {
    display: block;
    padding: 14px 18px;
    border-radius: 0;
    text-align: center;
  }

  .hero-shell {
    padding: 100px 16px 70px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-main,
  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .fitur-grid,
  .features-list,
  .cara-wrapper,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .modal-paket-item {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-paket-link {
    width: 100%;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .wa-float {
    padding: 14px;
    border-radius: 50%;
  }

  .wa-float span {
    display: none;
  }

  .hero-panel {
    padding: 22px;
  }

  .modal-content {
    padding: 24px 18px;
  }

  .addon-list {
    gap: 1.2rem;
  }

  .addon-list img {
    width: 88px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.about-hero {
  min-height: 78vh;
}

.about-hero .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  max-width: 900px;
  text-align: center;
}

.about-content p {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta {
  margin-top: 28px;
  text-align: center;
}

.about-hero .section-tag {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

/********************************************************
 * FINAL OVERRIDE MODAL PAKET
 * Tombol Pilih Paket + Tanya Admin
 ********************************************************/

/*
 * Struktur HTML/JS tombol:
 *
 * <div class="modal-paket-actions">
 *   <button type="button" class="modal-paket-link pilih-paket-btn" data-item-id="${item.id}">
 *     Pilih Paket
 *   </button>
 *
 *   <button type="button" class="modal-paket-link tanya-admin-btn" data-item-id="${item.id}">
 *     Tanya Admin
 *   </button>
 * </div>
 */

/* Wrapper tombol kanan di modal */
.modal-paket-actions {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: auto;
}

/* Base tombol di dalam wrapper */
.modal-paket-actions .modal-paket-link {
  width: auto;
  min-width: 135px;
  padding: 9px 14px;
  border: none;
  border-radius: 999px;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

/* Tombol Pilih Paket - merah IndiHome */
.modal-paket-actions .pilih-paket-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}

/* Tombol Tanya Admin - hijau WhatsApp */
.modal-paket-actions .tanya-admin-btn {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
}

/* Hover tombol modal */
.modal-paket-actions .pilih-paket-btn:hover,
.modal-paket-actions .tanya-admin-btn:hover {
  transform: translateY(-1px);
}

/* Mobile: tombol full width agar rapi */
@media (max-width: 750px) {
  .modal-paket-actions {
    width: 100%;
    align-self: stretch;
  }

  .modal-paket-actions .modal-paket-link {
    width: 100%;
    min-width: 0;
    padding: 11px 16px;
  }
}



/********************************************************
 * PERFORMANCE FRIENDLY ADDITIONS
 ********************************************************/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/********************************************************
 * FINAL RESPONSIVE CARD PAKET
 ********************************************************/
@media (max-width: 760px) {
  .paket,
  .section-paket {
    padding: 64px 0;
  }

  .paket-wrapper {
    grid-template-columns: 1fr;
  }

  .paket-card {
    min-height: 0;
  }
}

/********************************************************
 * MYTELKOMSEL ACCENT OVERRIDE - WHITE PAGE VERSION
 * Background halaman full putih.
 * Warna MyTelkomsel hanya dipakai di bagian tertentu:
 * navbar, hero overlay, tombol, badge, card accent, modal.
 ********************************************************/

:root {
  --primary: #111111;
  --primary-light: #F6F7F9;

  --accent: #F3122F;
  --accent-dark: #9E0F1D;
  --accent-soft: #FFF1F3;
  --accent-light: #FF4A5F;

  --red: #F3122F;
  --red-dark: #9E0F1D;
  --red-soft: #FFF1F3;

  --yellow: #FFB84D;
  --green: #25D366;
  --green-dark: #128C7E;

  --text-primary: #171717;
  --text-secondary: #5F6673;
  --page-bg: #FFFFFF;
  --card: #FFFFFF;
  --muted: #687082;

  --surface-soft: #F7F8FA;
  --line-soft: rgba(17, 17, 17, .08);

  --shadow: 0 18px 46px rgba(17, 17, 17, .075);
  --shadow-soft: 0 8px 24px rgba(17, 17, 17, .05);
  --shadow-md: 0 22px 58px rgba(17, 17, 17, .09);
  --shadow-lg: 0 34px 90px rgba(17, 17, 17, .18);
  --shadow-red: 0 18px 36px rgba(243, 18, 47, .20);

  --transition: .24s cubic-bezier(.4,0,.2,1);
}

/* BACKGROUND UTAMA FULL PUTIH */
html,
body {
  background: #FFFFFF !important;
}

body {
  background: #FFFFFF !important;
  color: var(--text-primary);
}

p,
.section-header p,
.section-subtitle {
  color: var(--text-secondary);
}

h1,
h2,
h3,
.section-title {
  color: var(--text-primary);
}

.color-secondary,
.section-tag,
.modal-eyebrow,
.skema-title {
  color: var(--accent);
}

/* NAVBAR TETAP GELAP PREMIUM */
.navbar {
  background: rgba(17, 17, 17, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 10px 30px rgba(17, 17, 17, .12);
}

.navbar.nav-shadow,
.navbar.scrolled {
  background: rgba(17, 17, 17, .97);
  box-shadow: 0 16px 42px rgba(17, 17, 17, .18);
}

.menu a,
.nav-links a {
  color: rgba(255, 255, 255, .88);
}

.menu a:hover,
.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
}

.menu a.is-active,
.menu a.active,
.nav-links a.active,
.nav-cta {
  color: #FFFFFF;
  background: linear-gradient(135deg, #F3122F, #B40E22);
  box-shadow: 0 12px 30px rgba(243, 18, 47, .26);
}

/* HERO BOLEH GELAP SESUAI REFERENSI, TAPI HALAMAN LAIN PUTIH */
.hero {
  background: #090909;
}

.hero::before,
.hero-overlay {
  background:
    radial-gradient(circle at 74% 26%, rgba(243, 18, 47, .28), transparent 28rem),
    radial-gradient(circle at 58% 18%, rgba(120, 20, 20, .26), transparent 24rem),
    linear-gradient(90deg, rgba(6, 6, 6, .96) 0%, rgba(7, 7, 7, .90) 38%, rgba(66, 12, 12, .66) 74%, rgba(16, 8, 8, .78) 100%),
    rgba(0, 0, 0, .26);
}

.hero h1,
.hero p,
.hero-left h1,
.hero-desc {
  color: #FFFFFF;
}

.hero-highlight {
  color: #FFCCD2;
}

.hero p,
.hero-desc {
  color: rgba(255, 255, 255, .78);
}

.btn-main,
.btn-primary,
.hero-panel-cta,
.modal-paket-link,
.modal-paket-actions .pilih-paket-btn {
  color: #FFFFFF;
  background: linear-gradient(135deg, #F3122F, #C70D24);
  box-shadow: 0 16px 38px rgba(243, 18, 47, .24);
}

.btn-outline {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
}

.btn-main:hover,
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.hero-panel {
  color: #171717;
  background:
    radial-gradient(circle at top right, rgba(243, 18, 47, .06), transparent 12rem),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .30);
}

.hero-panel h2 {
  color: #171717;
}

.hero-panel h2 span,
.hero-panel p,
.hero-panel-item {
  color: #5F6673;
}

.hero-mini-label {
  color: #F3122F;
}

.stat {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .16);
}

/* SECTION: SEMUA PUTIH */
.section,
.paket,
.section-paket,
.section-alt,
.cara {
  background: #FFFFFF !important;
}

.section-alt {
  border-top: 1px solid rgba(17, 17, 17, .07);
  border-bottom: 1px solid rgba(17, 17, 17, .07);
}

.section-tag {
  background: #FFF1F3;
  border: 1px solid #FFDDE3;
  color: #F3122F;
}

/* CARD UMUM */
.feature-card,
.fitur-item,
.cara-step,
.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, .08);
  box-shadow: 0 12px 30px rgba(17, 17, 17, .055);
}

.feature-card:hover,
.fitur-item:hover,
.cara-step:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 18, 47, .18);
  box-shadow: 0 22px 54px rgba(17, 17, 17, .09);
}

.feature-icon,
.fitur-icon,
.step-number {
  background: linear-gradient(135deg, #F3122F, #9E0F1D);
  color: #FFFFFF;
  box-shadow: 0 16px 34px rgba(243, 18, 47, .18);
}

.step-icon {
  background: #FFF1F3;
}

/* AREA PAKET: PUTIH BERSIH, AKSEN MERAH DI CARD */
.paket,
.section-paket {
  padding: 92px 0;
}

.paket-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 20px;
}

.paket-loading,
.paket-empty,
.ppn-note {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, .08);
  color: #687082;
  box-shadow: 0 8px 22px rgba(17, 17, 17, .04);
}

.paket-card {
  min-height: 368px;
  padding: 24px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, .09);
  box-shadow: 0 16px 42px rgba(17, 17, 17, .065);
}

.paket-card::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #F3122F, #FF4A5F);
}

.paket-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 18, 47, .24);
  box-shadow: 0 26px 70px rgba(17, 17, 17, .11);
}

.paket-card.populer {
  background:
    radial-gradient(circle at top right, rgba(243, 18, 47, .055), transparent 13rem),
    #FFFFFF;
  border: 1.5px solid rgba(243, 18, 47, .32);
  box-shadow: 0 22px 58px rgba(243, 18, 47, .10);
}

.paket-card.populer::after,
.paket-badge {
  background: #FFF1F3;
  color: #B40E22;
  border: 1px solid rgba(243, 18, 47, .18);
}

.paket-icon-wrap {
  background: #FFF1F3;
  color: #F3122F;
  border: 1px solid rgba(243, 18, 47, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

.paket-card.populer .paket-icon-wrap {
  background: #FFF1F3;
}

.icon-paket,
.paket-icon-wrap i,
.paket-card.populer .icon-paket {
  color: #F3122F;
}

.paket-card h3,
.paket-card.populer h3 {
  color: #171717;
  font-weight: 850;
}

.speed,
.paket-card.populer .speed {
  color: #F3122F;
}

.paket-desc,
.paket-card.populer .paket-desc {
  color: #687082;
}

.price,
.paket-card.populer .price {
  color: #171717;
}

.price span,
.paket-card.populer .price span {
  color: #687082;
}

.btn-paket,
.btn-paket-white {
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #F3122F, #C70D24) !important;
  box-shadow: 0 16px 34px rgba(243, 18, 47, .20);
}

.btn-paket:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(243, 18, 47, .28);
}

/* MODAL: PUTIH, AKSEN MERAH */
.modal {
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(8px);
}

.modal-content {
  color: #171717;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .30);
}

.modal-content h2,
.modal-paket-head,
.modal-paket-recommendation {
  color: #171717;
}

.modal-subtitle,
.modal-paket-price span,
.modal-paket-benefits {
  color: #687082;
}

.close-modal {
  color: #777;
}

.close-modal:hover {
  color: #F3122F;
  background: #FFF1F3;
}

.modal-paket-item {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, .08);
  box-shadow: 0 10px 26px rgba(17, 17, 17, .045);
}

.modal-paket-item.is-populer {
  background: #FFF7F8;
  border: 1.5px solid rgba(243, 18, 47, .24);
}

.modal-badge-populer {
  background: #FFF1F3;
  color: #B40E22;
}

.modal-paket-price,
.modal-paket-note {
  color: #F3122F;
}

.modal-paket-actions .tanya-admin-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .18);
}

/* SKEMA PEMBAYARAN */
.badge {
  background: #F6F7F9;
  border: 1px solid rgba(17, 17, 17, .08);
  color: #374151;
}

.badge.highlight {
  background: #FFF8E8;
  color: #92400E;
}

.skema-option input[type="radio"]:checked + .badge {
  background: linear-gradient(135deg, #F3122F, #B40E22);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(243, 18, 47, .22);
}

.skema-option input[type="radio"]:checked + .badge.highlight {
  background: linear-gradient(135deg, #FFB84D, #C47F00);
  color: #171717;
}

.skema-benefit-info {
  background: #FFF8E8;
  border-color: #FDE68A;
  color: #92400E;
}

/* FAQ */
.faq-item summary,
.faq-question {
  background: #FFFFFF;
  color: #171717;
}

.faq-content,
.faq-answer {
  color: #5F6673;
  border-top-color: rgba(17, 17, 17, .08);
}

.faq-item summary::after,
.faq-item.active .faq-question,
.faq-item.active .faq-arrow {
  color: #F3122F;
}

.faq-item.active {
  border-color: rgba(243, 18, 47, .24);
}

/* WHATSAPP DAN FOOTER */
.wa-float {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 18px 36px rgba(37, 211, 102, .24);
}

.footer,
footer {
  background:
    radial-gradient(circle at top left, rgba(243, 18, 47, .18), transparent 24rem),
    linear-gradient(180deg, #111111 0%, #050505 100%) !important;
}

.footer a:hover,
.footer-links a:hover {
  color: #FF4A5F;
}

.footer p,
.footer-contact p {
  color: rgba(255, 255, 255, .78);
}

ul li::marker,
ol li::marker {
  color: #F3122F;
}

/* MOBILE */
@media (max-width: 760px) {
  .paket,
  .section-paket {
    padding: 68px 0;
  }

  .paket-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .paket-card {
    min-height: 0;
    padding: 22px;
    border-radius: 26px;
  }

  .paket-card h3 {
    padding-right: 76px;
    font-size: 19px;
  }

  .speed {
    font-size: 17px;
  }

  .price {
    font-size: 28px;
  }

  .btn-paket {
    min-height: 48px;
  }
}

@media (max-width: 520px) {
  .hero-shell {
    padding: 96px 16px 64px;
  }

  .hero-panel,
  .modal-content {
    border-radius: 24px;
  }
}


/********************************************************
 * FIX TEXT INVISIBLE ON WHITE BACKGROUND
 * Halaman putih: semua teks section/card/paket dibuat gelap.
 * Teks putih hanya dipakai di area gelap: navbar, hero, footer, tombol merah/hijau.
 ********************************************************/

/* Default semua konten di halaman putih harus gelap */
body,
.section,
.section-alt,
.paket,
.section-paket,
.cara,
.container,
.feature-card,
.fitur-item,
.cara-step,
.faq-item,
.paket-card,
.modal-content,
.modal-paket-item,
.hero-panel {
  color: #171717 !important;
}

/* Heading dan teks utama di area putih */
.section h1,
.section h2,
.section h3,
.section-title,
.section-header h1,
.section-header h2,
.section-header h3,
.paket h1,
.paket h2,
.paket h3,
.section-paket h1,
.section-paket h2,
.section-paket h3,
.feature-card h3,
.fitur-item h3,
.cara-step h3,
.faq-question,
.faq-item summary,
.paket-card h3,
.price,
.modal-content h2,
.modal-paket-head,
.modal-paket-recommendation,
.hero-panel h2 {
  color: #171717 !important;
}

/* Paragraf dan deskripsi di area putih */
.section p,
.section-alt p,
.paket p,
.section-paket p,
.cara p,
.section-header p,
.section-subtitle,
.feature-card p,
.fitur-item p,
.cara-step p,
.faq-answer,
.faq-content,
.paket-desc,
.price span,
.modal-subtitle,
.modal-paket-benefits,
.modal-paket-price span,
.hero-panel p,
.hero-panel-item,
.ppn-note,
.paket-loading,
.paket-empty {
  color: #5F6673 !important;
}

/* Warna aksen tetap merah */
.color-secondary,
.section-tag,
.modal-eyebrow,
.skema-title,
.speed,
.modal-paket-price,
.modal-paket-note {
  color: #F3122F !important;
}

/* Area yang memang gelap tetap putih */
.navbar,
.navbar *,
.hero,
.hero *,
.footer,
.footer *,
footer,
footer * {
  color: #FFFFFF !important;
}

/* Kecualikan panel putih di dalam hero, tetap teks gelap */
.hero .hero-panel,
.hero .hero-panel *,
.hero-panel,
.hero-panel * {
  color: #171717 !important;
}

.hero .hero-panel p,
.hero .hero-panel-item,
.hero-panel p,
.hero-panel-item,
.hero-panel h2 span {
  color: #5F6673 !important;
}

.hero .hero-mini-label,
.hero-mini-label {
  color: #F3122F !important;
}

/* Tombol merah/hijau tetap teks putih */
.btn-main,
.btn-primary,
.btn-outline,
.btn-paket,
.btn-paket-white,
.hero-panel-cta,
.modal-paket-link,
.pilih-paket-btn,
.tanya-admin-btn,
.nav-cta,
.wa-float,
.wa-float *,
.modal-paket-actions .modal-paket-link,
.modal-paket-actions .modal-paket-link * {
  color: #FFFFFF !important;
}

/* Badge/skema yang background terang tetap gelap/merah */
.badge {
  color: #374151 !important;
}

.badge.highlight {
  color: #92400E !important;
}

.skema-option input[type="radio"]:checked + .badge {
  color: #FFFFFF !important;
}

.skema-option input[type="radio"]:checked + .badge.highlight {
  color: #171717 !important;
}

.paket-badge,
.paket-card.populer::after,
.modal-badge-populer {
  color: #B40E22 !important;
}

/* Icon dalam lingkaran merah tetap putih */
.feature-icon,
.feature-icon *,
.fitur-icon,
.fitur-icon *,
.step-number,
.step-number * {
  color: #FFFFFF !important;
}

/* FAQ icon/arrow aksen */
.faq-item summary::after,
.faq-item.active .faq-question,
.faq-item.active .faq-arrow {
  color: #F3122F !important;
}

/* Footer link hover tetap aksen */
.footer a:hover,
.footer-links a:hover,
footer a:hover {
  color: #FF4A5F !important;
}

/********************************************************
 * FINAL FIX HERO PANEL CTA / WALINK TEXT WHITE
 * Pastikan tulisan tombol WhatsApp di hero panel tetap putih
 * walaupun ada override .hero-panel * yang membuat teks hitam.
 ********************************************************/

.hero .hero-panel .hero-panel-cta,
.hero .hero-panel .hero-panel-cta:link,
.hero .hero-panel .hero-panel-cta:visited,
.hero .hero-panel .hero-panel-cta:hover,
.hero .hero-panel .hero-panel-cta:active,
.hero .hero-panel .hero-panel-cta *,
.hero-panel .hero-panel-cta,
.hero-panel .hero-panel-cta:link,
.hero-panel .hero-panel-cta:visited,
.hero-panel .hero-panel-cta:hover,
.hero-panel .hero-panel-cta:active,
.hero-panel .hero-panel-cta * {
  color: #FFFFFF !important;
}

.hero .hero-panel a.hero-panel-cta,
.hero-panel a.hero-panel-cta {
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #F3122F, #C70D24) !important;
  text-decoration: none !important;
}

/********************************************************
 * PERFORMANCE MOBILE OPTIMIZATION
 * Tambahan final untuk PageSpeed mobile.
 ********************************************************/
.section,
.section-alt,
.paket,
.section-paket,
.cara,
.faq,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 750px) {
  .navbar,
  .stat,
  .modal {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .wa-float {
    animation: none !important;
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }

  .hero-panel,
  .paket-card,
  .modal-content,
  .feature-card,
  .fitur-item {
    box-shadow: 0 8px 24px rgba(0,0,0,.10) !important;
  }

  .btn-main:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .paket-card:hover,
  .feature-card:hover,
  .fitur-item:hover,
  .wa-float:hover {
    transform: none !important;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image-wrapper,
  .hero-image-wrapper img {
    height: 100svh !important;
  }
}

/********************************************************
 * PATCH HALAMAN UTAMA: CARD PAKET + MODAL ESTIMASI
 * Disamakan dengan halaman paket, tetapi discoped agar
 * tidak mengganggu section lain di landing page.
 ********************************************************/
.section-paket .tabs-wrap {
  position: sticky;
  top: var(--nav-h, 65px);
  z-index: 40;
  width: 100%;
  margin: 24px auto 18px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 10px 34px rgba(17,17,17,.065);
}

.section-paket .tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-bottom: 1px;
}

.section-paket .tabs::-webkit-scrollbar { display: none; }

.section-paket .tab-btn {
  flex: 0 0 auto;
  min-width: max-content;
  height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  background: #f6f7f9;
  color: #5f6673;
  font-size: .86rem;
  font-weight: 800;
  white-space: nowrap;
  transition: .2s ease;
}

.section-paket .tab-btn:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.section-paket .tab-btn[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(180deg, #ff4a5f 0%, #e60012 54%, #b8000f 100%);
  box-shadow: 0 10px 22px rgba(230,0,18,.20);
}

.paket-group-section {
  width: 100%;
  margin: 0 auto 18px;
  padding: clamp(16px, 2.6vw, 24px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 10px 34px rgba(17,17,17,.065);
  scroll-margin-top: calc(var(--nav-h, 65px) + 88px);
}

.paket-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.paket-section-title {
  margin: 0;
  color: #171717;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-align: left;
}

.paket-section-sub,
.section-paket .section-sub {
  color: #687082;
  font-size: .86rem;
  line-height: 1.45;
}

.section-paket .pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.section-paket .pkg-grid.single .paket-card { max-width: 420px; justify-self: center; }

.section-paket .paket-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: auto;
  padding: 0;
  border: 1px solid rgba(17,17,17,.085);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(243,18,47,.04), transparent 10rem),
    linear-gradient(180deg, #fff 0%, #fffdfc 100%);
  box-shadow: 0 16px 42px rgba(17,17,17,.075);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
  text-align: left;
}

.section-paket .paket-card::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #e60012 0%, #ff4a5f 62%, #f0a52b 100%);
}

.section-paket .paket-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -54px;
  top: -58px;
  border-radius: 50%;
  background: rgba(243,18,47,.045);
  pointer-events: none;
}

.section-paket .paket-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243,18,47,.22);
  box-shadow: 0 24px 58px rgba(17,17,17,.11);
}

.section-paket .card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.section-paket .card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.section-paket .scheme-pill {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  padding: 8px 14px;
  border-radius: var(--pill);
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  color: #5f6673;
  font-size: .8rem;
  font-weight: 900;
  border: 1px solid rgba(17,17,17,.08);
}

.section-paket .paket-title {
  margin: 4px 0 0;
  padding-right: 0;
  color: #171717;
  font-size: 1.38rem;
  line-height: 1.22;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-paket .price-block {
  margin-top: 12px;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.section-paket .price-main {
  color: #e60012;
  font-size: 1.82rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.section-paket .price-main .price-suffix {
  color: #687082;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 4px;
}

.section-paket .benefit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  list-style: none;
  color: #374151;
  font-size: .86rem;
  line-height: 1.5;
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  border: 1px solid rgba(243,18,47,.10);
  border-radius: 19px;
}

.section-paket .benefit-list li { padding-left: 0; }
.section-paket .benefit-list li::before { content: none; display: none; }
.section-paket .benefit-list li::marker { content: ""; }

.section-paket .benefit-more {
  margin: -4px 0 0;
  color: #e60012;
  font-size: .8rem;
  font-weight: 900;
}

.section-paket .card-actions {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 2px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff4a5f 0%, #e60012 54%, #b8000f 100%);
  box-shadow: 0 14px 24px rgba(230,0,18,.22);
}
.btn-primary:hover { box-shadow: 0 18px 30px rgba(230,0,18,.28); }
.btn-ghost {
  color: #b8000f;
  background: #fff;
  border-color: rgba(230,0,18,.22);
}
.btn-ghost:hover { background: var(--accent-soft); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  padding: 18px 12px;
  background: rgba(15,23,42,.68);
  backdrop-filter: blur(10px);
}

.modal-overlay[hidden] { display: none !important; }

.modal-card {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  animation: modalIn .18s ease-out;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.modal-title {
  color: #171717;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.modal-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1;
}

.modal-close:hover { color: #e60012; background: var(--accent-soft); }

.modal-scheme-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 10px;
  scrollbar-width: none;
}

.modal-scheme-tabs::-webkit-scrollbar { display: none; }

.modal-scheme-btn {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: var(--pill);
  border: 1px solid rgba(17,17,17,.08);
  background: #f8fafc;
  color: #475569;
  font-size: .78rem;
  font-weight: 900;
}

.modal-scheme-btn[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(180deg, #ff4a5f 0%, #e60012 54%, #b8000f 100%);
  border-color: transparent;
}

.modal-accordion { display: grid; gap: 10px; }
.modal-accordion-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17,17,17,.08);
  background: #fff;
}
.modal-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 15px;
  border: 0;
  background: #fff;
  color: #171717;
  text-align: left;
  font-size: .9rem;
  font-weight: 900;
}
.modal-accordion-btn[aria-expanded="true"] { color: #b8000f; }
.modal-accordion-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0;
  transition: .2s ease;
}
.modal-accordion-icon::before {
  content: "+";
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}
.modal-accordion-btn[aria-expanded="true"] .modal-accordion-icon {
  color: #fff;
  background: #e60012;
  transform: rotate(45deg);
}
.modal-accordion-panel { padding: 0 14px 14px; }
.modal-benefits-wrap {
  padding: 10px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(230,0,18,.12);
}
.modal-benefit-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal-benefit-list li {
  position: relative;
  padding: 9px 10px;
  border-radius: 12px;
  background: #fff;
  color: #475569;
  font-size: .82rem;
  line-height: 1.45;
}
.modal-benefit-list li::before { content: none; display: none; }
.modal-biaya-wrap {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(17,17,17,.08);
  background: #f8fafc;
}
.modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem;
}
.modal-table td { padding: 6px 0; vertical-align: top; }
.modal-table td:first-child { color: #64748b; padding-right: 10px; }
.modal-table td:last-child {
  color: #171717;
  text-align: right;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.modal-footer-text {
  margin: 10px 0 0;
  color: #64748b;
  font-size: .82rem;
  line-height: 1.55;
}
.modal-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}
.form-grid { display: grid; gap: 10px; }
.form-field {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(230,0,18,.18);
  border-radius: 14px;
  background: #fff;
  color: #171717;
  font-size: .9rem;
  outline: none;
}
.form-field:focus {
  border-color: #e60012;
  box-shadow: 0 0 0 4px rgba(230,0,18,.10);
}
.form-field[readonly] { background: #f1f5f9; color: #475569; }
textarea.form-field { min-height: 88px; resize: vertical; }

@media (max-width: 640px) {
  .section-paket .tabs-wrap { padding: 8px; border-radius: 18px; }
  .section-paket .tab-btn { height: 36px; padding: 0 12px; font-size: .8rem; }
  .paket-group-section { padding: 14px; border-radius: 23px; }
  .paket-section-head { align-items: flex-start; flex-direction: column; gap: 3px; }
  .section-paket .pkg-grid { grid-template-columns: 1fr; }
  .section-paket .card-inner { padding: 15px; gap: 12px; }
  .section-paket .paket-title { font-size: 1.24rem; }
  .section-paket .price-main { font-size: 1.64rem; }
  .section-paket .benefit-list { font-size: .82rem; padding: 12px; }
  .section-paket .card-actions { grid-template-columns: 1fr .78fr; }
  .btn { min-height: 40px; padding: 9px 10px; }
  .modal-overlay { padding: 10px; }
  .modal-card { padding: 15px; border-radius: 22px; }
  .modal-footer-actions { grid-template-columns: 1fr; }
}


/********************************************************
 * FIX: Hapus tab kategori paket di halaman utama
 ********************************************************/
#paket .tabs-wrap,
.section-paket .tabs-wrap,
.paket .tabs-wrap {
  display: none !important;
}

#paket #sections-wrapper {
  margin-top: 26px;
}

#paket .paket-all-section {
  padding-top: 0;
}

#paket .paket-all-grid {
  margin-top: 0;
}


/********************************************************
 * DEPOSIT REGULER BULANAN
 ********************************************************/
.deposit-info {
  display: grid;
  gap: 3px;
  margin: 8px 0 6px;
  padding: 9px 11px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 12px;
  line-height: 1.45;
}

.deposit-info strong {
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
}

.deposit-info span {
  color: #7c2d12;
  font-weight: 700;
}

.deposit-card-note {
  width: fit-content;
  max-width: 100%;
  margin-top: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
}

.paket-card-estimasi .deposit-card-note,
.paket-card .deposit-card-note {
  position: relative;
  z-index: 1;
}

/********************************************************
 * BADGE DEPOSIT MINIMAL - HALAMAN UTAMA
 * Dipasang di pojok kanan atas card tanpa mendorong judul.
 ********************************************************/
.section-paket .paket-card,
.section-paket .paket-card-estimasi {
  position: relative;
}

.section-paket .card-inner {
  position: relative;
}

.section-paket .card-topline {
  min-height: 0;
  margin: 0;
  padding: 0;
}

.section-paket .scheme-pill.deposit-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8ec 0%, #ffd36d 100%);
  border: 1px solid rgba(230, 0, 18, .16);
  color: #8a3b00;
  box-shadow: 0 7px 16px rgba(181, 110, 18, .14);
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.section-paket .scheme-pill.deposit-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #e60012;
  box-shadow: 0 0 0 3px rgba(230, 0, 18, .12);
}

.section-paket .scheme-pill.deposit-pill[hidden] {
  display: none !important;
}

.section-paket .paket-title {
  padding-right: 74px;
}

@media (max-width: 640px) {
  .section-paket .scheme-pill.deposit-pill {
    top: 12px;
    right: 12px;
    padding: 4px 7px;
    font-size: 9px;
  }

  .section-paket .paket-title {
    padding-right: 64px;
  }
}

/* Info deposit di Detail Biaya */
.deposit-info-row td {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  text-align: left !important;
}

.modal-table .deposit-info {
  margin: 4px 0 2px;
}



/* Hero full tanpa card paket mulai dari */
.hero-shell {
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
}
.hero-left {
  max-width: 920px;
  margin: 0 auto;
}
.hero-left h1 {
  margin-left: auto;
  margin-right: auto;
}

/********************************************************
 * SECTION PAKET CTA HALAMAN AWAL
 * Versi rapi, warna aman, tidak bentrok dengan section lain
 ********************************************************/
.paket-cta-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at top left, rgba(230, 0, 18, .08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.paket-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 6vw, 86px);
  border-radius: 34px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .20), transparent 18rem),
    radial-gradient(circle at 2% 100%, rgba(230, 0, 18, .28), transparent 13rem),
    linear-gradient(135deg, #120f10 0%, #4d0910 48%, #b8000f 100%);
  box-shadow: 0 28px 76px rgba(17, 17, 17, .20);
}

.paket-cta-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  z-index: -1;
}

.paket-cta-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(230, 0, 18, .32);
  z-index: -1;
}

.paket-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .13);
  color: #ffeff1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.paket-cta-title {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-align: center;
}

.paket-cta-desc {
  max-width: 780px;
  margin: 0 auto 38px;
  color: rgba(255, 255, 255, .86) !important;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.75;
  text-align: center;
}

.paket-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.paket-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: .25s ease;
}

.paket-cta-btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff1230, #b8000f);
  box-shadow: 0 18px 38px rgba(230, 0, 18, .32);
}

.paket-cta-btn-outline {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .10);
  border: 2px solid rgba(255, 255, 255, .34);
}

.paket-cta-btn:hover {
  transform: translateY(-3px);
}

.paket-cta-btn-primary:hover {
  box-shadow: 0 22px 48px rgba(230, 0, 18, .40);
}

.paket-cta-btn-outline:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .52);
}

@media (max-width: 750px) {
  .paket-cta-section {
    padding: 64px 0;
  }

  .paket-cta-card {
    border-radius: 26px;
    padding: 38px 20px;
  }

  .paket-cta-badge {
    font-size: 11px;
    letter-spacing: 1.4px;
    padding: 9px 16px;
  }

  .paket-cta-title {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .paket-cta-desc {
    font-size: .98rem;
    margin-bottom: 28px;
  }

  .paket-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .paket-cta-btn {
    width: 100%;
    min-width: 0;
  }
}

/********************************************************
 * FIX WARNA SECTION PAKET CTA
 * Selector sengaja dibuat lebih spesifik agar tidak tertimpa CSS global.
 ********************************************************/
html body main #paket.paket-cta-section {
  padding: 86px 0 !important;
  background:
    radial-gradient(circle at top left, rgba(230, 0, 18, .08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fff7f8 100%) !important;
}

html body main #paket.paket-cta-section .paket-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 6vw, 86px);
  border-radius: 34px;
  text-align: center;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .20), transparent 18rem),
    radial-gradient(circle at 2% 100%, rgba(230, 0, 18, .28), transparent 13rem),
    linear-gradient(135deg, #120f10 0%, #4d0910 48%, #b8000f 100%) !important;
  box-shadow: 0 28px 76px rgba(17, 17, 17, .20);
}

html body main #paket.paket-cta-section .paket-cta-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  z-index: -1;
}

html body main #paket.paket-cta-section .paket-cta-card::after {
  content: "";
  position: absolute;
  left: -85px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(230, 0, 18, .32);
  z-index: -1;
}

html body main #paket.paket-cta-section .paket-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .13);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

html body main #paket.paket-cta-section .paket-cta-title,
html body main #paket.paket-cta-section .paket-cta-card h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-align: center;
}

html body main #paket.paket-cta-section .paket-cta-desc,
html body main #paket.paket-cta-section .paket-cta-card p {
  max-width: 780px;
  margin: 0 auto 38px;
  color: rgba(255, 255, 255, .88) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .88) !important;
  opacity: 1 !important;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.75;
  text-align: center;
}

html body main #paket.paket-cta-section .paket-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

html body main #paket.paket-cta-section .paket-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: .25s ease;
}

html body main #paket.paket-cta-section .paket-cta-btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(135deg, #ff1230, #b8000f) !important;
  box-shadow: 0 18px 38px rgba(230, 0, 18, .32);
}

html body main #paket.paket-cta-section .paket-cta-btn-outline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: rgba(255, 255, 255, .10) !important;
  border: 2px solid rgba(255, 255, 255, .34) !important;
}

html body main #paket.paket-cta-section .paket-cta-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 750px) {
  html body main #paket.paket-cta-section {
    padding: 64px 0 !important;
  }

  html body main #paket.paket-cta-section .paket-cta-card {
    border-radius: 26px;
    padding: 38px 20px;
  }

  html body main #paket.paket-cta-section .paket-cta-title,
  html body main #paket.paket-cta-section .paket-cta-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  html body main #paket.paket-cta-section .paket-cta-desc,
  html body main #paket.paket-cta-section .paket-cta-card p {
    font-size: .98rem;
    margin-bottom: 28px;
  }

  html body main #paket.paket-cta-section .paket-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  html body main #paket.paket-cta-section .paket-cta-btn {
    width: 100%;
    min-width: 0;
  }
}


/********************************************************
 * SECTION PAKET CTA FULL WIDTH - FINAL
 * Tidak berbentuk card. Full section menyatu dengan halaman awal.
 ********************************************************/
html body main #paket.paket-cta-full,
.paket-cta-full {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 10vw, 130px) 0 !important;
  margin: 0 !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .18), transparent 24rem),
    radial-gradient(circle at 0% 100%, rgba(230, 0, 18, .28), transparent 18rem),
    linear-gradient(135deg, #120f10 0%, #4b0810 48%, #b8000f 100%) !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html body main #paket.paket-cta-full::before,
.paket-cta-full::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  z-index: -1;
}

html body main #paket.paket-cta-full::after,
.paket-cta-full::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(230, 0, 18, .34);
  z-index: -1;
}

html body main #paket.paket-cta-full .paket-cta-full-inner,
.paket-cta-full-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

html body main #paket.paket-cta-full .paket-cta-full-badge,
.paket-cta-full-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .12);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

html body main #paket.paket-cta-full .paket-cta-full-title,
html body main #paket.paket-cta-full h2.paket-cta-full-title,
.paket-cta-full-title {
  max-width: 980px;
  margin: 0 auto 20px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-size: clamp(2.35rem, 5.8vw, 5rem) !important;
  line-height: 1.04 !important;
  font-weight: 950 !important;
  letter-spacing: -0.06em;
  text-align: center !important;
}

html body main #paket.paket-cta-full .paket-cta-full-desc,
html body main #paket.paket-cta-full p.paket-cta-full-desc,
.paket-cta-full-desc {
  max-width: 820px;
  margin: 0 auto 40px !important;
  color: rgba(255, 255, 255, .88) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .88) !important;
  opacity: 1 !important;
  font-size: clamp(1rem, 1.55vw, 1.22rem) !important;
  line-height: 1.75 !important;
  font-weight: 500;
  text-align: center !important;
}

html body main #paket.paket-cta-full .paket-cta-full-actions,
.paket-cta-full-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

html body main #paket.paket-cta-full .paket-cta-full-btn,
.paket-cta-full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: .25s ease;
}

html body main #paket.paket-cta-full .paket-cta-full-primary,
.paket-cta-full-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(135deg, #ff1230, #b8000f) !important;
  border: 0 !important;
  box-shadow: 0 18px 38px rgba(230, 0, 18, .34);
}

html body main #paket.paket-cta-full .paket-cta-full-outline,
.paket-cta-full-outline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: rgba(255, 255, 255, .10) !important;
  border: 2px solid rgba(255, 255, 255, .34) !important;
  box-shadow: none !important;
}

html body main #paket.paket-cta-full .paket-cta-full-btn:hover,
.paket-cta-full-btn:hover {
  transform: translateY(-3px);
}

html body main #paket.paket-cta-full .paket-cta-full-primary:hover,
.paket-cta-full-primary:hover {
  box-shadow: 0 22px 48px rgba(230, 0, 18, .42);
}

html body main #paket.paket-cta-full .paket-cta-full-outline:hover,
.paket-cta-full-outline:hover {
  background: rgba(255, 255, 255, .16) !important;
  border-color: rgba(255, 255, 255, .54) !important;
}

@media (max-width: 750px) {
  html body main #paket.paket-cta-full,
  .paket-cta-full {
    padding: 72px 0 !important;
  }

  html body main #paket.paket-cta-full .paket-cta-full-badge,
  .paket-cta-full-badge {
    margin-bottom: 20px;
    padding: 9px 16px;
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  html body main #paket.paket-cta-full .paket-cta-full-title,
  .paket-cta-full-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  html body main #paket.paket-cta-full .paket-cta-full-desc,
  .paket-cta-full-desc {
    margin-bottom: 30px !important;
    font-size: .98rem !important;
  }

  html body main #paket.paket-cta-full .paket-cta-full-actions,
  .paket-cta-full-actions {
    flex-direction: column;
    gap: 12px;
  }

  html body main #paket.paket-cta-full .paket-cta-full-btn,
  .paket-cta-full-btn {
    width: 100%;
    min-width: 0;
  }
}

/********************************************************
 * FINAL OVERRIDE - TYPOGRAPHY CTA PAKET
 * Judul dibuat lebih ringan, lega, dan mudah dibaca.
 ********************************************************/
html body main #paket.paket-cta-full .paket-cta-full-title,
html body main #paket.paket-cta-full h2.paket-cta-full-title,
.paket-cta-full-title {
  max-width: 820px !important;
  margin: 0 auto 22px !important;
  font-family: var(--font-main) !important;
  font-size: clamp(2.15rem, 4.35vw, 3.85rem) !important;
  line-height: 1.14 !important;
  font-weight: 850 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance;
}

html body main #paket.paket-cta-full .paket-cta-full-desc,
html body main #paket.paket-cta-full p.paket-cta-full-desc,
.paket-cta-full-desc {
  max-width: 760px !important;
  margin: 0 auto 38px !important;
  font-size: clamp(1rem, 1.35vw, 1.12rem) !important;
  line-height: 1.78 !important;
  font-weight: 500 !important;
}

@media (max-width: 750px) {
  html body main #paket.paket-cta-full .paket-cta-full-title,
  html body main #paket.paket-cta-full h2.paket-cta-full-title,
  .paket-cta-full-title {
    max-width: 94% !important;
    font-size: clamp(2rem, 9vw, 3rem) !important;
    line-height: 1.13 !important;
    letter-spacing: -0.035em !important;
  }

  html body main #paket.paket-cta-full .paket-cta-full-desc,
  html body main #paket.paket-cta-full p.paket-cta-full-desc,
  .paket-cta-full-desc {
    max-width: 94% !important;
    font-size: .98rem !important;
    line-height: 1.72 !important;
  }
}

/********************************************************
 * REVISI HOME INDHOMEJOGJA.ID - HERO, AREA, TRUST
 ********************************************************/
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 4px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-copy {
  color: rgba(255,255,255,.94) !important;
}

.hero-proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(860px, 100%);
  margin: 18px auto 6px;
}

.hero-proof-card {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.hero-proof-card strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.hero-proof-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.45;
}

.area-layanan-section {
  background:
    radial-gradient(circle at top right, rgba(230,0,18,.08), transparent 28%),
    #fff;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.area-card {
  min-height: 132px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #eceef4;
  box-shadow: var(--shadow-soft);
}

.area-card strong {
  display: block;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 900;
}

.area-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.area-note {
  margin: 24px auto 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.trust-section {
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #7f0010 100%);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.trust-section .section-title,
.trust-section p {
  color: #fff;
  text-align: left;
}

.trust-section .section-tag {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-item {
    padding: 20px;
    border-radius: 22px;
    background: #68708224;
    border: 1px solid rgba(255, 255, 255, .16);
}

.trust-item strong {
    display: block;
    color: #172033;
    font-size: 16px;
    font-weight: 900;
}

.trust-item span {
    display: block;
    margin-top: 6px;
    color: #172033;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 750px) {
  .hero-proof-cards {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-section .section-title,
  .trust-section p {
    text-align: center;
  }
}
