:root {
  --bg-primary: #09090d;
  --bg-secondary: #0f0f15;
  --bg-tertiary: #15151d;
  --surface: rgba(24, 24, 33, 0.76);
  --surface-solid: #181821;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --gold: #e1bb4a;
  --gold-light: #f8dc82;
  --gold-dark: #a97713;
  --red: #e34d58;
  --red-light: #ff7a82;
  --red-dark: #8d2530;
  --green: #59d29b;
  --blue: #69a7ff;
  --text-primary: #ffffff;
  --text-secondary: #b2b2c1;
  --text-muted: #787889;
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(255, 255, 255, 0.17);
  --border-gold: rgba(225, 187, 74, 0.34);
  --shadow-small: 0 12px 34px rgba(0, 0, 0, 0.24);
  --shadow-large: 0 30px 90px rgba(0, 0, 0, 0.48);
  --shadow-gold: 0 20px 70px rgba(190, 132, 15, 0.2);
  --container: 1200px;
  --header-height: 76px;
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;
  --radius-pill: 999px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: radial-gradient(circle at 20% 8%, rgba(225, 187, 74, 0.1), transparent 30%), radial-gradient(circle at 90% 26%, rgba(227, 77, 88, 0.08), transparent 28%), var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

::selection {
  color: #111111;
  background: var(--gold-light);
}

:focus-visible {
  outline: 3px solid rgba(248, 220, 130, 0.72);
  outline-offset: 4px;
}

.site-wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-wrapper::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent 90%);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
  background: rgba(225, 187, 74, 0.08);
  border: 1px solid rgba(225, 187, 74, 0.18);
  border-radius: var(--radius-pill);
}

.section-eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
}

.section-heading h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 54px);
}

.section-heading p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, #ffffff 10%, var(--gold-light) 52%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.button::before {
  position: absolute;
  top: -100%;
  left: -40%;
  width: 30%;
  height: 300%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(24deg);
  transition: left 560ms ease;
}

.button:hover::before {
  left: 120%;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, #b77a16);
  box-shadow: 0 14px 36px rgba(225, 187, 74, 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 48px rgba(225, 187, 74, 0.31);
}

.button-secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--border-bright);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-danger {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red-light), var(--red) 56%, var(--red-dark));
  box-shadow: 0 14px 36px rgba(227, 77, 88, 0.18);
}

.button-danger:hover {
  box-shadow: 0 18px 48px rgba(227, 77, 88, 0.28);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(9, 9, 13, 0.84);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: #181208;
  background: linear-gradient(145deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 12px 30px rgba(225, 187, 74, 0.22);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 5px;
  height: 5px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.brand-mark::before {
  top: 10px;
  left: 10px;
  box-shadow: 17px 0 currentColor, 0 17px currentColor, 17px 17px currentColor;
}

.brand-mark::after {
  top: 18px;
  left: 18px;
  opacity: 0.82;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.brand-tagline {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-navigation a {
  position: relative;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.055);
}

.desktop-navigation a.active::after {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-pill);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  min-height: 44px;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  cursor: pointer;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.menu-toggle-lines {
  position: relative;
  width: 20px;
  height: 14px;
}

.menu-toggle-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: top var(--transition), transform var(--transition), opacity var(--transition);
}

.menu-toggle-lines span:nth-child(1) {
  top: 0;
}

.menu-toggle-lines span:nth-child(2) {
  top: 6px;
}

.menu-toggle-lines span:nth-child(3) {
  top: 12px;
}

.menu-toggle.is-active .menu-toggle-lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-navigation {
  position: fixed;
  z-index: 990;
  top: 68px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 14px;
  background: rgba(17, 17, 24, 0.97);
  border: 1px solid var(--border-bright);
  border-radius: 22px;
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-navigation.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 750;
  color: var(--text-secondary);
  border-radius: 13px;
}

.mobile-navigation a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.055);
}

.mobile-navigation a svg {
  width: 17px;
  height: 17px;
  color: var(--text-muted);
}

.mobile-navigation .button {
  width: 100%;
  margin-top: 10px;
  color: #17120a;
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: center;
  padding-top: calc(var(--header-height) + 74px);
  padding-bottom: 82px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -220px;
  width: 680px;
  height: 680px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(225, 187, 74, 0.16), rgba(225, 187, 74, 0.025) 50%, transparent 70%);
  filter: blur(4px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: -230px;
  left: -320px;
  width: 720px;
  height: 720px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(227, 77, 88, 0.11), transparent 68%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  background: rgba(225, 187, 74, 0.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-badge-icon {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(89, 210, 155, 0.09);
}

.hero-badge-icon::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid rgba(89, 210, 155, 0.45);
  border-radius: 50%;
  animation: statusPulse 2s ease-out infinite;
}

@keyframes statusPulse {
  from {
    opacity: 0.8;
    transform: scale(0.75);
  }

  to {
    opacity: 0;
    transform: scale(1.65);
  }
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
}

.hero-description {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
}

.hero-description strong {
  color: var(--text-primary);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-buttons .button {
  min-width: 158px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 590px;
  margin-bottom: 31px;
  padding: 13px 15px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.hero-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.highlight-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(225, 187, 74, 0.08);
  border: 1px solid rgba(225, 187, 74, 0.14);
  border-radius: 9px;
}

.highlight-icon svg {
  width: 14px;
  height: 14px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 78%;
  height: 64%;
  pointer-events: none;
  background: rgba(225, 187, 74, 0.14);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

.dashboard-shell {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  max-width: 500px;
  margin-inline: auto;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border-bright);
  border-radius: 32px;
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform: translateY(-50%) perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-shell::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(248, 220, 130, 0.9), transparent);
}

.dashboard-window {
  overflow: hidden;
  background: rgba(9, 9, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 23px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  border-bottom: 1px solid var(--border);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-logo {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  font-size: 12px;
  color: #191207;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 10px;
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #9bf2c8;
  text-transform: uppercase;
  background: rgba(89, 210, 155, 0.08);
  border: 1px solid rgba(89, 210, 155, 0.17);
  border-radius: var(--radius-pill);
}

.dashboard-status::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(89, 210, 155, 0.75);
}

.dashboard-body {
  padding: 20px;
}

.dashboard-label {
  margin-bottom: 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.product-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 19px;
}

.product-option {
  padding: 12px 8px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.product-option.active {
  color: #1b1407;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(225, 187, 74, 0.17);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 19px;
}

.package-card {
  position: relative;
  min-height: 91px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.package-card.featured {
  background: linear-gradient(145deg, rgba(225, 187, 74, 0.13), rgba(225, 187, 74, 0.025));
  border-color: rgba(225, 187, 74, 0.29);
}

.package-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  padding: 4px 6px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #171107;
  text-transform: uppercase;
  background: var(--gold-light);
  border-radius: var(--radius-pill);
}

.package-name {
  margin-bottom: 3px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.package-product {
  font-size: 9px;
  color: var(--text-muted);
}

.package-price {
  margin-top: 11px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-light);
}

.dashboard-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.summary-copy span {
  display: block;
  margin-bottom: 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.summary-copy strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
}

.summary-button {
  min-height: 39px;
  padding: 10px 14px;
  font-size: 10px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 13px 14px;
  background: rgba(20, 20, 28, 0.89);
  border: 1px solid var(--border-bright);
  border-radius: 17px;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card-top {
  top: 28px;
  right: -13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-card-bottom {
  bottom: 23px;
  left: -17px;
  min-width: 172px;
  animation-delay: -2.4s;
}

.floating-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(225, 187, 74, 0.1);
  border: 1px solid rgba(225, 187, 74, 0.16);
  border-radius: 11px;
}

.floating-icon svg {
  width: 17px;
  height: 17px;
}

.floating-copy small {
  display: block;
  margin-bottom: 1px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.floating-copy strong {
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
}

.floating-rate {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 6px;
}

.floating-rate strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 18px;
  color: var(--red-light);
}

.floating-rate span {
  padding: 4px 7px;
  font-size: 8px;
  font-weight: 800;
  color: #a5f2d0;
  background: rgba(89, 210, 155, 0.08);
  border-radius: var(--radius-pill);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -4px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.027);
  border: 1px solid var(--border);
  border-radius: 22px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 18px 22px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-light);
  background: rgba(225, 187, 74, 0.075);
  border: 1px solid rgba(225, 187, 74, 0.15);
  border-radius: 12px;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-copy strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
}

.trust-copy span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
}

.quick-actions {
  padding-top: 110px;
  padding-bottom: 110px;
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.action-card {
  position: relative;
  display: flex;
  min-height: 365px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(25px, 4vw, 42px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.action-card:hover {
  transform: translateY(-7px);
}

.action-card-topup:hover {
  border-color: rgba(225, 187, 74, 0.4);
  box-shadow: var(--shadow-gold);
}

.action-card-bongkar:hover {
  border-color: rgba(227, 77, 88, 0.38);
  box-shadow: 0 30px 80px rgba(227, 77, 88, 0.13);
}

.action-card::before {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -130px;
  width: 360px;
  height: 360px;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  filter: blur(8px);
  transition: transform 500ms ease;
}

.action-card:hover::before {
  transform: scale(1.12);
}

.action-card-topup::before {
  background: radial-gradient(circle, rgba(225, 187, 74, 0.18), transparent 68%);
}

.action-card-bongkar::before {
  background: radial-gradient(circle, rgba(227, 77, 88, 0.17), transparent 68%);
}

.action-card::after {
  position: absolute;
  z-index: -1;
  right: -35px;
  bottom: -78px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
}

.action-card-topup::after {
  content: "+";
}

.action-card-bongkar::after {
  content: "↗";
}

.action-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.action-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 19px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.19);
}

.action-icon svg {
  width: 27px;
  height: 27px;
}

.action-card-topup .action-icon {
  color: #171108;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.action-card-bongkar .action-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
}

.action-number {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
}

.action-card h3 {
  max-width: 440px;
  margin-bottom: 15px;
  font-size: clamp(29px, 4vw, 43px);
}

.action-card p {
  max-width: 500px;
  margin-bottom: 25px;
  font-size: 14px;
  color: var(--text-secondary);
}

.action-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.action-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 800;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.action-feature::before {
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.action-card-bongkar .action-feature::before {
  background: var(--red-light);
}

.action-card .button {
  align-self: flex-start;
}

.next-section-placeholder {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
  border-top: 1px solid var(--border);
}

.next-section-placeholder span {
  display: inline-flex;
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  border: 1px dashed var(--border-bright);
  border-radius: var(--radius-pill);
}

@media (max-width:1080px) {
  .desktop-navigation {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
  }

  .dashboard-shell {
    transform: translateY(-50%) perspective(1000px) rotateY(-3deg);
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width:860px) {
  :root {
    --header-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .dashboard-shell {
    max-width: 520px;
    transform: translateY(-50%);
  }

  .quick-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  .brand-tagline {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 13px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 62px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-highlight {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 490px;
  }

  .dashboard-shell {
    width: calc(100% - 8px);
    padding: 10px;
    border-radius: 24px;
  }

  .dashboard-window {
    border-radius: 18px;
  }

  .dashboard-body {
    padding: 14px;
  }

  .dashboard-header {
    padding: 13px;
  }

  .package-grid {
    gap: 8px;
  }

  .package-card {
    min-height: 84px;
    padding: 11px;
  }

  .package-name {
    font-size: 15px;
  }

  .floating-card-top {
    top: 2px;
    right: -2px;
  }

  .floating-card-bottom {
    bottom: 0;
    left: -2px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .quick-actions {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .action-card {
    min-height: 395px;
    padding: 24px;
    border-radius: 24px;
  }

  .action-card h3 {
    font-size: 31px;
  }
}

@media (max-width:420px) {
  .brand-name {
    font-size: 15px;
  }

  .hero-badge {
    font-size: 9px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .product-selector {
    gap: 6px;
  }

  .product-option {
    padding-inline: 4px;
    font-size: 8px;
  }

  .floating-card {
    padding: 10px;
  }

  .floating-card-bottom {
    min-width: 150px;
  }

  .action-card {
    min-height: 420px;
  }

  .action-card-head {
    margin-bottom: 30px;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hd-topup-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(180deg, #0b0b0f 0%, #111015 48%, #0b0b0f 100%);
}

.hd-topup-section::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.hd-topup-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(110px);
}

.hd-topup-glow-one {
  top: 180px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(212, 175, 55, 0.13);
}

.hd-topup-glow-two {
  right: -200px;
  bottom: 300px;
  width: 480px;
  height: 480px;
  background: rgba(230, 57, 70, 0.09);
}

.hd-section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.hd-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 8px 13px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  color: #edce65;
  background: rgba(212, 175, 55, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hd-section-kicker svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hd-section-heading h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hd-section-heading p {
  max-width: 680px;
  margin: 0;
  color: #a5a5b2;
  font-size: 17px;
  line-height: 1.8;
}

.hd-product-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 34px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px);
}

.hd-product-tab {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: #a5a5b2;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hd-product-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.hd-product-tab.active {
  border-color: rgba(212, 175, 55, 0.3);
  color: #fff;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.17), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hd-tab-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 15px;
  color: #f1d56f;
  background: rgba(212, 175, 55, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hd-product-tab strong,
.hd-product-tab small {
  display: block;
}

.hd-product-tab strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.hd-product-tab small {
  color: #777784;
  font-size: 12px;
}

.hd-topup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.hd-package-area {
  min-width: 0;
}

.hd-package-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 21px;
}

.hd-small-label {
  display: block;
  margin-bottom: 7px;
  color: #d4af37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hd-package-toolbar h3,
.hd-order-card-header h3 {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.hd-package-filter {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.hd-package-filter button {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #9696a1;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.hd-package-filter button:hover,
.hd-package-filter button.active {
  border-color: rgba(212, 175, 55, 0.3);
  color: #f3d977;
  background: rgba(212, 175, 55, 0.09);
}

.hd-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.hd-package-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.hd-package-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(212, 175, 55, 0.08);
  filter: blur(15px);
}

.hd-package-card:hover {
  z-index: 2;
  border-color: rgba(212, 175, 55, 0.28);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.025));
  transform: translateY(-6px);
}

.hd-package-card-featured {
  border-color: rgba(212, 175, 55, 0.24);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.11), rgba(255, 255, 255, 0.025));
}

.hd-package-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid rgba(212, 175, 55, 0.27);
  border-radius: 999px;
  color: #f0d36e;
  background: rgba(212, 175, 55, 0.09);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hd-package-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.hd-package-symbol {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 18px;
  color: #f5d977;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hd-package-type {
  color: #6f6f7a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hd-package-card h3 {
  margin: 0 0 9px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.hd-package-card p {
  min-height: 60px;
  margin: 0 0 18px;
  color: #8b8b97;
  font-size: 13px;
  line-height: 1.6;
}

.hd-package-price {
  margin-bottom: 17px;
}

.hd-package-price small,
.hd-package-price strong {
  display: block;
}

.hd-package-price small {
  margin-bottom: 4px;
  color: #777783;
  font-size: 10px;
  text-transform: uppercase;
}

.hd-package-price strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.hd-select-package {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  color: #d6d6dd;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.hd-select-package:hover {
  border-color: rgba(212, 175, 55, 0.3);
  color: #17140a;
  background: linear-gradient(135deg, #f1d46a, #b8860b);
}

.hd-select-package span {
  font-size: 17px;
}

.hd-package-card[hidden],
.hd-package-panel[hidden] {
  display: none !important;
}

.hd-price-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.hd-price-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  fill: #d4af37;
}

.hd-price-note p {
  margin: 0;
  color: #858590;
  font-size: 12px;
  line-height: 1.65;
}

.hd-order-card {
  position: sticky;
  top: 105px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(212, 175, 55, 0.19);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(28, 27, 31, 0.97), rgba(16, 16, 21, 0.97));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(28px);
}

.hd-order-card::before {
  position: absolute;
  top: -130px;
  left: 50%;
  width: 320px;
  height: 210px;
  border-radius: 50%;
  content: "";
  background: rgba(212, 175, 55, 0.11);
  transform: translateX(-50%);
  filter: blur(55px);
  pointer-events: none;
}

.hd-order-card-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 23px;
}

.hd-secure-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: #9696a1;
  font-size: 10px;
  font-weight: 700;
}

.hd-secure-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4fcb7b;
  box-shadow: 0 0 13px rgba(79, 203, 123, 0.8);
}

.hd-topup-form {
  position: relative;
}

.hd-form-group {
  margin-bottom: 16px;
}

.hd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.hd-form-group>label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #d9d9df;
  font-size: 11px;
  font-weight: 800;
}

.hd-form-group>label span {
  color: #696974;
  font-size: 9px;
  text-transform: uppercase;
}

.hd-input-wrapper,
.hd-select-wrapper,
.hd-promo-wrapper {
  position: relative;
}

.hd-input-wrapper svg,
.hd-select-wrapper svg {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 17px;
  height: 17px;
  fill: #6d6d78;
  pointer-events: none;
  transform: translateY(-50%);
}

.hd-input-wrapper svg {
  left: 13px;
}

.hd-select-wrapper svg {
  right: 13px;
}

.hd-input-wrapper input,
.hd-select-wrapper select,
.hd-promo-wrapper input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hd-input-wrapper input {
  padding: 0 13px 0 40px;
}

.hd-select-wrapper select {
  padding: 0 40px 0 13px;
  appearance: none;
}

.hd-promo-wrapper input {
  padding: 0 95px 0 13px;
}

.hd-input-wrapper input::placeholder,
.hd-promo-wrapper input::placeholder {
  color: #60606a;
}

.hd-input-wrapper input:focus,
.hd-select-wrapper select:focus,
.hd-promo-wrapper input:focus {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.045);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.07);
}

.hd-select-wrapper select option {
  color: #111;
  background: #fff;
}

.hd-form-group.hd-invalid input,
.hd-form-group.hd-invalid select {
  border-color: rgba(230, 57, 70, 0.65);
}

.hd-field-error {
  display: none;
  margin-top: 6px;
  color: #ff7180;
  font-size: 10px;
}

.hd-form-group.hd-invalid .hd-field-error,
.hd-payment-grid.hd-invalid+.hd-field-error,
.hd-confirmation-check.hd-invalid+.hd-field-error {
  display: block;
}

.hd-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hd-payment-option {
  position: relative;
  cursor: pointer;
}

.hd-payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hd-payment-content {
  display: flex;
  min-height: 57px;
  flex-direction: column;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  transition: 0.2s ease;
}

.hd-payment-content strong {
  margin-bottom: 3px;
  color: #d8d8de;
  font-size: 11px;
}

.hd-payment-content small {
  color: #686873;
  font-size: 9px;
}

.hd-payment-option:hover .hd-payment-content,
.hd-payment-option input:checked+.hd-payment-content {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.09);
}

.hd-payment-option input:checked+.hd-payment-content strong {
  color: #f2d46c;
}

.hd-promo-wrapper button {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  color: #18140a;
  background: linear-gradient(135deg, #efd166, #b8860b);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.hd-promo-message {
  display: block;
  min-height: 14px;
  margin-top: 6px;
  color: #d4af37;
  font-size: 10px;
}

.hd-order-summary {
  margin: 21px 0 17px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.17);
}

.hd-summary-heading,
.hd-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hd-summary-heading {
  margin-bottom: 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.hd-live-badge {
  padding: 4px 7px;
  border-radius: 999px;
  color: #6cdb91;
  background: rgba(79, 203, 123, 0.1);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hd-summary-line {
  margin-bottom: 10px;
  color: #7f7f8a;
  font-size: 11px;
}

.hd-summary-line strong {
  max-width: 58%;
  color: #d6d6dc;
  font-size: 11px;
  text-align: right;
}

.hd-summary-divider {
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.hd-summary-total {
  margin: 0;
  color: #fff;
  font-size: 12px;
}

.hd-summary-total strong {
  color: #f2d46b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.hd-confirmation-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 15px;
  color: #7f7f8b;
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}

.hd-confirmation-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: #d4af37;
}

.hd-submit-order {
  display: flex;
  width: 100%;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  color: #171309;
  background: linear-gradient(135deg, #f3d771 0%, #d4af37 48%, #9a6d04 100%);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hd-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 19px 40px rgba(212, 175, 55, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hd-submit-order svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hd-form-disclaimer {
  margin: 12px 0 0;
  color: #666671;
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.hd-topup-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 31px;
}

.hd-benefit-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.hd-benefit-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

.hd-benefit-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 13px;
  color: #f0d16a;
  background: rgba(212, 175, 55, 0.08);
}

.hd-benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hd-benefit-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}

.hd-benefit-card p {
  margin: 0;
  color: #80808b;
  font-size: 12px;
  line-height: 1.65;
}

.hd-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hd-modal.active {
  visibility: visible;
  opacity: 1;
}

.hd-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 7, 0.82);
  backdrop-filter: blur(12px);
}

.hd-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.23);
  border-radius: 28px;
  background: linear-gradient(145deg, #1a191e, #0e0e12);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.hd-modal.active .hd-modal-dialog {
  transform: translateY(0) scale(1);
}

.hd-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #a5a5af;
  background: rgba(255, 255, 255, 0.04);
  font-size: 20px;
  cursor: pointer;
}

.hd-modal-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 19px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  color: #f3d66e;
  background: rgba(212, 175, 55, 0.1);
}

.hd-modal-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.hd-modal-dialog h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.hd-modal-dialog>p {
  margin: 0;
  color: #8b8b96;
  font-size: 13px;
  line-height: 1.7;
}

.hd-modal-summary {
  margin: 21px 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  color: #c6c6ce;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
}

.hd-modal-action {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  color: #171309;
  background: linear-gradient(135deg, #f1d46a, #b8860b);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

body.hd-modal-open {
  overflow: hidden;
}

@media (max-width:1100px) {
  .hd-topup-layout {
    grid-template-columns: 1fr;
  }

  .hd-order-card {
    position: relative;
    top: auto;
    max-width: 760px;
    margin: 10px auto 0;
  }

  .hd-package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hd-topup-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:820px) {
  .hd-topup-section {
    padding: 90px 0;
  }

  .hd-product-switcher {
    grid-template-columns: 1fr;
  }

  .hd-product-tab {
    min-height: 67px;
  }

  .hd-package-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hd-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:620px) {
  .hd-topup-section {
    padding: 72px 0;
  }

  .hd-section-heading {
    margin-bottom: 30px;
  }

  .hd-section-heading p {
    font-size: 15px;
  }

  .hd-product-switcher {
    padding: 6px;
    border-radius: 19px;
  }

  .hd-product-tab {
    padding: 10px;
    border-radius: 14px;
  }

  .hd-package-grid {
    grid-template-columns: 1fr;
  }

  .hd-package-card p {
    min-height: auto;
  }

  .hd-order-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hd-order-card-header {
    flex-direction: column;
  }

  .hd-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hd-payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-topup-benefits {
    grid-template-columns: 1fr;
  }

  .hd-modal-dialog {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion:reduce) {

  .hd-package-card,
  .hd-benefit-card,
  .hd-submit-order,
  .hd-modal,
  .hd-modal-dialog {
    transition: none !important;
  }
}

.bongkar-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: radial-gradient(circle at 12% 15%, rgba(230, 57, 70, 0.14), transparent 32%), radial-gradient(circle at 88% 78%, rgba(212, 175, 55, 0.11), transparent 30%), linear-gradient(180deg, #0b0b0f 0%, #130b0f 48%, #0b0b0f 100%);
}

.bongkar-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.bongkar-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.17;
  pointer-events: none;
}

.bongkar-glow--left {
  top: 18%;
  left: -260px;
  background: #e63946;
}

.bongkar-glow--right {
  right: -260px;
  bottom: 10%;
  background: #d4af37;
}

.bongkar-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.bongkar-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.08);
  color: #ff8f98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bongkar-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 16px rgba(230, 57, 70, 0.9);
}

.bongkar-heading {
  max-width: 820px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.bongkar-heading span {
  color: transparent;
  background: linear-gradient(90deg, #ff6b76, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
}

.bongkar-description {
  max-width: 720px;
  margin-bottom: 44px;
  color: #aaaab7;
  font-size: 17px;
  line-height: 1.8;
}

.bongkar-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.bongkar-info-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bongkar-info-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.14);
  filter: blur(16px);
}

.bongkar-info-label {
  display: block;
  margin-bottom: 9px;
  color: #858592;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bongkar-info-value {
  display: block;
  color: #fff;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.25;
}

.bongkar-info-note {
  display: block;
  margin-top: 7px;
  color: #8f8f9c;
  font-size: 12px;
  line-height: 1.5;
}

.bongkar-rate-panel {
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.bongkar-rate-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.bongkar-rate-title {
  margin: 0 0 7px;
  color: #fff;
  font-size: 25px;
}

.bongkar-rate-copy {
  margin: 0;
  color: #8e8e9a;
  font-size: 14px;
  line-height: 1.65;
}

.bongkar-rate-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #7ee7a0;
  font-size: 12px;
  font-weight: 800;
}

.bongkar-rate-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.8);
}

.bongkar-rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bongkar-rate-card {
  position: relative;
  cursor: pointer;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(10, 10, 15, 0.52);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.bongkar-rate-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.35);
  background: rgba(230, 57, 70, 0.06);
}

.bongkar-rate-card.active {
  border-color: rgba(230, 57, 70, 0.62);
  background: linear-gradient(145deg, rgba(230, 57, 70, 0.15), rgba(212, 175, 55, 0.05));
  box-shadow: 0 18px 45px rgba(230, 57, 70, 0.12);
}

.bongkar-rate-card.active::after {
  content: "Dipilih";
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.15);
  color: #ff9ba3;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.bongkar-rate-name {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.bongkar-rate-number {
  display: block;
  color: #d4af37;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.bongkar-rate-unit {
  display: block;
  margin-top: 5px;
  color: #81818d;
  font-size: 12px;
}

.bongkar-transaction-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.bongkar-form-card,
.bongkar-calculator-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(19, 19, 25, 0.74);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.bongkar-form-card {
  padding: 30px;
}

.bongkar-calculator-card {
  position: sticky;
  top: 105px;
  overflow: hidden;
}

.bongkar-card-head {
  margin-bottom: 28px;
}

.bongkar-card-head h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 25px;
}

.bongkar-card-head p {
  margin: 0;
  color: #8e8e9b;
  font-size: 14px;
  line-height: 1.7;
}

.bongkar-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bongkar-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bongkar-field--full {
  grid-column: 1 / -1;
}

.bongkar-field label {
  color: #d8d8df;
  font-size: 13px;
  font-weight: 750;
}

.bongkar-field label span {
  color: #e63946;
}

.bongkar-field input,
.bongkar-field select,
.bongkar-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bongkar-field textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.bongkar-field input::placeholder,
.bongkar-field textarea::placeholder {
  color: #646470;
}

.bongkar-field select option {
  color: #111;
}

.bongkar-field input:focus,
.bongkar-field select:focus,
.bongkar-field textarea:focus {
  border-color: rgba(230, 57, 70, 0.62);
  background: rgba(230, 57, 70, 0.045);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
}

.bongkar-field input.is-error,
.bongkar-field select.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.bongkar-help {
  margin-top: -2px;
  color: #73737f;
  font-size: 11px;
  line-height: 1.55;
}

.bongkar-upload {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 20px;
  cursor: pointer;
  border: 1px dashed rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bongkar-upload:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.04);
}

.bongkar-upload input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}

.bongkar-upload-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 13px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  font-size: 20px;
}

.bongkar-upload strong {
  display: block;
  margin-bottom: 5px;
  color: #e8e8ee;
  font-size: 13px;
}

.bongkar-upload small {
  color: #747480;
  font-size: 11px;
}

.bongkar-file-name {
  display: block;
  margin-top: 8px;
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
}

.bongkar-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 5px;
}

.bongkar-check input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: #e63946;
}

.bongkar-check label {
  color: #91919d;
  font-size: 12px;
  line-height: 1.65;
}

.bongkar-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 55px;
  margin-top: 8px;
  cursor: pointer;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #e63946, #a71928);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(230, 57, 70, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bongkar-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 20px 45px rgba(230, 57, 70, 0.32);
}

.bongkar-submit:active {
  transform: translateY(0);
}

.bongkar-form-message {
  display: none;
  margin-top: 15px;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.6;
}

.bongkar-form-message.show {
  display: block;
}

.bongkar-form-message.error {
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.08);
  color: #fca5a5;
}

.bongkar-form-message.success {
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.08);
  color: #86efac;
}

.bongkar-calculator-top {
  padding: 30px;
  background: radial-gradient(circle at 100% 0%, rgba(230, 57, 70, 0.15), transparent 40%), linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.bongkar-calculator-label {
  display: block;
  margin-bottom: 9px;
  color: #8c8c98;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bongkar-calculator-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
}

.bongkar-calculator-product strong {
  color: #fff;
  font-size: 22px;
}

.bongkar-product-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.1);
  color: #ff8e98;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.bongkar-estimation {
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.055);
}

.bongkar-estimation-title {
  display: block;
  margin-bottom: 8px;
  color: #8f8f9b;
  font-size: 12px;
}

.bongkar-estimation-number {
  display: block;
  color: #f0cd62;
  font-size: clamp(31px, 5vw, 44px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.bongkar-estimation-note {
  display: block;
  margin-top: 9px;
  color: #777783;
  font-size: 11px;
  line-height: 1.55;
}

.bongkar-summary-list {
  display: grid;
  gap: 13px;
}

.bongkar-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bongkar-summary-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bongkar-summary-row span {
  color: #83838f;
  font-size: 13px;
}

.bongkar-summary-row strong {
  color: #e9e9ee;
  font-size: 13px;
  text-align: right;
}

.bongkar-calculator-bottom {
  padding: 24px 30px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bongkar-security-note {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.bongkar-security-note-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: rgba(34, 197, 94, 0.09);
  color: #73db94;
}

.bongkar-security-note strong {
  display: block;
  margin-bottom: 4px;
  color: #d9d9df;
  font-size: 12px;
}

.bongkar-security-note p {
  margin: 0;
  color: #797985;
  font-size: 11px;
  line-height: 1.6;
}

.bongkar-steps {
  margin-top: 72px;
}

.bongkar-steps-head {
  max-width: 650px;
  margin-bottom: 28px;
}

.bongkar-steps-head h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
}

.bongkar-steps-head p {
  margin: 0;
  color: #8b8b97;
  line-height: 1.7;
}

.bongkar-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.bongkar-step {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.bongkar-step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 17px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(212, 175, 55, 0.12));
  color: #ff9099;
  font-size: 13px;
  font-weight: 950;
}

.bongkar-step h4 {
  margin: 0 0 8px;
  color: #eeeef2;
  font-size: 15px;
}

.bongkar-step p {
  margin: 0;
  color: #81818d;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width:1024px) {
  .bongkar-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bongkar-transaction-grid {
    grid-template-columns: 1fr;
  }

  .bongkar-calculator-card {
    position: relative;
    top: auto;
  }

  .bongkar-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:760px) {
  .bongkar-section {
    padding: 80px 0;
  }

  .bongkar-rate-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bongkar-rate-grid {
    grid-template-columns: 1fr;
  }

  .bongkar-form-grid {
    grid-template-columns: 1fr;
  }

  .bongkar-field--full {
    grid-column: auto;
  }

  .bongkar-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:520px) {
  .bongkar-container {
    width: min(100% - 22px, 1180px);
  }

  .bongkar-info-grid {
    grid-template-columns: 1fr;
  }

  .bongkar-rate-panel,
  .bongkar-form-card,
  .bongkar-calculator-top,
  .bongkar-calculator-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bongkar-heading {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion:reduce) {

  .bongkar-rate-card,
  .bongkar-submit {
    transition: none;
  }
}

:root {
  --p4-bg: #08090d;
  --p4-bg-soft: #101117;
  --p4-card: rgba(255, 255, 255, 0.055);
  --p4-card-hover: rgba(255, 255, 255, 0.085);
  --p4-border: rgba(255, 255, 255, 0.1);
  --p4-border-gold: rgba(232, 190, 79, 0.35);
  --p4-gold: #e8be4f;
  --p4-gold-light: #ffd978;
  --p4-gold-dark: #9e7116;
  --p4-red: #d14e57;
  --p4-red-soft: #7d2931;
  --p4-white: #ffffff;
  --p4-text: #f6f2e9;
  --p4-muted: #aaa9b2;
  --p4-success: #48c78e;
  --p4-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --p4-radius-xl: 30px;
  --p4-radius-lg: 22px;
  --p4-radius-md: 16px;
  --p4-max-width: 1180px;
}

.p4-section,
.p4-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--p4-text);
  background: var(--p4-bg);
}

.p4-wrap {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--p4-max-width));
  margin-inline: auto;
}

.p4-section {
  padding: 110px 0;
}

.p4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 13px;
  margin-bottom: 18px;
  border: 1px solid var(--p4-border-gold);
  border-radius: 999px;
  color: var(--p4-gold-light);
  background: rgba(232, 190, 79, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p4-kicker::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--p4-gold);
  box-shadow: 0 0 16px var(--p4-gold);
}

.p4-heading {
  max-width: 760px;
  margin: 0;
  color: var(--p4-white);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.p4-heading span {
  color: var(--p4-gold-light);
}

.p4-subheading {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--p4-muted);
  font-size: 17px;
  line-height: 1.8;
}

.p4-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.p4-head-note {
  max-width: 330px;
  padding: 18px 20px;
  border: 1px solid var(--p4-border);
  border-radius: var(--p4-radius-md);
  color: var(--p4-muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
  line-height: 1.7;
}

.p4-faq {
  background: radial-gradient(circle at 12% 15%, rgba(232, 190, 79, 0.1), transparent 30%), radial-gradient(circle at 86% 70%, rgba(125, 41, 49, 0.14), transparent 32%), var(--p4-bg);
}

.p4-faq::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.p4-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.p4-faq-column {
  display: grid;
  gap: 16px;
}

.p4-faq-item {
  position: relative;
  border: 1px solid var(--p4-border);
  border-radius: var(--p4-radius-lg);
  background: var(--p4-card);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.p4-faq-item:hover {
  border-color: var(--p4-border-gold);
  background: var(--p4-card-hover);
  transform: translateY(-2px);
}

.p4-faq-item.is-open {
  border-color: rgba(232, 190, 79, 0.46);
  background: linear-gradient(135deg, rgba(232, 190, 79, 0.08), transparent 45%), rgba(255, 255, 255, 0.06);
}

.p4-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 24px;
  border: 0;
  color: var(--p4-white);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.p4-faq-icon {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--p4-border-gold);
  border-radius: 50%;
  background: rgba(232, 190, 79, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.p4-faq-icon::before,
.p4-faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  content: "";
  border-radius: 10px;
  background: var(--p4-gold-light);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.p4-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p4-faq-item.is-open .p4-faq-icon {
  background: var(--p4-gold);
  transform: rotate(180deg);
}

.p4-faq-item.is-open .p4-faq-icon::before,
.p4-faq-item.is-open .p4-faq-icon::after {
  background: #211706;
}

.p4-faq-item.is-open .p4-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.p4-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s ease;
}

.p4-faq-item.is-open .p4-faq-answer {
  grid-template-rows: 1fr;
}

.p4-faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.p4-faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--p4-muted);
  font-size: 15px;
  line-height: 1.8;
}

.p4-reviews {
  background: linear-gradient(180deg, #08090d 0%, #0d0e14 55%, #090a0e 100%);
}

.p4-reviews::after {
  position: absolute;
  top: 20%;
  right: -160px;
  width: 480px;
  height: 480px;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  background: rgba(232, 190, 79, 0.085);
  filter: blur(100px);
}

.p4-review-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--p4-border);
  border-radius: var(--p4-radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.p4-review-score {
  color: var(--p4-gold-light);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.p4-review-summary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--p4-white);
  font-size: 14px;
}

.p4-review-summary small {
  color: var(--p4-muted);
  font-size: 12px;
}

.p4-review-shell {
  position: relative;
}

.p4-review-track {
  display: grid;
  grid-auto-columns: minmax(310px, 390px);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 5px 3px 24px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.p4-review-track::-webkit-scrollbar {
  display: none;
}

.p4-review-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.p4-review-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--p4-border);
  border-radius: var(--p4-radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--p4-shadow);
  scroll-snap-align: start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.p4-review-card:hover {
  border-color: var(--p4-border-gold);
  transform: translateY(-5px);
}

.p4-review-card::after {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  content: "“";
  color: rgba(232, 190, 79, 0.07);
  font-family: Georgia, serif;
  font-size: 230px;
  line-height: 1;
}

.p4-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.p4-review-user {
  display: flex;
  align-items: center;
  gap: 13px;
}

.p4-review-avatar {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--p4-border-gold);
  border-radius: 50%;
  color: #261b08;
  background: linear-gradient(135deg, var(--p4-gold-light), var(--p4-gold-dark));
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(232, 190, 79, 0.18);
}

.p4-review-user h3 {
  margin: 0 0 5px;
  color: var(--p4-white);
  font-size: 15px;
}

.p4-review-user span {
  color: var(--p4-muted);
  font-size: 12px;
}

.p4-review-type {
  padding: 7px 10px;
  border: 1px solid rgba(232, 190, 79, 0.2);
  border-radius: 999px;
  color: var(--p4-gold-light);
  background: rgba(232, 190, 79, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p4-review-stars {
  margin-bottom: 18px;
  color: var(--p4-gold-light);
  font-size: 17px;
  letter-spacing: 4px;
}

.p4-review-text {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #d7d5dc;
  font-size: 15px;
  line-height: 1.85;
}

.p4-review-date {
  display: block;
  margin-top: 24px;
  color: #7e7d87;
  font-size: 12px;
}

.p4-placeholder-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: #8d8c95;
  background: rgba(0, 0, 0, 0.32);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p4-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.p4-slider-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--p4-border);
  border-radius: 50%;
  color: var(--p4-white);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.p4-slider-btn:hover {
  color: #211706;
  background: var(--p4-gold);
  transform: translateY(-2px);
}

.p4-slider-btn svg {
  width: 19px;
  height: 19px;
}

.p4-final-cta {
  padding-top: 60px;
  padding-bottom: 120px;
  background: radial-gradient(circle at 20% 30%, rgba(232, 190, 79, 0.12), transparent 28%), radial-gradient(circle at 82% 70%, rgba(166, 48, 61, 0.14), transparent 30%), #090a0e;
}

.p4-cta-box {
  position: relative;
  padding: 70px 64px;
  overflow: hidden;
  border: 1px solid rgba(232, 190, 79, 0.27);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(232, 190, 79, 0.13), transparent 38%), linear-gradient(315deg, rgba(126, 38, 48, 0.14), transparent 40%), #111218;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.08);
}

.p4-cta-box::before {
  position: absolute;
  top: -130px;
  left: 50%;
  width: 460px;
  height: 260px;
  content: "";
  border-radius: 50%;
  background: rgba(232, 190, 79, 0.16);
  filter: blur(70px);
  transform: translateX(-50%);
}

.p4-cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}

.p4-cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.p4-cta-content h2 {
  margin: 0;
  color: var(--p4-white);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.p4-cta-content h2 span {
  color: var(--p4-gold-light);
}

.p4-cta-content p {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--p4-muted);
  font-size: 17px;
  line-height: 1.8;
}

.p4-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.p4-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.p4-btn:hover {
  transform: translateY(-3px);
}

.p4-btn-primary {
  color: #231806;
  background: linear-gradient(135deg, var(--p4-gold-light), var(--p4-gold-dark));
  box-shadow: 0 15px 35px rgba(232, 190, 79, 0.22);
}

.p4-btn-primary:hover {
  box-shadow: 0 20px 44px rgba(232, 190, 79, 0.31);
}

.p4-btn-secondary {
  border-color: rgba(209, 78, 87, 0.4);
  color: #fff2f3;
  background: rgba(209, 78, 87, 0.11);
}

.p4-btn-secondary:hover {
  border-color: rgba(209, 78, 87, 0.7);
  background: rgba(209, 78, 87, 0.18);
}

.p4-btn svg {
  width: 18px;
  height: 18px;
}

.p4-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  margin-top: 34px;
  color: #9998a2;
  font-size: 12px;
}

.p4-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.p4-cta-trust span::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--p4-success);
  box-shadow: 0 0 12px rgba(72, 199, 142, 0.6);
}

.p4-footer {
  padding: 78px 0 28px;
  border-top: 1px solid var(--p4-border);
  background: #07080b;
}

.p4-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 1fr));
  gap: 56px;
}

.p4-footer-brand {
  max-width: 390px;
}

.p4-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--p4-white);
  text-decoration: none;
}

.p4-footer-logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--p4-border-gold);
  border-radius: 14px;
  color: #211706;
  background: linear-gradient(135deg, var(--p4-gold-light), var(--p4-gold-dark));
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(232, 190, 79, 0.17);
}

.p4-footer-logo-text {
  display: grid;
  gap: 2px;
}

.p4-footer-logo-text strong {
  font-size: 17px;
  letter-spacing: 0.05em;
}

.p4-footer-logo-text small {
  color: var(--p4-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.p4-footer-brand p {
  margin: 22px 0 0;
  color: var(--p4-muted);
  font-size: 14px;
  line-height: 1.8;
}

.p4-footer-title {
  margin: 0 0 20px;
  color: var(--p4-white);
  font-size: 14px;
  font-weight: 850;
}

.p4-footer-links {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p4-footer-links a {
  color: var(--p4-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.p4-footer-links a:hover {
  color: var(--p4-gold-light);
  transform: translateX(3px);
}

.p4-footer-disclaimer {
  margin-top: 58px;
  padding: 23px 24px;
  border: 1px solid var(--p4-border);
  border-radius: var(--p4-radius-md);
  color: #85848e;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  line-height: 1.75;
}

.p4-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.p4-footer-bottom p {
  margin: 0;
  color: #74737d;
  font-size: 11px;
}

.p4-footer-domain {
  color: #9b9aa4;
  font-size: 11px;
}

.p4-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--p4-border-gold);
  border-radius: 50%;
  color: #211706;
  background: linear-gradient(135deg, var(--p4-gold-light), var(--p4-gold-dark));
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.p4-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p4-back-top:hover {
  transform: translateY(-3px);
}

.p4-back-top svg {
  width: 19px;
  height: 19px;
}

.p4-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.p4-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:960px) {
  .p4-section {
    padding: 90px 0;
  }

  .p4-section-head {
    display: grid;
    gap: 26px;
  }

  .p4-head-note {
    max-width: 100%;
  }

  .p4-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p4-footer-brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width:720px) {
  .p4-wrap {
    width: min(calc(100% - 22px), var(--p4-max-width));
  }

  .p4-section {
    padding: 76px 0;
  }

  .p4-heading {
    font-size: clamp(31px, 10vw, 46px);
  }

  .p4-subheading {
    font-size: 15px;
  }

  .p4-faq-grid {
    grid-template-columns: 1fr;
  }

  .p4-faq-question {
    padding: 19px;
    font-size: 14px;
  }

  .p4-faq-answer p {
    padding: 0 19px 20px;
    font-size: 14px;
  }

  .p4-faq-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .p4-review-track {
    grid-auto-columns: minmax(282px, 86vw);
  }

  .p4-review-card {
    min-height: 290px;
    padding: 23px;
  }

  .p4-review-top {
    align-items: flex-start;
  }

  .p4-review-type {
    display: none;
  }

  .p4-cta-box {
    padding: 52px 22px;
    border-radius: 28px;
  }

  .p4-cta-content h2 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .p4-cta-content p {
    font-size: 15px;
  }

  .p4-cta-actions {
    display: grid;
  }

  .p4-btn {
    width: 100%;
  }

  .p4-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .p4-footer-bottom {
    display: grid;
    text-align: center;
  }
}

@media (max-width:480px) {
  .p4-footer-grid {
    grid-template-columns: 1fr;
  }

  .p4-footer-brand {
    grid-column: auto;
  }

  .p4-review-summary {
    width: 100%;
  }

  .p4-slider-controls {
    justify-content: center;
  }

  .p4-back-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion:reduce) {

  .p4-reveal,
  .p4-faq-answer,
  .p4-faq-icon,
  .p4-review-track,
  .p4-review-card,
  .p4-btn,
  .p4-back-top {
    scroll-behavior: auto;
    transition: none !important;
  }
}

.p5-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #0b0b0f;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.p5-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p5-loader-bg {
  position: absolute;
  inset: -20px;
  background-image: url("https://onlineguitarlab.com/best-ukulele-tuner/assets/images/hero-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.06);
  animation: p5LoaderZoom 5s ease-out forwards;
}

.p5-loader-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 15, 0.18) 0%, rgba(11, 11, 15, 0.35) 45%, rgba(11, 11, 15, 0.96) 100%), radial-gradient(circle at 50% 30%, transparent 0%, rgba(11, 11, 15, 0.18) 50%, rgba(11, 11, 15, 0.8) 100%);
}

.p5-loader-content {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  margin-bottom: clamp(45px, 8vh, 90px);
  text-align: center;
}

.p5-loader-brand {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.p5-loader-brand-small {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.p5-loader-brand strong {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.65), 0 0 40px rgba(212, 175, 55, 0.18);
}

.p5-loader-progress {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.p5-loader-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #b8860b, #ffd978, #d4af37);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.65);
  transition: width 0.18s linear;
}

.p5-loader-text {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.p5-loader-dots::after {
  content: "";
  animation: p5LoaderDots 1.2s steps(4, end) infinite;
}

@keyframes p5LoaderZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes p5LoaderDots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75%,
  100% {
    content: "...";
  }
}

body.p5-loading {
  overflow: hidden;
}

@media (max-width:600px) {
  .p5-loader-bg {
    background-position: center center;
  }

  .p5-loader-content {
    margin-bottom: 48px;
  }
}

@media (prefers-reduced-motion:reduce) {

  .p5-loader-bg,
  .p5-loader-dots::after {
    animation: none;
  }
}