/* --- ROOT CONFIGURATIONS --- */
:root {
  /* Site color scheme - LIGHT theme adapted for Zeaxan (Teal & Navy Palette) */
  --zx-bg-main: #f8fafc;
  --zx-bg-surface: #ffffff;
  --zx-accent: #0d9488;
  --zx-accent-hover: #0f766e;
  --zx-accent-alpha: rgba(13, 148, 136, 0.1);
  --zx-text-main: #0f172a;
  --zx-text-muted: #475569;
  --zx-text-on-accent: #ffffff;
  --zx-border: #e2e8f0;
  --zx-gradient: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  
  /* Container visual styles */
  --zx-font-head: 'Oswald', sans-serif;
  --zx-font-body: 'Lato', sans-serif;
  
  /* Random border-radius-style: Soft */
  --zx-radius: 16px;
  
  /* Random shadow-depth: Raised */
  --zx-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
}

/* --- BASE STYLES --- */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
}

.zx-body-base {
  background-color: var(--zx-bg-main);
  color: var(--zx-text-main);
  font-family: var(--zx-font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- CONTAINER WIDTH --- */
.zx-shell-holder {
  width: 100%;
  max-width: 1140px; /* Chosen random-width */
}

/* --- TYPOGRAPHY PRESETS --- */
h1, h2, h3, h4 {
  font-family: var(--zx-font-head);
  text-transform: uppercase; /* Chosen random-case */
  letter-spacing: 0.025em;
  line-height: 1.2;
}

/* --- CUSTOM UNIQUE CLASSES (DOM FOOTPRINT PROTECTION) --- */

/* Horizontal Feature Stripe */
.zx-feature-stripe {
  background-color: var(--zx-bg-surface);
  border-radius: var(--zx-radius);
  box-shadow: var(--zx-shadow);
  border: 1px solid var(--zx-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zx-feature-stripe:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12);
}

/* Visual Plate Item (Description card) */
.zx-plate-item {
  background-color: var(--zx-bg-main);
  border-left: 4px solid var(--zx-accent);
  border-radius: var(--zx-radius);
  margin: 0;
}

/* Custom Guarantee Badge with Icon on Left */
.zx-guarantee-left {
  background-color: var(--zx-accent-alpha);
  border-radius: var(--zx-radius);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

/* Price Display (Badge Style with accent background) */
.zx-badge-price {
  background: var(--zx-gradient);
  color: var(--zx-text-on-accent);
  padding: 0.5rem 1.25rem;
  border-radius: var(--zx-radius);
  font-weight: 700;
  font-family: var(--zx-font-head);
  font-size: 1.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* Action Trigger Button */
.zx-action-trigger {
  background-color: var(--zx-accent);
  color: var(--zx-text-on-accent);
  font-family: var(--zx-font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding: 0.875rem 2.5rem;
  border-radius: var(--zx-radius);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
  transition: all 0.2s ease-in-out;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.zx-action-trigger:hover {
  background-color: var(--zx-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.5);
  color: var(--zx-text-on-accent);
}
.zx-action-trigger:active {
  transform: translateY(0);
}

/* Testimonials / Review Cells */
.zx-opinion-cell {
  background-color: var(--zx-bg-surface);
  border-top: 4px solid var(--zx-accent);
  border-radius: var(--zx-radius);
  box-shadow: var(--zx-shadow);
  transition: transform 0.3s ease;
}
.zx-opinion-cell:hover {
  transform: translateY(-4px);
}

/* Simple Bullet Row style */
.zx-bullet-item {
  border: 1px solid transparent;
}
.zx-bullet-item:hover {
  border-color: var(--zx-border);
  box-shadow: var(--zx-shadow);
}

/* Accent pattern background on hero section */
.zx-showcase-visual::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: rgba(13, 148, 136, 0.15);
  border-radius: 50%;
  filter: blur(40px);
  top: -20px;
  left: -20px;
  z-index: -1;
}

/* Sticky structure logic adjustments */
@media (min-width: 768px) {
  .zx-showcase-visual {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
  }
}