/* :root{
  --mhz-bg:#0d0c0b;
  --mhz-card:#121218;
  --mhz-text:#eaeaf2;
  --mhz-muted:#b7b7c7;
  --mhz-accent:#FFD400; 
  --mhz-accent-2:#FF3B2E; 
  --mhz-accent-3:#FF9E00; 
  --mhz-success:#22c55e;
  --mhz-danger:#ef4444;
  --mhz-shadow: 0 10px 25px rgba(0,0,0,.35);
  --mhz-radius: 18px;
} */

:root {
  --mhz-bg: #f8f9fb; /* light background */
  --mhz-card: #ffffff; /* pure white cards */
  --mhz-text: #2a2a2a; /* dark gray text (easier on eyes than black) */
  --mhz-muted: #6b7280; /* muted gray for subtext */

  --mhz-accent: #2563eb; /* blue (primary accent) */
  --mhz-accent-2: #16a34a; /* green (secondary accent) */
  --mhz-accent-3: #f59e0b; /* amber/orange accent */

  --mhz-success: #22c55e; /* green success */
  --mhz-danger: #dc2626; /* red danger */

  --mhz-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* softer shadow */
  --mhz-radius: 12px; /* slightly smaller radius for cleaner look */
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--mhz-bg);
  color: var(--mhz-text);
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}

a {
  color: #ffffff;
  text-decoration: none;
}
.mhz-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.mhz-flex {
  display: flex;
  gap: 16px;
}
.mhz-grid {
  display: grid;
  gap: 16px;
}
.mhz-btn {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.mhz-btn-primary {
  background: linear-gradient(90deg, var(--mhz-accent), var(--mhz-accent-2));
  color: #d2e3d2;
  box-shadow: var(--mhz-shadow);
}
.mhz-btn-primary:hover {
  transform: translateY(-2px);
}
.mhz-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}
.mhz-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--mhz-muted);
}

header.mhz-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 13, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
header .mhz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.mhz-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mhz-brand img {
  width: 140px;
  height: 50px;
}
.mhz-brand .mhz-title {
  font-weight: 800;
  letter-spacing: 0.5px;
}
.mhz-nav-links {
  display: none;
  align-items: center;
  gap: 18px;
}
.mhz-cta {
  display: none;
}
.mhz-hamburger {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  background: transparent;
}
.mhz-hamburger span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
}
.mhz-hamburger span:before,
.mhz-hamburger span:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  left: 0;
}
.mhz-hamburger span:before {
  top: -6px;
}
.mhz-hamburger span:after {
  top: 6px;
}

.mhz-mobile-menu {
  display: none;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mhz-mobile-menu a {
  display: block;
  padding: 12px;
  border-radius: 10px;
}
.mhz-mobile-menu .mhz-cta-mobile {
  margin: 10px 0;
}

.mhz-hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
}
.mhz-hero-inner {
  display: grid;
  gap: 22px;
  align-items: center;
}
.mhz-hero h1 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0;
}
.mhz-hero p {
  color: var(--mhz-muted);
  margin: 0 0 12px;
}
.mhz-hero .mhz-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mhz-hero-visual {
  position: relative;
  border-radius: var(--mhz-radius);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 212, 0, 0.15),
    rgba(255, 59, 46, 0.12)
  );
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--mhz-shadow);
}
.mhz-hero-visual .mhz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.mhz-stat {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 14px;
  text-align: center;
}
.mhz-stat strong {
  font-size: 16px;
}
.mhz-hero-wave {
  margin-top: -2px;
}

.mhz-section {
  padding: 56px 0;
}
.mhz-section h2 {
  font-size: 26px;
  margin: 0 0 12px;
}
.mhz-section p.lead {
  color: var(--mhz-muted);
  margin: 0 0 24px;
}

.mhz-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.mhz-card {
  background: var(--mhz-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--mhz-radius);
  padding: 18px;
  box-shadow: var(--mhz-shadow);
  transition: transform 0.15s ease, border 0.2s ease;
}
.mhz-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 212, 0, 0.5);
}
.mhz-card .mhz-card-title {
  color: #5fcee2;
  font-weight: 800;
  margin: 6px 0;
}
.mhz-card .mhz-card-body {
  color: var(--mhz-muted);
}
.mhz-card .mhz-card-actions {
  margin-top: 14px;
}

.mhz-feature {
  display: grid;
  gap: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 212, 0, 0.08),
    rgba(255, 59, 46, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: var(--mhz-radius);
}

.mhz-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--mhz-muted);
  background-color: #c3ee93;
}
.mhz-footer small {
  color: var(--mhz-muted);
}

.mhz-grid-2 {
  display: grid;
  gap: 22px;
}
.mhz-grid-3 {
  display: grid;
  gap: 16px;
}

.mhz-kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgb(204, 143, 30);
}

.mhz-form {
  display: grid;
  gap: 12px;
}
.mhz-form .mhz-row {
  display: grid;
  gap: 12px;
}
.mhz-input,
.mhz-select,
.mhz-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #53e75f;
  color: var(--mhz-text);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.mhz-textarea {
  min-height: 120px;
  resize: vertical;
}
.mhz-input:focus,
.mhz-select:focus,
.mhz-textarea:focus {
  border-color: var(--mhz-accent);
  box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.15);
}

.mhz-badge-pulse {
  position: relative;
  display: inline-block;
}
.mhz-badge-pulse:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 212, 0, 0.45);
  animation: mhzPulse 1.8s infinite;
  transform: scale(1.1);
}
@keyframes mhzPulse {
  0% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.mhz-toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #121218;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: var(--mhz-shadow);
  display: none;
  z-index: 50;
}
.mhz-toast.show {
  display: block;
}

@media (min-width: 768px) {
  .mhz-nav-links {
    display: flex;
  }
  .mhz-cta {
    display: block;
  }
  .mhz-hamburger {
    display: none;
  }
  .mhz-hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .mhz-hero h1 {
    font-size: 48px;
    color: #5fcee2;
  }
  .mhz-section h2 {
    color: #5fcee2;
    font-size: 34px;
  }
  .mhz-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .mhz-grid-2 {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .mhz-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .mhz-form .mhz-row {
    grid-template-columns: 1fr 1fr;
  }
}

.mhz-breadcrumb {
  font-size: 13px;
  color: var(--mhz-muted);
  margin-bottom: 8px;
}
.mhz-hero-sub {
  padding: 32px 0 0;
}
