/* ==========================================================================
   Sewa iPhone Solo Raya — Web Order Publik
   ========================================================================== */

:root {
  --blue-light: #7EB6F5;
  --blue-dark: #2B7FE8;
  --blue-darker: #1F63C4;
  --blue-ink: #123061;
  --pink: #F472B6;
  --pink-dark: #DB4C96;
  --pink-soft: #FCE7F3;
  --bg: #F6F9FE;
  --surface: #FFFFFF;
  --border: #DCE8FB;
  --text: #1B2A41;
  --text-soft: #5B6B85;
  --text-faint: #8B9AB4;
  --success-bg: #EAF7EE;
  --success-text: #1E7D42;
  --error: #E0335A;
  --error-bg: #FDECEF;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(31, 99, 196, 0.06);
  --shadow: 0 8px 24px rgba(31, 99, 196, 0.10);
  --shadow-lg: 0 16px 40px rgba(31, 99, 196, 0.14);
  --max-w: 1120px;
  --gradient-primary: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
  --gradient-hero: linear-gradient(180deg, #EAF3FE 0%, #F6F9FE 55%, #F6F9FE 100%);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--blue-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 0 40px;
}

.section-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 680px;
}
.section-head .section-desc { margin: 0 auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(43, 127, 232, 0.30);
}
.btn--primary:hover { box-shadow: 0 14px 30px rgba(43, 127, 232, 0.38); transform: translateY(-1px); }

.btn--pink {
  background: linear-gradient(135deg, #FB93CB 0%, var(--pink) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(244, 114, 182, 0.32);
}
.btn--pink:hover { box-shadow: 0 14px 30px rgba(244, 114, 182, 0.4); transform: translateY(-1px); }

.btn--ghost {
  background: #fff;
  color: var(--blue-darker);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--blue-dark); }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--small { padding: 9px 18px; font-size: 13px; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-header__cta { flex-shrink: 0; }

/* ---------- Hero ---------- */

.hero {
  padding: 56px 0 48px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-darker);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 0 3px rgba(52,199,89,0.18);
}

.hero__title {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--blue-ink);
  margin: 0 0 16px;
}
.hero__tagline {
  display: block;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: clamp(26px, 4.5vw, 38px);
  letter-spacing: 0.01em;
  color: var(--pink);
  margin-top: 2px;
}

.hero__desc {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 460px;
  margin: 0 0 28px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}
.hero__trust-item svg { width: 18px; height: 18px; color: var(--blue-dark); flex-shrink: 0; }

/* ---------- Why rent — 4 cards ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--blue-light);
}

.why-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card__icon svg { width: 19px; height: 19px; color: #fff; }

.why-card__text { min-width: 0; }

.why-card__title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-ink);
  margin: 0 0 3px;
  line-height: 1.3;
}

.why-card__desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-soft);
  margin: 0;
}

/* ---------- Pricelist — slider (one model at a time) ---------- */

.price-slider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 440px;
  margin: 0 auto;
}

.price-slider__viewport {
  flex: 1;
  min-width: 0;
}

.price-slider__arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--blue-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.price-slider__arrow svg { width: 20px; height: 20px; }
.price-slider__arrow:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: scale(1.06);
}
.price-slider__arrow:active { transform: scale(0.96); }

.price-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 20px 0 0;
}
.price-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.price-slider__dot.is-active {
  width: 22px;
  background: var(--gradient-primary);
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.price-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.price-card__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-ink);
}
.price-card__facility {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-darker);
  background: #EAF3FE;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.price-card__facility svg { width: 13px; height: 13px; }

.price-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.price-card__item {
  background: #F6F9FE;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.price-card__item-label {
  font-size: 11.5px;
  color: var(--text-faint);
  font-weight: 600;
  margin-bottom: 3px;
}
.price-card__item-amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-ink);
}
.creator-package {
  margin-top: 24px;
  background: linear-gradient(135deg, #FDF0F8 0%, #FCE7F3 100%);
  border: 1px solid #F8C9E1;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.creator-package__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FB93CB 0%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.creator-package__icon svg { width: 24px; height: 24px; color: #fff; }
.creator-package__text { flex: 1; min-width: 220px; }
.creator-package__title {
  font-weight: 800;
  color: var(--blue-ink);
  font-size: 15.5px;
  margin: 0 0 4px;
}
.creator-package__desc {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0;
}
.creator-package__price {
  font-weight: 800;
  color: var(--pink-dark);
}

/* ---------- Syarat & Ketentuan — accordion ---------- */

.terms { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.accordion-item[open] {
  border-color: var(--blue-light);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.accordion-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue-ink);
  cursor: pointer;
  list-style: none;
}
.accordion-item__trigger::-webkit-details-marker { display: none; }
.accordion-item__trigger:hover { color: var(--blue-darker); }

.accordion-item__icon {
  width: 20px;
  height: 20px;
  color: var(--blue-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion-item[open] .accordion-item__icon { transform: rotate(180deg); }

.accordion-item__body {
  padding: 0 22px 22px;
}
.accordion-item__body ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion-item__body li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-soft);
}
.accordion-item__body strong { color: var(--text); font-weight: 800; }

/* ---------- Form ---------- */

.form-section { background: var(--surface); border-top: 1px solid var(--border); }

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 40px);
}

.form-group-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-ink);
  margin: 36px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.form-group-heading:first-child { margin-top: 0; }
.form-group-heading .emoji { font-size: 19px; }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}
.field label .req { color: var(--pink-dark); margin-left: 2px; }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #FBFDFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 78px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 127, 232, 0.12);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235B6B85'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field small.help {
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.45;
}

.datetime-row {
  display: flex;
  gap: 8px;
}
.datetime-row input {
  flex: 1;
  min-width: 0;
}
.datetime-row input[type="time"] {
  flex: 0 1 118px;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toggle-row__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.toggle-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 44px;
  height: 25px;
}
.toggle-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
.toggle-switch__track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 999px;
  transition: background 0.2s ease;
}
.toggle-switch__thumb {
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(18, 48, 97, 0.3);
  transition: transform 0.2s ease;
}
.toggle-switch input:checked + .toggle-switch__track {
  background: #34C759;
}
.toggle-switch input:checked + .toggle-switch__track .toggle-switch__thumb {
  transform: translateX(19px);
}
.toggle-switch input:focus-visible + .toggle-switch__track {
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.3);
}

.delivery-subfields {
  background: #F6F9FE;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  gap: 14px;
}

.checkbox-row + .checkbox-row { margin-top: 14px; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue-dark);
  cursor: pointer;
}

.field--indent {
  margin: 10px 0 0 28px;
}

.delivery-subfields > small.help {
  display: block;
  margin-top: 4px;
}

.addon-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.addon-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FBFDFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.addon-option:hover { border-color: var(--blue-light); }
.addon-option.is-selected {
  border-color: var(--blue-dark);
  background: #EAF3FE;
  box-shadow: 0 0 0 1px var(--blue-dark) inset;
}

.addon-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue-dark);
  cursor: pointer;
}

.addon-option__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.addon-option__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.addon-option__desc {
  font-size: 12px;
  color: var(--text-faint);
}

.addon-option__price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue-darker);
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-option__price small {
  font-weight: 600;
  color: var(--text-faint);
  font-size: 11px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
  background: var(--error-bg);
}
.field-error {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--error);
}
.field.has-error .field-error { display: flex; }
.field-error svg { width: 14px; height: 14px; flex-shrink: 0; }

.notice-box {
  margin-top: 36px;
  background: #EAF3FE;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-dark);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.notice-box__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--blue-ink);
  font-size: 14.5px;
  margin: 0 0 10px;
}
.notice-box__title svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-dark); }
.notice-box p {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0 0 10px;
  line-height: 1.55;
}
.notice-box p:last-child { margin-bottom: 0; }

.form-submit {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-submit__hint {
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--blue-ink);
  color: #C9D9F2;
  padding: 40px 0 26px;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.site-footer__links a { display: flex; align-items: center; gap: 6px; color: #C9D9F2; transition: color 0.15s ease; }
.site-footer__links a:hover { color: #fff; }
.site-footer__links svg { width: 16px; height: 16px; }
.site-footer__bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: #7F94BC;
  text-align: center;
}

/* ---------- Toast ---------- */

.toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 48, 97, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.toast-overlay.show { opacity: 1; pointer-events: auto; }

.toast-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s ease;
}
.toast-overlay.show .toast-modal { transform: translateY(0) scale(1); }

.toast-modal__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.toast-modal__icon svg { width: 28px; height: 28px; color: var(--success-text); }
.toast-modal__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-ink);
  margin: 0 0 8px;
}
.toast-modal__desc {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0 0 22px;
  line-height: 1.5;
}
.toast-modal__spinner {
  width: 18px; height: 18px;
  border: 2.5px solid var(--border);
  border-top-color: var(--blue-dark);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Floating WhatsApp button ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}
.wa-float:active { transform: scale(0.96); }
.wa-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: 0;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

@media (max-width: 720px) {
  .wa-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
  .wa-float svg { width: 27px; height: 27px; }
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  section { padding: 44px 0; }
  .hero { padding: 32px 0 36px; }

  .why-grid { grid-template-columns: 1fr; gap: 14px; }

  .price-slider { max-width: 100%; gap: 8px; }
  .price-slider__arrow { width: 40px; height: 40px; }

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

  .site-header__inner { padding: 10px 16px; }
  .site-header__logo img { height: 32px; }

  .creator-package { padding: 18px; }

  .site-footer__inner { flex-direction: column; align-items: center; }
}

@media (max-width: 420px) {
  .price-card__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__badge { font-size: 12px; }
}
