/* ═══════════════════════════════════════════
   BHUMISEVA — GLOBAL STYLES
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #2d7a4f;
  --green-d:  #1a5c35;
  --green-l:  #e8f5ee;
  --blue:     #4f86c6;
  --blue-l:   #eef4fc;
  --orange:   #e8834a;
  --orange-l: #fff3ec;
  --purple:   #7c5cbf;
  --purple-l: #f3f0fb;
  --red:      #e74c3c;
  --red-l:    #fdf0ef;
  --grey:     #6b7280;
  --border:   #e5e7eb;
  --bg:       #f4f6f9;
  --white:    #ffffff;
  --text:     #1f2937;
  --shadow:   0 1px 4px rgba(0,0,0,.08);
  --radius:   10px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #a3cfa7; border-radius: 3px; }


/* ═══════════════════════════════════════════
   HOME PAGE — NAVBAR
   ═══════════════════════════════════════════ */
.hn-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.hn-nav-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.hn-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hn-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
}
.hn-brand-icon { font-size: 1.5rem; }
.hn-brand:hover { text-decoration: none; }

.hn-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hn-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.hn-links a:hover { background: var(--green-l); color: var(--green); }
.hn-cta {
  background: var(--green) !important;
  color: white !important;
  margin-left: 8px;
  font-weight: 600 !important;
}
.hn-cta:hover { background: var(--green-d) !important; opacity: 1; }

/* Hamburger */
.hn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hn-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hn-hamburger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hn-hamburger-open span:nth-child(2) { opacity: 0; }
.hn-hamburger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.hn-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
}
.hn-mobile-menu a {
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.hn-mobile-menu a:last-child {
  margin-top: 8px;
  background: var(--green);
  color: white;
  text-align: center;
  border-radius: 8px;
  border: none;
  padding: 12px;
  font-weight: 600;
}
.hn-menu-open { display: flex; }

@media (max-width: 900px) {
  .hn-links { display: none; }
  .hn-hamburger { display: flex; }
}


/* ═══════════════════════════════════════════
   HOME PAGE — HERO
   ═══════════════════════════════════════════ */
.hn-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #f0faf4 0%, #e8f5ee 40%, #d1f0e2 70%, #c3e8f0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 68px; /* nav height */
}

/* Animated background blobs */
.hn-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hn-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
}
.hn-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a7f3d0, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hn-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #bfdbfe, transparent 70%);
  top: 100px; right: -80px;
  animation-delay: -3s;
}
.hn-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #fde68a, transparent 70%);
  bottom: 0; left: 40%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-10px, 20px) scale(0.97); }
}

.hn-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

/* Badge */
.hn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45,122,79,.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(45,122,79,.2);
  margin-bottom: 20px;
}

.hn-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #1a2e1f;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hn-accent {
  color: var(--green);
  position: relative;
}
.hn-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #a7f3d0, #6ee7b7);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.6;
}

.hn-hero-desc {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 500px;
}
.hn-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hn-btn-primary {
  background: var(--green);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(45,122,79,.3);
  transition: transform .15s, box-shadow .15s, background .15s;
  text-decoration: none;
}
.hn-btn-primary:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,122,79,.35);
  text-decoration: none;
  color: white;
}
.hn-btn-ghost {
  background: rgba(255,255,255,.8);
  color: var(--green-d);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid rgba(45,122,79,.25);
  transition: background .15s, border-color .15s;
  text-decoration: none;
}
.hn-btn-ghost:hover {
  background: white;
  border-color: var(--green);
  text-decoration: none;
  color: var(--green-d);
}

/* Stats */
.hn-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hn-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.hn-stat-label {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
  margin-top: 3px;
}
.hn-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(45,122,79,.2);
}

/* Graphic side */
.hn-hero-graphic {
  position: relative;
}
.hn-main-svg {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(45,122,79,.15);
  animation: floatHero 5s ease-in-out infinite;
}
@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating cards */
.hn-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.8);
  animation: floatCard 4s ease-in-out infinite;
}
.hn-float-card:nth-child(2) { animation-delay: -1.5s; }
.hn-float-card:nth-child(3) { animation-delay: -3s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hn-fc-1 { top: 10%; right: -10%; }
.hn-fc-2 { bottom: 22%; left: -12%; }
.hn-fc-3 { bottom: 5%; right: 2%; }
.hn-fc-icon { font-size: 1.6rem; }
.hn-fc-title { font-size: 13px; font-weight: 700; color: var(--text); }
.hn-fc-sub { font-size: 11px; color: var(--grey); }

/* Scroll hint */
.hn-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  border: 1.5px solid rgba(45,122,79,.25);
  color: var(--green);
  animation: bounce 2s ease-in-out infinite;
  text-decoration: none;
  z-index: 3;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.hn-trust-bar {
  background: var(--green-d);
  padding: 14px 24px;
  overflow: hidden;
}
.hn-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hn-trust-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.hn-trust-sep {
  color: rgba(255,255,255,.3);
  font-size: 16px;
}


/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════ */
.hn-section {
  padding: 96px 0;
}
.hn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hn-section-badge {
  display: inline-block;
  background: var(--green-l);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.hn-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #1a2e1f;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.hn-section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto 52px;
  text-align: center;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.hn-about { background: #fff; }
.hn-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.hn-about-graphic svg {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(45,122,79,.1));
}
.hn-about-lead {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 32px;
  border-left: 4px solid var(--green);
  padding-left: 20px;
  background: var(--green-l);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
}

/* Fact list */
.hn-fact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hn-fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hn-fact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hn-fact-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.hn-fact-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════ */
.hn-benefits-sec { background: var(--bg); }
.hn-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hn-benefit-card {
  background: white;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--border);
}
.hn-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(45,122,79,.12);
}
.hn-benefit-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.hn-benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.hn-benefit-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════ */
.hn-products-sec {
  background: #f3faf3;
  padding: 80px 0 96px;
}

/* Section heading block */
.hn-prod-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.hn-prod-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #1a2e1f;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.hn-prod-underline {
  width: 80px;
  height: 5px;
  background: #eab308;
  border-radius: 3px;
  margin: 0 auto 52px;
}

/* 4-column grid */
.hn-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Split card */
.hn-pc {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1.5px solid #e8f5ee;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.hn-pc:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(45,122,79,.15);
}

/* White top — bag image */
.hn-pc-top {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 16px;
  min-height: 220px;
}
.hn-bag-svg {
  width: 100%;
  max-width: 130px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.10));
  transition: transform .3s;
}
.hn-pc:hover .hn-bag-svg {
  transform: translateY(-6px) scale(1.04);
}

/* Green bottom */
.hn-pc-bottom {
  background: var(--green);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.hn-pc-kg {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hn-pc-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
  text-align: center;
  line-height: 1.55;
}
.hn-pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  background: white;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.hn-pc-btn:hover {
  background: #f0fdf4;
  transform: scale(1.04);
  text-decoration: none;
  color: var(--green-d);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}


/* ═══════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════ */
.hn-process-sec { background: var(--bg); }
.hn-process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hn-process-step {
  flex: 1;
  background: white;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.hn-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(45,122,79,.1);
}
.hn-process-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-l);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.hn-process-icon { font-size: 2.2rem; margin-bottom: 14px; }
.hn-process-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.hn-process-step p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
}
.hn-process-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--green);
  opacity: 0.4;
  padding: 0 12px;
  align-self: center;
  font-weight: 700;
}


/* ═══════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════ */
.hn-stats-sec {
  background: var(--green);
  padding: 72px 0;
}
.hn-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.hn-stats-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.hn-stats-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}


/* ═══════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════ */
.hn-reviews-sec { background: white; }
.hn-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hn-review-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.hn-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
}
.hn-review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  opacity: .08;
  font-family: Georgia, serif;
  font-weight: 900;
}
.hn-review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hn-review-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.hn-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hn-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.hn-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.hn-author-loc {
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}


/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.hn-contact-sec {
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f5ee 50%, #eff6ff 100%);
  padding: 96px 0;
}
.hn-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

/* Info panel */
.hn-contact-info { padding-top: 8px; }
.hn-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.hn-cd-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hn-cd-icon {
  width: 44px; height: 44px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.hn-cd-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.hn-cd-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* Social */
.hn-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hn-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  background: white;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.hn-social-btn:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(45,122,79,.12);
  color: var(--green);
  text-decoration: none;
}

/* Alerts */
.hn-alert-success, .hn-alert-error {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}
.hn-alert-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}
.hn-alert-error {
  background: var(--red-l);
  border: 1.5px solid #fca5a5;
  color: #b91c1c;
}

/* Form */
.hn-contact-form-wrap {
  background: rgba(255,255,255,.95);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 10px 50px rgba(0,0,0,.1);
  backdrop-filter: blur(8px);
}
.hn-form-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.hn-form-subhead {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 28px;
}
.hn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hn-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.hn-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--red); }
.hn-form-group input,
.hn-form-group select,
.hn-form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.hn-form-group input:focus,
.hn-form-group select:focus,
.hn-form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,122,79,.12);
}
.hn-form-group textarea { resize: vertical; min-height: 120px; }

.hn-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(45,122,79,.3);
  transition: background .15s, transform .1s, box-shadow .15s;
}
.hn-submit-btn:hover {
  background: var(--green-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(45,122,79,.35);
}
.hn-submit-btn:active {
  transform: scale(.98);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.hn-footer {
  background: #111827;
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.hn-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hn-footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.hn-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 280px;
  margin-bottom: 24px;
}
.hn-footer-social {
  display: flex;
  gap: 10px;
}
.hn-footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: background .15s;
}
.hn-footer-social a:hover { background: var(--green); }

.hn-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hn-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.hn-footer-col a,
.hn-footer-col span {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s;
}
.hn-footer-col a:hover { color: rgba(255,255,255,.9); text-decoration: none; }

.hn-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hn-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hn-process-timeline { gap: 0; }
  .hn-process-arrow { display: none; }
  .hn-process-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hn-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 900px) {
  .hn-hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hn-hero-text { display: flex; flex-direction: column; align-items: center; }
  .hn-hero-desc { max-width: 100%; }
  .hn-hero-graphic { max-width: 440px; margin: 0 auto; }
  .hn-fc-1 { top: -5%; right: 0; }
  .hn-fc-2 { bottom: 10%; left: 0; }
  .hn-fc-3 { display: none; }

  .hn-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hn-about-graphic { max-width: 280px; margin: 0 auto; }
  .hn-benefits-grid { grid-template-columns: 1fr 1fr; }
  .hn-products-grid { grid-template-columns: repeat(2, 1fr); }
  .hn-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hn-reviews-grid { grid-template-columns: 1fr; }
  .hn-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hn-footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hn-hero-title { letter-spacing: -1px; }
  .hn-hero-stats { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hn-stat-sep { display: none; }
  .hn-benefits-grid { grid-template-columns: 1fr; }
  .hn-products-grid { grid-template-columns: repeat(2, 1fr); }
  .hn-process-timeline { grid-template-columns: 1fr; }
  .hn-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hn-contact-form-wrap { padding: 28px 20px; }
  .hn-form-row { grid-template-columns: 1fr; }
  .hn-footer-links { grid-template-columns: 1fr; }
  .hn-footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  .hn-trust-sep { display: none; }
  .hn-trust-inner { gap: 12px; }
}


/* ═══════════════════════════════════════════
   DASHBOARD / AUTH PAGES (unchanged)
   ═══════════════════════════════════════════ */

/* ── Auth ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5c35 0%, #2d7a4f 50%, #4f86c6 100%);
}
.auth-wrapper { width: 100%; max-width: 420px; padding: 20px; }
.auth-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo .logo-icon { font-size: 42px; display: block; margin-bottom: 8px; }
.auth-logo h1 { font-size: 22px; color: var(--green); font-weight: 700; }
.auth-logo p  { color: var(--grey); font-size: 13px; margin-top: 4px; }
.auth-switch { text-align: center; margin-top: 20px; color: var(--grey); }

/* ── Navbar (dashboard) ── */
.navbar {
  background: var(--green);
  color: white;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; }
.nav-brand .logo-icon { font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,.85);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  transition: background .15s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,.2);
  color: white;
  text-decoration: none;
}
.nav-links .btn-logout { color: rgba(255,255,255,.7); font-size: 12px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 24px 20px; }

/* ── Page header ── */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.page-header h2 { font-size: 20px; font-weight: 700; }

/* ── Alerts ── */
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 13px; }
.alert-error   { background: var(--red-l);   color: #b91c1c; border: 1px solid #fca5a5; }
.alert-success { background: var(--green-l); color: #166534; border: 1px solid #86efac; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--green); color: white; }
.btn-outline  { background: white; color: var(--text); border: 1px solid var(--border); }
.btn-full { width: 100%; justify-content: center; padding: 10px; }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-weight: 600; font-size: 13px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,122,79,.12);
}
.required { color: var(--red); }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; }

/* ── Summary cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid transparent;
}
.card-green  { border-left-color: var(--green); }
.card-blue   { border-left-color: var(--blue); }
.card-red    { border-left-color: var(--orange); }
.card-purple { border-left-color: var(--purple); }
.card-icon { font-size: 32px; }
.card-label { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: .5px; }
.card-value { font-size: 22px; font-weight: 700; margin: 2px 0; }
.card-sub   { font-size: 12px; color: var(--grey); }
.text-green { color: var(--green) !important; }
.text-red   { color: var(--red) !important; }

/* ── Settlement ── */
.settlement-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #7c5c00;
}
.settlement-icon { font-size: 20px; }

/* ── Charts ── */
.charts-row { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 16px; margin-bottom: 24px; }
.chart-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.chart-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.chart-wrap { position: relative; height: 200px; display: flex; align-items: center; justify-content: center; }
.chart-wrap canvas { max-height: 200px !important; }

/* ── Two col ── */
.two-col { display: grid; grid-template-columns: 1fr 1.5fr; gap: 16px; }

/* ── Tables ── */
.table-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.table-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.view-all { font-size: 12px; font-weight: 400; color: var(--blue); }

table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--bg);
  padding: 9px 12px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
}
tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #f9fafb; }
.empty { text-align: center; color: var(--grey); padding: 24px !important; }
.table-footer td { padding: 10px 12px; background: var(--bg); font-size: 13px; }

/* ── Badges ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge.akhilesh { background: var(--blue-l); color: var(--blue); }
.badge.nutan    { background: var(--orange-l); color: var(--orange); }
.cat-badge {
  background: var(--green-l);
  color: var(--green);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
}

/* ── Expenses table ── */
.expenses-table th, .expenses-table td { padding: 10px 12px; }
.action-link { font-size: 12px; padding: 3px 8px; border-radius: 4px; font-weight: 500; }
.action-link.edit   { color: var(--blue); background: var(--blue-l); margin-right: 4px; }
.action-link.delete { color: var(--red);  background: var(--red-l); }
.action-link:hover  { text-decoration: none; opacity: .8; }

/* ── Filter bar ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.filter-bar input, .filter-bar select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 13px;
  background: var(--bg);
  flex: 1;
  min-width: 140px;
}
.filter-bar input:focus, .filter-bar select:focus {
  outline: none;
  border-color: var(--green);
}
.results-info { font-size: 13px; color: var(--grey); margin-bottom: 12px; }

/* ── Quick add ── */
.quick-add { background: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); }
.quick-add h4 { font-size: 13px; color: var(--grey); margin-bottom: 10px; }
.quick-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--green-l);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid #c3e6d3;
  transition: background .15s;
}
.tag:hover { background: var(--green); color: white; }

/* ── Dashboard responsive ── */
@media (max-width: 768px) {
  .charts-row { grid-template-columns: 1fr 1fr; }
  .chart-card-wide { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; }
  .nav-links a:not(.btn-logout):not(.active) { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .charts-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .container { padding: 16px 12px; }
}
