:root {
  --bg: #061327;
  --bg-soft: #0c1f3b;
  --surface: #11284c;
  --surface-2: #173867;
  --text: #eaf3ff;
  --muted: #9fbbde;
  --line: rgba(178, 214, 255, 0.18);
  --primary: #26c6ff;
  --primary-2: #4af1a8;
  --accent: #ff9d2d;
  --danger: #ff4f6f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px rgba(2, 10, 25, 0.42);
  --container: min(1140px, 92vw);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(38, 198, 255, 0.2), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(74, 241, 168, 0.15), transparent 44%),
    linear-gradient(180deg, #061327 0%, #08182f 45%, #061327 100%);
  line-height: 1.65;
}

body.app-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 0% 0%, rgba(38, 198, 255, 0.16), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(74, 241, 168, 0.1), transparent 34%),
    linear-gradient(180deg, #071a33 0%, #08162b 100%);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-2);
}

button {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(178, 214, 255, 0.12);
  backdrop-filter: blur(8px);
  background: rgba(5, 18, 38, 0.78);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  color: #fff;
}

.brand small {
  color: var(--primary-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: #d5e7ff;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(38, 198, 255, 0.12);
  color: #fff;
}

.nav-member-btn,
.footer-link-button {
  border: 0;
  background: transparent;
  color: #d5e7ff;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-member-btn:hover,
.nav-member-btn:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  background: rgba(38, 198, 255, 0.12);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #d6e8ff;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 8vw, 6rem) 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(17, 40, 76, 0.9), rgba(8, 24, 47, 0.45)),
    radial-gradient(circle at 25% 30%, rgba(38, 198, 255, 0.26), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 157, 45, 0.25), transparent 38%);
  animation: floatBg 12s linear infinite alternate;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.18;
}

h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.lead {
  color: #d4e9ff;
  max-width: 62ch;
  margin: 0 0 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #15b9ff, #4af1a8);
  color: #041224;
  box-shadow: 0 8px 18px rgba(26, 190, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #031020;
  box-shadow: 0 16px 28px rgba(26, 190, 255, 0.36);
}

.btn-secondary {
  border-color: rgba(207, 228, 255, 0.35);
  color: #f1f6ff;
  background: rgba(11, 31, 57, 0.4);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(20, 52, 90, 0.75);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 1em;
  flex-shrink: 0;
}

.ui-icon.wa-mark {
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.22rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #043320;
  background: rgba(125, 255, 159, 0.8);
  border: 1px solid rgba(4, 51, 32, 0.25);
}

.wa-fa-icon {
  font-size: 1.03rem;
  line-height: 1;
}

.hero-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
}

.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(15, 40, 77, 0.96), rgba(8, 25, 48, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-card img {
  margin: 0 auto 1rem;
}

.hero-card p {
  margin: 0;
  color: #d6e9ff;
}

.orbit {
  pointer-events: none;
  position: absolute;
  inset: 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(74, 241, 168, 0.35);
  animation: spin 18s linear infinite;
}

.section {
  padding: clamp(2.6rem, 7vw, 5rem) 0;
}

.section-alt {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 31, 59, 0.76), rgba(8, 25, 48, 0.85));
  border-top: 1px solid rgba(178, 214, 255, 0.08);
  border-bottom: 1px solid rgba(178, 214, 255, 0.08);
}

.section-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  background: linear-gradient(180deg, rgba(17, 40, 76, 0.82), rgba(12, 31, 59, 0.86));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: 0 15px 30px rgba(3, 10, 26, 0.26);
}

.panel p {
  color: #d4e7ff;
  margin: 0 0 0.8rem;
}

.panel p:last-child {
  margin-bottom: 0;
}

.check-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #d7e9ff;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-2);
  font-weight: 800;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head p {
  max-width: 64ch;
  margin: 0;
  color: #c9ddfb;
}

.section-kicker {
  margin: 0 0 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #90f8ca;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(74, 241, 168, 0.15);
  border: 1px solid rgba(74, 241, 168, 0.35);
}

#paket .container {
  position: relative;
  isolation: isolate;
}

#paket .container::before,
#paket .container::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.45;
  pointer-events: none;
}

#paket .container::before {
  width: 320px;
  height: 180px;
  top: 110px;
  left: -70px;
  background: radial-gradient(circle, rgba(38, 198, 255, 0.7), transparent 70%);
}

#paket .container::after {
  width: 320px;
  height: 180px;
  right: -70px;
  bottom: 30px;
  background: radial-gradient(circle, rgba(74, 241, 168, 0.7), transparent 70%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  border-radius: 20px;
  padding: 1.2rem;
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(2.4rem, auto) minmax(12.4rem, auto) minmax(4.2rem, auto) auto;
  gap: 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(167, 204, 249, 0.24);
  background:
    linear-gradient(165deg, rgba(15, 41, 78, 0.98), rgba(8, 25, 48, 0.98)),
    radial-gradient(circle at 95% 0%, rgba(38, 198, 255, 0.15), transparent 45%);
  box-shadow: 0 24px 42px rgba(2, 9, 24, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(93, 225, 255, 0.45), rgba(74, 241, 168, 0.2), transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -56px;
  top: -70px;
  background: radial-gradient(circle, rgba(74, 241, 168, 0.22), transparent 70%);
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(74, 241, 168, 0.48);
  box-shadow: 0 30px 50px rgba(3, 12, 29, 0.48);
}

.price-card.featured {
  transform: translateY(-10px);
  border-color: rgba(74, 241, 168, 0.72);
  background:
    linear-gradient(165deg, rgba(23, 70, 113, 0.98), rgba(10, 34, 66, 0.98)),
    radial-gradient(circle at 90% 0%, rgba(74, 241, 168, 0.34), transparent 42%);
  box-shadow: 0 34px 56px rgba(5, 16, 37, 0.55);
}

.price-card.featured:hover {
  transform: translateY(-14px) scale(1.015);
}

.plan-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-height: 2.4rem;
}

.plan-audience {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.77rem;
  color: #9fd7ff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.plan-audience .ui-icon {
  color: #58f5b5;
}

.badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: linear-gradient(95deg, rgba(74, 241, 168, 0.22), rgba(38, 198, 255, 0.22));
  color: #b5ffd9;
  border: 1px solid rgba(74, 241, 168, 0.5);
  white-space: nowrap;
}

.badge .ui-icon {
  color: #ffe493;
}

.badge-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.plan-main {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto minmax(4.1rem, auto) minmax(3.35rem, auto);
  gap: 0.45rem;
  min-height: auto;
}

.plan-name {
  margin: 0;
  color: #f2f8ff;
  font-size: 1.18rem;
  font-weight: 700;
}

.speed {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-family: "Sora", sans-serif;
  color: #fff;
  letter-spacing: -0.01em;
}

.service {
  margin: 0;
  color: #c7ddfb;
  font-size: 1.03rem;
}

.price {
  margin: 0;
  display: flex;
  align-items: flex-end;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffcf73;
  font-family: "Sora", sans-serif;
}

.price span {
  margin-left: 0.36rem;
  color: #cfdeef;
  font-size: 0.86rem;
  font-weight: 600;
}

.plan-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
  align-content: start;
}

.plan-points li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  color: #d2e4ff;
  font-size: 0.9rem;
}

.plan-points .ui-icon {
  margin-top: 0.23rem;
  font-size: 0.72rem;
  color: #52f4b1;
}

.plan-cta {
  margin-top: 0.22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #041224;
  border: 1px solid transparent;
  background: linear-gradient(100deg, #24c2ff, #4df3aa);
  box-shadow: 0 14px 24px rgba(23, 170, 233, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.plan-cta:hover,
.plan-cta:focus-visible {
  color: #041224;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 20px 28px rgba(23, 170, 233, 0.36);
}

.price-card.featured .plan-cta {
  background: linear-gradient(95deg, #38cbff, #85ffab);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.benefit {
  flex: 1 1 320px;
  max-width: calc((100% - 2rem) / 3);
  background: linear-gradient(180deg, rgba(16, 39, 74, 0.85), rgba(10, 27, 52, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}

.benefit p {
  margin: 0;
  color: #c2d8f4;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial {
  margin: 0;
  border-left: 4px solid rgba(38, 198, 255, 0.58);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1rem 1rem 1.1rem;
  background: rgba(8, 24, 48, 0.7);
  box-shadow: 0 12px 24px rgba(2, 9, 24, 0.28);
}

.testimonial p {
  margin: 0 0 0.8rem;
  color: #d8ebff;
}

.testimonial cite {
  font-style: normal;
  color: #9fbcdf;
  font-size: 0.93rem;
}

.faq-wrap {
  max-width: 860px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(17, 40, 76, 0.75), rgba(10, 27, 52, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.92rem 1rem;
  margin-bottom: 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #edf5ff;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary-2);
  font-weight: 800;
}

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

.faq-item p {
  margin: 0.65rem 0 0;
  color: #cfe2fb;
}

.cta-band {
  background:
    radial-gradient(circle at 8% 15%, rgba(38, 198, 255, 0.22), transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(74, 241, 168, 0.2), transparent 45%),
    linear-gradient(140deg, rgba(17, 40, 76, 0.94), rgba(8, 25, 48, 0.98));
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.contact-info-card {
  background: linear-gradient(170deg, rgba(13, 35, 66, 0.96), rgba(8, 24, 47, 0.98));
  border: 1px solid rgba(178, 214, 255, 0.25);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 18px 30px rgba(2, 9, 24, 0.32);
  display: grid;
  gap: 1rem;
  align-content: start;
  height: 100%;
}

.contact-info-card h2 {
  margin-bottom: 0.2rem;
}

.contact-info-card > p {
  margin: 0;
  color: #d8e9ff;
}

.contact-list {
  display: grid;
  gap: 0.66rem;
}

.contact-item {
  margin: 0;
  color: #e3efff;
  display: flex;
  gap: 0.66rem;
  align-items: flex-start;
}

.contact-item .ui-icon {
  margin-top: 0.18rem;
  color: #4af1a8;
  min-width: 1rem;
}

.contact-item strong {
  color: #f2f8ff;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.contact-pill {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #d6e8ff;
  padding: 0.52rem 0.62rem;
  border-radius: 10px;
  background: rgba(7, 21, 43, 0.72);
  border: 1px solid rgba(173, 206, 247, 0.24);
}

.contact-pill .ui-icon {
  color: #50f5af;
}

.contact-note {
  margin: 0.2rem 0 0;
  padding: 0.72rem 0.82rem;
  border-radius: 10px;
  background: rgba(15, 190, 255, 0.1);
  border: 1px solid rgba(38, 198, 255, 0.3);
  color: #cfe9ff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-note .ui-icon {
  color: #6ef7bd;
}

.contact-note .wa-fa-icon {
  color: #6ef7bd;
}

.contact-form-card {
  background: linear-gradient(170deg, rgba(13, 35, 66, 0.96), rgba(8, 24, 47, 0.98));
  border: 1px solid rgba(178, 214, 255, 0.25);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 18px 30px rgba(2, 9, 24, 0.32);
  height: 100%;
}

.contact-form-card h3 {
  margin-bottom: 0.3rem;
}

.form-note {
  margin: 0 0 0.95rem;
  color: #bbd3f2;
  font-size: 0.94rem;
}

.wa-form {
  display: grid;
  gap: 0.72rem;
}

.field-row {
  display: grid;
  gap: 0.34rem;
}

.field-row label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #b9d3f5;
}

.field-row input,
.field-row textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(173, 206, 247, 0.32);
  background: rgba(5, 18, 38, 0.74);
  color: #edf5ff;
  padding: 0.78rem 0.86rem;
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field-row input::placeholder,
.field-row textarea::placeholder {
  color: #8eaed4;
}

.field-row textarea {
  resize: vertical;
  min-height: 132px;
}

.field-row input:hover,
.field-row textarea:hover {
  background: rgba(7, 21, 43, 0.9);
}

.field-row input:focus,
.field-row textarea:focus {
  outline: none;
  border-color: rgba(74, 241, 168, 0.72);
  box-shadow: 0 0 0 4px rgba(74, 241, 168, 0.16);
}

.field-row input:invalid:focus,
.field-row textarea:invalid:focus {
  border-color: rgba(255, 79, 111, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 79, 111, 0.16);
}

.form-status {
  margin: 0.2rem 0 0;
  min-height: 1.3rem;
  font-size: 0.83rem;
  color: #9dfbcf;
}

.form-status.is-error {
  color: #ff97ac;
}

.site-nav-static {
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  border: 0;
  background: transparent;
  padding: 0;
}

.plan-actions {
  display: grid;
  gap: 0.7rem;
}

.plan-link-secondary {
  text-align: center;
  color: #bfe0ff;
  font-weight: 600;
}

.plan-link-secondary:hover,
.plan-link-secondary:focus-visible {
  color: #fff;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding-top: 0;
}

.footer-links a {
  color: #d5e9ff;
}

.footer-link-button {
  padding: 0;
  color: #d5e9ff;
}

.alert {
  margin: 0 0 1.15rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(12, 28, 54, 0.92);
}

.alert-info {
  border-color: rgba(38, 198, 255, 0.25);
  color: #dff4ff;
}

.alert-warning {
  border-color: rgba(255, 157, 45, 0.3);
  color: #ffe7bf;
}

.alert-error {
  border-color: rgba(255, 79, 111, 0.32);
  color: #ffd4df;
}

.checkout-shell,
.dashboard-shell {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  min-height: calc(100vh - 78px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.2rem;
  align-items: start;
}

.checkout-form-card,
.checkout-summary-card,
.stat-card,
.table-card,
.detail-card,
.auth-card {
  background: linear-gradient(180deg, rgba(17, 40, 76, 0.92), rgba(11, 28, 55, 0.95));
  border: 1px solid rgba(178, 214, 255, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.checkout-form-card,
.checkout-summary-card,
.detail-card {
  padding: 1.4rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-error {
  display: inline-block;
  margin-top: 0.35rem;
  color: #ff9fb1;
  font-size: 0.82rem;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.payment-method-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.payment-method-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method-body {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 0.95rem;
  min-height: 104px;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(178, 214, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 22, 43, 0.88), rgba(8, 22, 43, 0.68)),
    radial-gradient(circle at 0% 0%, rgba(38, 198, 255, 0.08), transparent 42%);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.payment-method-card:hover .payment-method-body {
  transform: translateY(-2px);
  border-color: rgba(74, 241, 168, 0.24);
  box-shadow: 0 16px 28px rgba(2, 10, 26, 0.22);
}

.payment-method-input:focus-visible + .payment-method-body {
  border-color: rgba(74, 241, 168, 0.42);
  box-shadow: 0 0 0 4px rgba(74, 241, 168, 0.14);
}

.payment-method-input:checked + .payment-method-body {
  border-color: rgba(38, 198, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(12, 34, 63, 0.96), rgba(9, 24, 47, 0.88)),
    radial-gradient(circle at 0% 0%, rgba(38, 198, 255, 0.16), transparent 48%);
  box-shadow: 0 18px 32px rgba(7, 22, 45, 0.34);
}

.payment-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0.35rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.payment-method-icon.has-image {
  padding: 0.7rem;
  border-color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(1, 9, 20, 0.18);
}

.payment-method-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-method-icon.is-wide {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.payment-method-icon--generic {
  color: #eaf4ff;
  background: linear-gradient(145deg, #14345f, #0a1932);
}

.payment-method-icon--qris {
  color: #042237;
  background: linear-gradient(145deg, #35d2ff, #64f6bd);
}

.payment-method-icon--shopee {
  color: #fff3ed;
  background: linear-gradient(145deg, #ff7f45, #e74d18);
}

.payment-method-icon--ovo {
  color: #efe3ff;
  background: linear-gradient(145deg, #6a35d8, #311169);
}

.payment-method-icon--dana {
  color: #e9f9ff;
  background: linear-gradient(145deg, #1ba5ff, #1257cf);
}

.payment-method-icon--linkaja {
  color: #fff1f3;
  background: linear-gradient(145deg, #ff5c6a, #b61c3d);
}

.payment-method-icon--retail {
  color: #fff2dd;
  background: linear-gradient(145deg, #ff9a3d, #7d3412);
}

.payment-method-icon--atm {
  color: #ecf8ff;
  background: linear-gradient(145deg, #2e8fff, #0e3d7a);
}

.payment-method-icon--mandiri {
  color: #ffeeb9;
  background: linear-gradient(145deg, #114ca1, #092448);
}

.payment-method-icon--maybank {
  color: #322100;
  background: linear-gradient(145deg, #ffd04b, #c89814);
}

.payment-method-icon--permata {
  color: #ecfbff;
  background: linear-gradient(145deg, #2fd7ff, #005e97);
}

.payment-method-icon--cimb {
  color: #ffe4e6;
  background: linear-gradient(145deg, #f04757, #5c0818);
}

.payment-method-icon--bank {
  color: #e7f5ff;
  background: linear-gradient(145deg, #2ca8ff, #12386d);
}

.payment-method-icon--card {
  color: #ffe6a5;
  background: linear-gradient(145deg, #243555, #0b1123);
}

.payment-method-copy {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
}

.payment-method-copy strong {
  color: #f2f7ff;
  font-size: 0.98rem;
  line-height: 1.3;
}

.payment-method-copy small {
  color: #8eb9ec;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-method-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 0.18rem;
}

.payment-method-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(178, 214, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #d9ebff;
  font-size: 0.78rem;
  font-weight: 600;
}

.payment-method-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(178, 214, 255, 0.38);
  background: rgba(7, 21, 43, 0.92);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.payment-method-indicator::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25c6ff, #67f6bf);
  transform: scale(0);
  transition: transform 0.18s ease;
}

.payment-method-input:checked + .payment-method-body .payment-method-indicator {
  border-color: rgba(74, 241, 168, 0.6);
  background: rgba(74, 241, 168, 0.08);
}

.payment-method-input:checked + .payment-method-body .payment-method-indicator::after {
  transform: scale(1);
}

.summary-price {
  display: grid;
  gap: 0.15rem;
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(38, 198, 255, 0.14), rgba(74, 241, 168, 0.12));
  border: 1px solid rgba(74, 241, 168, 0.18);
}

.summary-price strong {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.summary-price span {
  color: #9ff9ce;
  font-weight: 700;
}

.summary-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #d6e8ff;
}

.summary-list li + li {
  margin-top: 0.55rem;
}

.summary-panel {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(178, 214, 255, 0.12);
  background: rgba(6, 18, 37, 0.62);
}

.summary-panel p {
  margin: 0;
}

.summary-panel p + p {
  margin-top: 0.7rem;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.inline-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.status-banner {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  margin-bottom: 1rem;
  border: 1px solid rgba(178, 214, 255, 0.14);
  background: rgba(9, 23, 44, 0.82);
}

.status-banner strong {
  font-size: 1.05rem;
}

.status-banner.is-paid {
  border-color: rgba(74, 241, 168, 0.28);
}

.status-banner.is-pending {
  border-color: rgba(38, 198, 255, 0.3);
}

.status-banner.is-failed,
.status-banner.is-expired,
.status-banner.is-canceled {
  border-color: rgba(255, 79, 111, 0.32);
}

.invoice-preview-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(178, 214, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 22, 43, 0.86), rgba(10, 27, 52, 0.76)),
    radial-gradient(circle at 100% 0%, rgba(38, 198, 255, 0.12), transparent 42%);
}

.invoice-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.invoice-preview-kicker {
  margin: 0 0 0.32rem;
  color: #8fd5ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invoice-preview-head h2 {
  margin-bottom: 0;
}

.invoice-preview-total {
  min-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 193, 255, 0.18), rgba(74, 241, 168, 0.16));
  border: 1px solid rgba(74, 241, 168, 0.2);
}

.invoice-preview-total small {
  display: block;
  color: #bde7ff;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.invoice-preview-total strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.invoice-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.invoice-preview-panel {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(178, 214, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.invoice-preview-panel p {
  margin: 0;
}

.invoice-preview-panel p + p {
  margin-top: 0.52rem;
}

.invoice-page {
  background:
    radial-gradient(circle at 0% 0%, rgba(38, 198, 255, 0.14), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(74, 241, 168, 0.12), transparent 30%),
    linear-gradient(180deg, #071a33 0%, #08162b 100%);
}

.invoice-shell {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.invoice-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.invoice-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.invoice-paper {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(206, 225, 248, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(21, 185, 255, 0.08), transparent 32%);
  color: #10233c;
  box-shadow: 0 30px 60px rgba(1, 7, 18, 0.34);
}

.invoice-paper-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, #15b9ff, #4af1a8, #ffcf73);
}

.invoice-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding-top: 0.55rem;
}

.invoice-brand-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.invoice-brand-mark {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9fcff, #eaf3ff);
  border: 1px solid rgba(16, 35, 60, 0.08);
  box-shadow: 0 12px 24px rgba(14, 30, 50, 0.1);
}

.invoice-brand-copy h1,
.invoice-brand-copy h2,
.invoice-brand-copy h3 {
  color: #10233c;
}

.invoice-eyebrow {
  margin: 0 0 0.25rem;
  color: #2576c6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.invoice-brand-copy p {
  margin: 0.25rem 0 0;
  max-width: 58ch;
  color: #5c718f;
}

.invoice-status-card {
  min-width: 240px;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9fcff, #eef5ff);
  border: 1px solid rgba(16, 35, 60, 0.08);
  box-shadow: 0 14px 26px rgba(16, 35, 60, 0.08);
}

.invoice-status-card strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: #10233c;
}

.invoice-status-card small {
  display: block;
  margin-top: 0.4rem;
  color: #6f85a3;
}

.invoice-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.invoice-hero-copy,
.invoice-total-card,
.invoice-meta-card,
.invoice-line-card,
.invoice-note-card {
  border-radius: 24px;
  border: 1px solid rgba(16, 35, 60, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(16, 35, 60, 0.06);
}

.invoice-hero-copy {
  padding: 1.15rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(21, 185, 255, 0.08), rgba(74, 241, 168, 0.08)),
    rgba(255, 255, 255, 0.92);
}

.invoice-hero-kicker {
  margin: 0 0 0.4rem;
  color: #2576c6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.invoice-hero-copy h2 {
  margin-bottom: 0.35rem;
  color: #10233c;
}

.invoice-hero-copy p {
  margin: 0;
  color: #56708d;
}

.invoice-total-card {
  padding: 1.15rem 1.2rem;
  display: grid;
  align-content: center;
  background:
    linear-gradient(180deg, #11284c, #173867),
    linear-gradient(135deg, rgba(38, 198, 255, 0.22), rgba(74, 241, 168, 0.18));
  color: #eef8ff;
}

.invoice-total-card small,
.invoice-total-card span {
  color: #bdddf8;
}

.invoice-total-card strong {
  display: block;
  margin: 0.2rem 0 0.3rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.invoice-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.invoice-meta-card {
  padding: 1rem 1.05rem;
}

.invoice-meta-card strong {
  color: #10233c;
}

.invoice-meta-card p {
  margin: 0;
  color: #536b86;
}

.invoice-meta-card p + p {
  margin-top: 0.48rem;
}

.invoice-meta-title {
  margin: 0 0 0.72rem;
  color: #2576c6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.invoice-line-card {
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.invoice-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.invoice-line-head h3 {
  margin-bottom: 0;
  color: #10233c;
}

.invoice-line-head span {
  color: #68819e;
  font-weight: 600;
}

.invoice-line-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #eef5fd);
  border: 1px solid rgba(16, 35, 60, 0.08);
}

.invoice-line-main strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: #10233c;
}

.invoice-line-main p {
  margin: 0;
  color: #566f8c;
}

.invoice-inline-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.invoice-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  color: #244f84;
  background: rgba(36, 79, 132, 0.08);
  border: 1px solid rgba(36, 79, 132, 0.1);
  font-size: 0.79rem;
  font-weight: 700;
}

.invoice-line-amount {
  min-width: 180px;
  text-align: right;
}

.invoice-line-amount small {
  display: block;
  color: #6c83a0;
  margin-bottom: 0.28rem;
}

.invoice-line-amount strong {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  color: #10233c;
}

.invoice-total-grid {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 35, 60, 0.1);
  display: grid;
  gap: 0.65rem;
}

.invoice-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #435e7c;
}

.invoice-total-row strong {
  color: #10233c;
}

.invoice-total-row--grand {
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(16, 35, 60, 0.14);
  font-size: 1.03rem;
}

.invoice-total-row--grand strong {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

.invoice-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.invoice-note-card {
  padding: 1rem 1.05rem;
}

.invoice-note-card p {
  margin: 0;
  color: #536b86;
}

.invoice-note-card p + p {
  margin-top: 0.52rem;
}

.invoice-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 35, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.invoice-footer p {
  margin: 0;
  color: #6d84a0;
  font-size: 0.9rem;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.auth-card {
  width: min(520px, 100%);
  padding: 1.6rem;
}

.auth-brand {
  margin-bottom: 1.25rem;
}

.auth-head {
  text-align: left;
}

.auth-note {
  margin: 1rem 0 0;
  color: #9ebde1;
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.stat-card {
  padding: 1.25rem;
}

.stat-card small {
  display: block;
  color: #9ec0e5;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
}

.table-card {
  padding: 1.25rem;
}

.table-card-head,
.detail-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.table-card-head h2,
.detail-card-head h2 {
  margin-bottom: 0;
}

.table-filter {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.table-filter-wide {
  justify-content: flex-end;
}

.search-field {
  display: inline-flex;
}

.search-field input {
  min-width: min(340px, 72vw);
  border-radius: 999px;
  border: 1px solid rgba(178, 214, 255, 0.18);
  background: rgba(7, 21, 43, 0.84);
  color: #eef5ff;
  padding: 0.7rem 1rem;
}

.table-filter select {
  min-width: 180px;
  border-radius: 999px;
  border: 1px solid rgba(178, 214, 255, 0.18);
  background: rgba(7, 21, 43, 0.84);
  color: #eef5ff;
  padding: 0.7rem 1rem;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th,
.admin-table td {
  padding: 0.95rem 0.7rem;
  border-bottom: 1px solid rgba(178, 214, 255, 0.1);
  vertical-align: top;
  text-align: left;
}

.admin-table th {
  color: #9bc2ec;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small {
  margin-top: 0.3rem;
  color: #9cb9dc;
}

.table-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-small {
  padding: 0.58rem 0.95rem;
  font-size: 0.82rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid rgba(178, 214, 255, 0.14);
  background: rgba(6, 18, 37, 0.72);
}

.status-pill.is-paid {
  color: #9ff9ce;
  border-color: rgba(74, 241, 168, 0.24);
}

.status-pill.is-pending {
  color: #bfe8ff;
  border-color: rgba(38, 198, 255, 0.24);
}

.status-pill.is-failed,
.status-pill.is-canceled,
.status-pill.is-expired {
  color: #ffc0cf;
  border-color: rgba(255, 79, 111, 0.24);
}

.status-pill.is-draft {
  color: #ffe2a9;
  border-color: rgba(255, 157, 45, 0.24);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card-wide {
  grid-column: 1 / -1;
}

.debug-block {
  margin: 0;
  padding: 1rem;
  border-radius: 16px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(4, 14, 29, 0.9);
  border: 1px solid rgba(178, 214, 255, 0.12);
  color: #d6eaff;
  font-size: 0.86rem;
}

body.has-modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 10, 22, 0.72);
  backdrop-filter: blur(10px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(178, 214, 255, 0.14);
  background: linear-gradient(180deg, rgba(17, 40, 76, 0.98), rgba(9, 24, 47, 0.98));
  box-shadow: 0 30px 60px rgba(1, 7, 18, 0.46);
}

.modal-copy {
  margin: 0 0 1.1rem;
  color: #cfe1f7;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6fbff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid rgba(178, 214, 255, 0.12);
  background: rgba(3, 12, 26, 0.9);
}

.site-footer p {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #9eb9dc;
  font-size: 0.92rem;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #042415;
  background: linear-gradient(140deg, #25d366, #7dff9f);
  box-shadow: 0 15px 30px rgba(7, 59, 26, 0.42);
  z-index: 90;
}

.floating-wa .wa-fa-icon {
  font-size: 1.55rem;
  line-height: 1;
  color: #043320;
}

.floating-wa:hover,
.floating-wa:focus-visible {
  color: #042415;
  transform: translateY(-2px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatBg {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .testimonial-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
    grid-column: span 2;
  }

  .price-card.featured:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .plan-main {
    grid-template-rows: auto auto auto auto;
  }

  .price-card {
    grid-template-rows: auto auto auto auto;
  }

  .hero-card {
    max-width: 480px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit {
    max-width: none;
  }

  .contact-info-card,
  .contact-form-card {
    max-width: 720px;
    margin-inline: auto;
  }

  .checkout-layout,
  .detail-grid,
  .invoice-hero,
  .invoice-meta-grid,
  .invoice-note-grid,
  .invoice-preview-grid {
    grid-template-columns: 1fr;
  }

  .invoice-header {
    flex-direction: column;
  }

  .invoice-status-card {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.4rem;
    padding: 0.85rem 4vw 1rem;
    border-bottom: 1px solid rgba(178, 214, 255, 0.15);
    background: rgba(6, 19, 39, 0.98);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0.7rem;
  }

  .nav-member-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.7rem;
  }

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

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

  .price-card.featured,
  .price-card.featured:hover {
    grid-column: auto;
    transform: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  #paket .container::before,
  #paket .container::after {
    opacity: 0.28;
    width: 220px;
    height: 140px;
    filter: blur(38px);
  }

  #paket .container::before {
    left: -120px;
  }

  #paket .container::after {
    right: -120px;
  }

  .contact-form-card {
    padding: 0.9rem;
  }

  .contact-info-card {
    padding: 1rem;
    gap: 0.85rem;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .field-row input,
  .field-row textarea {
    font-size: 16px;
  }

  .site-nav-static {
    display: flex;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    background: transparent;
  }

  .site-nav-static a {
    padding-inline: 0;
  }

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

  .payment-method-grid {
    grid-template-columns: 1fr;
  }

  .payment-method-body {
    grid-template-columns: 58px minmax(0, 1fr) 20px;
    gap: 0.8rem;
    min-height: 96px;
    padding: 0.92rem;
  }

  .payment-method-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .payment-method-icon.is-wide {
    font-size: 0.7rem;
  }

  .invoice-paper {
    padding: 1.05rem;
    border-radius: 24px;
  }

  .invoice-brand-block {
    flex-direction: column;
  }

  .invoice-brand-mark {
    width: 70px;
    height: 70px;
  }

  .invoice-line-item {
    grid-template-columns: 1fr;
  }

  .invoice-line-amount {
    min-width: 0;
    text-align: left;
  }

  .invoice-toolbar,
  .invoice-toolbar-actions,
  .invoice-footer,
  .invoice-preview-head {
    align-items: stretch;
  }

  .invoice-toolbar-actions,
  .invoice-toolbar .btn {
    width: 100%;
  }

  .table-card {
    padding: 1rem;
  }

  .admin-table th,
  .admin-table td {
    min-width: 140px;
  }

  .table-filter-wide {
    justify-content: stretch;
  }

  .search-field,
  .search-field input {
    width: 100%;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }

  html,
  body {
    background: #fff !important;
  }

  body {
    color: #111827;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .invoice-screen-only,
  .site-header,
  .floating-wa {
    display: none !important;
  }

  .invoice-shell,
  .section {
    padding: 0 !important;
  }

  .container {
    width: 100% !important;
    max-width: none !important;
  }

  .invoice-paper {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff !important;
  }

  .invoice-paper-topline {
    height: 6px;
  }

  .invoice-hero-copy,
  .invoice-total-card,
  .invoice-meta-card,
  .invoice-line-card,
  .invoice-note-card,
  .invoice-status-card {
    box-shadow: none;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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