/********************************************************
 * 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: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, 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%;
}

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: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

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

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

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

.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
 ********************************************************/
.paket,
.section-paket {
  padding: 90px 0;
}

.paket-loading {
  margin: 0 auto 24px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15,17,21,.06);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.paket-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 270px));
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}

.paket-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 345px;
  padding: 24px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(15,17,21,.06);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.paket-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230,0,18,.07), transparent 35%);
  opacity: 0;
  transition: var(--transition);
}

.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

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

.paket-card.populer {
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 28px 60px rgba(230,0,18,.25);
}

.paket-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--accent-soft);
}

.paket-card.populer .paket-icon-wrap {
  background: rgba(255,255,255,.16);
}

.icon-paket {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

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

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

.paket-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
}

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

.speed {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

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

.paket-desc {
  flex: 1;
  max-width: 220px;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}

.paket-card.populer .paket-desc {
  color: rgba(255,255,255,.88);
}

.price {
  min-height: 40px;
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.8px;
  color: var(--text-primary);
}

.price span {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

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

.btn-paket {
  width: 100%;
  min-height: 46px;
  padding: 13px 16px;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 26px rgba(230,0,18,.2);
}

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

.btn-paket-white {
  color: var(--accent) !important;
  background: #fff !important;
}

.paket-empty {
  grid-column: 1 / -1;
  padding: 26px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15,17,21,.06);
  box-shadow: var(--shadow-soft);
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.ppn-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

/********************************************************
 * 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;
}

/********************************************************
 * 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;
  }
}