:root {
  /* Site Theme Colors (LIGHT) */
  --zx-bg-main: #F4F6F9;
  --zx-bg-surface: #FFFFFF;
  --zx-accent-prime: #0284C7; /* Sky-600 */
  --zx-accent-hover: #0369A1; /* Sky-700 */
  --zx-accent-light: #E0F2FE; /* Sky-100 */
  
  --zx-ink-dark: #1E293B; /* Slate-800 */
  --zx-ink-muted: #64748B; /* Slate-500 */
  --zx-border-color: #E2E8F0; /* Slate-200 */

  /* Gradients */
  --zx-gradient-action: linear-gradient(135deg, var(--zx-accent-prime) 0%, var(--zx-accent-hover) 100%);

  /* Typography Dynamic Config */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Mulish', sans-serif;

  /* Randomized Config Parameters */
  --zx-max-width: 1180px;            /* container-width: 1180px */
  --zx-radius: 16px;                  /* border-radius-style: soft (12-20px) */
  --zx-shadow: 0 4px 12px rgba(30, 41, 59, 0.08); /* shadow-depth: raised */
}

/* Ensure full layout size and structured footer push */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}

/* Container wrapper core logic */
.zx-max-shell {
  max-width: var(--zx-max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* H1 Specific Case & Font Setup */
.zx-heading-main {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase; /* heading-case: uppercase */
  line-height: 1.25;
}

/* Price Display Tag Style (pointed-end or label simulator with dashes) */
.zx-tag-price {
  display: inline-flex;
  align-items: center;
  background-color: var(--zx-accent-light);
  color: var(--zx-accent-prime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  padding: 0.5rem 1.75rem;
  border-radius: var(--zx-radius);
  border: 2px dashed var(--zx-accent-prime);
  position: relative;
  letter-spacing: -0.025em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.zx-tag-price::before, .zx-tag-price::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--zx-bg-surface);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.zx-tag-price::before {
  left: -5px;
  border-right: 1px solid var(--zx-border-color);
}
.zx-tag-price::after {
  right: -5px;
  border-left: 1px solid var(--zx-border-color);
}

/* CTA Standard Raised Button with Interactive transitions */
.zx-actuate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--zx-gradient-action);
  color: #FFFFFF !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--zx-radius);
  box-shadow: var(--zx-shadow);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.zx-actuate-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.25);
}
.zx-actuate-link:active {
  transform: translateY(1px);
}

/* Responsive Image Area Sticky Control (Preset A) */
@media (min-width: 1024px) {
  .zx-panel-article .zx-image-holder {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
  }
}

/* Soft Styling elements overrides */
.zx-image-holder picture img {
  border-radius: calc(var(--zx-radius) - 4px);
}

.zx-sub-panel, .zx-perk-row, .zx-testimonial-node {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Subtle Hover Effects for Cards to improve engagement */
.zx-perk-row:hover, .zx-testimonial-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(30, 41, 59, 0.06);
}