/* REGISTRATION PAGE SPECIFIC STYLES */

.page-wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* ── SECTION HEADERS ── */
.sec-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label .label-icon {
  width: 24px;
  height: 24px;
  background: #10B981; /* Green */
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}
.sec-label .label-icon.blue { background: var(--blue); }
.sec-label .label-icon.orange { background: #EA580C; }
.sec-label .label-icon.navy { background: var(--navy); }

.sec-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.sec-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
/* ── BASE SERVICES BANNER ── */
.base-banner {
  background: #F0FDF4; /* Light green bg */
  border: 1.5px solid #D1FAE5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}
.base-banner-title {
  font-size: 14px;
  font-weight: 800;
  color: #059669; /* Green text */
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.base-banner-title .title-icon {
  width: 24px;
  height: 24px;
  color: #F59E0B; /* Orange */
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-base-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
.base-item {
  font-size: 14px;
  color: #064E3B;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.base-item .check-icon {
  width: 18px;
  height: 18px;
  background: #10B981 !important;
  color: #fff !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px;
}
.base-item .check-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .reg-base-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reg-base-grid { grid-template-columns: 1fr; }
}

/* ── PITCH SECTION ── */
.pitch-section {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(27,58,140,0.06);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* Feature cards icon styling */
.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(25, 44, 132, 0.08);
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.step-card {
  border-radius: 12px;
  border: 1.5px solid #E5E7EB;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.step-card-head {
  padding: 14px 18px;
  min-height: 68px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-card-head .step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}
.step-card-body {
  padding: 16px 18px;
  background: #fff;
}
.step-svc {
  font-size: 13px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-svc:last-child { border-bottom: none; }
.step-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.s1 .step-card-head { background: linear-gradient(90deg, #1D66B0, #2563EB); color: #fff; }
.s1 .step-dot { background: var(--blue); }
.s2 .step-card-head { background: linear-gradient(90deg, #5b21b6, #7C3AED); color: #fff; }
.s2 .step-dot { background: #7C3AED; }
.s3 .step-card-head { background: linear-gradient(90deg, #92400e, #D97706); color: #fff; }
.s3 .step-dot { background: #D97706; }

/* ── PACKAGE CAROUSEL ── */
.pkg-carousel-wrap {
  position: relative;
  margin-bottom: 40px;
}
.pkg-carousel {
  overflow: hidden;
  border-radius: 16px;
  background: #F9FAFB;
}
.pkg-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.pkg-card {
  min-width: 100%;
  padding: 32px;
  border-radius: 16px;
  border: 2px solid transparent;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  cursor: default;
}
/* Card themes */
.pkg-card.tier1 { background: linear-gradient(145deg, #EFF6FF, #DBEAFE); border-color: #93C5FD; }
.pkg-card.tier2 { background: linear-gradient(145deg, #F5F3FF, #EDE9FE); border-color: #C4B5FD; }
.pkg-card.tier3 { background: linear-gradient(145deg, #FFF7ED, #FED7AA); border-color: #FCA16A; }
.pkg-card.tier4 { background: linear-gradient(145deg, #FEF2F2, #FECACA); border-color: #FCA5A5; }
.pkg-card.enterprise { background: linear-gradient(145deg, #0D0D1A, #1B3A8C); border-color: #2563EB; }

/* Watermark number */
.pkg-card::after {
  content: attr(data-num);
  position: absolute;
  right: -10px; top: -10px;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.06;
  color: #000;
  pointer-events: none;
  letter-spacing: -4px;
}
.pkg-card.enterprise::after { color: #fff; opacity: 0.04; }

.pkg-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.tier1 .pkg-card-badge  { background: #2563EB; color: #fff; }
.tier2 .pkg-card-badge  { background: #7C3AED; color: #fff; }
.tier3 .pkg-card-badge  { background: #D97706; color: #fff; }
.tier4 .pkg-card-badge  { background: #DC2626; color: #fff; }
.enterprise .pkg-card-badge { background: linear-gradient(90deg,#2563EB,#DC2626); color: #fff; }

.pkg-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}
.enterprise .pkg-card-title { color: #fff; }

.pkg-card-desc {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--text-muted);
  max-width: 500px;
}
.enterprise .pkg-card-desc { color: rgba(255,255,255,0.6); }

/* Quota rows */
.quota-rows { display: flex; flex-direction: column; gap: 12px; }
.quota-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 12px 16px;
}
.enterprise .quota-row { background: rgba(255,255,255,0.08); }

.qr-step-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}
.qr-s1 .qr-step-badge { background: #2563EB; color: #fff; }
.qr-s2 .qr-step-badge { background: #7C3AED; color: #fff; }
.qr-s3 .qr-step-badge { background: #D97706; color: #fff; }

.qr-tokens { display: flex; gap: 6px; align-items: center; }
.tok-filled {
  width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.tok-s1 { background: #2563EB; }
.tok-s2 { background: #7C3AED; }
.tok-s3 { background: #D97706; }
.tok-empty {
  width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0;
  background: rgba(0,0,0,0.06);
  border: 1.5px dashed rgba(0,0,0,0.12);
}
.qr-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 6px;
}
.enterprise .qr-label { color: rgba(255,255,255,0.5); }
.qr-none { font-size: 13px; color: #9CA3AF; font-style: italic; }

.pkg-services {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-chip {
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.06);
}
.enterprise .svc-chip { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.15); }

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--navy);
  z-index: 10;
  transition: all 0.2s;
  outline: none;
}
.carousel-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.nav-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.nav-dot.active { width: 28px; border-radius: 5px; background: var(--navy); }

.carousel-counter {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── FORM SECTION ── */
.form-section {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  margin: 0 auto 48px;
  box-shadow: 0 4px 24px rgba(27,58,140,0.08);
}
.form-header-badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.form-group label .req { color: var(--red); margin-left: 2px; }

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px; border: 1.5px solid #E5E7EB;
  outline: none; font-family: inherit; font-size: 14px; transition: all 0.2s; background: #fff;
  box-sizing: border-box;
}
.form-group input[type="date"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 47px;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box !important;
  overflow: hidden;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29, 102, 176, 0.1);
}

.divider { border: none; border-top: 1.5px solid #F3F4F6; margin: 32px 0; }

.interest-section { margin-bottom: 32px; }
.interest-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }

.step-interest-block { margin-bottom: 16px; border-radius: 12px; border: 1.5px solid #E5E7EB; overflow: hidden; }
.step-interest-head { padding: 12px 18px; font-size: 14px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; }
.step-interest-head.s1 { background: var(--blue); }
.step-interest-head.s2 { background: #7C3AED; }
.step-interest-head.s3 { background: #EA580C; }
.step-interest-body { padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; background: #FAFAFA; }

.cb-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); cursor: pointer; }
.cb-item input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--blue); margin-top: 2px; }

.pdpa-box {
  background: #FFFBEB; border: 1px solid #FDE68A; padding: 24px; border-radius: 12px; margin-bottom: 32px;
}
.pdpa-box p { font-size: 14px; color: #78350F; line-height: 1.7; }
.pdpa-consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 14px; }
.pdpa-consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--navy); }
.pdpa-consent label { cursor: pointer; font-size: 14px; color: #374151; line-height: 1.5; }

.btn-submit {
  background: var(--navy); color: #fff; padding: 18px 48px; border: none; border-radius: 12px;
  font-size: 17px; font-weight: 800; cursor: pointer; transition: all 0.2s; width: 100%;
}
.btn-submit:hover { background: #0f1f5e; box-shadow: 0 4px 12px rgba(25,44,132,0.2); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.submit-note { margin-top: 16px; font-size: 13px; color: var(--text-muted); text-align: center; }

.success-msg { text-align: center; padding: 60px 20px; display: none; }

@media (max-width: 768px) {
  .pitch-section, .form-section { padding: 32px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .step-interest-body { grid-template-columns: 1fr; }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow.prev { left: 4px; }
  .carousel-arrow.next { right: 4px; }
  .pkg-card { padding: 24px 16px; }
  .quota-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .qr-tokens { flex-wrap: wrap; }
  .qr-label { margin-left: 0; }
}
