/* ========================================
   Akino Battery - Pure HTML/CSS Styles
   ======================================== */

/* CSS Variables (Theme) */
:root {
  --primary: #005A44;
  --accent: #8DC63F;
  --primary-dark: #063A2C;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-900: #0f172a;
  --white: #ffffff;
  --black: #000000;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--slate-900);
  background: var(--white);
  min-height: 100vh;
  line-height: 1.5;
}

p {
  font-size: 1rem !important;
}

.page {
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: var(--white);
  height: 110px;
}

.navbar.navbar-scrolled {
  background: var(--white);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo-wrap {
  border-radius: 0.5rem;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
}

.navbar:not(.navbar-scrolled) .navbar-logo-wrap {
  background: transparent;
  box-shadow: none;
  border: none;
}

.navbar.navbar-scrolled .navbar-logo-wrap {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

.navbar-logo-wrap:hover {
  /* Avoid logo "zoom" effect on hover */
  transform: none;
}

.navbar-logo {
  height: auto;
  width: 95px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .navbar-logo { width: 95px; height: auto; }
}

@media (min-width: 1024px) {
  .navbar-logo { width: 95px; height: auto; }
}

/* Desktop Nav */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  transition: all 0.3s;
  position: relative;
}

.nav-link {
  color: var(--primary-dark);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-item:hover .nav-link::after {
  width: 100%;
}

.nav-link svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Product tab: not a link, only opens dropdown (EV Battery, ESS Battery, etc.) */
.nav-link--dropdown-trigger {
  cursor: default;
  pointer-events: auto;
}

/* Dropdown - Products (Tesla-style) */
.dropdown-products {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 92vw);
  background: #ffffff;
  box-shadow: 0 18px 40px -20px rgb(15 23 42 / 0.35);
  border-radius: 0.875rem;
  margin-top: 0;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s ease;
  z-index: 1100;
}

/* Hover bridge: extends dropdown hover area left and above so moving between cards (e.g. Scooter → Golf cart) doesn't close menu */
.dropdown-products::before {
  content: "";
  position: absolute;
  right: 100%;
  top: -0.75rem;
  bottom: -0.75rem;
  width: 100vw;
  background: transparent;
  pointer-events: auto;
  z-index: -1;
}

/* Small buffer below dropdown so cursor at bottom doesn't drop hover */
.dropdown-products::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.75rem;
  height: 0.75rem;
  background: transparent;
  pointer-events: auto;
}

.nav-item-products:hover .dropdown-products,
.nav-item-products.is-open .dropdown-products {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

/* Hover bridge - keeps dropdown visible when moving cursor from Product link into dropdown */
.nav-item-products::after {
  content: "";
  position: absolute;
  left: -2rem;
  /* Extend far right so path to dropdown (left: 180%) has no dead zone */
  right: -80vw;
  top: 100%;
  /* Cover vertical gap (0.5rem) and overlap dropdown so cursor stays in hover area */
  height: 1rem;
  pointer-events: auto;
}

.dropdown-products-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.dropdown-products-list li {
  margin: 0;
  padding: 0;
}

.dropdown-products-list a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown-products-list a:hover {
  background: #f1f5f9;
  color: #0f766e;
  transform: translateX(2px);
}

/* Responsive: 2 columns on smaller desktops */
@media (max-width: 1200px) {
  .dropdown-products {
    width: min(440px, 92vw);
  }
}

/* Responsive: stacked layout on narrow desktops */
@media (max-width: 1100px) {
  .dropdown-products {
    width: min(420px, 90vw);
  }
}

@media (max-width: 640px) {
  .dropdown-products-list {
    grid-template-columns: 1fr;
  }
}

.dropdown-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 0.5rem;
  transition: background 0.25s ease;
}

/* Whole card is clickable (stretched link); Learn/Order stay clickable on top */
.dropdown-product-card-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dropdown-product-card h4,
.dropdown-product-card .dropdown-product-links,
.dropdown-product-card .dropdown-product-subs {
  position: relative;
  z-index: 1;
}
.dropdown-product-card .dropdown-product-links a {
  position: relative;
  z-index: 2;
}

/* Product dropdown: only show main product types (hide sub-types) */
.dropdown-product-subs {
  display: none !important;
}
.dropdown-product-subs li {
  margin: 0;
  padding: 0;
}
.dropdown-product-subs a {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 0.25rem;
  transition: color 0.2s ease, background 0.2s ease, text-decoration-color 0.2s ease;
}
.dropdown-product-card--has-subs:hover .dropdown-product-subs a {
  color: rgba(255, 255, 255, 0.95);
}
.dropdown-product-subs a:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

.dropdown-product-card:hover {
  background: #7ab536;
}

/* Inverter card only: show background image on hover */
.dropdown-product-card--inverter {
  overflow: hidden;
}
.dropdown-product-card--inverter:hover {
  background: transparent;
}
.dropdown-product-card--inverter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  background-image: url("assets/message-bg.jpg");
  background-size: cover;
  background-position: center;
}
.dropdown-product-card--inverter:hover::before {
  opacity: 1;
}
.dropdown-product-card--inverter::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: rgba(0, 0, 0, 0.45);
}
.dropdown-product-card--inverter:hover::after {
  opacity: 1;
}
.dropdown-product-card--inverter:hover h4,
.dropdown-product-card--inverter:hover .dropdown-product-subs a {
  color: #ffffff;
}

/* Other product cards: background image on hover */
.dropdown-product-card--inverter-batteries,
.dropdown-product-card--ess-batteries,
.dropdown-product-card--e-cycle,
.dropdown-product-card--scooter,
.dropdown-product-card--e-loader,
.dropdown-product-card--solar,
.dropdown-product-card--e-rickshaw,
.dropdown-product-card--golf-cart {
  overflow: hidden;
}
.dropdown-product-card--inverter-batteries:hover,
.dropdown-product-card--ess-batteries:hover,
.dropdown-product-card--e-cycle:hover,
.dropdown-product-card--scooter:hover,
.dropdown-product-card--e-loader:hover,
.dropdown-product-card--solar:hover,
.dropdown-product-card--e-rickshaw:hover,
.dropdown-product-card--golf-cart:hover {
  background: transparent;
}
.dropdown-product-card--inverter-batteries::before,
.dropdown-product-card--ess-batteries::before,
.dropdown-product-card--e-cycle::before,
.dropdown-product-card--scooter::before,
.dropdown-product-card--e-loader::before,
.dropdown-product-card--solar::before,
.dropdown-product-card--e-rickshaw::before,
.dropdown-product-card--golf-cart::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  background-size: cover;
  background-position: center;
}
.dropdown-product-card--inverter-batteries:hover::before {
  opacity: 1;
  background-image: url("assets/EV-battery.jpg");
}
.dropdown-product-card--ess-batteries:hover::before {
  opacity: 1;
  background-image: url("assets/Ess-battery.jpg");
}
.dropdown-product-card--e-cycle:hover::before {
  opacity: 1;
  background-image: url("assets/Aboutus.jpg");
}
.dropdown-product-card--scooter:hover::before {
  opacity: 1;
  background-image: url("assets/eletric-scooter.jpg");
}
.dropdown-product-card--e-loader:hover::before {
  opacity: 1;
  background-image: url("assets/Lithium-Ion-Market.jpg");
}
.dropdown-product-card--solar:hover::before {
  opacity: 1;
  background-image: url("assets/solor-bg.jpg");
}
.dropdown-product-card--e-rickshaw:hover::before {
  opacity: 1;
  background-image: url("assets/E-Rickshaw.jpg");
}
.dropdown-product-card--golf-cart:hover::before {
  opacity: 1;
  background-image: url("assets/Golf-Cart.jpg");
}
.dropdown-product-card--inverter-batteries::after,
.dropdown-product-card--ess-batteries::after,
.dropdown-product-card--e-cycle::after,
.dropdown-product-card--scooter::after,
.dropdown-product-card--e-loader::after,
.dropdown-product-card--solar::after,
.dropdown-product-card--e-rickshaw::after,
.dropdown-product-card--golf-cart::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: rgba(0, 0, 0, 0.45);
}
.dropdown-product-card--inverter-batteries:hover::after,
.dropdown-product-card--ess-batteries:hover::after,
.dropdown-product-card--e-cycle:hover::after,
.dropdown-product-card--scooter:hover::after,
.dropdown-product-card--e-loader:hover::after,
.dropdown-product-card--solar:hover::after,
.dropdown-product-card--e-rickshaw:hover::after,
.dropdown-product-card--golf-cart:hover::after {
  opacity: 1;
}
.dropdown-product-card--inverter-batteries:hover h4,
.dropdown-product-card--inverter-batteries:hover .dropdown-product-subs a,
.dropdown-product-card--ess-batteries:hover h4,
.dropdown-product-card--ess-batteries:hover .dropdown-product-subs a,
.dropdown-product-card--e-cycle:hover h4,
.dropdown-product-card--e-cycle:hover .dropdown-product-subs a,
.dropdown-product-card--scooter:hover h4,
.dropdown-product-card--scooter:hover .dropdown-product-subs a,
.dropdown-product-card--e-loader:hover h4,
.dropdown-product-card--e-loader:hover .dropdown-product-subs a,
.dropdown-product-card--solar:hover h4,
.dropdown-product-card--solar:hover .dropdown-product-subs a,
.dropdown-product-card--e-rickshaw:hover h4,
.dropdown-product-card--e-rickshaw:hover .dropdown-product-subs a,
.dropdown-product-card--golf-cart:hover h4,
.dropdown-product-card--golf-cart:hover .dropdown-product-subs a {
  color: #ffffff;
}

.dropdown-product-card:hover h4,
.dropdown-product-card:hover .dropdown-product-links a {
  color: #ffffff;
}

.dropdown-product-card:hover .dropdown-product-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.dropdown-product-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  border: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  transition: color 0.25s ease;
}

.dropdown-product-links {
  display: flex;
  gap: 1rem;
  font-size: 13px;
  font-weight: 600;
}

.dropdown-product-links a {
  color: var(--slate-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.dropdown-product-card:not(:hover) .dropdown-product-links a:hover {
  color: var(--accent);
}

.dropdown-products-sidebar {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
  margin-left: 2rem;
  border-left: 1px solid var(--slate-200);
  justify-content: center;
}

.dropdown-products-sidebar a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s;
  white-space: nowrap;
}

.dropdown-products-sidebar a:hover {
  color: var(--accent);
}

/* CTA Button (Navbar) */
.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.btn-quote {
  background: var(--accent);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(134, 239, 172, 0.2);
}

.btn-quote:hover {
  background: var(--primary);
}

/* Mobile Toggle */
.nav-mobile-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

@media (min-width: 1024px) {
  .nav-mobile-toggle { display: none; }
}

.nav-mobile-toggle {
  color: var(--primary);
}

.nav-mobile-toggle:hover {
  background: var(--slate-100);
}

.nav-mobile-toggle .icon-close {
  display: none;
}

.nav-mobile-toggle .icon-menu {
  display: block;
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--white);
  overflow-y: auto;
  display: none;
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-menu-header img,
.mobile-menu-logo {
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.mobile-menu-close {
  padding: 0.5rem;
  color: var(--primary);
  border-radius: 9999px;
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: var(--slate-100);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 1rem;
}

.mobile-nav-item a {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-product-label {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
}

.mobile-nav-sublinks {
  margin-top: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(141, 198, 63, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-sublinks h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.mobile-nav-sublinks a {
  font-size: 1rem;
  color: var(--slate-600);
  font-weight: 500;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-100);
}

.mobile-menu-footer .btn-quote {
  width: 100%;
  padding: 1.25rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(134, 239, 172, 0.2);
}

.mobile-menu-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  color: var(--primary);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: var(--black);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-mobile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  opacity: 1;
  background: var(--black);
}

.hero-video-desktop {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  opacity: 1;
  background: var(--black);
}

@media (min-width: 1024px) {
  .hero-video-mobile { display: none; }
  .hero-video-desktop { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(48, 48, 48, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (min-width: 768px) {
  .hero { padding-top: 6rem; padding-bottom: 6rem; }
}

/* Product page hero - shorter height, video + title */
.hero-product {
  min-height: 50vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero-product {
    min-height: 55vh;
    padding-top: 8rem;
  }
}

.hero-back-link {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-back-link:hover {
  color: var(--accent);
}

.hero-product .hero-content h1 {
  margin-bottom: 0;
}

.hero h1 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 2rem;
  letter-spacing: normal;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-content .section-title.section-about-title {
  color: var(--white);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.hero-content .section-title.section-about-title .accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .hero h1 { font-size: 1.875rem; }
  .hero-subtitle { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.125rem; }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Home hero — tagline text only (green, no background) */
.hero-tagline {
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 4rem;
  z-index: 10;
  margin: 0;
  box-sizing: border-box;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border-radius: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  box-shadow: none;
}

@media (min-width: 640px) {
  .hero-tagline {
    font-size: 1.75rem;
    bottom: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-tagline {
    font-size: 2rem;
    bottom: 5rem;
  }
}

@media (min-width: 1280px) {
  .hero-tagline {
    font-size: 2.25rem;
    bottom: 5.25rem;
    letter-spacing: 0.065em;
  }
}

/* About hero — multi-line headline, green text, no background */
.about-hero-tagline {
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 1.5rem;
  z-index: 10;
  margin: 0;
  box-sizing: border-box;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.22;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.about-hero-tagline-line {
  display: block;
}

.about-hero-tagline-line--light {
  font-weight: 300;
}

.about-hero-tagline-line--bold {
  font-weight: 700;
}

@media (min-width: 640px) {
  .about-hero-tagline {
    font-size: 1.5rem;
    bottom: 1.75rem;
    line-height: 1.2;
  }
}

@media (min-width: 1024px) {
  .about-hero-tagline {
    font-size: 1.75rem;
    bottom: 2rem;
    letter-spacing: 0.075em;
  }
}

@media (min-width: 1280px) {
  .about-hero-tagline {
    font-size: 2rem;
    bottom: 2.25rem;
    letter-spacing: 0.08em;
  }
}

.btn-explore {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-explore:hover {
  background: #7ab536;
  border-color: #7ab536;
  color: var(--white);
}

.btn-reach {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-reach:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ========================================
   About Page Hero
   ======================================== */
.about-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image:
    linear-gradient(to right, rgba(6, 58, 44, 0.85), rgba(6, 58, 44, 0.45), transparent),
    url("assets/Aboutus.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .about-hero {
    min-height: 460px;
    padding-top: 7rem;
    padding-bottom: 7.5rem;
  }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border-radius: 0.25rem;
  box-shadow: 0 18px 28px -18px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.about-hero-pill {
  width: 2px;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(141, 198, 63, 0.6);
}

.about-hero-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .about-hero-title {
    font-size: 1.875rem;
  }
}

.about-hero:hover .about-hero-label {
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 24px 40px -20px rgba(141, 198, 63, 0.8);
  transform: translateY(-4px);
}

.about-hero:hover .about-hero-title {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(141, 198, 63, 0.8);
}

/* ========================================
   BLOG - Hero & Article
   ======================================== */
.blog-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image:
    linear-gradient(to right, rgba(6, 58, 44, 0.5), rgba(6, 58, 44, 0.25), transparent),
    url("assets/image 2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .blog-hero {
    min-height: 460px;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.blog-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border-radius: 0.25rem;
  box-shadow: 0 18px 28px -18px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.blog-hero-pill {
  width: 2px;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(141, 198, 63, 0.6);
}

.blog-hero-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

@media (min-width: 640px) {
  .blog-hero-title {
    font-size: 1.875rem;
  }
}

.blog-hero:hover .blog-hero-label {
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 24px 40px -20px rgba(141, 198, 63, 0.8);
  transform: translateY(-4px);
}

.blog-hero:hover .blog-hero-title {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(141, 198, 63, 0.8);
}

/* Blog Intro: Image left, content right */
.blog-intro-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.blog-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .blog-intro-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.blog-intro-image {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .blog-intro-image {
    width: 42%;
    max-width: 480px;
  }
}

.blog-intro-image .section-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .blog-intro-image .section-image-wrap img {
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .blog-intro-image .section-image-wrap img {
    min-height: 380px;
  }
}

.blog-intro-content {
  width: 100%;
  flex: 1;
}

.blog-article-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark, #063A2C);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .blog-article-title {
    font-size: 1.875rem;
  }
}

.blog-article-body p {
  margin-bottom: 1.25rem;
  color: var(--slate-600, #475569);
  line-height: 1.7;
  text-align: justify;
}

.blog-article-body p:last-child {
  margin-bottom: 0;
}

.blog-article-quote {
  font-weight: 600;
  color: var(--primary-dark, #063A2C);
  font-style: italic;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.blog-content-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.blog-content-section .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.blog-content-section .blog-article {
  max-width: none !important;
  margin: 0 !important;
}

.blog-article {
  /* Wider so offering cards feel less narrow */
  max-width: 64rem;
  margin: 0 auto;
}

.blog-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--slate-200, #e2e8f0);
}

.blog-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-block--highlight {
  background: linear-gradient(135deg, rgba(0, 90, 68, 0.06), rgba(141, 198, 63, 0.06));
  padding: 1.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 90, 68, 0.15);
  border-bottom: 1px solid rgba(0, 90, 68, 0.15);
}

.blog-block-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark, #063A2C);
  margin-bottom: 1rem;
  line-height: 1.35;
}

@media (min-width: 640px) {
  .blog-block-title {
    font-size: 1.5rem;
  }
}

.blog-block p {
  margin-bottom: 1rem;
  color: var(--slate-600, #475569);
  line-height: 1.7;
  text-align: justify;
}

.blog-block p:last-of-type {
  margin-bottom: 0;
}

.blog-founder-message .blog-founder-quote {
  margin: 0 0 1.25rem 0;
  padding: 0 0 0 1rem;
  border-left: 4px solid var(--accent);
  font-style: normal;
}

.blog-founder-message .blog-founder-quote p {
  margin-bottom: 1rem;
}

.blog-founder-message .blog-founder-quote p:last-of-type {
  margin-bottom: 0;
}

.blog-founder-footer {
  margin: 0;
  padding-top: 0.5rem;
}

.blog-founder-signoff {
  margin: 0 0 0.35rem 0 !important;
  font-weight: 700;
  color: var(--primary-dark, #063A2C) !important;
}

.blog-founder-meta {
  margin: 0 !important;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--slate-600, #475569) !important;
}

.blog-list {
  margin: 0.75rem 0 1.25rem 1.25rem;
  padding: 0;
  list-style: none;
}

.blog-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--slate-600, #475569);
  line-height: 1.6;
  text-align: justify;
}

.blog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.blog-list li:last-child {
  margin-bottom: 0;
}

/* ========================================
   BLOG - Offering Cards (image tiles)
   ======================================== */
.blog-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 0.75rem 0 2rem;
}

@media (min-width: 640px) {
  .blog-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-offer-grid {
    /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
    gap: 1.1rem;
  }
}

.blog-offer-card {
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 18px 45px -26px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(0, 90, 68, 0.12);
}

.blog-offer-media {
  position: relative;
  height: 185px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1024px) {
  .blog-offer-media {
    height: 205px;
  }
}

.blog-offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(141, 198, 63, 0.85) 100%
  );
  pointer-events: none;
}

.blog-offer-title {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: calc(100% - 2.2rem);
  background: #ffffff;
  color: #0b0b0b;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.55rem 0.8rem;
  border-radius: 0.45rem;
  text-align: center;
  box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.blog-offer-body {
  padding: 1.1rem 0.95rem 1.2rem;
}

.blog-offer-body p {
  margin: 0 0 0.95rem;
  color: var(--slate-600, #475569);
  line-height: 1.6;
  text-align: justify;
}

.blog-offer-body p:last-child {
  margin-bottom: 0;
}

.blog-offer-body .blog-list {
  margin: 0.75rem 0 1rem 1.15rem;
}

.blog-offer-body .blog-list li {
  margin-bottom: 0.45rem;
}

/* ========================================
   ABOUT AKINO TECH - Vision & Mission
   ======================================== */
.about-akino-tech {
  position: relative;
  overflow: hidden;
}

.about-akino-tech-bg {
  position: absolute;
  inset: 0;
  background: url("assets/image4.jpg") center / cover no-repeat;
  z-index: 0;
}

.about-akino-tech-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-akino-tech-inner {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  text-align: center;
}

.about-akino-tech-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem 0;
}

@media (min-width: 640px) {
  .about-akino-tech-heading {
    font-size: 2rem;
  }
}

.about-akino-tech-subheading {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 2.5rem 0;
}

@media (min-width: 640px) {
  .about-akino-tech-subheading {
    font-size: 1.125rem;
  }
}

.about-akino-tech-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 3rem auto;
}

@media (min-width: 768px) {
  .about-akino-tech-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.about-akino-card {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.about-akino-card-inner {
  padding: 2rem 1.75rem;
  text-align: left;
}

@media (min-width: 640px) {
  .about-akino-card-inner {
    padding: 2.25rem 2rem;
  }
}

.about-akino-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.about-akino-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.about-akino-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.about-akino-card-icon--vision {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 90, 68, 0.12), rgba(141, 198, 63, 0.15));
}

.about-akino-card-icon--mission {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(141, 198, 63, 0.2), rgba(0, 90, 68, 0.12));
}

.about-akino-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.about-akino-card-line {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.about-akino-card-content {
  margin-bottom: 0;
}

.about-akino-card-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--slate-600);
  margin: 0;
  text-align: justify;
}

/* ========================================
   About Section
   ======================================== */
.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

body.about-page .section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-leadership {
  background: var(--slate-50);
}

.section-leadership-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .section-leadership-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

.section-leadership-content,
.section-leadership-image {
  width: 100%;
}

@media (min-width: 1024px) {
  .section-leadership-content {
    width: 55%;
  }

  .section-leadership-image {
    width: 45%;
  }
}

.section-leadership-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .section-leadership-title {
    font-size: 2.1rem;
  }
}

@media (min-width: 1024px) {
  .section-leadership-title {
    font-size: 2.4rem;
  }

}

.section-leadership-desc {
  margin-top: 1rem;
}

.section-leadership-header {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
  text-align: left;
}

.section-leadership-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.section-leadership-header .section-leadership-title {
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}

.section-leadership-lead {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}

.section-leadership-lead .section-desc {
  margin-top: 0;
}

.section-leadership-lead .section-desc:last-child {
  margin-bottom: 0;
}

/* Text column left, image right — same row on large screens */
.section-leadership-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .section-leadership-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem 3rem;
    margin-bottom: 2.5rem;
  }

  .section-leadership-split .section-leadership-split-text,
  .section-leadership-split .section-leadership-image {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    box-sizing: border-box;
  }
}

.section-leadership-split-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-leadership-split-text .section-desc:first-child {
  margin-top: 0;
}

.section-leadership-split-text .section-desc:last-child {
  margin-bottom: 0;
}

.section-leadership-below {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}

.section-leadership-below .section-desc:first-child {
  margin-top: 0;
}

.section-leadership-below .section-desc:last-child {
  margin-bottom: 0;
}

.section-leadership-tail {
  width: 100%;
  max-width: 100%;
}

/* Brand story + promise — inside About Akino (section-leadership) */
.section-leadership-brand {
  width: 100%;
  max-width: 100%;
  margin-top: 0.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.section-brand-story-heading {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

@media (min-width: 640px) {
  .section-brand-story-heading {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-brand-story-heading {
    font-size: 1.5625rem;
    margin-bottom: 1.125rem;
  }
}

.section-brand-story-body {
  width: 100%;
  max-width: 100%;
}

.section-leadership-brand .section-brand-story-body .section-leadership-desc:first-child {
  margin-top: 0;
}

.section-leadership-brand .section-brand-story-body .section-leadership-desc:last-child {
  margin-bottom: 0;
}

.section-leadership-promise {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  width: 100%;
  max-width: 100%;
}

.section-brand-story-promise-title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: normal;
  text-transform: none;
}

@media (min-width: 640px) {
  .section-brand-story-promise-title {
    font-size: 1.5rem;
  }
}

.section-leadership-promise .section-leadership-desc {
  margin-top: 0;
  margin-bottom: 0;
}

.about-highlights-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.about-highlights-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.about-highlights-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.section-leadership-cta {
  margin-top: 2rem;
}

.section-leadership-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -24px rgb(15 23 42 / 0.75);
}

.section-leadership-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 640px) {
  .section-leadership-image-wrap img {
    height: 420px;
  }
}

@media (min-width: 1024px) {
  .section-leadership-image-wrap img {
    height: 480px;
  }
}

/* AKINO's Network section */
.section-network {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85)),
    url("assets/network background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-network::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(141, 198, 63, 0.25), transparent 55%);
  pointer-events: none;
}

.section-network .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-network-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #005A44;
  text-align: center;
  margin: 0 0 1rem;
  padding: 0.75rem 1.5rem;
  width: auto;
  background-color: #8DC63F;
  border-radius: 0.5rem;
}

@media (min-width: 640px) {
  .section-network-title {
    font-size: 2rem;
  }
}

.section-network-intro {
  text-align: center;
  color: #8DC63F;
  max-width: 56rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .section-network-intro {
    font-size: 1.1rem;
  }
}

.section-network-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

@media (min-width: 640px) {
  .section-network-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .section-network-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.network-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #999999;
  border-radius: 24px;
  padding: 0.75rem;
  overflow: hidden;
  line-height: 1.6;
}

/* Top: green block with icon — gap between outline and this block via card padding */
.network-card-top {
  position: relative;
  z-index: 1;
  background: #6b9e2e;
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: 0.35rem;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.network-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.network-card-icon svg,
.network-card-icon img {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  object-fit: contain;
}


@media (min-width: 640px) {
  .network-card {
    padding: 0.875rem;
  }
  .network-card-top {
    min-height: 9rem;
    padding: 1.75rem 1rem;
  }
  .network-card-icon svg,
  .network-card-icon img {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 1024px) {
  .network-card {
    padding: 1rem;
  }
  .network-card-top {
    min-height: 10rem;
    padding: 2rem 1.25rem;
  }
  .network-card-icon svg,
  .network-card-icon img {
    width: 5rem;
    height: 5rem;
  }
}

/* Bottom: white area for title and description (gap inside card) */
.network-card-bottom {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1rem;
  padding-top: 1rem;
  margin-top: 0.75rem;
  text-align: center;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.35rem;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.network-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
  line-height: 1.3;
  transition: color 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.network-card-desc {
  font-size: 0.9375rem;
  color: var(--slate-600, #475569);
  margin: 0;
  line-height: 1.5;
  text-align: justify;
  opacity: 0.9;
  transition: color 0.48s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.network-card:hover .network-card-title,
.network-card:hover .network-card-desc {
  color: inherit;
}

.network-card:hover .network-card-desc {
  opacity: 0.9;
}

.network-card:hover .network-card-top,
.network-card:hover .network-card-bottom {
  background: inherit;
  border-color: inherit;
}

.network-card:hover .network-card-bottom {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.section-about {
  background: #f8f9fa;
}

/* Full-width heading above image + text */
.section-about-header {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
  text-align: left;
}

.section-about-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.section-about-header .section-title.section-about-title {
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}

/* Full-width intro paragraph above the image row */
.section-about-lead {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}

.section-about-lead .section-desc {
  margin-top: 0;
}

.section-about-lead .section-desc:last-child {
  margin-bottom: 0;
}

/* Row: image (half) + three paragraphs (half) */
.section-about-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .section-about-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem 3rem;
    margin-bottom: 2.5rem;
  }

  .section-about-split .section-about-image,
  .section-about-split .section-about-split-text {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    box-sizing: border-box;
  }
}

/* Allow long copy to wrap fully inside flex columns (avoids clipping) */
.section-about-split-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-about-split-text .section-desc:first-child {
  margin-top: 0;
}

.section-about-split-text .section-desc:last-child {
  margin-bottom: 0;
}

/* White card around product image */
.section-about-image-wrap {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.section-about-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #ffffff;
}

@media (min-width: 640px) {
  .section-about-image-wrap img {
    min-height: 280px;
    max-height: 520px;
  }
}

/* Closing paragraphs full width below the split row */
.section-about-below {
  width: 100%;
  max-width: 100%;
}

.section-about-below .section-desc:first-child {
  margin-top: 0;
}

.section-about-below .section-desc:last-child {
  margin-bottom: 0;
}

/* Legacy: single-column about inner (unused on home; kept for compatibility) */
.section-about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .section-about-inner {
    flex-direction: row;
  }
}

.section-about-inner--single {
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .section-about-inner--single {
    flex-direction: column;
  }

  .section-about-inner--single .section-about-content {
    width: 100%;
  }
}

.section-about-inner .section-about-image,
.section-about-inner .section-about-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .section-about-inner .section-about-image,
  .section-about-inner .section-about-content {
    width: 50%;
  }
}

/* ========================================
   Know Us Section
   ======================================== */
.section-know-us {
  background: var(--white);
}

.know-us-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #005A44;
  text-align: center;
  margin: 0 0 2.5rem 0;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .know-us-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .know-us-section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

.know-us-card + .know-us-card {
  margin-top: 3rem;
}

.know-us-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.know-us-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .know-us-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .know-us-title {
    font-size: 3.25rem;
  }
}

.know-us-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--slate-600);
  margin: 0;
}

.know-us-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
}

/* Name + title block above image / lead row */
.know-us-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.know-us-card-head--center {
  align-items: center;
  text-align: center;
}

.know-us-card-head--center .know-us-name-line {
  margin-left: auto;
  margin-right: auto;
}

.know-us-card-head--start {
  align-items: flex-start;
  text-align: left;
}

.know-us-card-head--end {
  align-items: flex-end;
  text-align: right;
}

.know-us-card-head--end .know-us-name-line {
  margin-left: auto;
}

.know-us-card-head .know-us-name {
  margin-bottom: 0;
}

.know-us-card-head .know-us-role {
  margin: 0;
}

/* Image + all bios in one flow; float wraps text beside photo (no tall “row” gap) */
.know-us-card-body {
  width: 100%;
}

@media (max-width: 767px) {
  .know-us-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .know-us-card-body .know-us-bio-wrap {
    width: 100%;
    align-self: stretch;
  }

  /* On small screens cards stack; keep header text centered above the image */
  .know-us-card-head--start,
  .know-us-card-head--end {
    align-items: center;
    text-align: center;
  }

  .know-us-card-head--end .know-us-name-line {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .know-us-card-body {
    overflow: hidden;
  }

  .know-us-card-body > .know-us-card-image {
    float: left;
    width: clamp(220px, 34vw, 320px);
    max-width: 320px;
    margin: 0 1.75rem 0.65rem 0;
  }

  .know-us-card--reverse .know-us-card-body > .know-us-card-image {
    float: right;
    margin: 0 0 0.65rem 1.75rem;
  }
}

.know-us-card-image {
  width: 100%;
  max-width: 320px;
}

.know-us-card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.know-us-card-lead {
  position: relative;
}

.know-us-card-below {
  position: relative;
}

@media (min-width: 768px) {
  /* Tighten space between lead and continuing paragraphs in the wrap-around column */
  .know-us-card-body .know-us-card-below > p:first-child {
    margin-top: 0;
  }
}

.know-us-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #005A44;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .know-us-name {
    font-size: 2rem;
  }
}

.know-us-name-line {
  display: block;
  width: 4rem;
  height: 3px;
  background: var(--slate-200);
  margin-bottom: 0.35rem;
}

.know-us-role {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #7ab536;
  margin: 0 0 1.25rem 0;
}

.know-us-bio-wrap {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-600);
  overflow: visible;
  max-height: none;
}

.know-us-bio-wrap p {
  margin: 0 0 1rem 0;
  text-align: justify;
}

.know-us-bio-wrap p:last-child {
  margin-bottom: 0;
}

.know-us-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 90, 68, 0.06) 0%, rgba(141, 198, 63, 0.08) 100%);
  border-radius: 0 0 0 60px;
  pointer-events: none;
  z-index: 0;
}

.know-us-card-head .know-us-name,
.know-us-card-head .know-us-name-line,
.know-us-card-head .know-us-role,
.know-us-card .know-us-bio-wrap {
  position: relative;
  z-index: 1;
}

.section-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  /* box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); */
}

.section-image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .section-image-wrap img { height: 420px; }
}

@media (min-width: 1024px) {
  .section-image-wrap img { height: 520px; }
}

/* India / Our Network — infographic layout (title + 3 columns + ribbon) */
.section-india-coverage {
  position: relative;
  background: #f5f3f6;
  padding-block: 2.5rem 2.25rem;
  /* Keep map fully visible on small screens */
  overflow: visible;
}

.network-infographic {
  position: relative;
  z-index: 1;
}

.section-india-coverage > .container.network-infographic {
  max-width: min(100%, 88rem);
}

.network-section-head {
  text-align: center;
  margin-bottom: 2.25rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.network-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.network-kicker--center {
  text-align: center;
}

.network-title {
  font-size: clamp(1.45rem, 3.5vw, 2.15rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1e293b;
  margin: 0;
}

.network-title--center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  text-align: center;
}

.network-title-main {
  flex: 0 1 auto;
  min-width: min(100%, 12rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.network-title-line1,
.network-title-line2 {
  display: block;
  line-height: 1.2;
}

.network-title-line2 {
  font-weight: 800;
  color: #1e293b;
}

.network-title-deco {
  flex: 1 1 2.5rem;
  max-width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  border-radius: 999px;
  min-width: 1.5rem;
}

@media (max-width: 520px) {
  .network-title-deco {
    display: none;
  }
}

.network-title-accent {
  color: var(--accent);
}

/* Our Network: 12-col grid — desktop 3-6-3, tablet map top + 2-col copy, mobile map-first stack */
.network-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2.5vw, 1.75rem);
  row-gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
}

/* 4/4/4 desktop layout: left content | centered map | right content */
.network-layout-444 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 1.5rem);
  row-gap: clamp(0.95rem, 1.8vw, 1.2rem);
  align-items: start;
}

/* Keep existing row behavior for legacy sections */
.row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  flex-wrap: nowrap;
}

.col-left {
  width: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.col-center {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.col-right {
  width: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.map-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}

@media (max-width: 768px) {
  .network-layout-444 {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  /* Order: left -> map -> right */
  .col-left {
    order: 0;
  }

  .col-center {
    order: 1;
    justify-content: center;
  }

  .col-right {
    order: 2;
  }
}

.network-grid__col--left,
.network-grid__col--map,
.network-grid__col--right {
  grid-column: 1 / -1;
  grid-row: auto;
  min-width: 0;
}

.network-grid__col--left,
.network-grid__col--right {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.network-layout-444 .network-grid__col--left,
.network-layout-444 .network-grid__col--right {
  gap: 0.9rem;
}

.network-grid__col--map {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: single column — left -> map -> right */
@media (max-width: 768px) {
  .network-grid__col--map {
    order: 1;
  }

  .network-grid__col--left {
    order: 0;
  }

  .network-grid__col--right {
    order: 2;
  }
}

/* Tablet: map full width on top; left | right below (6 + 6) */
@media (min-width: 769px) and (max-width: 1024px) {
  .network-grid {
    align-items: stretch;
    row-gap: clamp(1.5rem, 3vw, 2rem);
  }

  .network-grid__col--map {
    order: 0;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .network-grid__col--left {
    order: 0;
    grid-column: 1 / 7;
    grid-row: 2;
  }

  .network-grid__col--right {
    order: 0;
    grid-column: 7 / -1;
    grid-row: 2;
  }
}

/* Desktop: 3 + 6 + 3 — map is dominant center band */
@media (min-width: 1025px) {
  .network-grid {
    align-items: center;
    column-gap: clamp(1.25rem, 2.5vw, 2.25rem);
    row-gap: 1.5rem;
  }

  .network-grid__col--left {
    grid-column: 1 / 4;
    grid-row: auto;
    align-self: start;
  }

  .network-grid__col--map {
    grid-column: 4 / 10;
    grid-row: auto;
  }

  .network-grid__col--right {
    grid-column: 10 / -1;
    grid-row: auto;
    align-self: start;
  }
}

.network-intro-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.network-intro-desc {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.5;
  font-size: 0.92rem;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.network-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.2rem 0;
  background: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.network-pill:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.network-pill-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(141, 198, 63, 0.35);
}

.network-pill-icon svg {
  width: 22px;
  height: 22px;
}

/* PNG icons from assets/network-icon — artwork inside green circle */
.network-pill-icon--img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(141, 198, 63, 0.35);
  padding: 11px;
  box-sizing: border-box;
}

.network-pill-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 1025px) {
  .network-pill-icon--img {
    width: 56px;
    height: 56px;
    padding: 12px;
  }
}

.network-pill-title {
  font-weight: 800;
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.network-pill-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.network-map-frame {
  /* Control map size so it doesn't "zoom" to fill the whole center column */
  width: 100%;
  max-width: clamp(280px, 55vw, 520px);
  margin: 0 auto;
  padding: 0;
  border-radius: 1.25rem;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.network-map-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  filter: none;
}

@media (min-width: 1025px) {
  .network-layout-444 .network-grid__col--left {
    grid-column: 1 / 5; /* 4/12 */
  }

  .network-layout-444 .network-grid__col--map {
    grid-column: 5 / 9; /* 4/12 */
    align-self: center;
  }

  .network-layout-444 .network-grid__col--right {
    grid-column: 9 / 13; /* 4/12 */
  }
}

@media (min-width: 1025px) {
  .network-grid__col--map .network-map-frame {
    padding: clamp(1rem, 1.6vw, 1.35rem);
    box-shadow: none;
  }

  .network-grid__col--map .network-map-frame img {
    filter: drop-shadow(0 14px 32px rgba(15, 23, 42, 0.16));
  }
}

@media (min-width: 1025px) {
  .network-layout-444 .network-grid__col--map .network-map-frame {
    padding: 0;
  }

  .network-layout-444 .network-grid__col--map .network-map-frame img {
    filter: none;
  }
}

/* Red CTA ribbon — angled ends */
.network-ribbon {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  letter-spacing: 0.02em;
  color: #fff;
  background: #dc2626;
  padding: 1rem 2rem;
  clip-path: polygon(3% 0, 97% 0, 100% 100%, 0% 100%);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
}

@media (min-width: 768px) {
  .network-ribbon {
    padding: 1.1rem 3rem;
    clip-path: polygon(4% 0, 96% 0, 100% 100%, 0% 100%);
  }
}

@media (max-width: 480px) {
  .section-india-coverage {
    padding-block: 2rem 1.75rem;
  }

  .network-layout-444 {
    row-gap: 0.9rem;
  }

  .network-map-frame {
    max-width: 100%;
  }
}

/* Certifications & Quality Assurance */
.section-cert-quality {
  background: var(--white);
}

.section-cert-quality .section-title {
  margin-bottom: 2rem;
}

.section-cert-quality .section-about-split {
  align-items: center;
}

.section-cert-quality .section-about-image-wrap {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
}

.section-cert-quality .section-about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 640px) {
  .section-cert-quality .section-about-image-wrap {
    max-width: 28rem;
  }
}

@media (min-width: 1024px) {
  .section-cert-quality .section-about-split .section-about-image {
    width: 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .section-cert-quality .section-about-split .section-about-split-text {
    width: 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .section-cert-quality .section-about-image-wrap {
    max-width: 100%;
    margin-inline: 0;
  }
}

/* Industries We Serve */
.section-industries {
  background: linear-gradient(180deg, var(--slate-50) 0%, #eef6f1 100%);
}

.industries-head {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.industries-head .section-title {
  margin-bottom: 1.25rem;
}

.industries-intro {
  margin-top: 0;
  margin-bottom: 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.industries-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 1.65rem;
  background: var(--white);
  border: 1px solid rgb(0 90 68 / 0.1);
  border-radius: 1rem;
  box-shadow: 0 10px 28px -18px rgb(15 23 42 / 0.28);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industries-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.industries-card:hover {
  transform: translateY(-4px);
  border-color: rgb(141 198 63 / 0.45);
  box-shadow: 0 18px 36px -16px rgb(0 90 68 / 0.28);
}

.industries-card:hover::before {
  transform: scaleX(1);
}

.industries-card-num {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgb(141 198 63 / 0.22);
  letter-spacing: -0.04em;
}

.industries-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.65rem;
  background: var(--accent);
  color: var(--white);
  flex-shrink: 0;
}

.industries-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.35;
  padding-right: 2.5rem;
}

.industries-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0;
}

/* Why Choose Akino Lithium Batteries */
.section-akino-why {
  background: var(--white);
}

.akino-why-head {
  margin-bottom: 3rem;
}

.akino-why-head .section-title {
  margin-bottom: 0;
}

.akino-why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .akino-why-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 3rem;
    align-items: center;
  }
}

.akino-why-visual {
  position: relative;
}

.akino-why-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgb(0 90 68 / 0.1);
  box-shadow: 0 20px 40px -24px rgb(0 90 68 / 0.35);
  aspect-ratio: 4 / 5;
}

.akino-why-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(0 90 68 / 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.akino-why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 1024px) {
  .akino-why-image-wrap {
    aspect-ratio: 3 / 4;
  }
}

.akino-why-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0;
}

@media (min-width: 768px) {
  .akino-why-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.akino-why-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.akino-why-feature--full {
  grid-column: 1 / -1;
}

.akino-why-feature:hover {
  background: var(--white);
  border-color: rgb(141 198 63 / 0.45);
  transform: translateY(-2px);
}

.akino-why-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.55rem;
  background: var(--accent);
  color: var(--white);
}

.akino-why-feature-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.3rem;
  line-height: 1.35;
}

.akino-why-feature-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--slate-600);
  margin: 0;
}

/* Legacy / optional CTA (if re-used elsewhere) */
.network-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 2.5rem;
  border-radius: 0.25rem;
  font-weight: 700;
}
.network-cta:hover {
  filter: brightness(0.95);
}

/* Product Categories — bento grid (accent #8DC63F) */
.section-product-categories {
  background: #fff;
  padding-block: 3.5rem;
}
.product-categories-title {
  text-align: center;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b0b0b;
  margin: 0 0 2.25rem;
}
@media (min-width: 768px) {
  .product-categories-title {
    font-size: 2.25rem;
    margin-bottom: 2.75rem;
  }
}
.product-categories-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-rows: 240px;
  align-items: stretch;
}

/* Keep categories uniform: same size cards in each row (3 cards/row on desktop) */
@media (min-width: 640px) {
  .product-categories-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
    gap: 1.1rem;
  }
}

@media (min-width: 768px) {
  .product-categories-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
  }

  .product-cat-card--span-6,
  .product-cat-card--span-5,
  .product-cat-card--span-3,
  .product-cat-card--span-2 {
    grid-column: span 1 !important;
  }

  /* Remove the special smaller typography/padding applied only for span-2 */
  .product-cat-card--span-2 .product-cat-name {
    font-size: clamp(1rem, 2.4vw, 1.35rem);
  }
  .product-cat-card--span-2 .product-cat-card-body {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
}
.product-cat-card {
  position: relative;
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 0;
  height: 100%;
  box-shadow:
    0 18px 40px -22px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-cat-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 50px -24px rgba(15, 23, 42, 0.5),
    0 0 0 1px rgba(141, 198, 63, 0.35);
}
.product-cat-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.product-cat-card:focus-within {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.product-cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: blur(0px) brightness(1);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.product-cat-card:hover .product-cat-card-bg {
  transform: scale(1.03);
  filter: blur(0) brightness(1);
}

.product-cat-card:focus-within .product-cat-card-bg {
  transform: scale(1.03);
  filter: blur(0) brightness(1);
}
/* ~60% black (left) → ~40% green #8DC63F (right) */
.product-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.82) 35%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(141, 198, 63, 0.72) 82%,
    rgba(141, 198, 63, 0.9) 100%
  );
  pointer-events: none;
}
.product-cat-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  z-index: 1;
}

.product-cat-card-main-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-cat-subtypes {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 4.65rem;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;

  max-height: 60%;
  overflow: auto;
  padding-right: 0.35rem;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

/* Main type only (no subtype links) */
.product-cat-subtypes {
  display: none !important;
}
.product-cat-card:hover .product-cat-subtypes,
.product-cat-card:focus-within .product-cat-subtypes {
  display: none !important;
}

.product-cat-card:hover .product-cat-subtypes,
.product-cat-card:focus-within .product-cat-subtypes {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-cat-subtypes a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.product-cat-subtypes a:hover {
  text-decoration: underline;
}

/* Make subtypes scrollbar unobtrusive */
.product-cat-subtypes {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}
.product-cat-subtypes::-webkit-scrollbar {
  width: 6px;
}
.product-cat-subtypes::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}

@media (hover: none) {
  .product-cat-subtypes {
    display: none;
  }
}
.product-cat-name {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  max-width: 100%;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.65),
    0 0 1px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.55rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.product-cat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff;
  color: #0b0b0b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  margin-top: 0.15rem;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.2s ease, color 0.2s ease;
}
.product-cat-card:hover .product-cat-btn {
  background: #0b0b0b;
  color: #fff;
}

.product-cat-card:hover .product-cat-name,
.product-cat-card:hover .product-cat-btn {
  opacity: 1;
  transform: none;
}

.product-cat-card:focus-within .product-cat-name,
.product-cat-card:focus-within .product-cat-btn {
  opacity: 1;
  transform: none;
}

/* Google Reviews — below product categories */
.section-google-reviews {
  background: #f5f7f2;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  overflow-x: hidden;
}
.google-reviews-title {
  text-align: center;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #063A2C;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .google-reviews-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
/* Edge-to-edge carousel row; left inset matches centered .container */
.google-reviews-layout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .google-reviews-layout {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 900px) {
  .google-reviews-layout {
    /* Shift review content slightly left, while title stays centered */
    padding-left: max(1rem, calc((100vw - 80rem) / 2));
    padding-right: 0;
  }
}
.google-reviews-layout-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .google-reviews-layout-inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .google-reviews-layout .reviews-summary {
    flex: 0 0 220px;
    text-align: center;
  }
  .reviews-slider-wrap {
    flex: 1;
    min-width: 0;
  }
}
.reviews-summary h3 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary, #0b0b0b);
}
.reviews-summary-stars {
  color: #fbbc04;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.reviews-summary p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #334155;
}
.google-logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Product Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.02em;
}
.reviews-slider {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0;
  margin: 0;
  flex: 1;
  min-width: 0;
  touch-action: none;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.review-card {
  flex: 0 0 clamp(260px, 72vw, 380px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  box-shadow:
    0 14px 36px -20px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.review-header .user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.review-header .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #8dc63f), #5a9a2e);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-header h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b0b0b;
  line-height: 1.25;
}
.review-header span {
  font-size: 0.8rem;
  color: #64748b;
}
.review-header img {
  flex-shrink: 0;
  opacity: 0.9;
}
.review-card-stars {
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.review-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #334155;
}
.reviews-slider .nav {
  flex-shrink: 0;
  align-self: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0b0b0b;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.reviews-slider .nav:hover {
  background: var(--accent, #8dc63f);
  border-color: transparent;
  color: #fff;
}
.reviews-slider .nav:focus-visible {
  outline: 3px solid var(--accent, #8dc63f);
  outline-offset: 2px;
}
.reviews-slider .nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Akino Stats (Likes) Section - 3D style cards below map */
.section-akino-stats {
  background: #f5f7f2;
}

.akino-stats-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.akino-stats-head h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .akino-stats-head h2 {
    font-size: 2.1rem;
  }
}

.akino-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .akino-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.akino-stat-card {
  perspective: 900px;
}

.akino-stat-card-inner {
  position: relative;
  border-radius: 999px;
  padding: 1.75rem 1.25rem;
  background: #8DC63F;
  box-shadow:
    0 22px 45px -24px rgba(15, 23, 42, 0.6),
    0 0 0 1px rgba(148, 163, 184, 0.25);
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background-position 0.5s ease;
  text-align: center;
}

.akino-stat-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 110%, rgba(0, 0, 0, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.akino-stat-card:hover .akino-stat-card-inner {
  transform: rotate3d(0.35, 0.9, 0, 20deg) translateY(-6px);
  box-shadow:
    0 30px 60px -32px rgba(15, 23, 42, 0.8),
    0 0 0 1px rgba(141, 198, 63, 0.4);
}

.akino-stat-card:hover .akino-stat-card-inner::before {
  opacity: 1;
}

.akino-stat-value {
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
  transform: translateZ(40px);
}

.akino-stat-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
  transform: translateZ(25px);
}

.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-label-accent {
  color: var(--accent);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-desc {
  margin-top: 1.5rem;
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: justify;
}

.about-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-list-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-list-num {
  min-width: 3rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.about-list-text {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
  padding-top: 0.25rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
/* .section-testimonials {
  background: var(--slate-50);
} */

.section-testimonials-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1rem;
}

.section-title-center {
  text-align: center;
}

.section-desc-center {
  text-align: center;
  margin-top: 0.75rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 8px 20px -12px rgb(15 23 42 / 0.35);
  padding: 1.75rem 2rem;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

@media (min-width: 1024px) {
  .testimonial-card {
    padding: 2rem 2.25rem;
  }
}

.testimonial-card:hover {
  background: #8DC63F;
  border-color: #7ab536;
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px);
}

.testimonial-card:hover .testimonial-title,
.testimonial-card:hover .testimonial-text {
  color: #ffffff;
}

.testimonial-card:hover .testimonial-stars {
  color: #fff7cc;
}

.testimonial-card-span {
  grid-column: 1 / -1;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.testimonial-card > .testimonial-text + .testimonial-text {
  margin-top: 1.25rem;
}

/* Our Expertise (About page) */
.section-about-expertise {
  background: var(--white);
  overflow-x: clip;
}

.section-about-expertise > .container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .section-about-expertise > .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.about-expertise-section-title.section-title.section-title-why {
  margin-bottom: 2.5rem;
}

.about-expertise-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .about-expertise-body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    gap: 3rem;
    align-items: stretch;
  }
}

.about-expertise-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-width: 0;
  width: 100%;
}

.about-expertise-timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .about-expertise-timeline::before {
    left: 1.5rem;
  }
}

.about-expertise-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.15rem 1rem 1.15rem 0.5rem;
  margin-inline: -0.25rem;
  position: relative;
  border-radius: 0.75rem;
  cursor: default;
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.about-expertise-item:not(:last-child) {
  border-bottom: 1px solid var(--slate-200);
}

.about-expertise-item:hover {
  background: linear-gradient(90deg, rgb(141 198 63 / 0.14) 0%, rgb(240 247 244 / 0.95) 55%);
  transform: translateX(6px);
  box-shadow: 0 12px 28px -16px rgb(0 90 68 / 0.22);
}

.about-expertise-item:hover:not(:last-child) {
  border-bottom-color: transparent;
}

.about-expertise-step {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgb(0 90 68 / 0.25);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.about-expertise-item:nth-child(even) .about-expertise-step {
  background: var(--primary-dark);
}

.about-expertise-item:hover .about-expertise-step {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgb(141 198 63 / 0.45);
}

.about-expertise-item-content {
  flex: 1;
  min-width: 0;
  padding-top: 0.2rem;
}

.about-expertise-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.35rem;
  line-height: 1.35;
  transition: color 0.28s ease;
}

.about-expertise-item:hover .about-expertise-item-title {
  color: var(--primary);
}

.about-expertise-item-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0;
  transition: color 0.28s ease;
}

.about-expertise-item:hover .about-expertise-item-desc {
  color: var(--slate-900);
}

@media (prefers-reduced-motion: reduce) {
  .about-expertise-item,
  .about-expertise-step,
  .about-expertise-item-title,
  .about-expertise-item-desc {
    transition: none;
  }

  .about-expertise-item:hover {
    transform: none;
  }

  .about-expertise-item:hover .about-expertise-step {
    transform: none;
  }
}

.about-expertise-media {
  order: -1;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .about-expertise-media {
    order: 1;
  }
}

.about-expertise-media-frame {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgb(0 90 68 / 0.4);
  aspect-ratio: 4 / 5;
  max-height: 640px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.about-expertise-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 1024px) {
  .about-expertise-media-frame {
    aspect-ratio: 3 / 4;
    height: 100%;
    min-height: 100%;
    max-height: none;
  }
}

/* ========================================
   Why Choose Us + Milestones (two columns)
   ======================================== */

.section-why-milestones {
  background: var(--white);
}

.section-why-milestones-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-why-milestones-inner {
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
  }
}

.section-why-column,
.section-why-cards-column {
  width: 100%;
}

@media (min-width: 1024px) {
  .section-why-column {
    width: 50%;
    flex-shrink: 0;
  }
  .section-why-cards-column {
    width: 50%;
    flex-shrink: 0;
  }
  .section-why-cards-column .why-choose-cards {
    margin-top: 0;
  }
}

.section-title-why {
  margin-bottom: 0;
}

.section-title-accent {
  color: var(--accent);
}

.text-accent {
  color: var(--accent);
  font-weight: 600;
}

.why-choose-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.why-choose-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--slate-50);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 4px 14px -6px rgba(15, 23, 42, 0.08);
}

.why-choose-card-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-card-icon svg {
  color: var(--white);
}

.why-choose-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.why-choose-card-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

.section-milestones-side-title {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

@media (min-width: 640px) {
  .section-milestones-side-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .section-milestones-side-title {
    font-size: 2.25rem;
  }
}

.milestones-grid--vertical {
  position: relative;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .milestones-grid--vertical {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .milestones-grid--vertical::after {
    display: none;
  }
  .section-milestones-column .milestone-card::after {
    display: none;
  }
}

/* ========================================
   Milestones Timeline
   ======================================== */

.section-milestones-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.milestones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 1024px) {
  .milestones-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    padding-bottom: 2.75rem;
  }

  .milestones-grid::after {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 1.1rem;
    border-bottom: 1px dashed rgba(141, 198, 63, 0.6);
  }
}

.milestone-card {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.4);
  padding: 2.5rem 1.75rem 1.75rem;
  text-align: justify;
}

@media (min-width: 640px) {
  .milestone-card {
    padding: 2.75rem 2rem 1.9rem;
  }
}

@media (min-width: 1024px) {
  .milestone-card::after {
    content: "";
    position: absolute;
    bottom: -1.15rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    border: 2px solid #8DC63F;
    background: #ffffff;
  }
}

.milestone-icon {
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.9rem;
  background: #8DC63F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.7);
}

.milestone-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.85rem;
  text-align: justify;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .milestone-title {
    font-size: 1.125rem;
  }
}

.milestone-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
  list-style-type: disc;
  list-style-position: outside;
}

.milestone-list li {
  margin-top: 0.5rem;
  padding-left: 0.25rem;
}

.milestone-list li:first-child {
  margin-top: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.section-cta {
  background: var(--slate-50);
}

.section-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .section-cta-inner { flex-direction: row; }
}

.section-cta-content,
.section-cta-image {
  width: 100%;
}

@media (min-width: 1024px) {
  .section-cta-content,
  .section-cta-image { width: 50%; }
}

.section-label-muted {
  color: var(--slate-400);
}

.section-title-cta {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .section-title-cta { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-title-cta { font-size: 2.25rem; }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--slate-900) !important;
  background-color: var(--slate-900) !important;
  color: var(--white) !important;
  padding: 1rem 2.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  transition: none;
}

.btn-contact:hover {
  background-color: var(--slate-900) !important;
  color: var(--white) !important;
}

/* ========================================
   Product Page (separate product pages)
   ======================================== */

/* EV Hero - Full cover image with text overlay */
.ev-hero {
  position: relative;
  min-height: 65vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ev-hero {
    min-height: 75vh;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .ev-hero {
    min-height: 85vh;
  }
}

.ev-hero-bg {
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .ev-hero-bg { top: 7rem; }
}

.ev-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ev-hero-overlay {
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

@media (min-width: 768px) {
  .ev-hero-overlay { top: 7rem; }
}

.ev-hero-content {
  position: relative;
  z-index: 3;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.ev-hero-back {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.ev-hero-back:hover {
  color: var(--accent);
}

.ev-hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 28rem;
}

@media (min-width: 640px) {
  .ev-hero-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .ev-hero-title { font-size: 2.75rem; }
}

/* UPS Inverter hero: title hover effect */
.ups-hero .ups-hero-title {
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}

.ups-hero:hover .ups-hero-title {
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(141, 198, 63, 0.5);
  transform: translateY(-2px);
}

/* Solar Battery hero: title hover effect */
.solar-hero .solar-hero-title {
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}

.solar-hero:hover .solar-hero-title {
  color: #8DC63F;
  text-shadow: 0 2px 12px rgba(141, 198, 63, 0.55);
  transform: translateY(-2px);
}

.section-product-page {
  background: transparent;
}

/* ========================================
   Product page: left sidebar menu + right content
   ======================================== */
.product-page-layout {
  display: flex;
  gap: 0;
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 2rem; /* start below fixed header */
  min-height: 60vh;
  width: 100%;
}

/* Left: vertical sidebar with expandable types */
.product-sidebar {
  flex-shrink: 0;
  width: 280px;
  min-width: 280px;
  padding: 15px;
  border-right: 2px solid var(--slate-200);
  background: #f5f5f5;
  border-radius: 12px;
  margin: 0 0.5rem 0 0;
}

.product-sidebar-inner {
  position: sticky;
  top: 7rem; /* just below fixed header */
  max-height: calc(100vh - 7rem); /* full viewport below header */
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}

.product-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin: 0;
  padding: 0 0.25rem 0 0;
  margin-top: 10px;
}

.product-sidebar-group {
  margin: 0;
}

/* Menu item: always-visible border, spacing, border-radius – 10px gap between items */
.product-sidebar-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 15px;
  margin: 0;
  border: 2px solid #8BC34A;
  border-radius: 8px;
  background: #eaeaea;
  cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.product-sidebar-type a {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  text-align: left;
  transition: color 0.2s;
  background: transparent;
}

.product-sidebar-type a:hover {
  color: var(--accent);
}

.product-sidebar-type a.active {
  color: var(--white);
}

/* Active row: whole item green */
.product-sidebar-type.active {
  background: #8BC34A;
  border-color: #6b9e2e;
}

.product-sidebar-type.active a {
  color: var(--white);
}

.product-sidebar-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: var(--slate-600);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.product-sidebar-toggle:hover {
  background: var(--slate-200);
  color: var(--primary);
}

.product-sidebar-group.is-open .product-sidebar-toggle {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent);
}

.product-sidebar-type.active .product-sidebar-toggle {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.product-sidebar-type.active .product-sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.product-sidebar-subs {
  list-style: none;
  margin: 10px 0 0 12px;
  padding: 0 0 4px 12px;
  border-left: 2px solid var(--slate-200);
  display: none;
}

.product-sidebar-group.is-open .product-sidebar-subs {
  display: block;
}

.product-sidebar-subs li {
  margin: 0 0 6px 0;
}

.product-sidebar-subs li:last-child {
  margin-bottom: 0;
}

.product-sidebar-subs a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 0.25rem;
  margin: 0;
  transition: background 0.2s, color 0.2s;
}

.product-sidebar-subs a:hover {
  background: var(--slate-100);
  color: var(--accent);
}

.product-sidebar-subs a.active {
  background: rgba(141, 198, 63, 0.2);
  color: var(--primary);
  font-weight: 600;
}

/* Inverter: show all inverter products on the main inverter page only */
#product-subs-inverter {
  display: none !important;
}
.product-sidebar-toggle[aria-controls="product-subs-inverter"] {
  display: none !important;
}

/* Products sidebar: hide all subtype lists and toggles (main type only navigation) */
.product-sidebar-subs {
  display: none !important;
}
.product-sidebar-toggle {
  display: none !important;
}

/* Type with no subs: single link only */
.product-sidebar-group.has-no-subs .product-sidebar-type a {
  padding-right: 0.5rem;
}

.product-sidebar-group.has-no-subs .product-sidebar-toggle {
  display: none;
}

/* Right: main content */
.product-main {
  flex: 1;
  min-width: 0;
  padding: 1rem 0 2rem 2rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--slate-200);
  background: var(--white);
}

/* Let product page content use full main area width (no extra right gap) */
.product-main .container {
  max-width: none;
  width: 100%;
}

@media (max-width: 1023px) {
  .product-page-layout {
    flex-direction: column;
    padding: 0 1rem;
  }

  .product-sidebar {
    width: 100%;
    min-width: unset;
    padding: 15px;
    border-right: none;
    border-bottom: 2px solid var(--slate-200);
    border-radius: 12px;
  }

  .product-sidebar-inner {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .product-main {
    padding: 1rem 0 2rem 0;
    padding-left: 0;
    border-left: none;
  }
}

/* UPS Inverter content section above footer */
.section-ups-content {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: var(--white);
}

.section-ups-content .section-title {
  margin-bottom: 0.75rem;
}

.section-ups-content .section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.section-ups-content-text {
  max-width: 52rem;
  text-align: justify;
}

.section-ups-content-text p {
  margin-top: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  text-align: justify;
}

.section-ups-content-text p:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .section-ups-content .section-subtitle {
    font-size: 1.375rem;
  }
}

/* Solar Battery content section above footer */
.section-solar-content {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: var(--white);
}

.section-solar-content .section-title {
  margin-bottom: 0.75rem;
}

.section-solar-content .section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.section-solar-content .solar-subtitle-accent {
  color: #8DC63F;
}

.section-solar-content-text {
  max-width: 52rem;
  text-align: justify;
}

.section-solar-content-text p {
  margin-top: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  text-align: justify;
}

.section-solar-content-text p:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .section-solar-content .section-subtitle {
    font-size: 1.375rem;
  }
}

/* Solar feature cards – 4 small cards in one row */
.section-solar-cards {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: rgba(141, 198, 63, 0.08);
}

.solar-cards-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #063A2C;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .solar-cards-heading {
    font-size: 1.75rem;
  }
}

.solar-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .solar-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solar-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.solar-card {
  background: #8DC63F;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.solar-card:hover {
  box-shadow: 0 4px 16px rgba(141, 198, 63, 0.4);
  transform: translateY(-2px);
}

.solar-card-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

/* Solar efficiency & cost section */
.section-solar-efficiency {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: var(--white);
}

.solar-efficiency-title {
  margin-bottom: 1.5rem;
}

.solar-efficiency-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .solar-efficiency-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.solar-efficiency-content {
  flex: 1;
  min-width: 0;
}

.section-solar-efficiency-text {
  max-width: 52rem;
  text-align: justify;
}

@media (min-width: 1024px) {
  .solar-efficiency-content .section-solar-efficiency-text {
    max-width: none;
  }
}

.solar-efficiency-image-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.2);
}

@media (min-width: 1024px) {
  .solar-efficiency-image-wrap {
    width: 42%;
    max-width: 480px;
  }
}

.solar-efficiency-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 640px) {
  .solar-efficiency-image-wrap img {
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .solar-efficiency-image-wrap img {
    min-height: 380px;
  }
}

.section-solar-efficiency-text p {
  margin-top: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.section-solar-efficiency-text p:first-child {
  margin-top: 0;
}

.solar-efficiency-list {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.solar-efficiency-list li {
  margin-top: 0.35rem;
}

.solar-efficiency-list li:first-child {
  margin-top: 0;
}

/* Scroll-animated cards section (2x2) – animation only in this section */
.section-cards-scroll {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: rgba(141, 198, 63, 0.08) url('assets/solor-bg.jpg') no-repeat center;
  background-size: cover;
  background-attachment: scroll;
  position: relative;
}

.section-cards-scroll::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.5) 100%);
  pointer-events: none;
}

.section-cards-scroll .container {
  position: relative;
  z-index: 1;
}

.cards-scroll-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
  justify-items: center;
}

@media (min-width: 640px) {
  .cards-scroll-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.cards-scroll-grid .card-scroll-item {
  width: 100%;
  max-width: 180px;
}

@media (min-width: 640px) {
  .cards-scroll-grid .card-scroll-item {
    max-width: 220px;
  }
}

.card-scroll-item {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: transparent;
  border: 3px solid #005A44;
  box-shadow: none;
  transition: transform 0.8s ease, opacity 0.8s ease, background 0.3s ease, color 0.3s ease;
  opacity: 0.85;
}

.card-scroll-item:hover {
  background: #8DC63F;
}

.card-scroll-item:hover .card-scroll-label {
  color: #ffffff;
}

.card-scroll-item[data-offset="left"] {
  transform: translateX(-50px);
}

.card-scroll-item[data-offset="right"] {
  transform: translateX(50px);
}

.section-cards-scroll.in-view .card-scroll-item[data-offset="left"],
.section-cards-scroll.in-view .card-scroll-item[data-offset="right"] {
  transform: translateX(0);
  opacity: 1;
}

.card-scroll-item:nth-child(1) { transition-delay: 0s; }
.card-scroll-item:nth-child(2) { transition-delay: 0.05s; }
.card-scroll-item:nth-child(3) { transition-delay: 0.1s; }
.card-scroll-item:nth-child(4) { transition-delay: 0.15s; }

.card-scroll-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #005A44;
  display: block;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .card-scroll-label {
    font-size: 1rem;
  }
}

/* Energy Storage Comparison Table */
.section-energy-comparison {
  padding-bottom: 3rem;
  background: var(--white);
}

.energy-comparison-title {
  margin-bottom: 0.5rem;
}

.energy-comparison-subtitle {
  margin-top: 0;
  margin-bottom: 2rem;
}

.energy-comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.energy-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgb(15 23 42 / 0.25);
}

.energy-comparison-table thead {
  background: #063A2C;
  color: #ffffff;
}

.energy-comparison-table th,
.energy-comparison-table td {
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.energy-comparison-table th {
  font-weight: 600;
  white-space: nowrap;
}

.energy-comparison-table tbody tr:nth-child(even) {
  background: rgba(148, 163, 184, 0.08);
}

.energy-comparison-table tbody tr:hover {
  background: rgba(141, 198, 63, 0.12);
}

.energy-comparison-table td:nth-child(1) {
  font-weight: 600;
  color: #063A2C;
}

.energy-comparison-table td:nth-child(2) {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .energy-comparison-table {
    min-width: 520px;
  }
}

/* FAQ section – hover to expand answer with animation */
.section-faq {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: var(--white);
  text-align: center;
}

.faq-title {
  margin-bottom: 3rem;
  text-align: center;
  color: #005A44;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: #8DC63F;
  box-shadow: 0 4px 20px rgba(141, 198, 63, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  cursor: default;
  font-weight: 600;
  font-size: 1rem;
  color: #063A2C;
  transition: background 0.25s ease;
}

.faq-item:hover .faq-question {
  background: rgba(141, 198, 63, 0.08);
}

.faq-question span:not(.faq-num):not(.faq-icon) {
  flex: 1;
}

.faq-num {
  flex-shrink: 0;
  color: #8DC63F;
  font-weight: 700;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-right: 2px solid #063A2C;
  border-bottom: 2px solid #063A2C;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease, border-color 0.25s ease;
}

.faq-item:hover .faq-icon {
  transform: rotate(-135deg) translateY(-2px);
  border-color: #8DC63F;
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;
}

.faq-item:hover .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1rem 1.25rem;
  padding-left: calc(1.25rem + 1.5rem);
  color: var(--slate-600);
  line-height: 1.65;
  font-size: 0.9375rem;
}

@media (max-width: 640px) {
  .faq-question {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 0.875rem 1rem;
    padding-left: 1rem;
  }
}

/* Integrated Lithium Energy Backup section - content left, image right */
/* .section-lithium-backup {
  padding-top: 4rem;
  padding-bottom: 5rem;
} */

.lithium-backup-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .lithium-backup-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.lithium-backup-content {
  flex: 1;
  min-width: 0;
}

.lithium-backup-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #063A2C;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .lithium-backup-title {
    font-size: 1.75rem;
  }
}

.lithium-backup-desc {
  color: var(--slate-600);
  line-height: 1.7;
  text-align: justify;
  margin-top: 0.75rem;
}

.lithium-backup-desc:first-of-type {
  margin-top: 0;
}

.lithium-backup-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #8DC63F;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.lithium-backup-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.lithium-backup-list li {
  margin-top: 0.35rem;
}

.lithium-backup-list li:first-child {
  margin-top: 0;
}

.lithium-backup-image-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.2);
}

@media (min-width: 1024px) {
  .lithium-backup-image-wrap {
    width: 42%;
    max-width: 480px;
  }
}

.lithium-backup-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--slate-900);
}

@media (min-width: 640px) {
  .lithium-backup-image-wrap img {
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .lithium-backup-image-wrap img {
    min-height: 380px;
  }
}

.product-back-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.product-back-link:hover {
  color: var(--accent);
}

.product-page-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .product-page-inner {
    flex-direction: row;
  }
}

.product-page-image,
.product-page-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .product-page-image { width: 45%; }
  .product-page-content { width: 55%; }
}

/* Stacked layout: image and content full width, column at all breakpoints (e.g. solar page first section) */
.product-page-inner--stacked {
  flex-direction: column;
  display: flex;
}

@media (min-width: 1024px) {
  .product-page-inner--stacked {
    flex-direction: column;
  }
}

.product-page-inner--stacked .product-page-image {
  width: 100%;
}

.product-page-inner--stacked .section-image-wrap {
  width: 100%;
}

.product-page-inner--stacked .section-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-page-inner--stacked .product-page-content {
  width: 100%;
  margin-top: 2rem;
}

.product-page-content .section-title {
  font-size: 1.25rem;
}

@media (min-width: 640px) {
  .product-page-content .section-title { font-size: 2.5rem; }
}

.ess-telecom-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #ffffff;
}

.ess-telecom-content {
  max-width: 72rem;
}

.ess-telecom-content h1 {
  font-size: 2rem;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 1rem;
}

.ess-telecom-content h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.ess-telecom-content h3 {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.ess-telecom-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: 1rem;
}

.ess-telecom-content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .ess-telecom-content h1 { font-size: 2.5rem; }
  .ess-telecom-content h2 { font-size: 1.5rem; }
  .ess-telecom-content h3 { font-size: 1.25rem; }
}

/* ESS page: scroll-reveal section (scoped) */
.ess-scroll-reveal {
  position: relative;
  min-height: 200vh;
  background: #ffffff;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.ess-scroll-sticky {
  position: sticky;
  top: 0;
  min-height: 65vh;
  display: flex;
  align-items: center;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(15, 23, 42, 0.45);
  background-image:
    linear-gradient(120deg, rgba(6, 58, 44, 0.8), rgba(6, 58, 44, 0.55)),
    url("assets/Ess-battery.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.ess-scroll-inner {
  width: 100%;
}

.ess-scroll-intro {
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

.ess-scroll-intro h2 {
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.2;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.ess-scroll-panels {
  position: relative;
  min-height: 16rem;
}

.ess-scroll-panel {
  position: absolute;
  inset: 0;
  max-width: 56rem;
  opacity: 0;
  transform: translateY(36px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
  color: var(--white);
}

.ess-scroll-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ess-scroll-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  color: var(--accent);
}

.ess-scroll-panel p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .ess-scroll-reveal {
    min-height: 180vh;
  }

  .ess-scroll-sticky {
    min-height: 60vh;
    width: calc(100% - 1.25rem);
    background-attachment: scroll;
    border-radius: 0.85rem;
  }

  .ess-scroll-panel h3 {
    font-size: 1.3rem;
  }

  .ess-scroll-panel p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 640px) {
  .ess-scroll-reveal {
    min-height: 160vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .ess-scroll-sticky {
    min-height: 55vh;
    width: calc(100% - 1rem);
    border-radius: 0.75rem;
  }

  .ess-scroll-intro h2 {
    font-size: 1.3rem;
  }

  .ess-scroll-panels {
    min-height: 19.5rem;
  }
}

.ess-circle-chain {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.ess-chain-step {
  position: relative;
  width: 100%;
  max-width: 11rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid rgba(0, 90, 68, 0.75);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  margin: 0 auto;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, background 0.35s ease;
  cursor: pointer;
}

.ess-chain-step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.3rem);
  width: calc(1rem - 0.25rem);
  height: 2px;
  background: rgba(0, 90, 68, 0.45);
  transform: translateY(-50%);
}

.ess-chain-step:last-child::after {
  display: none;
}

.ess-chain-step span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.ess-chain-step span:last-child {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.35;
}

.ess-chain-step:hover,
.ess-chain-step:focus-visible {
  border-color: var(--accent);
  background: rgba(141, 198, 63, 0.14);
  box-shadow: 0 0 0 8px rgba(141, 198, 63, 0.12);
  transform: translateY(-4px);
}

.ess-chain-step:hover span:first-child,
.ess-chain-step:focus-visible span:first-child {
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .ess-circle-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.25rem;
  }

  .ess-chain-step::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .ess-circle-chain {
    grid-template-columns: 1fr;
  }

  .ess-chain-step {
    max-width: 10.5rem;
  }
}

/* EV page content sections */
.ev-content-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* .ev-content-section-alt {
  background: var(--slate-50);
} */

.ev-section-title {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

@media (min-width: 640px) {
  .ev-section-title { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .ev-section-title { font-size: 2.25rem; }
}

.ev-section-content .section-desc:first-child {
  margin-top: 0;
}

.ev-section-content .section-desc {
  margin-top: 1.25rem;
}

.ev-advantages-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #063A2C;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .ev-advantages-heading {
    font-size: 1.375rem;
  }
}

.ev-advantages-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.ev-advantages-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-top: 0.5rem;
  color: var(--slate-700);
  font-weight: 500;
  line-height: 1.5;
}

.ev-advantages-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #8DC63F;
  font-weight: 700;
}

.ev-advantages-list li:first-child {
  margin-top: 0;
}

.ev-30ah-block {
  margin-bottom: 2rem;
}

.ev-30ah-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #063A2C;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .ev-30ah-title {
    font-size: 1.75rem;
  }
}

.ev-30ah-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #8DC63F;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .ev-30ah-subtitle {
    font-size: 1.25rem;
  }
}

.ev-30ah-block .section-desc {
  margin-top: 1rem;
}

.ev-30ah-block .section-desc:first-of-type {
  margin-top: 0;
}

/* 48V 48Ah section: content left + image right (aligned near Key Benefits) */
.ev-48ah-with-image {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.ev-48ah-content {
  flex: 1;
  min-width: 0;
}

.ev-48ah-content .ev-advantages-heading:first-child {
  margin-top: 0;
}

.ev-48ah-image-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
}

/* Push image down to align near Key Benefits heading (51V 42Ah section) */
.ev-48ah-image-wrap--near-key-benefits {
  margin-top: 8rem;
}

@media (min-width: 768px) {
  .ev-48ah-image-wrap--near-key-benefits {
    margin-top: 20rem;
  }
}

/* Scroll-triggered animation for 51V 42Ah image */
.ev-48ah-image-wrap--animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#ev-42ah-section.in-view .ev-48ah-image-wrap--animate {
  opacity: 1;
  transform: translateY(0);
}

.ev-48ah-image {
  width: 100%;
  min-height: 320px;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .ev-48ah-with-image {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .ev-48ah-with-image.ev-specs-with-image {
    align-items: center;
  }

  .ev-48ah-image-wrap {
    width: 50%;
    max-width: 620px;
    margin-left: 0;
    margin-right: 0;
  }

  .ev-48ah-image-wrap .ev-48ah-image {
    min-height: 380px;
  }
}

/* EV 48V cards carousel */
.ev-card-carousel {
  margin-top: 2.5rem;
}

/* EV specs – normal content (no cards/images) */
.ev-specs-list {
  margin-top: 2.5rem;
}

.ev-spec-item {
  margin-bottom: 1.5rem;
}

.ev-spec-item:last-child {
  margin-bottom: 0;
}

.ev-spec-title {
  font-weight: 700;
  color: #005A44;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.ev-spec-uses {
  margin: 0;
  padding-left: 1.5rem;
  list-style: none;
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ev-spec-uses li {
  position: relative;
  padding-left: 0.5rem;
}

.ev-spec-uses li::before {
  content: "✓";
  position: absolute;
  left: -1.5rem;
  color: #8DC63F;
  font-weight: bold;
  font-size: 1rem;
}

.ev-spec-uses li + li {
  margin-top: 0.25rem;
}

.ev-card {
  display: none;
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--accent);
  border-radius: 1rem;
  border: 1px solid rgba(0, 90, 68, 0.12);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
  flex-direction: row-reverse; /* image right, content left */
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-card.is-active {
  display: flex;
}

.ev-card:not(:last-child) {
  margin-right: 0.25rem;
}

.ev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.18);
}

.ev-card-content {
  padding: 1.5rem 1.75rem;
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.ev-card-content p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ev-card-title {
  font-weight: 700;
  color: var(--primary-dark);
}

.ev-card-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--slate-700);
  font-size: 0.95rem;
}

.ev-card-list li + li {
  margin-top: 0.25rem;
}

.ev-card-footnote {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.ev-card-image {
  flex: 0.9;
  min-width: 40%;
  position: relative;
}

.ev-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 90, 68, 0.15), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ev-card:hover .ev-card-image::after {
  opacity: 1;
}

.ev-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ev-carousel-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.ev-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: rgba(148, 163, 184, 0.7); /* slate-400 */
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ev-carousel-dot.active {
  width: 16px;
  background: var(--primary);
}

@media (min-width: 768px) {
  .ev-card {
    flex: 0 0 75%;
  }
}

@media (min-width: 1024px) {
  .ev-card {
    flex: 0 0 60%;
  }
}

/* EV Battery variants table - theme colors */
.ev-table-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .ev-table-heading { font-size: 1.5rem; }
}

.ev-table-wrap {
  overflow-x: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border: 1px solid rgba(0, 90, 68, 0.15);
}

.ev-51v-section {
  margin-top: 3rem;
}

.ev-51v-section .ev-section-title {
  margin-bottom: 1rem;
}

.ev-72v-section {
  margin-top: 3rem;
}

.ev-72v-section .ev-section-title {
  margin-bottom: 1rem;
}

.ev-closing-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.ev-closing-section .ev-section-title {
  margin-bottom: 1rem;
}

.ev-spec-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .ev-spec-table { font-size: 0.9375rem; }
}

@media (min-width: 1024px) {
  .ev-spec-table { min-width: auto; }
}

.ev-spec-table thead {
  background: var(--primary);
  color: var(--white);
}

.ev-spec-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ev-spec-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 90, 68, 0.08);
  color: var(--slate-600);
}

.ev-spec-table tbody tr {
  background: var(--white);
  transition: background 0.2s;
}

.ev-spec-table tbody tr:nth-child(even) {
  background: rgba(141, 198, 63, 0.06);
}

.ev-spec-table tbody tr:hover {
  background: rgba(141, 198, 63, 0.12);
}

.ev-spec-table tbody td:first-child {
  font-weight: 700;
  color: var(--primary);
}

.ev-content-section-alt .ev-spec-table tbody tr {
  background: var(--white);
}

.ev-content-section-alt .ev-spec-table tbody tr:nth-child(even) {
  background: rgba(141, 198, 63, 0.05);
}

.ev-content-section-alt .ev-spec-table tbody tr:hover {
  background: rgba(141, 198, 63, 0.1);
}

.product-detail-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--slate-200);
}

.product-features {
  margin-top: 1.5rem;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* EV feature highlights - 4 column icon row */
.features {
  padding: 60px 0;
  background: #ffffff;
}

.features .container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1;
  min-width: 140px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: rgba(0, 90, 68, 0.08);
  color: var(--primary);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-900);
  margin: 0;
}

@media (max-width: 1023px) {
  .features .container {
    justify-content: center;
  }

  .feature-box {
    min-width: 45%;
  }
}

@media (max-width: 639px) {
  .feature-box {
    min-width: 100%;
  }
}

/* ========================================
   Performance Section
   ======================================== */
.section-performance-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.section-performance-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .section-performance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.performance-card {
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  background: var(--slate-50);
  padding: 2.5rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  transition: box-shadow 0.2s;
}

.performance-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.performance-value-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.performance-value {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.performance-percent {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.performance-label {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.performance-desc {
  margin-top: 0.75rem;
  color: var(--slate-600);
  line-height: 1.625;
}

/* ========================================
   UPS Section
   ======================================== */
.section-ups {
  background: var(--accent);
}

.section-ups-head {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.section-ups-head h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-ups-head h2 { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-ups-head h2 { font-size: 2.25rem; }
}

.section-ups-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .section-ups-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1280px) {
  .section-ups-grid { grid-template-columns: repeat(4, 1fr); }
}

.ups-card {
  height: 100%;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--slate-100);
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  transition: box-shadow 0.2s, transform 0.3s;
}

.ups-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transform: scale(1.03);
}

.ups-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(0, 90, 68, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ups-card-icon.accent-bg {
  background: rgba(141, 198, 63, 0.1);
}

.ups-card h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.025em;
}

.ups-card .ups-card-small h3 {
  font-size: 1.25rem;
}

.ups-card p {
  margin-top: 0.75rem;
  color: var(--slate-600);
  line-height: 1.625;
}

.section-ups-subhead {
  text-align: center;
  margin: 3rem 0;
}

.section-ups-subhead h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
}

@media (min-width: 640px) {
  .section-ups-subhead h3 { font-size: 1.5rem; }
}

/* ========================================
   Know Us Section
   ======================================== */


.section-know-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.section-know-head .section-label {
  color: var(--accent);
  text-shadow: 0 2px 6px rgba(141, 198, 63, 0.25);
}

.section-know-head h2 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: -0.025em;
  text-shadow: 0 3px 10px rgba(0, 90, 68, 0.22);
}

@media (min-width: 640px) {
  .section-know-head h2 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .section-know-head h2 { font-size: 3.75rem; }
}

.section-know-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .section-know-grid { grid-template-columns: repeat(4, 1fr); }
}

.know-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.know-card-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 90, 0.7);
  color: #C9A85A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: transparent;
}

.know-card-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.know-card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.625;
  max-width: 18rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* ========================================
   Contact Form Section
   ======================================== */
.section-message {
  position: relative;
  padding: 6rem 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.section-message-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.section-message-overlay-2 {
  position: absolute;
  inset: 0;
  background: rgba(0, 90, 68, 0.35);
}

.section-message-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.message-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  padding: 2rem;
}

@media (min-width: 640px) {
  .message-card { padding: 3rem; }
}

.message-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.message-head-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.35em;
}

.message-head h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .message-head h2 { font-size: 2.25rem; }
}

.message-head p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .message-head p { font-size: 1rem; }
}

.message-form {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .message-form { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group.center {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(141, 198, 63, 0.2);
}

.form-textarea {
  resize: none;
  min-height: 6rem;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  padding: 0.875rem 2.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.btn-send:hover {
  background: rgba(0, 0, 0, 0.55);
}

/* ========================================
   Contact page — hero + two-column block
   ======================================== */
.contact-page .contact-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 1.25rem 3.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

@media (min-width: 768px) {
  .contact-page .contact-hero {
    min-height: 420px;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
    background-attachment: fixed;
  }
}

.contact-page .contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 45%, rgba(0, 40, 32, 0.2) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.contact-page .contact-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-page .contact-hero-title {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #f4fdf8;
  text-transform: uppercase;
  line-height: 1.15;
}

.contact-page .contact-hero-char {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
  cursor: default;
}

.contact-page .contact-hero-char:hover {
  color: #39ff14;
  transform: translateY(-6px);
  text-shadow: 0 0 22px rgba(57, 255, 20, 0.75), 0 0 40px rgba(57, 255, 20, 0.35);
}

.contact-page .contact-hero-space {
  display: inline-block;
  width: 0.35em;
}

.contact-page .contact-main {
  padding: 4rem 0 4.5rem;
  background-color: #f6f8f4;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 90, 68, 0.07) 1px, transparent 0);
  background-size: 22px 22px;
}

.contact-page .contact-main-inner {
  max-width: 72rem;
}

.contact-page .contact-columns {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-page .contact-columns {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.contact-page .contact-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.contact-page .contact-block-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #1a1f1a;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-page .contact-block-title-rule {
  flex-shrink: 0;
  width: 3px;
  min-height: 2.5rem;
  margin-top: 0.2rem;
  border-radius: 999px;
  background: var(--accent);
}

.contact-page .contact-block-title-text strong {
  color: var(--accent);
  font-weight: 700;
}

.contact-page .contact-lead {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
  max-width: 36rem;
}

.contact-page .contact-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-page .contact-card-list {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .contact-info-card:not(.contact-info-card--half) {
    grid-column: 1 / -1;
  }
}

.contact-page .contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px -12px rgba(0, 90, 68, 0.18);
  border: 1px solid rgba(0, 90, 68, 0.06);
}

.contact-page .contact-info-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-page .contact-info-label {
  display: block;
  font-size: 0.875rem;
  color: #111827;
  margin-bottom: 0.35rem;
}

.contact-page .contact-info-value {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4b5563;
}

.contact-page .contact-info-value a {
  color: #065f46;
  text-decoration: none;
}

.contact-page .contact-info-value a:hover {
  text-decoration: underline;
}

.contact-page .contact-form-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: #374151;
}

.contact-page .contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-page .contact-form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .contact-page .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-page .contact-form-input,
.contact-page .contact-form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #1f2937;
  background: #f1f7ec;
  border: 1px solid rgba(141, 198, 63, 0.25);
  border-radius: 0.65rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-page .contact-form-input::placeholder,
.contact-page .contact-form-textarea::placeholder {
  color: #6b7280;
}

.contact-page .contact-form-input:focus,
.contact-page .contact-form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.2);
  background: #fff;
}

.contact-page .contact-form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-page .contact-form-actions {
  margin-top: 0.25rem;
}

.contact-page .contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 0.65rem;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

@media (min-width: 480px) {
  .contact-page .contact-form-submit {
    width: auto;
    min-width: 12rem;
  }
}

.contact-page .contact-form-submit:hover {
  filter: brightness(1.05);
}

.contact-page .contact-form-submit:active {
  transform: translateY(1px);
}

/* ========================================
   Footer (multi-column layout, light theme)
   ======================================== */
.footer {
  background: #ffffff;
  color: var(--primary-dark);
  border-top: 1px solid rgba(0, 90, 68, 0.1);
}

.footer-inner {
  padding: 3rem 1rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.15fr 0.85fr 0.95fr 1.05fr;
    gap: 2rem;
  }
}

.footer-col-brand {
  min-width: 0;
}

.footer-logo-wrap {
  display: block;
  max-width: 220px;
  padding: 0.25rem 0 0.75rem;
  margin-bottom: 0.25rem;
}

.footer-logo-wrap a {
  display: inline-block;
  line-height: 0;
}

.footer-logo {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 88px;
  object-fit: contain;
  display: block;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-row:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  color: rgba(0, 90, 68, 0.55);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-contact-text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(6, 58, 44, 0.78);
}

.footer-contact-text strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin: 0 0 1.125rem;
}

/* Generic footer text / legacy inline footers on product pages */
.footer p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(6, 58, 44, 0.8);
  margin: 0 0 0.75rem;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer a {
  color: rgba(6, 58, 44, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--primary);
}

.footer-contact-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 90, 68, 0.75);
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
}

.footer-address {
  margin-top: 1rem;
}

.footer-address p {
  margin: 0 0 0.75rem;
}

.footer-address p:last-child {
  margin-bottom: 0;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-list li {
  margin-bottom: 0.5rem;
}

.footer-nav-list li:last-child {
  margin-bottom: 0;
}

.footer-nav-list a {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(6, 58, 44, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: var(--primary);
}

.footer-map-wrap {
  margin-top: 0;
  border-radius: 0.375rem;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid rgba(0, 90, 68, 0.12);
}

.footer-map-wrap iframe {
  width: 100%;
  height: 200px;
  display: block;
  border: 0;
}

@media (min-width: 768px) {
  .footer-map-wrap iframe {
    height: 220px;
  }
}

.footer-bottom {
  margin-top: 2.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 90, 68, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(6, 58, 44, 0.65);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright { text-align: left; }
}

.footer-copyright strong {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary, #006b52);
  color: #fff;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.footer-socials a:hover {
  background: var(--primary-dark, #005A44);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 90, 68, 0.25);
}

.footer-socials .icon-18 {
  width: 14px;
  height: 14px;
}

/* Icon sizes */
.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }
.icon-18 { width: 18px; height: 18px; }
.icon-20 { width: 20px; height: 20px; }
.icon-26 { width: 26px; height: 26px; }
.icon-28 { width: 28px; height: 28px; }
.icon-32 { width: 32px; height: 32px; }
.icon-34 { width: 34px; height: 34px; }

/* Prevent e-loader single card from stretching full width */
body[data-product-page="e-loader-batteries"] .inverter-cards-wrap {
  justify-content: start !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px)) !important;
}

@media (max-width: 640px) {
  body[data-product-page="e-loader-batteries"] .inverter-cards-wrap {
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px)) !important;
  }
}

/* ========================================
   Gallery page
   ======================================== */
.gallery-hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  background-color: #0a0f0d;
  background-image: url("assets/gallery-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

.gallery-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-hero-title {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 40px rgba(141, 198, 63, 0.85),
    0 4px 28px rgba(0, 0, 0, 0.9);
  line-height: 1.15;
}

.gallery-page .gallery-hero-char {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
  cursor: default;
}

.gallery-page .gallery-hero-char:hover {
  color: var(--accent, #8dc63f);
  transform: translateY(-8px) scale(1.35);
  text-shadow:
    0 0 28px rgba(141, 198, 63, 0.95),
    0 0 48px rgba(141, 198, 63, 0.45),
    0 4px 24px rgba(0, 0, 0, 0.9);
}

.gallery-page .gallery-hero-space {
  display: inline-block;
  width: 0.35em;
}

.gallery-factory-section {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background: #f0f1ee;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
}

.gallery-factory-container {
  max-width: 90rem;
}

.gallery-akino-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, rgba(0, 90, 68, 0.04) 0%, rgba(255, 255, 255, 1) 40%);
}

.gallery-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-dark, #005a44);
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

.gallery-empty-msg {
  color: var(--slate-600, #475569);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-empty-msg code {
  font-size: 0.875em;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
}

/* Factory: two rows — odd cards top, even cards bottom (staggered) */
.gallery-factory-heading {
  margin: 0 0 2.75rem;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 600;
  color: #141414;
  letter-spacing: 0.01em;
}

.gallery-factory-heading-line {
  display: inline-block;
  position: relative;
  padding-bottom: 0.65rem;
}

.gallery-factory-heading-line::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2.75rem;
  height: 2px;
  background: var(--accent, #8dc63f);
  border-radius: 1px;
}

.gallery-factory-brick {
  --gallery-factory-gap: clamp(0.65rem, 1.5vw, 1.15rem);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: var(--gallery-factory-gap);
  padding: 0.25rem 0 1.5rem;
  width: 100%;
}

.gallery-factory-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: var(--gallery-factory-gap);
  width: max-content;
  max-width: none;
}

/* Bottom row offset (~half card + half gap vs top row) */
.gallery-factory-row--bottom {
  margin-left: clamp(1.3rem, 4vw, 2.8rem);
}

@media (min-width: 640px) {
  .gallery-factory-row--bottom {
    margin-left: clamp(1.8rem, 5vw, 3.2rem);
  }
}

@media (min-width: 1024px) {
  .gallery-factory-row--bottom {
    margin-left: clamp(2.2rem, 5.2vw, 3.8rem);
  }
}

.gallery-factory-card {
  width: 100%;
  max-width: 420px;
  margin: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (min-width: 640px) {
  .gallery-factory-brick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-factory-brick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-factory-card {
    max-width: 100%;
  }
}

.gallery-factory-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.25rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, 0.45);
  border: none;
}

.gallery-factory-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-factory-section.in-view .gallery-factory-card {
  opacity: 1;
  transform: translateY(0);
}

.gallery-factory-section.in-view .gallery-factory-card:nth-child(1) { transition-delay: 0.04s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(2) { transition-delay: 0.1s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(3) { transition-delay: 0.16s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(4) { transition-delay: 0.22s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(5) { transition-delay: 0.28s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(6) { transition-delay: 0.34s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(7) { transition-delay: 0.4s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(8) { transition-delay: 0.46s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(9) { transition-delay: 0.52s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(10) { transition-delay: 0.58s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(11) { transition-delay: 0.64s; }
.gallery-factory-section.in-view .gallery-factory-card:nth-child(12) { transition-delay: 0.7s; }

/* Akino groups: jump in from top when section is in view */
.gallery-akino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
}

/* @media (min-width: 640px) {
  .gallery-akino-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .gallery-akino-grid {
    grid-template-columns: repeat(3, 1fr);
  }
} */

.gallery-akino-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  width: min(100%, 52rem);
} 

.gallery-akino-section.in-view .gallery-akino-card {
  opacity: 1;
  transform: translateY(0);
}

.gallery-akino-card:nth-child(1) { transition-delay: 0.05s; }
.gallery-akino-card:nth-child(2) { transition-delay: 0.12s; }
.gallery-akino-card:nth-child(3) { transition-delay: 0.19s; }
.gallery-akino-card:nth-child(4) { transition-delay: 0.26s; }
.gallery-akino-card:nth-child(5) { transition-delay: 0.33s; }
.gallery-akino-card:nth-child(6) { transition-delay: 0.4s; }
.gallery-akino-card:nth-child(7) { transition-delay: 0.47s; }
.gallery-akino-card:nth-child(8) { transition-delay: 0.54s; }
.gallery-akino-card:nth-child(9) { transition-delay: 0.61s; }
.gallery-akino-card:nth-child(10) { transition-delay: 0.68s; }
.gallery-akino-card:nth-child(11) { transition-delay: 0.75s; }
.gallery-akino-card:nth-child(12) { transition-delay: 0.82s; }

.gallery-akino-card-inner {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 90, 68, 0.12);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.25);
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

.gallery-akino-card-inner img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.12);
  transition: transform 0.5s ease;
}

.gallery-akino-section.in-view .gallery-akino-card-inner:hover img {
  transform: scale(1.16);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-page .gallery-hero-char,
  .gallery-page .gallery-hero-char:hover {
    transform: none !important;
    transition: none;
  }

  .gallery-factory-card-inner img {
    transform: none;
    transition: none;
  }

  .gallery-factory-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-akino-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-akino-card:nth-child(n) {
    transition-delay: 0s !important;
  }
}

/* Product detail gallery: light mat + white card frame + centered image (all product modals) */
.modal-gallery-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  min-height: 200px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.modal-gallery-main img {
  max-width: 100%;
  max-height: min(380px, 52vh) !important;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  cursor: default;
  transition: transform 0.2s ease;
  transform-origin: center center;
}
.modal-gallery-main img:hover {
  transform: none;
}

/* Product listing cards: fixed, consistent card and image heights */
.inverter-cards-wrap {
  align-items: stretch !important;
}
.inverter-product-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}
.inverter-product-card-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.inverter-product-card-image {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden !important;
  padding: 0.65rem 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  background-color: #ffffff !important;
}
.inverter-product-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  box-sizing: border-box !important;
}

/* Inverter product pages: larger image region + zoom so the hero product fills the card */
body[data-product-page="inverter"] .inverter-product-card-image {
  overflow: hidden !important;
  /* Taller than global 3/2 so object-fit:contain can render the unit much larger */
  aspect-ratio: 1 / 1 !important;
  min-height: 240px !important;
  padding: 0 !important;
}
body[data-product-page="inverter"] .inverter-product-card-image img {
  transform: scale(1.42);
  transform-origin: center center;
  transition: transform 0.2s ease;
}

/* 5500VA listing card: larger, clearer hero image */
body[data-product-page="inverter"] .page--5500va .inverter-product-card-image {
  aspect-ratio: auto !important;
  min-height: 300px !important;
  padding: 0.75rem 1rem !important;
}
body[data-product-page="inverter"] .page--5500va .inverter-product-card-image img {
  transform: none !important;
  width: 100% !important;
  height: 280px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/*
 * 5500VA Product Details modal only (overlay is outside .page).
 * Smaller main image so it fits inside the white gallery card without cropping.
 */
body[data-product-page="inverter"] .detail-overlay--5500va .enquiry-modal-image {
  min-height: 300px !important;
}
body[data-product-page="inverter"] .detail-overlay--5500va .modal-gallery-main {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  min-height: 200px !important;
}
body[data-product-page="inverter"] .detail-overlay--5500va .modal-gallery-main img {
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
}
body[data-product-page="inverter"] .detail-overlay--5500va .modal-gallery-main img:hover {
  transform: scale(1.02) !important;
}

body[data-product-page="inverter"] .modal-gallery-main {
  overflow: hidden;
}
body[data-product-page="inverter"] .modal-gallery-main img {
  transform: none;
}
body[data-product-page="inverter"] .modal-gallery-main img:hover {
  transform: none;
}

/* Product details modal: make the top-right close "X" easier to see */
.enquiry-modal .enquiry-close {
  font-size: 1.65rem !important;
  padding: 0.75rem !important;
  line-height: 1 !important;
  width: 3rem !important;
  height: 3rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.enquiry-modal .enquiry-close span {
  font-size: inherit !important;
}

/* Shared Product Details modal (used by all category pages) */
.btn-view-details {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #0b6b49;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  line-height: 1.2;
}

.btn-view-details:hover {
  color: #095a3d;
  text-decoration: underline;
}

/* Keep inverter page button size unchanged; reduce on all other product pages */
body:not([data-product-page="inverter"]) .btn-view-details {
  font-size: 1rem;
}

.detail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.detail-overlay.is-open { display: flex; }

.enquiry-modal {
  background: #fff;
  border-radius: 0.75rem;
  max-width: 1150px;
  width: calc(100% - 2rem);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.enquiry-modal-inner {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
@media (min-width: 768px) { .enquiry-modal-inner { flex-direction: row; } }

.enquiry-modal-image {
  flex-shrink: 0;
  background: #f0f4f8;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  width: 42%;
  min-height: 300px;
  box-sizing: border-box;
}

.enquiry-modal-image .modal-gallery-main {
  width: 100%;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .enquiry-modal-image {
    width: 100%;
    min-height: 220px;
  }
}

.modal-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.thumb-group { display: none; }
.thumb-group.is-active { display: flex; flex-wrap: wrap; justify-content: center; }

.detail-gallery-thumb {
  padding: 4px;
  border: 1px solid #d1d5db;
  border-radius: 0.4rem;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.detail-gallery-thumb:hover,
.detail-gallery-thumb:focus-visible {
  border-color: var(--primary, #006b52);
  box-shadow: 0 0 0 2px rgba(0, 107, 82, 0.2);
  outline: none;
}
.detail-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.enquiry-modal-content {
  flex: 1;
  padding: 1.75rem 2rem;
  min-width: 0;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .enquiry-modal-content { padding: 1.25rem; }
}
.enquiry-modal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark, #005A44);
  margin: 0 0 0.75rem 0;
}
.enquiry-modal-content p {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0 0 1rem 0;
  line-height: 1.6;
  text-align: justify;
}

.product-detail-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .product-detail-cards { grid-template-columns: 1fr 1fr; }
}

.product-detail-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.product-detail-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark, #005A44);
  margin: 0 0 0.75rem 0;
}
.product-detail-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--slate-600, #475569);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.product-detail-card li { margin-bottom: 0.35rem; }
.product-detail-card li:last-child { margin-bottom: 0; }

.enquiry-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.enquiry-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark, #005A44);
}
.enquiry-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  line-height: 1;
}
.enquiry-close:hover { color: #0f172a; }

.enquiry-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}
.btn-modal-close {
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  background: #e2e8f0;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-modal-close:hover { background: #cbd5e1; }

/* E-Cycle details modal: fixed modal height + stable gallery panel */
body[data-product-page="e-cycle"] .enquiry-modal {
  height: min(88vh, 760px);
}

body[data-product-page="e-cycle"] .enquiry-modal-inner {
  flex: 1 1 auto;
  overflow: hidden;
}

body[data-product-page="e-cycle"] .enquiry-modal-image .modal-gallery-main {
  width: 100%;
  height: clamp(280px, 52vh, 520px);
  overflow: hidden;
  min-height: 0;
}

body[data-product-page="e-cycle"] .enquiry-modal-image .modal-gallery-main img {
  width: 100%;
  height: 100%;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* E-Loader details modal: keep card size stable while switching gallery images */
body[data-product-page="e-loader"] .enquiry-modal {
  height: min(88vh, 760px);
}

body[data-product-page="e-loader"] .enquiry-modal-inner {
  flex: 1 1 auto;
  overflow: hidden;
}

body[data-product-page="e-loader"] .enquiry-modal-image {
  justify-content: flex-start;
}

body[data-product-page="e-loader"] .enquiry-modal-image .modal-gallery-main {
  width: 100%;
  height: clamp(280px, 52vh, 520px);
  overflow: hidden;
  min-height: 0;
}

body[data-product-page="e-loader"] .enquiry-modal-image .modal-gallery-main img {
  width: 100%;
  height: 100%;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Inverter details modal: keep card size stable while switching gallery images */
body[data-product-page="inverter"] .enquiry-modal {
  height: min(88vh, 760px);
}

body[data-product-page="inverter"] .enquiry-modal-inner {
  flex: 1 1 auto;
  overflow: hidden;
}

body[data-product-page="inverter"] .enquiry-modal-image .modal-gallery-main {
  width: 100%;
  height: clamp(280px, 52vh, 520px);
  overflow: hidden;
  min-height: 0;
}

body[data-product-page="inverter"] .enquiry-modal-image .modal-gallery-main img {
  width: 100%;
  height: 100%;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center;
  display: block;
}
