@import url("./style.css");
@import url("./subpage-unified.css");

:root {
  --gray-300: #b8b8b8;
}

.info-box.note {
  background: var(--red-light);
  border-left: 3px solid var(--red);
  color: var(--red-dark);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.compare-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: box-shadow 0.2s;
}

.compare-card:hover {
  box-shadow: var(--shadow-md);
}

.compare-card.featured {
  border: 1.5px solid var(--red);
  background: var(--red-light);
}

.cc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.compare-card.featured .cc-icon {
  background: var(--red-mid);
}

.cc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.cc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: auto;
  background: var(--gray-50);
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
  white-space: nowrap;
}

.compare-card.featured .cc-tag {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.cc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.cc-list li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
  margin-top: 6px;
}

.compare-card.featured .cc-list li .dot {
  background: var(--red);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 16px;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  font-family: var(--font-display);
  flex-shrink: 0;
  z-index: 1;
}

.step-item.active .step-num {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 0 0 4px var(--red-mid);
}

.step-line {
  flex: 1;
  width: 2px;
  background: var(--gray-100);
  margin: 4px 0;
  min-height: 20px;
}

.step-item:last-child .step-line {
  display: none;
}

.step-right {
  padding: 6px 0 24px;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.agen-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.agen-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: box-shadow 0.15s;
}

.agen-item:hover {
  box-shadow: var(--shadow-sm);
}

.agen-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.agen-body {
  flex: 1;
}

.agen-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.agen-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.agen-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.agen-status.ok {
  background: #f0fff4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.agen-status.warn {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.lpk-banner {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.lpk-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red);
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
}

.lpk-body {
  flex: 1;
  min-width: 160px;
}

.lpk-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 2px;
}

.lpk-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.lpk-loc {
  font-size: 13px;
  color: var(--gray-600);
}

.lpk-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
  white-space: nowrap;
  flex-shrink: 0;
}

.lpk-btn:hover {
  background: var(--red-dark);
  transform: scale(1.03);
}

.fase-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fase-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fase-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}

.fase-card.red .fase-header {
  background: var(--red-light);
  border-bottom-color: var(--red-mid);
}

.fase-card.yellow .fase-header {
  background: #fffbeb;
  border-bottom-color: #fde68a;
}

.fase-card.green .fase-header {
  background: #f0fff4;
  border-bottom-color: #bbf7d0;
}

.fase-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.fase-card.red .fase-num {
  background: var(--red);
  color: white;
}

.fase-card.yellow .fase-num {
  background: #f59e0b;
  color: white;
}

.fase-card.green .fase-num {
  background: #16a34a;
  color: white;
}

.fase-info {
  flex: 1;
}

.fase-phase {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}

.fase-card.red .fase-phase {
  color: var(--red-dark);
}

.fase-card.yellow .fase-phase {
  color: #92400e;
}

.fase-card.green .fase-phase {
  color: #166534;
}

.fase-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.fase-total {
  text-align: right;
  flex-shrink: 0;
}

.fase-total-num {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.fase-card.red .fase-total-num {
  color: var(--red);
}

.fase-card.yellow .fase-total-num {
  color: #d97706;
}

.fase-card.green .fase-total-num {
  color: #16a34a;
}

.fase-total-lbl {
  font-size: 11px;
  color: var(--gray-400);
}

.fase-rows {
  padding: 4px 0 8px;
}

.fase-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 20px;
  border-bottom: 1px solid var(--gray-50);
  gap: 12px;
}

.fase-row:last-child {
  border-bottom: none;
}

.fase-row-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.fase-row-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 1px;
}

.fase-row-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  text-align: right;
}

.fase-row-price.optional {
  color: var(--gray-400);
  font-weight: 500;
}

.fase-row-price.free {
  color: #16a34a;
}

.grand-total {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-bottom: 20px;
}

.gt-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.gt-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.gt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.gt-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gt-row .lbl {
  color: rgba(255, 255, 255, 0.6);
}

.gt-row .val {
  font-weight: 600;
  color: white;
}

.gt-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}

.gt-final {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gt-final-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.gt-final-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: white;
}

.gt-final-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.gt-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-top: 6px;
  line-height: 1.6;
}

.talang-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 14px;
}

.talang-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.talang-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.talang-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.talang-sub {
  font-size: 12px;
  color: var(--gray-600);
}

.talang-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.talang-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-50);
}

.talang-row:last-child {
  border-bottom: none;
}

.talang-row .lbl {
  color: var(--gray-600);
}

.talang-row .val {
  font-weight: 600;
  color: var(--black);
}

.shock-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shock-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.shock-card:hover {
  box-shadow: var(--shadow-md);
}

.shock-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px 14px;
}

.shock-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.shock-card.type-red .shock-icon {
  background: var(--red-mid);
}

.shock-card.type-yellow .shock-icon {
  background: #fef9c3;
}

.shock-card.type-green .shock-icon {
  background: #dcfce7;
}

.shock-meta {
  flex: 1;
}

.shock-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 9px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.shock-card.type-red .shock-tag {
  background: var(--red-light);
  color: var(--red-dark);
  border: 1px solid var(--red-mid);
}

.shock-card.type-yellow .shock-tag {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fde68a;
}

.shock-card.type-green .shock-tag {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.shock-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}

.shock-body {
  padding: 0 20px 18px;
}

.shock-reality {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 10px;
}

.shock-quote {
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid;
}

.shock-card.type-red .shock-quote {
  background: var(--red-light);
  border-left-color: var(--red);
  color: #7a0010;
}

.shock-card.type-yellow .shock-quote {
  background: #fffbeb;
  border-left-color: #f59e0b;
  color: #78350f;
}

.shock-card.type-green .shock-quote {
  background: #f0fff4;
  border-left-color: #22c55e;
  color: #14532d;
}

.shock-tip {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.shock-tip .tip-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  flex-shrink: 0;
  padding-top: 2px;
}

.compare-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.c2-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.c2-card.dark {
  background: var(--black);
  border-color: var(--black);
}

.c2-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.c2-card:not(.dark) .c2-label {
  color: var(--gray-400);
}

.c2-card.dark .c2-label {
  color: rgba(255, 255, 255, 0.35);
}

.c2-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.c2-card:not(.dark) .c2-title {
  color: var(--black);
}

.c2-card.dark .c2-title {
  color: white;
}

.c2-item {
  padding: 8px 0;
  border-bottom: 1px solid;
}

.c2-card:not(.dark) .c2-item {
  border-color: var(--gray-100);
}

.c2-card.dark .c2-item {
  border-color: rgba(255, 255, 255, 0.07);
}

.c2-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.c2-said {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.c2-card:not(.dark) .c2-said {
  color: var(--black);
}

.c2-card.dark .c2-said {
  color: white;
}

.c2-means {
  font-size: 12px;
}

.c2-card:not(.dark) .c2-means {
  color: var(--gray-400);
}

.c2-card.dark .c2-means {
  color: rgba(255, 255, 255, 0.4);
}

.etika-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.etika-item {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.15s;
}

.etika-item:hover {
  box-shadow: var(--shadow-sm);
}

.etika-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.etika-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.etika-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.kurs-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gray-600);
  box-shadow: var(--shadow-sm);
}

.kurs-banner strong {
  color: var(--black);
  font-weight: 600;
}

.kurs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
}

.biaya-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.biaya-item {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.15s, transform 0.15s;
}

.biaya-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.biaya-item.featured {
  border: 1.5px solid var(--red);
  background: var(--red-light);
}

.biaya-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.biaya-item.featured .biaya-icon {
  background: var(--red-mid);
}

.biaya-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.biaya-note {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
}

.biaya-amount {
  text-align: right;
  flex-shrink: 0;
}

.biaya-jpy {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.biaya-idr {
  font-size: 12px;
  color: var(--gray-400);
  white-space: nowrap;
  margin-top: 2px;
}

.biaya-idr span {
  color: var(--red);
  font-weight: 600;
}

.total-card {
  background: linear-gradient(135deg, #d0021b 0%, #9b0015 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.total-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}

.total-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.total-right {
  text-align: right;
}

.total-jpy {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.total-idr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

.kota-flag {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

.kota-range {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 2px;
}

.kota-idr {
  font-size: 11px;
  color: var(--gray-400);
}

.sisa-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 14px;
}

.sisa-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.sisa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.sisa-row:last-child {
  border-bottom: none;
}

.sisa-row .label {
  color: var(--gray-600);
}

.sisa-row .value {
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

.sisa-row .value .idr {
  font-size: 11px;
  color: var(--gray-400);
  display: block;
}

.sisa-row.total-row .label {
  font-weight: 700;
  color: var(--black);
}

.sisa-row.total-row .value {
  color: var(--red);
  font-size: 16px;
}

@media (max-width: 520px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .cc-header {
    flex-wrap: wrap;
  }

  .cc-tag {
    margin-left: 0;
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .compare-2col {
    grid-template-columns: 1fr;
  }

  .biaya-item {
    grid-template-columns: 38px 1fr;
  }

  .biaya-amount {
    grid-column: 2;
  }

  .total-card {
    flex-direction: column;
    text-align: left;
  }

  .total-right {
    text-align: left;
  }
}

/* ── READABILITY OVERRIDES ── */
.compare-card,
.agen-item,
.fase-card,
.grand-total,
.talang-card,
.shock-card,
.sisa-card,
.total-card,
.biaya-item,
.kota-card {
  line-height: 1.65;
}

.cc-tag,
.agen-status,
.fase-phase,
.lpk-tag,
.gt-label,
.shock-tag,
.kota-tag,
.ki-tag {
  font-size: 12px;
  letter-spacing: 0;
}

.cc-list li,
.agen-desc,
.fase-row-note,
.gt-note,
.talang-sub,
.talang-row,
.shock-desc,
.kota-desc,
.biaya-note,
.sisa-row .value .idr,
.kota-idr {
  font-size: 14px;
}

.cc-title,
.agen-name,
.fase-title,
.lpk-name,
.shock-title,
.talang-title,
.sisa-title,
.kota-name,
.biaya-label {
  font-size: 17px;
}

.fase-row-name,
.fase-row-price,
.gt-row,
.lpk-loc,
.lpk-btn,
.shock-action,
.biaya-jpy,
.sisa-row,
.kota-range {
  font-size: 15px;
}

.fase-total-lbl,
.gt-final-sub {
  font-size: 13px;
}

.info-box {
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.cta-btn-primary {
  font-size: 17px !important;
}

.cta-btn-secondary {
  font-size: 15px !important;
}

@media (max-width: 520px) {
  .agen-item,
  .fase-row,
  .gt-row,
  .talang-row,
  .sisa-row {
    gap: 10px;
  }
}
