/* ============================================================
   ZERONIX TECHNOLOGY — HOMEPAGE STYLES (home.css)
   Modern IT Solutions Design with Animations
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --hz-dark:    #042A2D;
  --hz-darker:  #021a1c;
  --hz-green:   #4CAF50;
  --hz-teal:    #019297;
  --hz-blue:    #3b82f6;
  --hz-gold:    #f59e0b;
  --hz-purple:  #8b5cf6;
  --hz-red:     #ef4444;
  --hz-orange:  #f97316;
  --hz-light:   #f0f4f8;
  --hz-white:   #ffffff;
  --hz-text:    #1e293b;
  --hz-muted:   #64748b;
  --hz-border:  #e2e8f0;
  --hz-radius:  14px;
  --hz-shadow:  0 4px 24px rgba(4,42,45,0.10);
  --hz-shadow-lg: 0 12px 48px rgba(4,42,45,0.18);
}

/* ── Shared Utilities ── */
.hz-section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hz-green);
  background: rgba(76,175,80,0.10);
  border: 1px solid rgba(76,175,80,0.25);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hz-section-tag--gold {
  color: var(--hz-gold);
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.25);
}
.hz-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.hz-section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--hz-text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hz-section-header p {
  font-size: 1.05rem;
  color: var(--hz-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.hz-section-header--light h2 { color: #fff; }
.hz-section-header--light p  { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.hz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--hz-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(76,175,80,0.30);
}
.hz-btn-primary:hover {
  background: #388e3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.40);
  color: #fff;
}
.hz-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.hz-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.10);
  color: #fff;
  transform: translateY(-2px);
}
.hz-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 2px solid var(--hz-dark);
  color: var(--hz-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.hz-btn-outline-dark:hover {
  background: var(--hz-dark);
  color: #fff;
  transform: translateY(-2px);
}
.hz-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 2px solid rgba(255,255,255,0.40);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.hz-btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateY(-2px);
}
.hz-btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

/* ================================================================
   1. HERO SECTION
   ================================================================ */
.hz-hero {
  position: relative;
  min-height: 100vh;
  background: var(--hz-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated dot-grid background */
.hz-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(1,146,151,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76,175,80,0.10) 0%, transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(59,130,246,0.08) 0%, transparent 40%);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0.85; transform: scale(1.04); }
}

/* CSS grid overlay */
.hz-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,146,151,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,146,151,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: gridPulse 6s ease-in-out infinite alternate;
}

@keyframes gridPulse {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

.hz-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}

/* ── Hero Text ── */
.hz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hz-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--hz-green);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hz-hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hz-green {
  color: var(--hz-green);
}
.hz-gradient-text {
  background: linear-gradient(90deg, var(--hz-green) 0%, var(--hz-teal) 60%, #56ccf2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hz-hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hz-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hz-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hz-trust-item {
  display: flex;
  flex-direction: column;
}
.hz-trust-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hz-green);
  line-height: 1;
}
.hz-trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
}
.hz-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ── Hero Visual ── */
.hz-hero-visual {
  position: relative;
  height: 460px;
}

.hz-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(76,175,80,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 40px rgba(76,175,80,0.20), 0 0 80px rgba(1,146,151,0.10);
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(76,175,80,0.20), 0 0 80px rgba(1,146,151,0.10); }
  50%       { box-shadow: 0 0 60px rgba(76,175,80,0.35), 0 0 100px rgba(1,146,151,0.18); }
}
.hz-visual-center img {
  width: 70px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Orbital ring */
.hz-hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(76,175,80,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 20s linear infinite;
}
.hz-hero-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(1,146,151,0.20);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 14s linear infinite reverse;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hz-visual-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.80);
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 88px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.hz-visual-card:hover {
  border-color: rgba(76,175,80,0.5);
  transform: scale(1.05) !important;
}
.hz-visual-card i {
  font-size: 1.4rem;
  color: var(--hz-green);
}

/* Positions + individual float animations */
.hz-vc-1 { top: 4%;  left: 12%; animation: floatA 4.2s ease-in-out infinite; }
.hz-vc-2 { top: 4%;  right: 10%; animation: floatB 3.8s ease-in-out infinite 0.5s; }
.hz-vc-3 { top: 42%; left: 0%;  animation: floatC 4.5s ease-in-out infinite 1s; }
.hz-vc-4 { top: 42%; right: 0%; animation: floatA 3.6s ease-in-out infinite 0.8s; }
.hz-vc-5 { bottom: 4%; left: 12%; animation: floatB 4s ease-in-out infinite 0.3s; }
.hz-vc-6 { bottom: 4%; right: 10%; animation: floatC 4.3s ease-in-out infinite 1.2s; }

.hz-vc-1 i { color: var(--hz-red); }
.hz-vc-2 i { color: var(--hz-blue); }
.hz-vc-3 i { color: var(--hz-orange); }
.hz-vc-4 i { color: var(--hz-purple); }
.hz-vc-5 i { color: var(--hz-gold); }
.hz-vc-6 i { color: var(--hz-teal); }

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

/* Scroll indicator */
.hz-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hz-scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(76,175,80,0.8), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(20px); }
}

/* ================================================================
   2. TICKER / MARQUEE
   ================================================================ */
.hz-ticker {
  background: var(--hz-green);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hz-ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
}
.hz-ticker-track span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  padding: 0 14px;
  text-transform: uppercase;
}
.hz-ticker-dot {
  color: rgba(255,255,255,0.5) !important;
  font-size: 1.1rem !important;
  padding: 0 !important;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   3. SERVICES SECTION
   ================================================================ */
.hz-services {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.hz-services::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hz-services::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,146,151,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ── Card shell ── */
.hz-svc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(4,42,45,0.07);
  border: 1px solid rgba(4,42,45,0.06);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.hz-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(4,42,45,0.14);
}

/* ── Coloured top panel ── */
.hz-svc-top {
  position: relative;
  padding: 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  min-height: 110px;
}
.hz-svc-top--green  { background: linear-gradient(135deg, #042A2D 0%, #166534 100%); }
.hz-svc-top--blue   { background: linear-gradient(135deg, #0f2044 0%, #1d4ed8 100%); }
.hz-svc-top--purple { background: linear-gradient(135deg, #2e1065 0%, #7c3aed 100%); }
.hz-svc-top--red    { background: linear-gradient(135deg, #450a0a 0%, #dc2626 100%); }
.hz-svc-top--orange { background: linear-gradient(135deg, #431407 0%, #ea580c 100%); }
.hz-svc-top--teal   { background: linear-gradient(135deg, #042A2D 0%, #0d9488 100%); }

/* ── Frosted-glass icon ── */
.hz-svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  z-index: 2;
}
.hz-svc-card:hover .hz-svc-icon {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}
.hz-svc-icon i { font-size: 1.35rem; color: #fff; }

/* ── Card number ── */
.hz-svc-num {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  position: relative;
  z-index: 2;
  align-self: flex-start;
  transition: color 0.3s;
}
.hz-svc-card:hover .hz-svc-num { color: rgba(255,255,255,0.22); }

/* ── Large background icon (decorative) ── */
.hz-svc-top-bg {
  position: absolute;
  bottom: -10px;
  right: -4px;
  font-size: 5.5rem;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
  transition: transform 0.4s ease, color 0.4s;
}
.hz-svc-card:hover .hz-svc-top-bg {
  transform: scale(1.12) rotate(-6deg);
  color: rgba(255,255,255,0.11);
}

/* ── Card body ── */
.hz-svc-body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hz-svc-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--hz-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hz-svc-body p {
  font-size: 0.875rem;
  color: var(--hz-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.hz-svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hz-teal);
  letter-spacing: 0.3px;
  transition: gap 0.25s, color 0.25s;
}
.hz-svc-card:hover .hz-svc-arrow {
  gap: 12px;
  color: var(--hz-green);
}

.hz-services-cta {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

/* ================================================================
   4. STATS SECTION
   ================================================================ */
.hz-stats {
  background: var(--hz-dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.hz-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(76,175,80,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(1,146,151,0.08) 0%, transparent 50%);
}
.hz-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hz-stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hz-stat-item:last-child { border-right: none; }
.hz-stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--hz-green);
  line-height: 1;
  margin-bottom: 10px;
}
.hz-stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ================================================================
   5. RECENT PROJECTS (homepage teaser)
   ================================================================ */
.hz-projects {
  padding: 90px 0;
  background: var(--hz-light, #f5f8f7);
}

.hz-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 36px;
}

.hz-proj-item {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(4,42,45,0.07);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}
.hz-proj-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(4,42,45,0.13);
}

.hz-proj-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hz-proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.hz-proj-item:hover .hz-proj-img img { transform: scale(1.07); }

.hz-proj-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--hz-dark, #042A2D);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
}

.hz-proj-body {
  padding: 16px 18px 18px;
}
.hz-proj-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hz-dark, #042A2D);
  margin: 0 0 8px;
  line-height: 1.35;
  font-family: 'Montserrat', sans-serif;
}
.hz-proj-loc {
  font-size: 0.73rem;
  color: rgba(4,42,45,0.45);
  font-weight: 500;
}
.hz-proj-loc i { color: var(--hz-teal, #019297); margin-right: 4px; }

/* ================================================================
   6. WHY CHOOSE US
   ================================================================ */
.hz-why {
  padding: 100px 0;
  background: var(--hz-dark, #042A2D);
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.hz-why-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Glow orbs */
.hz-why-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hz-why-glow--left {
  width: 500px; height: 500px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 65%);
}
.hz-why-glow--right {
  width: 400px; height: 400px;
  bottom: -80px; right: -100px;
  background: radial-gradient(circle, rgba(1,146,151,0.10) 0%, transparent 65%);
}

/* Two-column layout */
.hz-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Left panel ---- */
.hz-why-left { color: #fff; }
.hz-why-left h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 12px 0 18px;
  font-family: 'Montserrat', sans-serif;
}
.hz-why-left > p {
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Stats row */
.hz-why-left-stats {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
}
.hz-wls {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hz-wls:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hz-wls strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--hz-green, #4CAF50);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.hz-wls span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
}

/* CTA buttons */
.hz-why-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Right panel: feature rows ---- */
.hz-why-right {
  display: flex;
  flex-direction: column;
}
.hz-why-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: background 0.22s;
}
.hz-why-row:hover { background: rgba(255,255,255,0.04); }
.hz-why-row--last { border-bottom: none; }

/* Number + icon side by side */
.hz-why-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hz-why-rnum {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(1,146,151,0.5);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  min-width: 18px;
}

/* Circular icon */
.hz-why-rico {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.hz-why-row:hover .hz-why-rico { transform: scale(1.1); }
.hz-why-rico i { font-size: 1rem; }

.hz-why-rico--green  { background: rgba(76,175,80,0.15); }
.hz-why-rico--green i  { color: #4CAF50; }
.hz-why-rico--blue   { background: rgba(29,78,216,0.15); }
.hz-why-rico--blue i   { color: #60a5fa; }
.hz-why-rico--red    { background: rgba(220,38,38,0.15); }
.hz-why-rico--red i    { color: #f87171; }
.hz-why-rico--orange { background: rgba(234,88,12,0.15); }
.hz-why-rico--orange i { color: #fb923c; }
.hz-why-rico--purple { background: rgba(124,58,237,0.15); }
.hz-why-rico--purple i { color: #a78bfa; }
.hz-why-rico--teal   { background: rgba(1,146,151,0.15); }
.hz-why-rico--teal i   { color: #2dd4bf; }

/* Text body */
.hz-why-row-body { flex: 1; min-width: 0; }
.hz-why-row-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.3;
}
.hz-why-row-body p {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.46);
  margin: 0;
  line-height: 1.55;
}

/* Metric on right */
.hz-why-row-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 54px;
}
.hz-why-row-metric strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--hz-green, #4CAF50);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.hz-why-row-metric span {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.32);
  margin-top: 4px;
  white-space: nowrap;
}

/* ================================================================
   6. SECURITY PACKAGES
   ================================================================ */
.hz-packages {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.hz-packages-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 50%, #0a1628 100%);
}
.hz-packages-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hz-packages-inner {
  position: relative;
  z-index: 1;
}

.hz-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.hz-pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.hz-pkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.4);
}
.hz-pkg-card--featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(245,158,11,0.08) 100%);
  border-color: rgba(245,158,11,0.3);
}
.hz-pkg-card--featured:hover { border-color: rgba(245,158,11,0.6); }

.hz-pkg-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  padding: 5px 22px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hz-pkg-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.hz-pkg-badge--blue  { background: rgba(59,130,246,0.15); color: #60a5fa; }
.hz-pkg-badge--gold  { background: rgba(245,158,11,0.15); color: var(--hz-gold); }

.hz-pkg-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hz-pkg-price {
  font-size: 2rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hz-pkg-price--gold { color: var(--hz-gold); }
.hz-pkg-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 2px;
}

.hz-pkg-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hz-pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.4;
}
.hz-pkg-features li:last-child { border-bottom: none; }
.hz-pkg-features li i {
  color: #60a5fa;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.hz-pkg-card--featured .hz-pkg-features li i { color: var(--hz-gold); }
.hz-pkg-features li strong { color: #fff; }

.hz-pkg-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.hz-pkg-btn--blue {
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.4);
  color: #60a5fa;
}
.hz-pkg-btn--blue:hover {
  background: rgba(59,130,246,0.30);
  color: #60a5fa;
  transform: translateY(-2px);
}
.hz-pkg-btn--gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
}
.hz-pkg-btn--gold:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-2px);
}
.hz-pkg-btn i { margin-right: 6px; }

.hz-pkg-note {
  text-align: center;
}
.hz-pkg-note p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ================================================================
   7. HOW WE WORK (PROCESS)
   ================================================================ */
.hz-process {
  padding: 100px 0;
  background: var(--hz-light);
}
.hz-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 10px;
}
.hz-step {
  flex: 1;
  text-align: center;
  padding: 40px 28px 36px;
  background: var(--hz-white);
  border-radius: var(--hz-radius);
  border: 1px solid var(--hz-border);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hz-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--hz-shadow-lg);
  border-color: rgba(76,175,80,0.3);
}
.hz-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--hz-green);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hz-step-icon {
  width: 64px;
  height: 64px;
  background: rgba(76,175,80,0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s;
}
.hz-step:hover .hz-step-icon { background: rgba(76,175,80,0.18); }
.hz-step-icon i { font-size: 1.6rem; color: var(--hz-green); }
.hz-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hz-text);
  margin-bottom: 10px;
}
.hz-step p {
  font-size: 0.88rem;
  color: var(--hz-muted);
  line-height: 1.55;
  margin: 0;
}
.hz-step-arrow {
  align-self: center;
  padding: 0 10px;
  color: rgba(76,175,80,0.4);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ================================================================
   8. IT PRODUCTS SECTION
   ================================================================ */
.hz-stores {
  padding: 100px 0;
  background: var(--hz-white);
}
.hz-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hz-product-item {
  background: var(--hz-light);
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hz-product-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hz-shadow);
  border-color: rgba(76,175,80,0.3);
}
.hz-product-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(76,175,80,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s;
}
.hz-product-item:hover .hz-product-icon { background: rgba(76,175,80,0.18); }
.hz-product-icon i {
  font-size: 1.4rem;
  color: var(--hz-green);
}
.hz-product-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hz-text);
  margin-bottom: 8px;
}
.hz-product-item p {
  font-size: 0.88rem;
  color: var(--hz-muted);
  line-height: 1.55;
  margin: 0;
}

.hz-store-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hz-text);
  margin-bottom: 12px;
}
.hz-store-card--dark .hz-store-content h3 { color: #fff; }

.hz-store-content p {
  font-size: 0.92rem;
  color: var(--hz-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.hz-store-card--dark .hz-store-content p { color: rgba(255,255,255,0.55); }

/* ================================================================
   9. CLIENTS SECTION
   ================================================================ */
.hz-clients {
  padding: 80px 0;
  background: var(--hz-light);
}
.hz-clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.hz-client-item {
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s;
  filter: grayscale(1);
}
.hz-client-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}
.hz-client-item img {
  max-height: 55px;
  max-width: 160px;
  object-fit: contain;
}

/* ================================================================
   10. BRANDS SECTION
   ================================================================ */
.hz-brands {
  background: var(--hz-dark, #042A2D);
  padding: 72px 0 60px;
  overflow: hidden;
}

.hz-brands-header {
  text-align: center;
  margin-bottom: 44px;
}

.hz-brands-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hz-teal, #019297);
  margin-bottom: 10px;
}

.hz-brands-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
}

.hz-brands-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.hz-brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.hz-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 18px 26px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  cursor: default;
  min-width: 140px;
  text-align: center;
}

.hz-brand-item:hover {
  border-color: rgba(1,146,151,0.45);
  background: rgba(1,146,151,0.09);
  transform: translateY(-3px);
}

.hz-brand-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hz-brand-logo img {
  max-height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.35);
  transition: filter 0.3s ease;
}

.hz-brand-item:hover .hz-brand-logo img {
  filter: brightness(0) invert(1) opacity(1);
}

.hz-brand-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(1,146,151,0.5);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.hz-brand-item:hover .hz-brand-cat {
  color: var(--hz-teal, #019297);
}

.hz-brands-cta {
  text-align: center;
  margin-top: 36px;
}

.hz-brands-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.hz-brands-cta a {
  color: var(--hz-green, #4CAF50);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.hz-brands-cta a:hover {
  color: #fff;
}

.hz-brands-cta a i {
  font-size: 0.75rem;
  margin-left: 4px;
}

/* ================================================================
   10. CTA SECTION
   ================================================================ */
.hz-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.hz-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hz-dark) 0%, #065f46 50%, var(--hz-dark) 100%);
  animation: ctaBgShift 10s ease-in-out infinite alternate;
}
@keyframes ctaBgShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hz-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(76,175,80,0.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(1,146,151,0.15) 0%, transparent 50%);
}

.hz-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hz-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.hz-cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.hz-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE — Tablet (max-width: 991px)
   ================================================================ */
@media (max-width: 991.98px) {
  .hz-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding: 100px 0 60px;
  }
  .hz-hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hz-hero-ctas { justify-content: center; }
  .hz-hero-trust { justify-content: center; }

  .hz-hero-visual {
    height: 300px;
    max-width: 380px;
    margin: 0 auto;
  }
  .hz-vc-1 { top: 2%;  left: 5%; }
  .hz-vc-2 { top: 2%;  right: 5%; }
  .hz-vc-3 { top: 40%; left: -2%; }
  .hz-vc-4 { top: 40%; right: -2%; }
  .hz-vc-5 { bottom: 2%; left: 5%; }
  .hz-vc-6 { bottom: 2%; right: 5%; }
  .hz-hero-visual::before { width: 250px; height: 250px; }
  .hz-hero-visual::after  { width: 150px; height: 150px; }

  .hz-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hz-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hz-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 28px;
  }
  .hz-stat-item:last-child,
  .hz-stat-item:nth-child(2) {
    border-bottom: none;
  }

  .hz-projects-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .hz-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hz-why-left h2 { font-size: 1.75rem; }

  .hz-pkg-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .hz-process-steps {
    flex-direction: column;
    gap: 28px;
  }
  .hz-step-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .hz-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hz-brand-item { min-width: 120px; padding: 14px 18px; }
  .hz-brand-logo img { max-width: 110px; }
}

/* ================================================================
   RESPONSIVE — Mobile (max-width: 575px)
   ================================================================ */
@media (max-width: 575.98px) {
  .hz-hero-h1 { font-size: 2rem; }
  .hz-hero-trust { gap: 16px; }

  .hz-services-grid { grid-template-columns: 1fr; }

  .hz-projects-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .hz-why-left h2 { font-size: 1.45rem; }
  .hz-wls strong { font-size: 1.6rem; }
  .hz-wls { padding-right: 20px; margin-right: 20px; }
  .hz-why-row { grid-template-columns: auto 1fr; gap: 14px; }
  .hz-why-row-metric { display: none; }

  .hz-process-steps { gap: 20px; }

  .hz-products-grid { grid-template-columns: 1fr; }

  .hz-brand-item { min-width: calc(50% - 10px); padding: 14px 12px; }
  .hz-brand-logo img { max-width: 100px; max-height: 30px; }
  .hz-brands-heading { font-size: 1.4rem; }

  .hz-clients-logos { gap: 28px; }

  .hz-pkg-card { padding: 28px 20px; }
  .hz-pkg-price { font-size: 1.65rem; }

  .hz-cta-btns { flex-direction: column; align-items: center; }
  .hz-btn-lg { width: 100%; text-align: center; justify-content: center; }
}
