/* Atharva Agrotech — Premium Design System 2026 */
:root {
  --primary: #1B5E20;
  --primary-mid: #2E7D32;
  --accent: #FF9800;
  --accent-gold: #F9A825;
  --bg: #F8FAF7;
  --ink: #1A1A1A;
  --muted: #6B7280;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(27, 94, 32, 0.08);
  --shadow-lg: 0 20px 60px rgba(27, 94, 32, 0.14);
  --grad-green: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  --grad-orange: linear-gradient(135deg, #FF9800 0%, #F9A825 100%);
  --grad-hero: linear-gradient(120deg, rgba(12, 40, 16, 0.82) 0%, rgba(27, 94, 32, 0.55) 45%, rgba(12, 40, 16, 0.4) 100%);
  --font: 'Poppins', system-ui, sans-serif;
  --container: 1200px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }

.container-premium { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.site-container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Typography */
.h-hero { font-size: clamp(2.4rem, 5.5vw, 3.5rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; }
.h-section { font-size: clamp(1.85rem, 4vw, 2.625rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--primary); }
.h-card { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
.lead-text { font-size: 1.05rem; color: var(--muted); font-weight: 400; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-premium:hover { transform: translateY(-3px); color: var(--white); }
.btn-premium i { transition: transform .3s var(--ease); }
.btn-premium:hover i { transform: translateX(4px); }
.btn-premium.primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 152, 0, 0.35);
}
.btn-premium.primary:hover { box-shadow: 0 16px 36px rgba(255, 152, 0, 0.45); }
.btn-premium.secondary {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-premium.secondary:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  color: var(--white);
}
.btn-premium.green {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(27, 94, 32, 0.28);
}
.btn-premium.ghost {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid rgba(27, 94, 32, 0.15);
}
.btn-premium.ghost:hover { border-color: var(--primary-mid); color: var(--primary-mid); }
.btn-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.35), transparent 45%);
  opacity: 0;
  transition: opacity .4s;
}
.btn-premium:active::after { opacity: 1; }

/* Navbar */
.aa-navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1050;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
  background: transparent;
}
.aa-navbar.is-scrolled,
.aa-navbar.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.08);
}
.aa-navbar .nav-inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.aa-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--white);
  z-index: 2;
}
.aa-navbar.is-scrolled .aa-brand,
.aa-navbar.is-solid .aa-brand { color: var(--primary); }
.aa-brand img { width: 46px; height: 46px; object-fit: contain; }
.aa-brand span { color: var(--accent); }
.aa-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.aa-nav-links a {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.aa-navbar.is-scrolled .aa-nav-links a,
.aa-navbar.is-solid .aa-nav-links a { color: var(--ink); }
.aa-nav-links a::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.aa-nav-links a:hover::after,
.aa-nav-links a.active::after { transform: scaleX(1); }
.aa-nav-links a.active { color: var(--accent) !important; }
.aa-nav-actions { display: flex; align-items: center; gap: 0.75rem; z-index: 2; }
.aa-lang {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-family: var(--font);
  min-width: 96px;
}
.aa-navbar.is-scrolled .aa-lang,
.aa-navbar.is-solid .aa-lang {
  border-color: rgba(27, 94, 32, 0.15);
  background: var(--white);
  color: var(--ink);
}
.aa-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 12px;
  background: var(--grad-orange);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
  transition: transform .25s var(--ease);
}
.aa-cta-nav:hover { transform: translateY(-2px); color: var(--white) !important; }
.aa-toggler {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.aa-navbar.is-scrolled .aa-toggler,
.aa-navbar.is-solid .aa-toggler {
  background: var(--bg);
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .aa-toggler { display: inline-flex; }
  .aa-nav-links, .aa-nav-actions .aa-cta-nav { display: none; }
  .aa-nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: var(--nav-h) 1rem auto;
    transform: none;
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    gap: 0.25rem;
  }
  .aa-nav-links.is-open a { color: var(--ink) !important; padding: 0.85rem 1rem; border-radius: 12px; }
  .aa-nav-links.is-open a:hover { background: var(--bg); }
  .aa-mobile-cta {
    display: block;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Page hero (inner pages) — compact banner */
.page-hero {
  position: relative;
  min-height: 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding: calc(var(--nav-h) + 1.25rem) 1rem 1.75rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.25;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p { margin: 0; color: rgba(255,255,255,0.88); font-size: 0.98rem; }
.breadcrumb-premium {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb-premium a { color: rgba(255,255,255,0.85); }
.breadcrumb-premium a:hover { color: var(--accent); }
.breadcrumb-premium .sep { opacity: 0.5; }

/* Sections */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--white); }
.section-soft {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(46,125,50,0.06), transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(255,152,0,0.05), transparent 40%),
    var(--bg);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head .h-section { margin-bottom: 0.75rem; }

/* Cards */
.card-premium {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 94, 32, 0.06);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* Stats */
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 94, 32, 0.06);
  height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-card .stat-ico {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-green);
  color: var(--white);
  font-size: 1.25rem;
}
.stat-card .stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-card .stat-label { color: var(--muted); font-size: 0.95rem; font-weight: 500; }

/* Feature cards */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 94, 32, 0.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card .ico {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-green);
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.65rem; color: var(--ink); }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Product cards */
.prod-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 94, 32, 0.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-card-media {
  position: relative;
  height: 230px;
  padding: 1rem 1.15rem;
  background: linear-gradient(160deg, #eef7ee, #f8faf7);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}
.prod-card-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .4s var(--ease);
  filter: drop-shadow(0 10px 18px rgba(26,26,26,0.1));
}
.prod-card:hover .prod-card-media img { transform: scale(1.03); }
.prod-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--grad-orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  z-index: 1;
}
.prod-card-body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.prod-card-body h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--ink); }
.prod-card-body p {
  color: var(--muted); font-size: 0.92rem; margin: 0 0 1rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* Filter pills */
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-pill {
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(27,94,32,0.06);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(27,94,32,0.25);
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: min(100vh, 820px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding-top: var(--nav-h);
}
.hero-bg-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-bg-slide.is-active { opacity: 1; }
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 12, 0.88) 0%, rgba(12, 40, 16, 0.72) 42%, rgba(12, 40, 16, 0.35) 68%, rgba(12, 40, 16, 0.45) 100%);
  z-index: 1;
}
.home-hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.home-hero-particles span {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0.6); opacity: 0; }
  15% { opacity: 0.7; }
  100% { transform: translateY(-40px) scale(1); opacity: 0; }
}
.home-hero-grid {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0 4.5rem;
}
.home-hero-copy .hero-brand {
  margin: 0 0 0.7rem;
  font-size: clamp(2.55rem, 6.2vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.35);
  max-width: 16ch;
}
.home-hero-copy .hero-brand span {
  color: var(--accent);
}
.home-hero-copy .hero-tagline {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
  max-width: 18ch;
}
.home-hero-copy .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  font-style: normal;
  color: #FFB74D;
  margin: 0 0 1rem;
  line-height: 1.45;
  max-width: 34rem;
}
.home-hero-copy .hero-desc {
  color: rgba(255,255,255,0.9);
  max-width: 34rem;
  margin: 0 0 1.6rem;
  font-size: 1.02rem;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-trust {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.hero-trust i { color: #81C784; font-size: 0.95rem; }
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}
.hero-pack-frame {
  position: relative;
  width: min(100%, 360px);
  background: linear-gradient(165deg, rgba(255,255,255,0.97), rgba(248,250,247,0.95));
  border-radius: 28px;
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.32),
    0 0 0 1px rgba(255,255,255,0.35);
}
.hero-pack-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 40%, rgba(255,152,0,0.22), transparent 62%);
  z-index: -1;
  pointer-events: none;
}
.hero-pack-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255,152,0,0.35);
}
.hero-pack {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 18px;
  background: #f3f6f2;
}
.hero-pack-meta {
  margin-top: 0.95rem;
  text-align: center;
  padding: 0 0.35rem;
}
.hero-pack-meta strong {
  display: block;
  color: #1B5E20;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero-pack-meta span {
  display: block;
  margin-top: 0.2rem;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 4;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 72px; display: block; }

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.hero-slider-prev { left: clamp(0.75rem, 2.5vw, 1.75rem); }
.hero-slider-next { right: clamp(0.75rem, 2.5vw, 1.75rem); }
.hero-slider-btn:hover {
  background: rgba(255,152,0,0.9);
  transform: translateY(-50%) scale(1.05);
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: width .2s, background .2s;
}
.hero-dot.is-active {
  width: 28px;
  background: #FF9800;
}
.home-hero-copy [data-hero-title],
.home-hero-copy [data-hero-sub],
.home-hero-copy [data-hero-desc] {
  transition: opacity .35s ease;
}
.home-hero-copy.is-fading [data-hero-title],
.home-hero-copy.is-fading [data-hero-sub],
.home-hero-copy.is-fading [data-hero-desc] {
  opacity: 0;
}

@media (max-width: 991.98px) {
  .home-hero { min-height: 0; }
  .home-hero-grid {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }
  .home-hero-copy .hero-brand,
  .home-hero-copy .hero-tagline,
  .home-hero-copy .hero-sub,
  .home-hero-copy .hero-desc { margin-inline: auto; }
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .hero-slider-prev { left: 0.65rem; }
  .hero-slider-next { right: 0.65rem; }
  .hero-slider-dots { bottom: 4.25rem; }
}

/* Mission split */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.mission-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  position: relative;
}
.mission-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mission-collage .main { grid-row: span 2; min-height: 420px; }
.mission-collage .side { min-height: 200px; }
.exp-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--grad-orange);
  color: var(--white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 30px rgba(255,152,0,0.35);
  text-align: center;
}
.exp-badge strong { display: block; font-size: 1.6rem; line-height: 1; }
.exp-badge span { font-size: 0.8rem; font-weight: 500; opacity: 0.95; }
.value-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
}
.value-row .ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(46,125,50,0.1);
  color: var(--primary-mid);
  display: grid; place-items: center;
}
.value-row h4 { margin: 0 0 0.2rem; font-size: 1rem; font-weight: 600; }
.value-row p { margin: 0; color: var(--muted); font-size: 0.9rem; }
@media (max-width: 991.98px) {
  .mission-split { grid-template-columns: 1fr; }
  .mission-collage .main { min-height: 280px; }
}

/* Timeline */
.timeline-premium { position: relative; max-width: 880px; margin: 0 auto; }
.timeline-premium::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-mid), var(--accent));
  transform: translateX(-50%);
  border-radius: 3px;
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.tl-item:nth-child(even) .tl-card { grid-column: 2; }
.tl-item:nth-child(odd) .tl-card { grid-column: 1; text-align: right; }
.tl-item::after {
  content: '';
  position: absolute;
  left: 50%; top: 1.5rem;
  width: 16px; height: 16px;
  background: var(--accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(255,152,0,0.2);
}
.tl-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.tl-year {
  display: inline-block;
  background: var(--grad-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
@media (max-width: 767.98px) {
  .timeline-premium::before { left: 12px; }
  .tl-item { grid-template-columns: 1fr; padding-left: 2.5rem; }
  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card { grid-column: 1; text-align: left; }
  .tl-item::after { left: 12px; }
}

/* Gallery masonry */
.masonry {
  columns: 3 280px;
  column-gap: 1.25rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s var(--ease);
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item .cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(12,40,16,0.85));
  color: var(--white);
  font-weight: 600;
  transform: translateY(8px);
  opacity: 0.95;
  transition: transform .3s var(--ease);
}
.masonry-item:hover .cap { transform: translateY(0); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.contact-info-stack { display: flex; flex-direction: column; gap: 1rem; }
.info-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.15rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.info-row .ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-green); color: var(--white);
  display: grid; place-items: center;
}
.info-row h4 { margin: 0 0 0.25rem; font-size: 0.95rem; font-weight: 700; }
.info-row p { margin: 0; color: var(--muted); font-size: 0.92rem; white-space: pre-line; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
}
.map-frame iframe { width: 100%; height: 260px; border: 0; }
.form-glass {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
}
.form-glass .form-control {
  border-radius: 12px;
  border: 1px solid rgba(27,94,32,0.12);
  padding: 0.9rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.9);
}
.form-glass .form-control:focus {
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 4px rgba(46,125,50,0.12);
}
@media (max-width: 991.98px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Dealer */
.dealer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 1.5rem;
}
.search-premium {
  position: relative;
  margin-bottom: 1.25rem;
}
.search-premium i {
  position: absolute; left: 1.15rem; top: 50%; transform: translateY(-50%);
  color: var(--muted);
}
.search-premium input {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 1.05rem 1.15rem 1.05rem 3rem;
  font-family: var(--font);
  font-size: 1rem;
  box-shadow: var(--shadow);
  background: var(--white);
}
.search-premium input:focus { outline: 2px solid rgba(46,125,50,0.25); }
.map-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  min-height: 520px;
}
#map { width: 100%; height: 520px; }
.map-controls {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  display: flex; gap: 0.4rem;
}
.map-control-btn {
  border: 0; border-radius: 10px; padding: 0.45rem 0.85rem;
  font-family: var(--font); font-weight: 600; font-size: 0.8rem;
  background: rgba(255,255,255,0.92); cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.map-control-btn.active { background: var(--grad-green); color: var(--white); }
.dealer-sidebar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 620px;
}
.dealer-sidebar-head {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid rgba(27,94,32,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.dealer-sidebar-head h3 { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.dealer-count { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.dealer-list { overflow: auto; padding: 1rem; flex: 1; min-height: 0; }
.dealer-card-ui { flex-shrink: 0; }
@media (max-width: 991.98px) {
  .dealer-layout { grid-template-columns: 1fr; }
  #map, .map-shell { min-height: 360px; height: 360px; }
  .dealer-sidebar { max-height: 480px; }
}

/* Footer */
.site-footer {
  --ft-ink: rgba(255, 255, 255, 0.86);
  --ft-muted: rgba(255, 255, 255, 0.68);
  --ft-line: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 55% 70% at 92% 8%, rgba(255, 152, 0, 0.18), transparent 50%),
    radial-gradient(ellipse 45% 55% at 8% 90%, rgba(255, 255, 255, 0.06), transparent 45%),
    linear-gradient(160deg, #1a6b34 0%, #145a28 42%, #0f3d1e 100%);
  color: var(--ft-ink);
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.site-footer > .site-container {
  position: relative;
  z-index: 1;
  padding-top: 4.25rem;
  padding-bottom: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 1.15fr);
  gap: 2.5rem 2rem;
  align-items: start;
}
.footer-brand { min-width: 0; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: #fff !important;
  text-decoration: none !important;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.footer-logo span {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.footer-about {
  margin: 0;
  max-width: 36ch;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ft-muted);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h5 {
  margin: 0 0 1.15rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 152, 0, 0.2));
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ft-muted);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 152, 0, 0.55);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-links a:hover::before { background: var(--accent); transform: scale(1.15); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ft-muted);
}
.footer-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffd089;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: var(--ft-ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-list a:hover { color: #fff; }
.footer-email {
  word-break: break-all;
  overflow-wrap: anywhere;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--ft-line);
  background: rgba(0, 0, 0, 0.18);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ft-muted);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}
.footer-bottom-links a {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.75rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-about { max-width: 52ch; }
}
@media (max-width: 640px) {
  .site-footer > .site-container {
    padding-top: 3.25rem;
    padding-bottom: 2.25rem;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-bottom-links { justify-content: center; }
}

.scroll-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem;
  width: 46px; height: 46px; border: 0; border-radius: 14px;
  background: var(--grad-orange); color: var(--white);
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; visibility: hidden; z-index: 1040;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 10px 24px rgba(255,152,0,0.35);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

.home-wrap .whatsapp-float,
body .whatsapp-float { bottom: 5.5rem !important; right: 1.25rem !important; }

/* Utilities */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 24, 12, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: min(920px, 92vw); text-align: center; }
.lightbox-content img { max-height: 75vh; width: auto; margin: 0 auto; border-radius: 16px; }
.lightbox-caption { color: var(--white); margin-top: 1rem; font-weight: 600; }
.lightbox .close, .lightbox .nav-btn {
  position: absolute; color: var(--white); cursor: pointer;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center; border: 0; font-size: 1.25rem;
}
.lightbox .close { top: 1.25rem; right: 1.25rem; }
.lightbox .prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* Product detail */
.page-hero-sm { padding: calc(var(--nav-h) + 2.25rem) 0 2.5rem; min-height: 0; }
.pd-top { padding-top: 2.5rem; }
.pd-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.pd-gallery { position: sticky; top: calc(var(--nav-h) + 1rem); }
.pd-gallery-frame {
  position: relative;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,152,0,0.12), transparent 42%),
    linear-gradient(165deg, #eef7ee 0%, #f7faf7 100%);
  border: 1px solid rgba(27,94,32,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  overflow: hidden;
}
.pd-gallery-frame img {
  width: min(100%, 360px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(26,26,26,0.14));
}
.pd-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.pd-summary { padding-top: 0.15rem; }
.pd-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.pd-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pd-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.pd-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(27,94,32,0.1);
  color: #374151;
  font-size: 0.86rem;
  font-weight: 600;
}
.pd-meta-pill i { color: var(--primary-mid); font-size: 0.8rem; }
.pd-meta-pill.is-price {
  background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(255,152,0,0.12));
  border-color: rgba(27,94,32,0.12);
  color: var(--primary);
}
.pd-meta-pill.is-price span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
}
.pd-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 36rem;
}
.pd-fact-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.pd-fact-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: rgba(46,125,50,0.06);
  border: 1px solid rgba(27,94,32,0.07);
}
.pd-fact-list i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  margin-top: 0.05rem;
}
.pd-fact-list span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.pd-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.pd-spec-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27,94,32,0.06);
}
.pd-spec-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pd-spec-copy span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.28rem;
}
.pd-spec-copy strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.pd-extra {
  margin-top: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(46,125,50,0.08), rgba(255,152,0,0.08));
  border: 1px solid rgba(27,94,32,0.08);
}
.pd-extra h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pd-extra h3 i { color: var(--accent); }
.pd-extra p { margin: 0; color: #4b5563; line-height: 1.65; }
.pd-guide {
  display: grid;
  gap: 0.85rem;
  max-width: 920px;
  margin: 0 auto;
}
.pd-guide-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(27,94,32,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15,40,20,0.04);
}
.pd-guide-index {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.pd-guide-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Noto Sans Devanagari', var(--font);
}
.pd-guide-body p {
  margin: 0;
  color: #374151;
  font-size: 0.98rem;
  line-height: 1.75;
  font-family: 'Noto Sans Devanagari', var(--font);
}

@media (max-width: 991.98px) {
  .pd-showcase { grid-template-columns: 1fr; }
  .pd-gallery { position: static; max-width: 420px; margin: 0 auto; width: 100%; }
  .pd-gallery-frame { aspect-ratio: 1 / 1.05; }
  .pd-spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pd-actions { justify-content: flex-start; }
}
@media (max-width: 575.98px) {
  .pd-spec-grid { grid-template-columns: 1fr; }
  .pd-guide-item { grid-template-columns: 1fr; }
  .pd-actions .btn-premium { width: 100%; }
  .pd-gallery-frame { aspect-ratio: 1; }
}

/* ===== Global responsive polish ===== */
html { -webkit-text-size-adjust: 100%; }
.site-container,
.container-premium { width: min(100% - 1.5rem, var(--container)); }
.section { padding: clamp(2.75rem, 6vw, 5.5rem) 0; }
.section-head { margin-bottom: clamp(1.75rem, 4vw, 3rem); padding-inline: 0.25rem; }
.prod-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.prod-card-body .btn-premium { max-width: 100%; }

@media (max-width: 1199.98px) {
  .aa-nav-links { gap: 0; }
  .aa-nav-links a { padding: 0.5rem 0.65rem; font-size: 0.86rem; }
  .aa-brand { font-size: 0.95rem; }
}

@media (max-width: 991.98px) {
  :root { --nav-h: 70px; }
  .aa-brand img { width: 40px; height: 40px; }
  .aa-brand { max-width: min(58vw, 220px); }
  .aa-brand span { display: inline; }
  .page-hero {
    padding: calc(var(--nav-h) + 1rem) 1rem 1.5rem;
  }
  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
    word-break: break-word;
  }
  .breadcrumb-premium {
    flex-wrap: wrap;
    row-gap: 0.2rem;
    padding-inline: 0.5rem;
  }
  .filter-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 1.75rem;
    padding-bottom: 0.25rem;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .filter-pill { flex: 0 0 auto; }
  .masonry { columns: 2 160px; column-gap: 1rem; }
  .hero-actions .btn-premium { justify-content: center; }
  .mission-collage {
    grid-template-columns: 1fr 1fr;
  }
  .mission-collage .main { min-height: 240px; }
  .mission-collage .side { min-height: 160px; }
  .map-shell, #map { min-height: 360px; height: 360px; }
  .dealer-sidebar { max-height: none; }
  .home-wrap .whatsapp-float,
  body .whatsapp-float {
    bottom: 5rem !important;
    right: 0.85rem !important;
    transform: scale(0.92);
    transform-origin: bottom right;
  }
  .scroll-top { right: 0.85rem; bottom: 1rem; }
}

@media (max-width: 767.98px) {
  .aa-brand { font-size: 0.88rem; gap: 0.45rem; }
  .stat-card { padding: 1.1rem 0.85rem; }
  .stat-num { font-size: 1.55rem; }
  .hero-slider-prev { left: 0.4rem; }
  .hero-slider-next { right: 0.4rem; }
  .hero-slider-dots { bottom: 3.75rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-premium { flex: 1 1 auto; min-width: min(100%, 160px); }
  .prod-card-body { padding: 1.1rem 1.05rem 1.2rem; }
  .prod-card-body h3 { font-size: 1.1rem; }
  .contact-grid,
  .dealer-layout { gap: 1.25rem; }
}

@media (max-width: 575.98px) {
  :root { --nav-h: 64px; }
  .site-container,
  .container-premium { width: min(100% - 1.15rem, var(--container)); }
  .aa-brand { max-width: min(52vw, 170px); line-height: 1.2; }
  .aa-lang { min-width: 84px; padding: 0.35rem 0.5rem; font-size: 0.75rem; }
  .aa-toggler { width: 40px; height: 40px; }
  .masonry { columns: 1; }
  .mission-collage { grid-template-columns: 1fr; }
  .mission-collage .main,
  .mission-collage .side { min-height: 200px; grid-row: auto; }
  .exp-badge { left: 0.85rem; bottom: 0.85rem; padding: 0.75rem 0.9rem; }
  .map-shell, #map { min-height: 300px; height: 300px; }
  .map-controls { top: 0.65rem; right: 0.65rem; }
  .form-glass { padding: 1.15rem; }
  .btn-premium { padding: 0.85rem 1.25rem; font-size: 0.95rem; }
  .home-wrap .whatsapp-float,
  body .whatsapp-float {
    bottom: 4.5rem !important;
    right: 0.65rem !important;
    transform: scale(0.88);
  }
  .pd-meta-row { gap: 0.4rem; }
  .pd-meta-pill { font-size: 0.8rem; padding: 0.45rem 0.7rem; }
  .pd-lead { font-size: 0.95rem; }
}

/* Prevent horizontal scroll from absolute/fixed UI */
body.nav-open { overflow: hidden; touch-action: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
