:root {
  --hz-green-dark: #1f3326;
  --hz-green: #294833;
  --hz-green-mid: #3d6045;
  --hz-olive: #7d8f4f;
  --hz-orange: #c96f28;
  --hz-orange-dark: #a95618;
  --hz-bg: #f5f2ec;
  --hz-card: #faf8f3;
  --hz-border: #e1dbcf;
  --hz-text: #25231f;
  --hz-muted: #736d63;
  --nav-height: 68px;
}

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

html { scroll-behavior: smooth; }

body.hz-landing {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--hz-text);
  background: var(--hz-bg);
  overflow-x: hidden;
}

/* ---- Utility ---- */
.hz-container {
  width: min(1200px, calc(100vw - 80px));
  margin: 0 auto;
}

/* ============================
   NAVBAR
============================ */
.hz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s, box-shadow 0.3s;
}

.hz-nav.is-scrolled {
  background: rgba(22, 33, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hz-nav-inner {
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hz-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.hz-nav-brand:hover { color: #fff; text-decoration: none; }
.hz-nav-brand img { width: 34px; height: 34px; object-fit: contain; }

.hz-nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.hz-nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.hz-nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.09); text-decoration: none; }

.hz-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hz-btn-ghost {
  padding: 9px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
}
.hz-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; text-decoration: none; }

.hz-btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--hz-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 14px rgba(201, 111, 40, 0.36);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}
.hz-btn-primary:hover {
  background: #d97a30;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 111, 40, 0.48);
  transform: translateY(-1px);
}
.hz-btn-primary.hz-btn-lg { padding: 15px 30px; font-size: 16px; font-weight: 800; border-radius: 12px; }

.hz-btn-outline {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hz-btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
}

.hz-lang-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  font-weight: 650;
  padding: 6px 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-width: 52px;
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
}
.hz-lang-select:hover { border-color: rgba(255,255,255,0.44); color: #fff; }
.hz-lang-select option { background: #1f3326; color: #fff; }

.hz-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 22px;
  padding: 6px;
  line-height: 1;
}

/* ============================
   HERO
============================ */
.hz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(ellipse at 65% 35%, rgba(201, 111, 40, 0.18), transparent 44%),
    linear-gradient(155deg, rgba(5, 10, 7, 0.84) 0%, rgba(16, 28, 20, 0.70) 46%, rgba(28, 38, 28, 0.48) 100%),
    var(--hz-hero-bg, url('../img/bg1.jpg'));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hz-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(to top, var(--hz-bg) 0%, transparent 100%);
  pointer-events: none;
}

.hz-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: min(400px, 40vh);
  background-image: url('../img/topo-lines.svg');
  background-size: 900px auto;
  background-position: left bottom;
  background-repeat: repeat-x;
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.hz-hero-inner {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 80px));
  margin: 0 auto;
  padding: calc(var(--nav-height) + 96px) 0 140px;
}

.hz-hero-eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  padding: 6px 16px;
  background: rgba(201, 111, 40, 0.16);
  border: 1px solid rgba(201, 111, 40, 0.40);
  border-radius: 999px;
  color: #f09a55;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hz-hero h1 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hz-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 30px;
  border-radius: 999px;
  background: var(--hz-orange);
  box-shadow: 0 0 28px rgba(201, 111, 40, 0.6);
}

.hz-hero-sub {
  max-width: 560px;
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  line-height: 1.55;
}

.hz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================
   SECTION SHARED
============================ */
.hz-section { padding: 100px 0; }

.hz-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.hz-section-header h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 850;
  color: var(--hz-green-dark);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hz-section-sub {
  color: var(--hz-muted);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

.hz-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================
   FEATURES
============================ */
.hz-features { background: var(--hz-bg); }

.hz-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hz-feature-card {
  padding: 34px 30px;
  background: var(--hz-card);
  border: 1px solid var(--hz-border);
  border-radius: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
}

.hz-feature-card:hover {
  box-shadow: 0 10px 40px rgba(31, 51, 38, 0.10);
  transform: translateY(-3px);
}

.hz-feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 72, 51, 0.10);
  border-radius: 14px;
  color: var(--hz-green);
  font-size: 22px;
}

.hz-feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--hz-green-dark);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.hz-feature-card p {
  color: var(--hz-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============================
   ASSOCIATION SPOTLIGHT
============================ */
.hz-assoc {
  background: var(--hz-green-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hz-assoc::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/topo-lines.svg');
  background-size: 800px auto;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
}

.hz-assoc-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.hz-assoc-text .hz-eyebrow { color: #f09a55; }

.hz-assoc-text h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 850;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

.hz-assoc-text p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 38px;
}

.hz-assoc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--hz-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  border-radius: 11px;
  box-shadow: 0 4px 24px rgba(201, 111, 40, 0.40);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}
.hz-assoc-cta:hover {
  background: #d97a30;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(201, 111, 40, 0.52);
  transform: translateY(-1px);
}

.hz-assoc-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.hz-assoc-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.hz-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 111, 40, 0.20);
  border: 1px solid rgba(201, 111, 40, 0.45);
  border-radius: 50%;
  color: #f09a55;
  font-size: 11px;
}

/* ============================
   APP SECTION
============================ */
.hz-app {
  background: var(--hz-card);
  border-top: 1px solid var(--hz-border);
  border-bottom: 1px solid var(--hz-border);
}

.hz-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.hz-app-text .hz-eyebrow { color: var(--hz-orange); }

.hz-app-text h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 850;
  color: var(--hz-green-dark);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hz-app-text p {
  color: var(--hz-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 38px;
}

.hz-app-badges { display: flex; flex-wrap: wrap; gap: 12px; }

.hz-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--hz-green-dark);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 11px;
  color: #fff;
  text-decoration: none;
  min-width: 154px;
  transition: background 0.15s;
}
.hz-app-badge:hover { background: #2e4c3a; text-decoration: none; color: #fff; }
.hz-app-badge.is-soon { opacity: 0.52; cursor: default; pointer-events: none; }
.hz-app-badge i { font-size: 24px; flex-shrink: 0; }
.hz-app-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.hz-app-badge-sub { font-size: 10px; color: rgba(255, 255, 255, 0.60); }
.hz-app-badge-main { font-size: 14px; font-weight: 700; }

.hz-app-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hz-app-mockup-placeholder {
  width: 268px;
  height: 510px;
  border-radius: 44px;
  border: 8px solid rgba(41, 72, 51, 0.7);
  background: var(--hz-green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  box-shadow:
    0 30px 90px rgba(31, 51, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hz-app-mockup-placeholder::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 72px;
  height: 5px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.hz-app-mockup-placeholder i {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.14);
}

.hz-app-mockup-placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  line-height: 1.5;
}

/* ============================
   CONTACT
============================ */
.hz-contact { background: var(--hz-bg); }

.hz-contact-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.hz-contact-info h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  color: var(--hz-green-dark);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.hz-contact-info > p {
  color: var(--hz-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 40px;
}

.hz-contact-facts { display: grid; gap: 20px; }

.hz-contact-fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hz-contact-fact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 72, 51, 0.09);
  border-radius: 11px;
  color: var(--hz-green);
  font-size: 16px;
}

.hz-contact-fact-text strong {
  display: block;
  font-size: 14px;
  font-weight: 750;
  color: var(--hz-text);
  margin-bottom: 3px;
}

.hz-contact-fact-text span {
  font-size: 13px;
  color: var(--hz-muted);
  line-height: 1.45;
}

/* Form card */
.hz-contact-form-card {
  padding: 46px 50px;
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: 22px;
  box-shadow: 0 6px 40px rgba(31, 51, 38, 0.07);
}

.hz-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hz-form-group { margin-bottom: 22px; }

.hz-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 750;
  color: var(--hz-text);
  margin-bottom: 8px;
}

.hz-req { color: var(--hz-orange); }

.hz-form-group input,
.hz-form-group select,
.hz-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hz-border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--hz-text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.hz-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23736d63' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.hz-form-group input:focus,
.hz-form-group select:focus,
.hz-form-group textarea:focus {
  border-color: var(--hz-olive);
  box-shadow: 0 0 0 4px rgba(125, 143, 79, 0.15);
}

.hz-form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

.hz-btn-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #df7d26 0%, #cf6100 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(201, 111, 40, 0.26);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.hz-btn-submit:hover:not(:disabled) {
  background: linear-gradient(180deg, #e88730 0%, #d56800 100%);
  box-shadow: 0 12px 36px rgba(201, 111, 40, 0.38);
  transform: translateY(-1px);
}

.hz-btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.hz-contact-notice {
  margin-top: 14px;
  font-size: 12px;
  color: var(--hz-muted);
  text-align: center;
  line-height: 1.5;
}

.hz-contact-notice a { color: var(--hz-orange-dark); }

.hz-contact-error {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.07);
  border: 1px solid rgba(220, 53, 69, 0.22);
  color: #c0392b;
  font-size: 14px;
  line-height: 1.45;
}

.hz-contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
  gap: 14px;
}

.hz-contact-success i {
  font-size: 52px;
  color: #2ecc71;
}

.hz-contact-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--hz-green-dark);
  margin: 0;
}

.hz-contact-success p {
  color: var(--hz-muted);
  font-size: 15px;
  max-width: 300px;
  line-height: 1.5;
  margin: 0;
}

/* ============================
   FOOTER
============================ */
.hz-footer {
  background: var(--hz-green-dark);
  padding: 60px 0 36px;
}

.hz-footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.hz-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
  margin-bottom: 14px;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.hz-footer-brand:hover { color: #fff; text-decoration: none; }
.hz-footer-brand img { width: 32px; height: 32px; object-fit: contain; }

.hz-footer-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.6;
}

.hz-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hz-footer-col-title {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 18px;
}

.hz-footer-col ul { list-style: none; display: grid; gap: 12px; }

.hz-footer-col a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.hz-footer-col a:hover { color: #fff; }

.hz-footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.30);
  font-size: 13px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1100px) {
  .hz-features-grid { grid-template-columns: repeat(2, 1fr); }
  .hz-assoc-inner, .hz-app-inner { gap: 56px; }
  .hz-contact-inner { grid-template-columns: 320px 1fr; gap: 56px; }
}

@media (max-width: 900px) {
  .hz-nav-links { display: none; }
  .hz-nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(22, 33, 26, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 24px 28px;
    gap: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    z-index: 99;
  }
  .hz-nav-links.is-open a { border-radius: 10px; }
  .hz-nav-toggle { display: block; }
  .hz-btn-ghost { display: none; }
  .hz-container { width: calc(100vw - 40px); }
  .hz-section { padding: 72px 0; }
  .hz-hero-inner { padding: calc(var(--nav-height) + 56px) 0 100px; width: calc(100vw - 40px); }
  .hz-hero h1 { font-size: clamp(40px, 11vw, 58px); }
  .hz-hero-sub { font-size: 17px; }
  .hz-assoc-inner, .hz-app-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hz-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hz-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hz-footer-cols { grid-template-columns: repeat(2, 1fr); }
  .hz-app-mockup { display: none; }
}

@media (max-width: 640px) {
  .hz-features-grid { grid-template-columns: 1fr; }
  .hz-form-row { grid-template-columns: 1fr; gap: 0; }
  .hz-contact-form-card { padding: 28px 22px; }
  .hz-footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .hz-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .hz-hero-actions { flex-direction: column; align-items: flex-start; }
  .hz-btn-primary.hz-btn-lg, .hz-btn-outline { width: 100%; text-align: center; justify-content: center; }
}
