:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --surface-3: #232323;
  --border: rgba(255, 255, 255, 0.08);

  --text: #ffffff;
  --text-2: #d0d0d0;
  --muted: #a8a8a8;

  --primary: #fca800;
  --primary-20: rgba(252, 168, 0, 0.2);
  --primary-10: rgba(252, 168, 0, 0.1);

  --success: #7ee39a;
  --error: #ff8f8f;

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 0 0 1px rgba(252, 168, 0, 0.08), 0 0 42px rgba(252, 168, 0, 0.09);
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(252, 168, 0, 0.06), transparent 24%),
    radial-gradient(circle at bottom left, rgba(252, 168, 0, 0.04), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  background: var(--primary);
  color: #111;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 999;
}

.skip-link:focus {
  top: 0;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(252, 168, 0, 0.26);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  transition: 0.2s ease;
}

.header-cta:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* GENERAL */

.section {
  padding: 48px 0 80px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0));
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  margin-bottom: 0;
  border-radius: 999px;
  background: var(--primary-10);
  border: 1px solid rgba(252, 168, 0, 0.22);
  color: #ffcb53;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Eyebrow outside hero — restore its own bottom spacing */
.section-head .eyebrow,
.split-grid > div > .eyebrow,
.form-copy .eyebrow,
.contact-cta-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}

@keyframes badge-breathe {
  0%, 100% { opacity: 0.28; }
  50%       { opacity: 0.7; }
}

.free-badge-wrap {
  position: relative;
  display: inline-flex;
}

.free-badge-wrap::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  background: var(--primary);
  filter: blur(14px);
  opacity: 0.28;
  animation: badge-breathe 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  .free-badge-wrap::after {
    animation: none;
    opacity: 0.28;
  }
}

.free-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #111111;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .free-badge::after {
    animation: none;
    opacity: 0.28;
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.03em;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-head p,
.section-text,
.info-card p,
.step-card p,
.faq-item p,
.form-copy p {
  color: var(--text-2);
}

/* HERO */

.hero {
  padding: 70px 0 34px;
  background:
    radial-gradient(circle at 16% 20%, rgba(252, 168, 0, 0.22), transparent 24%),
    radial-gradient(circle at 80% 32%, rgba(252, 168, 0, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(52, 30, 0, 0.22) 0%, rgba(11, 11, 11, 0) 44%),
    linear-gradient(135deg, #0b0b0b 0%, #171008 52%, #0b0b0b 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 11ch;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--text-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-2);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 52px rgba(252, 168, 0, 0.32), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 20px rgba(252, 168, 0, 0.2);
  transition-duration: 0.08s;
}

.btn:focus-visible,
.header-cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.btn:focus:not(:focus-visible),
.header-cta:focus:not(:focus-visible) {
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: #111111;
  box-shadow: 0 0 36px rgba(252, 168, 0, 0.16);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid rgba(252, 168, 0, 0.24);
}

.hero-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.hero-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 45px rgba(0, 0, 0, 0.45)) 
    drop-shadow(0 0 35px rgba(252, 168, 0, 0.18));
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.step-card,
.faq-item,
.form-note-card,
.form-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
}

.info-card,
.step-card,
.faq-item {
  padding: 24px;
}

.info-card h3,
.step-card h3,
.faq-item h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.info-card,
.step-card,
.faq-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover,
.step-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.1);
}

/* SPLIT */

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.feature-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(252, 168, 0, 0.07) 0%, transparent 55%),
    var(--surface);
  border-top: 2px solid rgba(252, 168, 0, 0.42);
  border-radius: var(--radius-lg);
}

.feature-box-header {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffcb57;
}

.feature-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: default;
}

.feature-chip::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: 0.85;
}

.feature-chip:hover {
  background: rgba(252, 168, 0, 0.08);
  border-color: rgba(252, 168, 0, 0.22);
  color: var(--text);
}

.feature-chip:hover::before {
  opacity: 1;
}

/* STEPS / FAQ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--primary);
  color: #111111;
  font-weight: 900;
}

/* FORM */

.form-section {
  padding-top: 24px;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 110px;
}

.form-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.form-note-card {
  padding: 22px;
  margin-top: 22px;
}

.form-note-card h3 {
  margin-bottom: 10px;
}

.form-note-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-2);
}

.form-card {
  padding: 28px;
  box-shadow: var(--shadow-glow);
}

.business-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: span 2;
}

.field label .label-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.88em;
}

.field-half {
  grid-column: span 1;
}

.field label {
  font-weight: 700;
  color: var(--text);
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--surface-2);
  color: var(--text);
  outline: none;
  appearance: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a8a8a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(252, 168, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(252, 168, 0, 0.14);
  background: #1f1a11;
}

.field input[readonly]:focus {
  border-color: inherit;
  box-shadow: none;
  background: inherit;
  outline: none;
}

.field-help {
  color: var(--muted);
  font-size: 0.92rem;
}

.field-help--warn {
  color: #f5c842;
  font-size: 0.88rem;
}

.field-error {
  color: var(--error);
  font-size: 0.88rem;
  font-weight: 600;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 143, 143, 0.12);
}

/* Auto-filled field — blends into background, signals "hands off" */
.field input.is-autofilled:not([type="checkbox"]):not([type="radio"]) {
  background: var(--surface);
  color: rgba(208, 208, 208, 0.5);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.field input.is-autofilled:not([type="checkbox"]):not([type="radio"]):focus:not([readonly]) {
  background: var(--surface-2);
  color: var(--text);
  border-color: rgba(252, 168, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(252, 168, 0, 0.14);
}

/* ── Address autocomplete ────────────────────────────────────────────────── */

.ac-wrap {
  position: relative;
}

.ac-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  max-height: 260px;
  overflow-y: auto;
}

.ac-item {
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s ease;
}

.ac-item:hover,
.ac-item[aria-selected="true"] {
  background: var(--primary-10);
}

.ac-item-main {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.ac-item-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.ac-status {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

/* ── Category checklist ──────────────────────────────────────────────────── */

.cat-fieldset {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 20px 20px 12px;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cat-fieldset[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 143, 143, 0.12);
}

.cat-legend {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  padding: 0 4px;
  margin-bottom: 2px;
}

.cat-group {
  display: contents;
}

.cat-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.cat-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cat-chip span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  user-select: none;
}

.cat-chip:hover span {
  border-color: rgba(252, 168, 0, 0.4);
  color: var(--text);
}

.cat-chip input[type="checkbox"]:checked + span {
  border-color: var(--primary);
  background: rgba(252, 168, 0, 0.14);
  color: var(--primary);
  font-weight: 700;
}

.cat-chip input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Expandable L2 → L3 (Food group) ────────────────────────────────────── */

.cat-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

/* display:contents makes .cat-item transparent to flex layout.
   Its children (hidden .cat-cb, label.cat-chip, .cat-sub) become direct
   flex children of .cat-items. CSS sibling selectors still work on DOM siblings. */
.cat-item {
  display: contents;
}

/* Visually hidden checkbox — label[for] handles click */
.cat-cb {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Checked state for label-outside-chip pattern */
.cat-cb:checked + .cat-chip span {
  border-color: var(--primary);
  background: rgba(252, 168, 0, 0.14);
  color: var(--primary);
  font-weight: 700;
}

.cat-cb:focus-visible + .cat-chip span {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Sub-chip tray — hidden until parent L2 is checked.
   width:100% forces a new full-width flex row, so sub-chips always
   appear cleanly below their parent chip with no sideways displacement. */
.cat-sub {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 6px 10px 2px 12px;
  border-left: 2px solid rgba(252, 168, 0, 0.3);
  width: 100%;
  flex-shrink: 0;
}

.cat-sub-header {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 2px;
}

.cat-sub-header em {
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* ── L1 category header & expandable sub-tray ───────────────────────────── */

/* Flex-wrap row holding all L1 chips; sub-trays reorder below via order:1 */
.cat-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}

.cat-row-break {
  flex-basis: 100%;
  height: 0;
  order: 0;
}

.cat-status {
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 6px 0;
}

.cat-status.is-error {
  color: var(--error);
}

.cat-l1-header {
  order: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-chip--l1 span {
  font-weight: 700;
  font-size: 0.9rem;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  padding: 7px 16px;
}

/* Expand/collapse indicator — + when closed, − when open */
.cat-chip--l1 span::after {
  content: "+";
  font-size: 0.95em;
  font-weight: 400;
  margin-left: 0.5em;
  display: inline-block;
  opacity: 0.6;
  vertical-align: middle;
  transition: opacity 0.15s ease;
}

.cat-chip--l1:hover span::after {
  opacity: 1;
}

.cat-l1-cb:checked ~ .cat-l1-header .cat-chip--l1 span {
  border-color: var(--primary);
  background: rgba(252, 168, 0, 0.14);
  color: var(--primary);
}

.cat-l1-cb:checked ~ .cat-l1-header .cat-chip--l1 span::after {
  content: "−";
  opacity: 1;
}

.cat-l1-cb:focus-visible ~ .cat-l1-header .cat-chip--l1 span {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* L2 sub-tray — hidden until L1 chip is clicked.
   order:1 pushes it below all L1 chips; flex-basis:100% makes it full-width. */
.cat-l1-sub {
  display: none;
  order: 1;
  flex-basis: 100%;
  padding: 10px 0 2px 12px;
  border-left: 2px solid rgba(252, 168, 0, 0.3);
}

/* Label inside the open tray — ties it back to its L1 chip */
.cat-l1-sub-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 8px;
}

.cat-l1-cb:checked ~ .cat-l1-sub {
  display: block;
}

.cat-cb:checked ~ .cat-sub {
  display: flex;
}

/* Smaller sub-chips */
.cat-chip--sub span {
  font-size: 0.82rem;
  padding: 4px 11px;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: var(--muted);
}

.cat-chip--sub:hover span {
  border-color: rgba(252, 168, 0, 0.35);
  color: var(--text);
}

.cat-chip--sub input[type="checkbox"]:checked + span {
  border-color: rgba(252, 168, 0, 0.7);
  background: rgba(252, 168, 0, 0.10);
  color: var(--primary);
  font-weight: 600;
}

/* ── Price level selector ────────────────────────────────────────────────── */

.pl-fieldset {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 20px 20px 16px;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pl-fieldset[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 143, 143, 0.12);
}

.pl-legend {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  padding: 0 4px;
}

.pl-options {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.pl-option {
  flex: 1;
  cursor: pointer;
}

.pl-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pl-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.15s ease, background 0.15s ease;
  user-select: none;
}

.pl-option:hover .pl-btn {
  border-color: rgba(252, 168, 0, 0.4);
}

.pl-radio:checked + .pl-btn {
  border-color: var(--primary);
  background: rgba(252, 168, 0, 0.14);
}

.pl-radio:focus-visible + .pl-btn {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pl-dollars {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}

.pl-radio:checked + .pl-btn .pl-dollars {
  color: var(--primary);
}

.pl-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  transition: color 0.15s ease;
}

.pl-radio:checked + .pl-btn .pl-label {
  color: var(--primary);
}

/* ── /Price level ──────────────────────────────────────────────────────────── */

.btn-submit {
  grid-column: span 2;
  width: 100%;
  min-height: 64px;
  margin-top: 4px;
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-status {
  grid-column: span 2;
  min-height: 24px;
  margin: 2px 0 0;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

/* ── Opening hours grid ──────────────────────────────────────────────────── */

.oh-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 14px 16px;
}

.oh-row {
  display: grid;
  grid-template-columns: 2rem 6.5rem minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
}

.oh-day {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  text-align: right;
}

.oh-closed-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

/* Show a focus ring on the pill when keyboard-navigating the hidden checkbox */
.oh-closed-label:focus-within {
  outline: none;
}

.oh-closed-label:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text);
}

/* Visually hide the native checkbox but keep it keyboard-accessible */
.oh-closed-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.oh-row input[type="time"] {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--surface-3);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, opacity 0.18s;
  color-scheme: dark;    /* fixes native time picker chrome in dark mode */
}

.oh-row input[type="time"]:focus {
  border-color: rgba(252, 168, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(252, 168, 0, 0.14);
}

.oh-row input[type="time"]:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Active state: pill turns red when closed */
.oh-row.is-closed .oh-closed-label {
  background: rgba(255, 75, 65, 0.13);
  color: #ff6b6b;
  border-color: rgba(255, 75, 65, 0.35);
}

.oh-dash {
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 540px) {
  .oh-grid {
    padding: 12px;
    gap: 22px;
  }

  /* 3-column grid: [day 2.5rem] [open time 1fr] [close time 1fr]
     Row 1: day | pill (spans cols 2–3)
     Row 2: empty | open time | close time                        */
  .oh-row {
    grid-template-columns: 1.8rem minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 6px 8px;
    min-height: unset;
  }

  .oh-day {
    grid-column: 1;
    grid-row: 1;
  }

  /* Pill spans both time columns so it has full width to sit next to the day */
  .oh-closed-label {
    grid-column: 2 / 4;
    grid-row: 1;
    justify-self: start;
  }

  .oh-row input[type="time"].oh-open {
    grid-column: 2;
    grid-row: 2;
  }

  .oh-row input[type="time"].oh-close {
    grid-column: 3;
    grid-row: 2;
  }

  .oh-dash {
    display: none;
  }
}

/* FILEPOND */

.filepond--root {
  margin: 0;
  font-family: inherit;
}

/* Main drop zone — all panel segments must be overridden */
.filepond--panel-root,
.filepond--panel-root .filepond--panel-top,
.filepond--panel-root .filepond--panel-center,
.filepond--panel-root .filepond--panel-bottom,
.filepond--panel[data-scalable] {
  background-color: var(--surface-2) !important;
}

.filepond--panel-root {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.filepond--drop-label {
  color: var(--muted) !important;
}

.filepond--label-action {
  color: var(--text-2) !important;
  text-decoration-color: rgba(255, 255, 255, 0.35) !important;
  cursor: pointer;
}

.filepond--root .filepond--drop-label {
  min-height: 120px;
}

.filepond--list-scroller {
  margin-top: 10px;
}

.filepond--item {
  width: calc(50% - 6px);
}

/* Uploaded file items */
.filepond--item-panel,
.filepond--item-panel .filepond--panel-top,
.filepond--item-panel .filepond--panel-center,
.filepond--item-panel .filepond--panel-bottom {
  background-color: var(--surface-2) !important;
}

.filepond--item-panel {
  border-radius: 14px;
}

.filepond--file {
  color: var(--text);
}

.filepond--file-info,
.filepond--file-status {
  font-size: 0.72rem;
}

.filepond--image-preview,
.filepond--image-preview-wrapper {
  background: transparent !important;
}

.filepond--image-preview-wrapper {
  height: 140px;
}

.filepond--image-preview canvas,
.filepond--image-preview img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* File action buttons */
.filepond--file-action-button {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #fff !important;
}

.filepond--file-action-button:hover {
  background-color: rgba(0, 0, 0, 0.75) !important;
}

.filepond--credits {
  display: none !important;
}

@media (max-width: 720px) {
  .filepond--item {
    width: 100%;
  }
}

/* RESPONSIVE */

/* TABLET — ≤1100px */
@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* steps and faq stay multi-col until mobile */

  .form-copy {
    position: static;
  }
}

/* MOBILE — ≤720px */
@media (max-width: 720px) {
  .container {
    width: calc(100% - 20px);
  }

  /* Categories — no forced row break; chips fill rows evenly */
  .cat-row-break {
    display: none;
  }

  .cat-l1-header {
    flex: 1 1 100%;
  }

  .cat-chip--l1 {
    width: 100%;
  }

  .cat-chip--l1 span {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  /* HEADER */
  .brand-row {
    min-height: 68px;
  }

  .brand {
    font-size: 1.65rem;
    margin-left: 1rem;
  }

  .header-cta {
    display: none;
  }

  /* HERO — centered */
  .hero {
    padding-top: 48px;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
    flex-direction: column;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .hero-lead {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 380px;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-image-card {
    padding: 8px 0;
  }

  .hero-image {
    max-height: 460px;
  }

  /* SECTIONS — centered heads */
  .section {
    padding: 38px 0 62px;
  }

  .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* CARDS */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* STEPS */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-list {
    grid-template-columns: 1fr;
  }

  /* FORM */
  .form-copy {
    text-align: center;
  }

  .form-note-card {
    text-align: left;
  }

  .business-form {
    grid-template-columns: 1fr;
  }

  .field,
  .field-half,
  .btn-submit,
  .form-status {
    grid-column: span 1;
  }

  .form-card {
    padding: 20px;
  }
}
/* FOOTER */

.site-footer {
  padding: 36px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text);
  flex-shrink: 0;
}

.footer-copy {
  max-width: 720px;
}

.footer-powered {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.footer-meta {
  display: grid;
  gap: 4px;
}

.footer-meta p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.96rem;
}

.footer-meta a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(252, 168, 0, 0.35);
  text-underline-offset: 3px;
}

.footer-meta a:hover {
  color: var(--primary);
}

.footer-links {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-2);
  font-size: 0.96rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.15);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration-color: rgba(252, 168, 0, 0.35);
}

@media (max-width: 720px) {
  .site-footer {
    padding: 30px 0 40px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .footer-brand {
    font-size: 1.2rem;
  }

  .footer-powered {
    font-size: 0.96rem;
  }

  .footer-meta p {
    font-size: 0.92rem;
  }

  .footer-links {
    justify-content: center;
  }
}
/* CONTACT CTA */

.contact-cta-section {
  padding-top: 10px;
}

.contact-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.contact-cta-copy {
  max-width: 720px;
}

.contact-cta-copy h2 {
  margin-bottom: 10px;
}

.contact-cta-copy p {
  margin: 0;
  color: var(--text-2);
}

.contact-cta-action {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .contact-cta-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
  }

  .contact-cta-action {
    width: 100%;
  }

  .contact-cta-action .btn {
    width: 100%;
  }
}