* { margin: 0; padding: 0; box-sizing: border-box; }

.calculator-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  text-align: center;
  font-size: 32px;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.subtitle {
  text-align: center;
  color: #6a6a6a;
  font-size: 15px;
  margin-bottom: 20px;
}
.terms-banner {
  background: rgba(196, 152, 74, 0.05);
  border: 1px solid rgba(196, 152, 74, 0.15);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 28px;
  text-align: center;
}
.terms-banner p {
  font-size: 13px;
  color: #6a6a6a;
  line-height: 1.6;
  margin: 0;
}
.terms-banner strong {
  color: #0a0a0a;
}

/* Top controls */
.top-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.reset-btn {
  padding: 8px 20px;
  border: 1px solid #aa3333;
  background: transparent;
  color: #cc5555;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}
.reset-btn:hover {
  background: #aa3333;
  color: #ffffff;
}
#book-call-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,152,74,0.5);
}
#book-call-btn:active {
  transform: translateY(0);
}

/* One-time mode */
.onetime-btn {
  border-color: #c4984a !important;
  color: #c4984a !important;
}
.onetime-btn.active {
  background: linear-gradient(135deg, #8a5a1a, #db8a2a) !important;
  border-color: #db8a2a !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(219, 138, 42, 0.35) !important;
}
.onetime-banner {
  background: rgba(219, 138, 42, 0.08);
  border: 1px solid rgba(219, 138, 42, 0.25);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 28px;
  text-align: center;
}
.onetime-banner p {
  font-size: 13px;
  color: #cc8800;
  line-height: 1.6;
  margin: 0;
}
.onetime-banner strong {
  color: #eea030;
}
.onetime-disabled {
  opacity: 0.4;
  pointer-events: none;
  position: relative;
}
.onetime-disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #cc8800;
  transform: translateY(-50%);
}
.onetime-disabled .item-name,
.onetime-disabled .item-price-tag,
.onetime-disabled h6,
.onetime-disabled .pkg-name,
.onetime-disabled .pkg-items {
  text-decoration: line-through;
  text-decoration-color: #cc8800;
}

/* Term selector */
.term-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.term-btn {
  padding: 12px 28px;
  border: 1px solid #e5e5e0;
  background: transparent;
  color: #6a6a6a;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
}
.term-btn:hover {
  border-color: #c4984a;
  color: #0a0a0a;
}
.term-btn.active {
  background: #c4984a;
  border-color: #c4984a;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(196, 152, 74, 0.35);
}

/* Sticky summary bar */
.summary-bar {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: #ffffff;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  padding: 18px 24px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.summary-fade {
  position: sticky;
  top: 110px;
  z-index: 99;
  height: 60px;
  margin-bottom: -20px;
  background: linear-gradient(to bottom, #f8f8f6 0%, #f8f8f6cc 40%, #f8f8f655 70%, transparent 100%);
  pointer-events: none;
}
.summary-left { display: flex; flex-direction: column; gap: 2px; }
.summary-label { font-size: 12px; color: #8a8a8a; text-transform: uppercase; letter-spacing: 1px; }
.summary-monthly {
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.1;
}
.summary-monthly .per { font-size: 16px; color: #8a8a8a; font-weight: 400; }
.summary-right { text-align: right; display: flex; flex-direction: column; gap: 4px; }
.summary-line { font-size: 14px; color: #6a6a6a; }
.summary-line strong { color: #0a0a0a; }
.summary-savings { color: #44cc88; font-weight: 600; font-size: 15px; }
.summary-discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a6a3a, #22aa55);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  margin-top: 6px;
  box-shadow: 0 2px 10px rgba(34, 170, 85, 0.35);
  letter-spacing: 0.5px;
  animation: discountPulse 2s ease-in-out infinite;
}
.recommended-tag {
  display: inline-block;
  background: linear-gradient(135deg, #b8860b, #daa520);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 1px 6px rgba(218, 165, 32, 0.3);
}
@keyframes discountPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(34, 170, 85, 0.35); }
  50% { box-shadow: 0 4px 20px rgba(34, 170, 85, 0.55); }
}

/* Category sections */
.category { margin-bottom: 28px; }
.category-header {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e0;
  margin-bottom: 16px;
}

/* Item rows */
.item-row {
  background: #ffffff;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 10px;
  transition: border-color 0.25s, background 0.25s;
}
.item-row.active {
  border-color: #c4984a;
  background: #faf8f4;
}
.item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.item-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-price-tag {
  font-size: 13px;
  color: #8a8a8a;
}
.item-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.item-cost {
  font-size: 18px;
  font-weight: 700;
  color: #c4984a;
  min-width: 80px;
  text-align: right;
  white-space: nowrap;
}
.item-cost.zero { color: #b0b0b0; }

/* Info button */
.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #d4d4d0;
  background: transparent;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  font-family: Georgia, serif;
  font-style: italic;
  line-height: 1;
  padding: 0;
}
.info-btn:hover {
  border-color: #c4984a;
  color: #c4984a;
  background: rgba(196, 152, 74, 0.1);
}
.info-btn.open {
  border-color: #c4984a;
  color: #ffffff;
  background: #c4984a;
}

/* Info panel */
.info-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background: #f0f0ee;
  border-radius: 4px;
  margin-top: 0;
}
.info-panel.open {
  max-height: 800px;
  opacity: 1;
  padding: 16px 18px;
  margin-top: 12px;
  border: 1px solid #e5e5e0;
}
.info-panel .ip-section {
  margin-bottom: 12px;
}
.info-panel .ip-section:last-child { margin-bottom: 0; }
.ip-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #c4984a;
  margin-bottom: 5px;
}
.ip-text {
  font-size: 13px;
  color: #6a6a6a;
  line-height: 1.55;
}
.ip-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ip-spec-tag {
  display: inline-block;
  background: rgba(196, 152, 74, 0.08);
  border: 1px solid rgba(196, 152, 74, 0.15);
  color: #8a6a2a;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
}
.ip-use-list {
  list-style: none;
  padding: 0;
}
.ip-use-list li {
  font-size: 13px;
  color: #6a6a6a;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}
.ip-use-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: #44cc88;
  font-weight: 700;
}

/* Checkbox styling */
.check-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.check-wrap input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.check-box {
  width: 22px;
  height: 22px;
  border: 2px solid #d4d4d0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.check-wrap input:checked + .check-box {
  background: #c4984a;
  border-color: #c4984a;
}
.check-box::after {
  content: '\2713';
  color: white;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.15s;
}
.check-wrap input:checked + .check-box::after { opacity: 1; }

/* Slider styling */
.slider-row {
  margin-top: 10px;
  display: none;
}
.item-row.active .slider-row { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }
.slider-wrap {
  flex: 1;
  position: relative;
  min-width: 0;
}
.slider-wrap input[type="range"] { width: 100%; display: block; }
.slider-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 11px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  pointer-events: none;
}
.slider-ticks span {
  width: 1px;
  height: 6px;
  background: #d4d4d0;
}
.slider-ticks span:first-child,
.slider-ticks span:last-child {
  background: #b0b0b0;
  height: 8px;
}
.slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 32px;
  background: transparent;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.slider-row input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
  background: #e5e5e0;
  cursor: pointer;
}
.slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c4984a;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(196,152,74,0.35);
  border: 2px solid #ffffff;
  margin-top: -7px;
  position: relative;
}
.slider-row input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  box-shadow: 0 2px 12px rgba(196,152,74,0.5);
}
.slider-row input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 4px;
  background: #e5e5e0;
  cursor: pointer;
}
.slider-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c4984a;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(196,152,74,0.35);
  border: 2px solid #ffffff;
}
.slider-row input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 4px;
  background: #c4984a;
}
.slider-val {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 32px;
  margin-right: 8px;
}
.slider-note { display: none; }
.discount-tag {
  font-size: 11px;
  color: #44cc88;
  background: rgba(68, 204, 136, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Two-option selector */
.option-selector { display: flex; gap: 8px; margin-top: 10px; }
.opt-btn {
  padding: 8px 16px;
  border: 1px solid #e5e5e0;
  background: transparent;
  color: #6a6a6a;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.opt-btn:hover { border-color: #c4984a; }
.opt-btn.active { background: #c4984a; border-color: #c4984a; color: #ffffff; }

/* Ad spend input */
.adspend-row { margin-top: 10px; display: none; align-items: center; gap: 10px; }
.adspend-row.show { display: flex; }
.adspend-row label { font-size: 13px; color: #8a8a8a; }
.adspend-input {
  width: 140px;
  padding: 8px 12px;
  background: #f8f8f6;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  color: #0a0a0a;
  font-size: 15px;
  font-family: inherit;
}
.adspend-input:focus { outline: none; border-color: #c4984a; }

.constraint-note { font-size: 12px; color: #aa6644; margin-top: 4px; }

/* Volume discount info */
.volume-info {
  background: #ffffff;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.volume-info h3 { font-size: 16px; color: #0a0a0a; margin-bottom: 10px; }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
}
.tier-item {
  background: #f8f8f6;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  color: #6a6a6a;
  transition: all 0.3s;
}
.tier-item.current {
  border-color: #22aa55;
  background: rgba(34, 170, 85, 0.08);
  color: #0a0a0a;
  box-shadow: 0 0 12px rgba(34, 170, 85, 0.3);
  transform: scale(1.05);
}
.tier-item .tier-pct { color: #44cc88; font-weight: 700; font-size: 15px; display: block; margin-top: 2px; }

/* Bottom summary */
.final-summary {
  background: #ffffff;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  padding: 24px;
  margin-top: 32px;
}
.final-summary h3 { font-size: 18px; color: #0a0a0a; margin-bottom: 14px; }
.monthly-hero {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e0;
}
.monthly-hero-label {
  font-size: 13px;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.monthly-hero-price {
  font-size: 52px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1;
}
.monthly-hero-price .per { font-size: 22px; color: #8a8a8a; font-weight: 400; }
.monthly-hero-was {
  font-size: 16px;
  color: #8a8a8a;
  margin-top: 6px;
  text-decoration: line-through;
}
.volume-discount-banner {
  display: none;
  text-align: center;
  background: linear-gradient(135deg, rgba(34, 170, 85, 0.12), rgba(34, 170, 85, 0.06));
  border: 1px solid rgba(34, 170, 85, 0.3);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.volume-discount-banner.show { display: block; }
.vdb-pct { font-size: 32px; font-weight: 800; color: #44cc88; line-height: 1; }
.vdb-label { font-size: 14px; color: #44cc88; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.vdb-savings { font-size: 15px; color: #88ddaa; margin-top: 6px; }
.line-items { margin-bottom: 16px; }
.line-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: #6a6a6a;
  border-bottom: 1px solid #f0f0ee;
}
.line-item:last-child { border-bottom: none; }
.line-item .li-name { flex: 1; }
.line-item .li-qty { width: 60px; text-align: center; color: #8a8a8a; }
.line-item .li-cost { width: 100px; text-align: right; color: #0a0a0a; font-weight: 600; }
.totals-section { border-top: 1px solid #e5e5e0; padding-top: 14px; }
.total-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 15px; }
.total-row.grand { font-size: 18px; font-weight: 600; color: #6a6a6a; padding-top: 10px; }
.total-row .label { color: #6a6a6a; }
.total-row .value { color: #0a0a0a; font-weight: 600; }
.total-row .value.savings { color: #44cc88; }

/* Pre-made packages */
.packages-section {
  margin-bottom: 32px;
}
.packages-label {
  text-align: center;
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.packages-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.pkg-card {
  min-width: 0;
  min-width: 170px;
  background: #ffffff;
  border: 2px solid #e5e5e0;
  border-radius: 4px;
  padding: 16px 14px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  position: relative;
}
.pkg-card:hover {
  border-color: #c4984a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.pkg-card.active {
  border-color: #c4984a;
  background: #faf8f4;
  box-shadow: 0 4px 20px rgba(196, 152, 74, 0.25);
}
.pkg-card .pkg-name {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
  line-height: 1.2;
}
.pkg-card .pkg-discount {
  display: inline-block;
  background: linear-gradient(135deg, #1a6a3a, #22aa55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.pkg-card .pkg-items {
  font-size: 11px;
  color: #8a8a8a;
  line-height: 1.45;
  margin: 0;
}
.pkg-card .pkg-price {
  font-size: 18px;
  font-weight: 700;
  color: #22aa55;
  margin-top: 10px;
  letter-spacing: -0.5px;
}
.pkg-card .pkg-price span {
  font-size: 12px;
  color: #8a8a8a;
  font-weight: 400;
}
.pkg-card .pkg-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Save retainer form */
.save-retainer {
  background: #ffffff;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  padding: 28px 24px;
  margin-top: 24px;
  text-align: center;
  display: none;
}
.save-retainer.show { display: block; }
.save-retainer h3 {
  font-size: 18px;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.save-retainer .save-sub {
  font-size: 13px;
  color: #8a8a8a;
  margin-bottom: 18px;
}
.save-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.save-form input[type="text"] {
  padding: 12px 16px;
  background: #f8f8f6;
  border: 1px solid #e5e5e0;
  border-radius: 4px;
  color: #0a0a0a;
  font-size: 16px;
  font-family: inherit;
  width: 220px;
  text-align: center;
  letter-spacing: 0.5px;
}
.save-form input[type="text"]:focus {
  outline: none;
  border-color: #c4984a;
}
.save-form input[type="text"]::placeholder {
  color: #b0b0b0;
}
.save-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #1a6a3a, #22aa55);
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.save-btn:hover {
  box-shadow: 0 4px 15px rgba(34, 170, 85, 0.4);
  transform: translateY(-1px);
}
.save-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.save-status {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}
.save-status.success { color: #44cc88; }
.save-status.error { color: #cc4444; }

/* ===== TABLET (768px and below) ===== */
@media (max-width: 768px) {
  h1 { font-size: 26px; }
  .subtitle { font-size: 13px; }
  .terms-banner { padding: 12px 16px; }
  .terms-banner p { font-size: 12px; }

  .term-selector { flex-wrap: wrap; gap: 8px; }
  .term-btn { padding: 10px 20px; font-size: 14px; }
  .reset-btn { padding: 8px 16px; }

  /* Packages: 2 columns + scroll hint */
  .packages-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    overflow-x: visible;
  }
  .pkg-card { min-width: unset; }
  .pkg-card:last-child {
    max-width: 100%;
  }
  .pkg-card .pkg-name { font-size: 13px; }
  .pkg-card .pkg-price { font-size: 16px; }

  .summary-bar { padding: 14px 18px; gap: 8px; }
  .summary-monthly { font-size: 30px; }

  .item-row { padding: 14px 16px; }
  .item-top { flex-wrap: wrap; }
  .item-right { width: 100%; justify-content: flex-end; margin-top: 6px; }
  .item-name { font-size: 14px; }
  .slider-row input[type="range"] { flex: 1; }

  .tier-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .ip-specs { gap: 4px; }
  .info-panel.open { padding: 12px 14px; }

  .final-summary { padding: 20px 16px; }
  .monthly-hero-price { font-size: 42px; }

  .save-form { flex-direction: column; align-items: stretch; }
  .save-form input[type="text"] { width: 100% !important; }
  .save-btn { width: 100%; }
}

/* ===== PHONE (480px and below) ===== */
@media (max-width: 480px) {
  h1 { font-size: 22px; }
  .subtitle { font-size: 12px; margin-bottom: 14px; }
  .terms-banner { padding: 10px 12px; margin-bottom: 20px; }
  .terms-banner p { font-size: 11px; line-height: 1.5; }

  .term-selector { gap: 6px; }
  .term-btn { padding: 8px 14px; font-size: 13px; }
  .reset-btn { padding: 6px 12px; font-size: 12px; }

  /* Packages: single column stack */
  .packages-row {
    grid-template-columns: 1fr;
  }
  .pkg-card:last-child { max-width: 100%; }
  .packages-label { font-size: 12px; }
  .pkg-card { padding: 14px 12px; }
  .pkg-card .pkg-name { font-size: 14px; }
  .pkg-card .pkg-discount { font-size: 11px; }
  .pkg-card .pkg-items { font-size: 11px; }
  .pkg-card .pkg-price { font-size: 18px; }

  .summary-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    top: 5px;
  }
  .summary-right { text-align: left; }
  .summary-monthly { font-size: 26px; }
  .summary-monthly .per { font-size: 13px; }
  .summary-label { font-size: 10px; }
  .summary-line { font-size: 12px; }
  .summary-savings { font-size: 13px; }
  .summary-discount-badge { font-size: 12px; padding: 4px 12px; }
  .summary-fade { top: 110px; }

  .category-header { font-size: 17px; }
  .item-row { padding: 12px 12px; margin-bottom: 8px; }
  .item-name { font-size: 13px; }
  .item-price-tag { font-size: 11px; }
  .recommended-tag { font-size: 8px; padding: 1px 5px; margin-left: 4px; }
  .info-btn { width: 18px; height: 18px; font-size: 11px; }
  .item-cost { font-size: 14px; min-width: 60px; }
  .slider-row { gap: 8px; }
  .slider-val { font-size: 16px; min-width: 24px; }
  .check-box { width: 20px; height: 20px; }
  .check-box::after { width: 12px; height: 12px; }

  .ip-section { margin-bottom: 10px; }
  .ip-text { font-size: 12px; }
  .ip-spec-tag { font-size: 10px; padding: 3px 7px; }
  .ip-use-list li { font-size: 12px; }

  .option-selector { gap: 6px; }
  .opt-btn { padding: 8px 10px; font-size: 12px; }

  .tier-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .tier-cell { padding: 6px 4px; }
  .tier-cell .pct { font-size: 14px; }
  .tier-cell .lbl { font-size: 8px; }

  .monthly-hero-price { font-size: 36px; }
  .monthly-hero-label { font-size: 13px; }
  .vdb-pct { font-size: 22px; }
  .line-item { font-size: 12px; }
  .total-row { font-size: 13px; }
  .total-cost { font-size: 22px; }

  .save-retainer { padding: 20px 14px; }
  .save-retainer h3 { font-size: 16px; }
  .save-retainer .save-sub { font-size: 12px; }
}
