/* =========================================================
   HMB Sons (Pvt.) Ltd. corporate site
   ========================================================= */
:root {
  --green-900: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-100: #E8F5E9;
  --green-50:  #F4F9F4;
  --amber-500: #F59E0B;
  --amber-700: #B45309;
  --ink-900:   #182418;
  --ink-600:   #4C5B4C;
  --white:     #FFFFFF;
  --line:      #DFE8DF;
  --radius:    16px;
  --shadow:    0 6px 24px rgba(27, 94, 32, 0.10);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.35);
}
.btn-primary:hover { background: var(--green-900); color: var(--white); }
.btn-amber {
  background: var(--amber-500);
  color: #3B2A00;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}
.btn-amber:hover { background: #FBB024; }
.btn-outline-light { border-color: rgba(255,255,255,0.85); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.btn-block { width: 100%; }

/* ---------------- Navbar ---------------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(27, 94, 32, 0.12); border-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  height: 72px;
}

.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--green-900); flex-shrink: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-900);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.brand-text small { font-size: 0.66rem; color: var(--ink-600); letter-spacing: 0.03em; }

.nav-links { display: flex; align-items: center; gap: 0.85rem; }
.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--ink-900);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: var(--amber-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--green-700); }
.nav-cta { margin-inline-start: 0.2rem; padding: 0.55rem 1.2rem; font-size: 0.86rem; }

/* Kissan Baithak sister-site link */
.nav-kb { color: var(--amber-700); font-weight: 600; }
.nav-kb .ext { font-size: 0.72em; vertical-align: super; }
.nav-kb:hover { color: var(--amber-500); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 3px; border-radius: 3px;
  background: var(--green-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero slider (Home) ---------------- */
.slider {
  position: relative;
  margin-top: 72px;
  height: min(74vh, 620px);
  min-height: 420px;
  overflow: hidden;
  background: var(--green-900);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 12, 0.25) 0%, rgba(10, 30, 12, 0.05) 40%, rgba(10, 30, 12, 0.72) 100%);
}
.slide-caption {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 12%;
  text-align: center;
  color: var(--white);
  padding: 0 6%;
}
.slide-caption .kicker {
  display: inline-block;
  background: rgba(245, 158, 11, 0.92);
  color: #2B1F00;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.25rem 1rem;
  margin-bottom: 0.8rem;
}
.slide-caption h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.4rem;
}
.slide-caption p {
  max-width: 640px;
  margin-inline: auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.85);
  color: var(--green-900);
  cursor: pointer;
  transition: background 0.15s ease;
}
.slider-arrow:hover { background: var(--white); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

.slider-dots {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.slider-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.slider-dots button.active { background: var(--amber-500); transform: scale(1.25); }

/* ---------------- Page header (subpages) ---------------- */
.page-header {
  position: relative;
  margin-top: 72px;
  padding: 72px 0 56px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(800px 340px at 88% -20%, rgba(245, 158, 11, 0.30), transparent 60%),
    linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 70%, var(--green-600) 100%);
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.4rem; }
.page-header p { color: rgba(255, 255, 255, 0.92); max-width: 720px; margin-inline: auto; }

/* ---------------- Sections ---------------- */
.section { padding: 76px 0; }
.section-light { background: var(--green-50); }

.section-head { text-align: center; margin-bottom: 2.6rem; }
.section-title {
  display: inline-block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--green-900);
  position: relative;
  padding-bottom: 0.8rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--amber-500), var(--green-600));
}
.section-sub { color: var(--ink-600); margin-top: 0.7rem; font-size: 1rem; max-width: 760px; margin-inline: auto; }

/* ---------------- Cards & grids ---------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }

.card-title { color: var(--green-700); font-size: 1.25rem; margin-bottom: 0.6rem; }
.muted { color: var(--ink-600); font-size: 0.95rem; }
.card p { color: var(--ink-600); }

.icon-chip {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.icon-chip svg { width: 28px; height: 28px; }

.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding-left: 1.8em;
  color: var(--ink-600);
  margin-bottom: 0.35rem;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0; top: 0.05em;
  color: var(--green-600);
  font-weight: 700;
}

/* Category tiles (Home: what we do) */
.tile {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  color: var(--ink-900);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.tile:hover {
  transform: translateY(-5px);
  border-color: var(--green-600);
  box-shadow: 0 14px 30px rgba(27, 94, 32, 0.16);
}
.tile .icon-chip { margin-bottom: 0.8rem; }
.tile h3 { font-size: 1.05rem; color: var(--green-900); margin-bottom: 0.3rem; }
.tile p { font-size: 0.9rem; color: var(--ink-600); }
.tile .tile-more {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber-700);
}

/* Badge strip */
.badge-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  padding: 1.2rem 1rem;
}
.badge .badge-icon { font-size: 1.7rem; display: block; margin-bottom: 0.4rem; }
.badge strong { font-family: var(--font-head); display: block; margin-bottom: 0.2rem; }
.badge span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.product {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.product.has-img { padding: 0; overflow: hidden; }
.product-img {
  display: grid;
  place-items: center;
  height: 180px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 12px;
}
.product-img img { max-height: 156px; max-width: 82%; object-fit: contain; }
.product-img.photo { padding: 0; }
.product-img.photo img,
.product-img.photo .img-fallback {
  width: 100%;
  height: 180px;
  max-width: none;
  max-height: none;
  object-fit: cover;
}
.product-body { padding: 1rem 1.2rem 1.1rem; }
.product h4 { color: var(--green-700); margin-bottom: 0.25rem; }
.product .formula {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber-700);
  background: #FFF4DE;
  border: 1px solid #F3DFB3;
  border-radius: 999px;
  padding: 0.05rem 0.7rem;
  margin-bottom: 0.4rem;
}
.product p { color: var(--ink-600); font-size: 0.92rem; }

.brand-section { margin-bottom: 2.4rem; }
.brand-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.brand-head .brand-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--amber-500);
  flex-shrink: 0;
}
.brand-head h3 { color: var(--green-900); font-size: 1.3rem; }
.brand-head .muted { margin-left: auto; }

.source-note { margin-top: 1rem; font-size: 0.8rem; color: var(--ink-600); }

/* Banner image inside pages */
.banner-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.banner-img img { width: 100%; height: 300px; object-fit: cover; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.avatar {
  display: grid;
  place-items: center;
  width: 84px; height: 84px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.avatar-photo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--green-100);
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.18);
}
.team-card h3 { font-size: 1.08rem; color: var(--ink-900); }
.team-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.team-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.team-btn svg { width: 19px; height: 19px; }
.team-btn:hover { background: var(--green-700); color: var(--white); transform: translateY(-2px); }
.team-btn.wa { background: #E3F7EC; color: #128C4A; }
.team-btn.wa:hover { background: #25D366; color: var(--white); }
.team-card .role {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  padding: 0.15rem 0.9rem;
  margin-top: 0.35rem;
}
.team-card .note { font-size: 0.85rem; color: var(--ink-600); margin-top: 0.45rem; }

/* Partner rows (banking) */
.stack { display: flex; flex-direction: column; gap: 1.5rem; }
.partner-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 0.9rem; }
.partner-logo-img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  flex-shrink: 0;
}
.logo-chip {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 14px;
  background: #F0F1EE;
  color: var(--ink-600);
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}
.partner-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-900);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.1rem 0.9rem;
  margin-top: 0.25rem;
}
.pill-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}
.pill-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  color: var(--ink-900);
  font-size: 0.93rem;
}
.pill-icon { font-size: 1.3rem; }

/* Machine cards (ZTBL-enlisted machinery) */
.machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
}
.machine-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.machine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(27, 94, 32, 0.16);
}
.machine-card img,
.machine-card .img-fallback {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.img-fallback {
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  background: linear-gradient(150deg, var(--green-100), #DCEEDC);
}
.machine-body { padding: 0.9rem 1.1rem 1.1rem; }
.machine-body h4 { color: var(--green-900); font-size: 1rem; margin-bottom: 0.25rem; }
.machine-body p { color: var(--ink-600); font-size: 0.87rem; line-height: 1.5; }

/* Spec table (tractors) */
.spec-table-wrap { overflow-x: auto; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.spec-table th, .spec-table td {
  padding: 0.75rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.spec-table th {
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.88rem;
}
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table tr:nth-child(even) td { background: var(--green-50); }

/* ---------------- CTA band ---------------- */
.cta-band {
  padding: 64px 0;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(700px 320px at 12% 120%, rgba(245, 158, 11, 0.25), transparent 60%),
    linear-gradient(150deg, var(--green-900), var(--green-700));
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.92); margin-bottom: 1.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------------- Contact ---------------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-row h4 { color: var(--green-900); }
.contact-row p { color: var(--ink-600); overflow-wrap: anywhere; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--green-900); }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink-900);
  background: var(--green-50);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.18);
}
.form-status { min-height: 1.5em; color: var(--green-700); font-weight: 600; text-align: center; }
.form-status.error { color: #C62828; }

/* ---------------- Footer ---------------- */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 1.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer h4 { color: var(--white); margin-bottom: 0.8rem; font-size: 1rem; }
.footer p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.75); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.4rem; }
.footer ul a { color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; }
.footer ul a:hover { color: var(--amber-500); }
.footer-bottom { text-align: center; padding-top: 1.2rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.6); }

/* ---------------- WhatsApp FAB ---------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 1100;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-fab svg { width: 32px; height: 32px; }
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55); }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slide { transition: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 24px rgba(27, 94, 32, 0.14);
    padding: 0.6rem 6%;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.75rem 0; border-bottom: 1px solid var(--green-50); font-size: 0.95rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 0.8rem 0 0.6rem; text-align: center; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .grid-2, .grid-3, .team-grid, .contact-wrap, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .slider { height: 66vh; min-height: 380px; }
  .slider-arrow { width: 38px; height: 38px; }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .banner-img img { height: 200px; }
}

@media (max-width: 480px) {
  .grid-4, .badge-strip { grid-template-columns: 1fr; }
  .whatsapp-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-fab svg { width: 29px; height: 29px; }
  .brand-text small { display: none; }
}
