:root {
      --bg: #0f172a;
      --bg-alt: #020617;
      --card-bg: #020617;
      --accent: #22c55e;
      --accent-soft: rgba(34, 197, 94, 0.12);
      --text: #e5e7eb;
      --muted: #9ca3af;
      --border: rgba(148, 163, 184, 0.25);
      --button-bg: #22c55e;
      --button-text: #020617;
      --button-bg-outline: transparent;
      --button-border-outline: #22c55e;
      --button-text-outline: #e5e7eb;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
      --radius-lg: 18px;
      --radius-pill: 999px;
    }

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

    body {
      font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1f2937 0, #020617 45%, #000 100%);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .page {
      max-width: 1120px;
      margin: 0 auto;
      padding: 32px 16px 64px;
    }

    header {
      text-align: center;
      margin-bottom: 32px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.4);
      color: var(--muted);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #bbf7d0 0, #22c55e 40%, #14532d 100%);
    }

    h1 {
      font-size: clamp(2.1rem, 3vw, 2.6rem);
      margin-top: 18px;
      margin-bottom: 8px;
      letter-spacing: 0.02em;
      font-weight: 800;
    }

    .subtitle {
      color: var(--muted);
      font-size: 0.98rem;
      max-width: 540px;
      margin: 0 auto;
    }

    .hero-underline {
      width: 130px;
      height: 2px;
      margin: 20px auto 0;
      background: linear-gradient(to right, transparent, #22c55e, transparent);
      opacity: 0.8;
    }

    .secondary-section {
      margin-top: 30px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: radial-gradient(circle at top, rgba(34,197,94,0.06) 0, rgba(15,23,42,0.96) 40%, #020617 100%);
      padding: 20px 18px;
      box-shadow: var(--shadow-soft);
    }

    .secondary-section h2 {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .secondary-section p {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 14px;
    }

    ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 10px;
    }

    li {
      font-size: 0.85rem;
      color: var(--text);
      position: relative;
      padding-left: 16px;
      margin-bottom: 4px;
    }

    li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: #22c55e;
    }

    .systems-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 10px;
    }

    @media (min-width: 720px) {
      .systems-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .system-card {
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.9);
      padding: 10px 10px;
      font-size: 0.82rem;
    }

    .system-title {
      font-weight: 800;
      margin-bottom: 2px;
    }

    .system-details {
      color: var(--muted);
      font-size: 0.8rem;
    }

    .comparison {
      margin-top: 16px;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.78rem;
      min-width: 520px;
    }

    th, td {
      padding: 8px 10px;
      text-align: left;
      border-bottom: 1px solid rgba(51, 65, 85, 0.8);
    }

    th {
      font-weight: 700;
      color: #e5e7eb;
      background: rgba(15, 23, 42, 0.9);
    }

    td {
      color: var(--muted);
    }

    tr:nth-child(even) td {
      background: rgba(15, 23, 42, 0.7);
    }

    .hint {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 10px;
    }

    .footer-cta {
      text-align: center;
      margin-top: 30px;
    }

    .footer-cta h2 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .footer-cta p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 18px;
      border-radius: var(--radius-pill);
      font-size: 0.9rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--button-bg);
      color: var(--button-text);
      box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(34, 197, 94, 0.6);
      background: #16a34a;
    }

    .btn-outline {
      background: var(--button-bg-outline);
      color: var(--button-text-outline);
      border: 1px solid var(--button-border-outline);
    }

    .btn-outline:hover {
      background: rgba(34, 197, 94, 0.1);
      border-color: #4ade80;
    }
	
	.lease-title {
	  font-family: "Arial", serif;
	  font-weight: 800;
	  letter-spacing: 0.02em;
	}
	
	.form-grid {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 12px 16px;
	  margin-top: 10px;
	}

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

	.form-field {
	  display: flex;
	  flex-direction: column;
	  gap: 4px;
	  font-size: 0.85rem;
	}

	.form-field label {
	  color: var(--muted);
	  font-weight: 600;
	}

	.form-field input,
	.form-field select,
	.form-field textarea {
	  background: rgba(15, 23, 42, 0.9);
	  border-radius: 10px;
	  border: 1px solid rgba(148, 163, 184, 0.7);
	  padding: 8px 10px;
	  font-size: 0.9rem;
	  color: var(--text);
	  font-family: inherit;
	}

	.form-field input:focus,
	.form-field select:focus,
	.form-field textarea:focus {
	  outline: none;
	  border-color: #22c55e;
	  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.6);
	}

	.form-field small {
	  font-size: 0.75rem;
	  color: var(--muted);
	}

	textarea {
	  min-height: 80px;
	  resize: vertical;
	}
	
	
	/* Event / leasing cards grid (main pricing page) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1.05fr 1.05fr;
  }
}

/* Cards */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
  box-shadow: var(--shadow-soft);
  padding: 20px 20px 22px;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.08) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent-soft);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 6px;
}

/* Pills & notes */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.pill {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--muted);
  background: rgba(15,23,42,0.85);
}

.pill.positive {
  border-color: rgba(34, 197, 94, 0.65);
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.16);
}

.attendant-note {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.75);
}

/* Discount note (used in discounts & multi-system banner) */
.discount-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(74, 222, 128, 0.7);
  background: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
  font-size: 0.8rem;
}

/* Center footer buttons */
.footer-cta .button-row {
  justify-content: center;
}

/* Optional: table “swipe” hint + mobile tweaks */
.comparison::after {
  content: "Swipe sideways to see all pricing →";
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
}

@media (min-width: 720px) {
  .comparison::after {
    content: "";
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 24px 12px 48px;
  }

  header {
    margin-bottom: 24px;
  }

  h1 {
    margin-top: 14px;
    margin-bottom: 6px;
  }

  .card,
  .secondary-section {
    padding: 16px 14px 18px;
  }
}
