@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --primary: #C0392B;
  --primary-dark: #962d22;
  --primary-light: #e8534a;
  --secondary: #F39C12;
  --secondary-dark: #d68910;
  --secondary-light: #fbb040;
  --dark: #0d0f1a;
  --dark-2: #14172a;
  --dark-3: #1c2038;
  --light: #f5f4f0;
  --light-2: #ede9e2;
  --text: #1a1c2e;
  --text-muted: #6b6f82;
  --success: #22a06b;
  --danger: #E74C3C;
  --warning: #F39C12;
  --white: #ffffff;
  --border: #e2ddd8;
  --border-strong: #ccc8c0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 6px 28px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-width: none;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
  max-width: 100%;
  -ms-overflow-style: none;
  -webkit-font-smoothing: antialiased;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { display: none; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(20px, calc((100vw - 1140px) / 2));
  color: var(--white);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled, .navbar.open {
  background: rgba(13, 15, 26, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.brand { display: flex; gap: 11px; align-items: center; }
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
}
.brand strong { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.01em; }
.brand small { display: block; font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 1px; }
.nav-menu { display: flex; gap: 6px; font-weight: 500; font-size: 15px; }
.nav-menu a {
  padding: 7px 14px;
  border-radius: 99px;
  transition: background 0.18s;
  color: rgba(255,255,255,0.88);
}
.nav-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  color: var(--white);
  background: var(--dark);
}

/* Layered gradient atmosphere */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(192,57,43,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 15% 20%, rgba(243,156,18,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 90%, rgba(13,15,26,0.9) 0%, transparent 70%),
    linear-gradient(158deg, #0d0f1a 0%, #1c2038 42%, #140c10 100%);
  pointer-events: none;
}

/* Diagonal stripe accent */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 72px,
      rgba(255,255,255,0.018) 72px,
      rgba(255,255,255,0.018) 73px
    );
  pointer-events: none;
}

/* Bottom curve cutoff */
.hero-pattern {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 100px;
  background: linear-gradient(175deg, transparent 0 48%, var(--light) 49% 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-mark {
  position: absolute;
  right: max(0px, calc((100vw - 1140px) / 2));
  bottom: 60px;
  width: min(500px, 44vw);
  opacity: 0.07;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
  transform: rotate(-6deg) translateX(6%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 104px 0 116px;
  width: min(1140px, calc(100% - 40px));
  max-width: 100%;
  animation: heroReveal 0.8s ease both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(243,156,18,0.4);
  background: rgba(243,156,18,0.1);
  color: var(--secondary-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  margin: 16px auto 14px;
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6.2vw, 74px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--secondary-light), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 580px;
  margin: 0 auto 22px;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.65;
}

.hero-period {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: min(100%, 700px);
  margin: 0 auto 18px !important;
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  color: var(--white) !important;
  font-weight: 500;
  font-size: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-actions { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* Logo strip */
.logo-strip {
  display: block;
  margin: 30px auto 0;
  width: min(860px, 100%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: logoMarquee 36s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}
.logo-item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.82);
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.logo-item:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.24); }
.logo-strip:hover .logo-track { animation-play-state: paused; }
@keyframes logoMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.3333%, 0, 0); }
}
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

.file-preview-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.file-preview-frame > img,
.file-preview-frame > iframe {
  opacity: 0;
  transition: opacity 0.18s ease;
}
.file-preview-frame.file-loaded > img,
.file-preview-frame.file-loaded > iframe {
  opacity: 1;
}
.file-preview-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 3px solid rgba(16, 89, 196, 0.18);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: fileSpinner 0.8s linear infinite;
  z-index: 2;
}
.file-preview-frame.file-loaded .file-preview-spinner { display: none; }
@keyframes fileSpinner {
  to { transform: rotate(360deg); }
}
.logo-item .file-preview-frame,
.jersey-slide .file-preview-frame {
  width: 100%;
  height: 100%;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s, background 0.18s, opacity 0.18s, box-shadow 0.18s;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(192,57,43,0.35); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 8px 28px rgba(192,57,43,0.45); }
.btn-secondary { background: var(--secondary); color: var(--white); box-shadow: 0 4px 18px rgba(243,156,18,0.3); }
.btn-secondary:hover { background: var(--secondary-dark); }
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost:hover { background: rgba(192,57,43,0.07); }
.btn-muted { background: #eae8e3; color: var(--text); }
.btn-muted:hover { background: #dedad4; }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-small { min-height: 36px; padding: 7px 13px; font-size: 13px; border-radius: var(--radius-xs); }
.btn.disabled, .btn:disabled { opacity: 0.48; pointer-events: none; cursor: not-allowed; }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}
/* CSS-var based stagger (--i set inline) */
.reveal[style*="--i:1"] { transition-delay: 0.11s; }
.reveal[style*="--i:2"] { transition-delay: 0.22s; }
.reveal[style*="--i:3"] { transition-delay: 0.33s; }
.reveal-delay-1 { transition-delay: 0.09s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.27s; }
.reveal-delay-4 { transition-delay: 0.36s; }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 96px 0; }

/* Animated background for white/light sections */
#pendaftaran {
  position: relative;
  overflow: hidden;
}
#pendaftaran::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(192,57,43,0.055) 0%, transparent 46%),
    radial-gradient(circle at 82% 70%, rgba(243,156,18,0.045) 0%, transparent 44%),
    radial-gradient(circle at 50% 90%, rgba(192,57,43,0.03) 0%, transparent 40%);
  animation: sectionOrbs 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
#pendaftaran::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: gridFade 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
#pendaftaran .container { position: relative; z-index: 1; }

@keyframes sectionOrbs {
  0%   { background-position: 0% 0%, 100% 100%, 50% 90%; }
  33%  { background-position: 4% 8%, 96% 92%, 54% 86%; }
  66%  { background-position: -3% 5%, 103% 95%, 47% 93%; }
  100% { background-position: 6% -4%, 94% 104%, 52% 88%; }
}
@keyframes gridFade {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Floating orb blobs — CSS-only, performant */
.section-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.section-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: orbFloat linear infinite;
}
.section-orbs span:nth-child(1) {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(192,57,43,0.09), transparent 70%);
  top: -80px; left: -60px;
  animation-duration: 18s;
  animation-delay: 0s;
  opacity: 1;
  animation: orb1 18s ease-in-out infinite alternate;
}
.section-orbs span:nth-child(2) {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(243,156,18,0.07), transparent 70%);
  top: 40%; right: -80px;
  opacity: 1;
  animation: orb2 22s ease-in-out infinite alternate;
}
.section-orbs span:nth-child(3) {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(192,57,43,0.06), transparent 70%);
  bottom: 60px; left: 35%;
  opacity: 1;
  animation: orb3 16s ease-in-out infinite alternate;
}

@keyframes orb1 {
  0%   { transform: translate(0px, 0px) scale(1); }
  50%  { transform: translate(40px, 60px) scale(1.08); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}
@keyframes orb2 {
  0%   { transform: translate(0px, 0px) scale(1); }
  50%  { transform: translate(-50px, -40px) scale(1.1); }
  100% { transform: translate(20px, 50px) scale(0.92); }
}
@keyframes orb3 {
  0%   { transform: translate(0px, 0px) scale(1); }
  50%  { transform: translate(30px, -30px) scale(1.05); }
  100% { transform: translate(-40px, 20px) scale(1.1); }
}

/* prefers-reduced-motion: matikan semua animasi background */
@media (prefers-reduced-motion: reduce) {
  #pendaftaran::before,
  #pendaftaran::after,
  .section-orbs span { animation: none; }
}

.section-heading { text-align: center; margin-bottom: 48px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--primary);
  opacity: 0.5;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  margin: 10px 0 14px;
  color: var(--text);
}
.section-heading p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
}

/* ═══════════ FORM CARDS ═══════════ */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  border: 1px solid var(--border);
}

/* Registration section layout */
.entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.entry-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.entry-copy p { margin: 0 0 8px; color: var(--text-muted); line-height: 1.6; font-size: 15px; }
.entry-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; align-items: flex-start; }
.entry-form {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.entry-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Section-specific: Registration */
#pendaftaran { background: var(--light); }
.registration-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Info bar above the form */
.info-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.14);
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 500;
}
.info-bar svg { flex-shrink: 0; }

/* ═══════════ DASHBOARD ═══════════ */
.kontingen-page { background: #eef0f4; }
.kontingen-dashboard { padding-top: 118px; min-height: 100vh; }
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.dashboard-head h1 {
  font-family: var(--font-display);
  margin: 6px 0;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.03em;
  font-weight: 800;
}

/* Payment method card */
.payment-method-card {
  width: min(380px, 100%);
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.payment-method-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.payment-method-card-head span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.payment-method-card-head select {
  min-width: 130px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}
.payment-method-card-body {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.payment-method-card-body img {
  width: 78px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #f4f6f8;
}
.payment-method-card-body .file-preview-frame {
  width: 78px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #f4f6f8;
}
.payment-method-card-body strong,
.payment-method-card-body span,
.payment-method-card-body small { display: block; }
.payment-method-card-body strong { color: var(--primary); font-size: 13px; }
.payment-method-card-body span {
  margin-top: 3px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.payment-method-card-body small { color: var(--text-muted); font-weight: 500; font-size: 12px; }
.copy-account-button {
  align-self: center;
  border: 0;
  border-radius: var(--radius-xs);
  padding: 9px 12px;
  background: var(--secondary);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
}
.copy-account-button:hover { background: var(--secondary-dark); }

.status-pill {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(34,160,107,0.1);
  color: var(--success);
  font-weight: 600;
  font-size: 13px;
}
.status-pill.closed { background: rgba(231,76,60,0.1); color: var(--danger); }
.validation-pending { background: rgba(243,156,18,0.14); color: #b66f00; }
.validation-success { background: rgba(34,160,107,0.12); color: var(--success); }
.jersey-cashback-terms {
  max-width: 520px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fffaf0;
  color: var(--text-muted);
}
.jersey-cashback-terms strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 13px;
}
.jersey-cashback-terms ul {
  margin: 0;
  padding-left: 18px;
}
.jersey-cashback-terms li {
  margin: 4px 0;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.payment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
}
.payment-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; }
.payment-card-copy {
  min-width: 0;
}
.payment-form {
  justify-self: end;
}
.payment-breakdown-slot {
  grid-column: 1 / -1;
}
.payment-breakdown {
  width: min(520px, 100%);
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
}
.payment-breakdown h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 15px;
}
.payment-breakdown ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.payment-breakdown li,
.payment-total-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
  font-size: 13px;
}
.payment-breakdown small {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.payment-breakdown strong {
  white-space: nowrap;
}
.payment-total-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-weight: 800;
}
.payment-total-row strong {
  color: var(--primary);
  font-size: 16px;
}

.minimum-info-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 16px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding-left: 16px;
  margin-bottom: 18px;
}
.minimum-info-card h3 { margin: 0 0 4px; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.minimum-info-card p { margin: 0; font-size: 14px; color: var(--text-muted); }
.minimum-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: #eef3ff;
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-display);
  white-space: nowrap;
}
.minimum-note { grid-column: 1 / -1; color: var(--text-muted); font-size: 13px; }
.minimum-complete { border-left-color: var(--success); }
.minimum-complete .minimum-counter { background: #e5f5ed; color: var(--success); }

.payment-form { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; max-width: 100%; }
.payment-form input { max-width: 320px; min-width: 0; }

/* Jersey */
.jersey-preorder-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 38px 40px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 54%, rgba(255,247,239,0.96) 100%);
  border-color: rgba(192,57,43,0.13);
  box-shadow: 0 18px 54px rgba(28,32,56,0.12);
}
.jersey-preorder-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.jersey-section { padding: 72px 0 0; }
.jersey-section + .section { padding-top: 48px; }
.jersey-preorder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: center;
}
.jersey-preorder-copy {
  max-width: 520px;
}
.jersey-preorder-copy h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
  margin-bottom: 12px;
}
.jersey-preorder-copy p {
  max-width: 38rem;
  font-size: 16px;
}
.jersey-preorder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.jersey-preorder-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: var(--radius-xs);
  background: #f7ece8;
  color: var(--primary-dark);
  font-weight: 800;
}
.jersey-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.jersey-media {
  min-width: 0;
}
.jersey-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--white);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(192,57,43,0.12);
  box-shadow: 0 14px 36px rgba(28,32,56,0.13);
}
.jersey-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.38s ease;
}
.jersey-slide.active { opacity: 1; z-index: 1; }
.jersey-slide .file-preview-frame {
  padding: clamp(18px, 4vw, 34px);
  background: var(--white);
  overflow: hidden;
}
.jersey-slide img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0;
  background: var(--white);
}
.jersey-empty-photo { display: grid; place-items: center; color: var(--text-muted); font-weight: 600; }
.jersey-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.jersey-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); transition: background 0.2s; }
.jersey-dots span.active { background: var(--primary); }
.jersey-order-entry { margin-top: 0; }
.jersey-preview-large { width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius-sm); }
.jersey-items { display: grid; gap: 12px; }
.jersey-item-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(190px, 1.3fr) minmax(110px, .7fr) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f9f8f5;
}
.jersey-total {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: #e5f5ed;
  color: var(--success);
  font-weight: 700;
}
.jersey-price-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.jersey-price-breakdown span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.06);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}
.jersey-extra-price-info {
  display: grid;
  gap: 8px;
  margin: -4px 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fffaf0;
}
.jersey-extra-price-info strong {
  color: var(--text);
  font-size: 13px;
}
.jersey-extra-price-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jersey-extra-price-info span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}
.jersey-bank-card { display: flex; justify-content: space-between; gap: 12px; align-items: center; }

/* ═══════════ TABLE / TOOLBAR ═══════════ */
.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.table-toolbar h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); }
.data-table { width: 100%; border-collapse: collapse; min-width: 820px; }
.data-table th, .data-table td { padding: 13px 12px; border-bottom: 1px solid var(--border); text-align: left; font-size: 14px; }
.data-table th { background: #f5f4f0; color: var(--text-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.data-table tr:last-child td { border-bottom: 0; }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.empty { text-align: center; color: var(--text-muted); padding: 28px; font-size: 15px; }

/* ═══════════ MODALS ═══════════ */
.wide-modal { width: min(880px, 100%); text-align: left; }
.peserta-modal {
  width: min(880px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  overflow: auto;
  padding: 24px;
  border-radius: var(--radius);
}
.peserta-modal h3 {
  margin: 0 40px 16px 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.peserta-modal .field { margin: 0; gap: 6px; }
.peserta-modal-grid { gap: 14px; margin-bottom: 14px; }
.peserta-modal input, .peserta-modal select { min-height: 42px; padding: 9px 13px; }
.modal-actions {
  position: sticky;
  bottom: -24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), var(--white) 30%);
  padding-top: 14px;
  margin-top: 10px;
}

/* Steps indicator */
.steps-indicator { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 32px; }
.step-dot {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
}
.step-dot.active { color: var(--primary); }
.step-line { width: 80px; height: 2px; background: var(--border-strong); border-radius: 1px; }

/* ═══════════ FORMS ═══════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; font-weight: 600; font-size: 14px; color: var(--text); }
input, select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font: inherit;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
}
textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font: inherit;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.error { min-height: 17px; color: var(--danger); font-size: 12px; font-weight: 500; }
.right { justify-content: flex-end; margin-top: 22px; }
.split { justify-content: space-between; margin-top: 20px; }
.info { color: var(--text-muted); margin-top: 0; font-size: 14px; line-height: 1.55; }
.actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.address-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}
.address-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.address-card .right { margin-top: 14px; }
.address-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(243,156,18,0.2);
  border-radius: var(--radius-sm);
  background: #fffaf0;
  color: #8a5a00;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.seni-members-fields {
  display: grid;
  gap: 14px;
  margin: 4px 0 16px;
}
.seni-members-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fffaf0;
  border: 1px solid rgba(243,156,18,0.22);
}
.seni-members-head strong {
  color: var(--text);
  font-size: 14px;
}
.seni-members-head span {
  color: #8a5a00;
  font-size: 13px;
  font-weight: 600;
}
.seni-member-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fafaf8;
}
.seni-member-card h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

/* ═══════════ PESERTA CARD ═══════════ */
.peserta-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin: 18px 0;
  background: #fafaf8;
  transition: border-color 0.2s;
}
.peserta-card:focus-within { border-color: var(--primary); }
.peserta-card header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.peserta-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.remove-peserta { background: #fef0ef; color: var(--danger); padding: 8px 14px; min-height: 36px; border-radius: var(--radius-xs); border: 1px solid rgba(231,76,60,0.2); }
.remove-peserta:hover { background: #fde0de; }
.radio-row { display: flex; gap: 20px; flex-wrap: wrap; padding: 8px 0; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14px; cursor: pointer; }
.radio-row input { width: auto; cursor: pointer; }
.conditional { padding-top: 12px; }

/* ═══════════ CONTACT SECTION ═══════════ */
.contact-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(192,57,43,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(243,156,18,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.contact-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-wrap .eyebrow { color: var(--secondary-light); }
.contact-wrap .eyebrow::before, .contact-wrap .eyebrow::after { background: var(--secondary); }
.contact-wrap h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.025em;
  margin: 10px 0 10px;
  color: var(--white);
}
.contact-wrap p { color: rgba(255,255,255,0.68); font-size: 16px; line-height: 1.6; margin: 0; }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: #080910;
  color: rgba(255,255,255,0.5);
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.footer-content a { color: rgba(255,255,255,0.65); transition: color 0.18s; }
.footer-content a:hover { color: var(--secondary-light); }

/* ═══════════ MODAL ═══════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 16px;
}
.modal[hidden] { display: none; }
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  width: min(460px, 100%);
  text-align: center;
  animation: modalIn 0.25s ease both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: none; }
}
.confirm-modal { text-align: left; }
.confirm-modal h3 { margin: 0 36px 10px 0; color: var(--text); font-family: var(--font-display); font-weight: 700; }
.confirm-modal p { margin: 0 0 22px; color: var(--text-muted); line-height: 1.6; }
.payment-preview-modal,
.modal-box.payment-proof-box {
  display: flex;
  flex-direction: column;
  width: min(1100px, 100%);
  height: min(860px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  text-align: left;
}
.payment-preview-modal h3,
.payment-proof-box .modal-head {
  flex: 0 0 auto;
}
.payment-proof-box .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-right: 42px;
}
.payment-proof-box .modal-head h2 { margin: 0; }
.payment-preview-body {
  display: grid;
  place-items: center;
  height: min(72vh, 680px);
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f4f6f8;
}
.payment-preview-modal .payment-preview-body,
.payment-proof-box .payment-preview-body {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}
.payment-preview-body .file-preview-frame { width: 100%; height: 100%; }
.payment-preview-body img, .payment-preview-body iframe { width: 100%; height: 100%; border: 0; object-fit: contain; }
.payment-preview-body.image-preview {
  align-items: start;
  height: min(82vh, 820px);
  overflow: auto;
  padding: 12px;
}
.payment-preview-modal .payment-preview-body.image-preview,
.payment-proof-box .payment-preview-body.image-preview {
  align-items: start;
  justify-items: center;
  height: auto;
}
.payment-preview-body.image-preview .file-preview-frame {
  width: auto;
  min-width: min(100%, 720px);
  max-width: 100%;
  min-height: 320px;
  height: auto;
  overflow: visible;
}
.payment-preview-body.image-preview img {
  width: auto;
  min-width: min(100%, 720px);
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.payment-preview-body.pdf-preview iframe {
  width: 100%;
  height: 100%;
}

/* Handbook */
.handbook-modal {
  z-index: 90;
  padding: 12px;
  background: rgba(3, 8, 20, 0.88);
  backdrop-filter: blur(8px);
}
.handbook-box {
  width: min(90vw, 1120px);
  height: min(82dvh, 660px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #0c1829;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.handbook-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  color: var(--white);
  background: linear-gradient(90deg, #1059c4, #1a3a9e);
}
.handbook-head h3 {
  grid-column: 2;
  margin: 0;
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
}
.handbook-close {
  grid-column: 3;
  position: static;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  border: 0;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s;
}
.handbook-close:hover { background: rgba(255,255,255,0.25); }
.handbook-viewer {
  width: calc(100% - 32px);
  height: calc(100% - 16px);
  margin: 16px 16px 0;
  border-radius: var(--radius-sm);
  background: #2a2a2a;
}
.handbook-box iframe {
  width: calc(100% - 32px);
  height: calc(100% - 16px);
  margin: 16px 16px 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: #2a2a2a;
}
.handbook-viewer iframe {
  width: 100%;
  height: 100%;
  margin: 0;
}
.handbook-foot {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px 22px 16px;
}
.handbook-foot .btn { min-height: 42px; padding: 9px 18px; }
.handbook-box, .peserta-modal { scrollbar-width: none; -ms-overflow-style: none; }
.handbook-box::-webkit-scrollbar, .peserta-modal::-webkit-scrollbar { display: none; }

.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: #f0ede8;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.18s;
  line-height: 1;
}
.modal-close:hover { background: var(--border); }

/* Toast */
.toast {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 120;
  background: var(--white);
  color: var(--text);
  padding: 16px 22px 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  max-width: min(520px, calc(100vw - 40px));
  font-size: 15px;
  font-weight: 600;
  border-left: 5px solid var(--danger);
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.toast.success { border-left-color: var(--success); color: #1a6b42; }
.toast[hidden] { display: none; }

.global-file-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 9, 16, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.global-file-loader.active { opacity: 1; }
.global-file-loader[hidden] { display: none; }
.global-file-loader-box {
  width: min(320px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.global-file-loader-box strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
.global-file-loader-box small {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.global-file-loader-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(192,57,43,0.14);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: fileSpinner 0.8s linear infinite;
}

/* ═══════════ FEATURE ROW ═══════════ */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(192,57,43,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.feature-item span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (min-width: 500px) and (max-width: 760px) {
  .feature-row { grid-template-columns: repeat(2, 1fr); }
}

/* Kontingen WhatsApp */
.kontingen-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,0.38);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kontingen-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.45); }
.kontingen-whatsapp svg { width: 22px; height: 22px; flex: 0 0 auto; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 94px 0 96px; }
  .hero h1 { font-size: clamp(34px, 7.2vw, 50px); line-height: 1.02; }
  .hero p { max-width: min(100%, 460px); font-size: 16px; }
  .hero-actions { max-width: 340px; margin: 0 auto; flex-direction: column; }
  .hero-actions .btn { width: 100%; flex: 0 0 auto; }
  .logo-strip { width: min(100%, 460px); }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 36px; }
}

@media (max-width: 760px) {
  .kontingen-whatsapp {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    margin-left: auto !important;
    margin-right: 14px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 10px !important;
    border-radius: 50% !important;
    box-shadow: none !important;
  }
  .kontingen-whatsapp span { display: none; }
  .kontingen-whatsapp svg { width: 22px !important; height: 22px !important; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
  }
  .nav-menu a { padding: 10px 14px; border-radius: var(--radius-xs); }
  .navbar.open .nav-menu { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-card { padding: 20px; }
  .entry-grid, .dashboard-head { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; }
  .address-card { grid-template-columns: 1fr; gap: 12px; }
  .seni-members-head { align-items: flex-start; flex-direction: column; }
  .payment-method-card { width: 100%; }
  .payment-method-card-body { grid-template-columns: 68px minmax(0, 1fr); }
  .payment-method-card-body .copy-account-button { grid-column: 2; justify-self: start; margin-top: 4px; }
  .table-toolbar { flex-direction: column; align-items: stretch; }
  .entry-actions { justify-content: stretch; }
  .entry-actions .btn { width: 100%; }
  .jersey-copy-actions .btn { width: 100%; }
  .split, .contact-wrap { align-items: stretch; flex-direction: column; gap: 24px; }
  .split > span { display: flex; flex-wrap: wrap; gap: 12px; }
  .step-line { width: 40px; }
  .brand { min-width: 0; }
  .hero { min-height: auto; display: block; }
  .hero-mark { display: none; }
  .hero-content { width: 100%; max-width: 100%; padding: 92px 18px 58px; margin: 0; }
  .hero h1 { display: block; max-width: 12ch; font-size: clamp(29px, 8.5vw, 40px); line-height: 1.08; margin-left: auto; margin-right: auto; }
  .hero p { display: block; max-width: 32ch; font-size: 14px; line-height: 1.55; margin-left: auto; margin-right: auto; }
  .hero-period { display: flex; justify-content: center; max-width: 32ch; padding: 9px 14px; font-size: 13px; line-height: 1.45; }
  .hero-actions { width: 100%; max-width: 300px; margin: 0 auto; }
  .hero-actions .btn { max-width: none; }
  .logo-strip { width: 100%; margin-top: 18px; }
  .logo-item { width: 52px; height: 52px; padding: 6px; }
  .modal { align-items: start; padding: 8px; }
  .peserta-modal { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); padding: 14px; border-radius: var(--radius-sm); }
  .peserta-modal h3 { font-size: 18px; margin-bottom: 12px; }
  .peserta-modal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 10px; }
  .peserta-modal .field { font-size: 13px; gap: 4px; }
  .peserta-modal input, .peserta-modal select { min-height: 38px; padding: 7px 10px; font-size: 14px; }
  .peserta-modal .modal-close { top: 8px; right: 10px; }
  .minimum-info-card { grid-template-columns: 1fr; }
  .minimum-counter { justify-self: start; }
  .payment-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .payment-form {
    width: 100%;
    justify-self: stretch;
    justify-content: stretch;
  }
  .payment-form input,
  .payment-form .btn {
    width: 100%;
    max-width: none;
  }
  .payment-form input {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    background: #fff;
  }
  .payment-breakdown {
    width: 100%;
  }
  .payment-breakdown li,
  .payment-total-row {
    gap: 10px;
  }
  .handbook-box { width: calc(100vw - 24px); height: min(78dvh, 600px); }
  .handbook-head { padding: 10px 14px; }
  .handbook-head h3 { font-size: 15px; }
  .handbook-close { width: 32px; height: 32px; }
  .handbook-viewer { width: calc(100% - 16px); height: calc(100% - 8px); margin: 8px 8px 0; }
  .handbook-box iframe { width: calc(100% - 16px); height: calc(100% - 8px); margin: 8px 8px 0; }
  .handbook-viewer iframe { width: 100%; height: 100%; margin: 0; }
  .handbook-foot { padding: 8px; flex-direction: column; }
  .handbook-foot .btn { width: 100%; min-height: 40px; }
  .modal-actions { bottom: -14px; }
  .jersey-preorder-card { padding: 24px 20px; }
  .jersey-preorder-layout, .jersey-item-row { grid-template-columns: 1fr; gap: 24px; }
  .jersey-preorder-copy h3 { font-size: 26px; }
  .jersey-carousel { aspect-ratio: 4 / 3; }
  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 28px; }
}

@media (max-width: 420px) {
  .navbar { padding: 14px 16px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 11px; }
  .hero-content { padding-top: 84px; padding-bottom: 48px; }
  .badge { font-size: 11px; padding: 5px 12px; }
  .hero h1 { max-width: 12ch; font-size: clamp(26px, 8vw, 32px); }
  .hero p { font-size: 14px; margin-bottom: 16px; }
  .hero-actions .btn { max-width: none; width: 100%; }
  .peserta-modal-grid { grid-template-columns: 1fr; }
  .container { width: calc(100% - 28px); }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero-content { padding-top: 88px; padding-bottom: 82px; }
  .hero h1 { max-width: 720px; font-size: clamp(40px, 5.4vw, 64px); }
  .hero p { margin-bottom: 16px; font-size: 16px; line-height: 1.5; }
  .hero-period { margin-bottom: 14px !important; padding: 9px 16px; }
  .logo-strip { margin-top: 24px; }
  .logo-item { width: 58px; height: 58px; }
}

@media (max-height: 700px) and (max-width: 760px) {
  .hero-content { padding-top: 78px; padding-bottom: 56px; }
  .badge { display: none; }
  .hero h1 { margin-top: 0; margin-bottom: 12px; font-size: clamp(26px, 8vw, 32px); }
  .hero p { margin-bottom: 12px; font-size: 13px; line-height: 1.45; }
  .hero-period { margin-bottom: 12px !important; padding: 8px 12px; font-size: 12px; }
  .hero-actions { max-width: 260px; gap: 8px; }
  .hero-actions .btn { min-height: 42px; padding: 9px 14px; }
  .logo-strip { margin-top: 16px; }
  .logo-item { width: 50px; height: 50px; }
}

.jersey-bank-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

@media (max-width: 760px) {
  .jersey-bank-card {
    grid-template-columns: 68px minmax(0, 1fr) auto;
  }
}
