:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --alt: #f8fafc;
  --primary: #111827;
  --primaryText: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: lato, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}
.fineprint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

/* accessibility helper */
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Announcement ===== */
.announcement {
  border-bottom: 1px solid var(--line);
  background: #0b1220;
  color: #e5e7eb;
  font-size: 14px;
}
.announcement__inner {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  text-align: center;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__mark img {
  height: 2.5em;
  width: auto;
  display: block;
}
.brand__name {
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover {
  color: var(--text);
}

.header__cta {
  display: inline-flex;
}

/* App icons in header (mobile only) */
.header__apps {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto; /* push icons to right */
}
.header__apps img {
  height: 28px;
  width: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.2s ease;
}
.header__apps img:hover {
  transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: none;
  cursor: pointer;
  position: relative;
}

/* 3 vertical lines */
.hamburger span {
  position: absolute;
  top: 50%;
  width: 2px;
  height: 22px;
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: transform 0.22s ease, opacity 0.18s ease, left 0.22s ease;
}
.hamburger span:nth-child(1) {
  left: 12px;
}
.hamburger span:nth-child(2) {
  left: 20px;
}
.hamburger span:nth-child(3) {
  left: 28px;
}

/* OPEN state => make a cross */
.hamburger.isOpen span:nth-child(1),
.hamburger.isOpen span:nth-child(3) {
  left: 20px;
  width: 2px;
  height: 28px;
}
.hamburger.isOpen span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.isOpen span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleY(0.2);
}
.hamburger.isOpen span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

/* ===== Mobile menu ===== */
.mobileMenu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobileMenu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding: 14px 0;
  text-transform: uppercase;
}
.mobileMenu__inner .mobileLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
}
.mobileLink {
  color: var(--muted);
  font-weight: 700;
}
.mobileLink:hover {
  color: var(--text);
}
.mobileMenu--open {
  display: block;
}

@media (max-width: 380px) {
  .mobileMenu__inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobileMenu__inner::-webkit-scrollbar {
    display: none;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.08s ease, opacity 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--primary);
  color: var(--primaryText);
}
.btn--primary:hover {
  opacity: 0.92;
}

/* ===== Hero base ===== */
.hero {
  padding: 44px 0 26px;
}
.eyebrow {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.subhead {
  margin: 0 0 18px;
  font-size: 16px;
  max-width: 52ch;
}
.hero__ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__badges {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ===== Sections ===== */
.section {
  padding: 56px 0;
}
.section--alt {
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  margin-bottom: 22px;
}
.section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.03em;
}

/* ===== Grids & Cards ===== */
.grid {
  display: grid;
  gap: 16px;
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.04);
}
.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card--soft {
  background: var(--alt);
}

.miniCard {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
}
.miniCard h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.checklist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}
.checklist li {
  margin: 8px 0;
}

/* ===== Product ===== */
.product {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__top h3 {
  margin: 0;
  letter-spacing: -0.03em;
}
.product__price {
  font-size: 42px;
  font-family: Lato;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.product--featured {
  border-width: 2px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid var(--line);
  background: var(--alt);
  color: var(--text);
  width: fit-content;
  margin-bottom: 8px;
}

/* Purchase row */
.product__purchase {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: nowrap;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.qty__btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}
.qty__btn:hover {
  background: var(--alt);
}
.qty__input {
  width: 42px;
  height: 36px;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty__input[type="number"] {
  -moz-appearance: textfield;
}

/* ===== CTA section ===== */
.cta {
  padding: 38px 0;
  background: #0b1220;
  color: #e5e7eb;
}
.cta--layout {
  padding: 60px 0;
}
.cta__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.cta__media img {
  width: 100%;
  height: 42vh;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.cta__number {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media (min-width: 980px) {
  .cta__wrap {
    grid-template-columns: 30% 70%;
    gap: 40px;
  }
  .cta__media img {
    height: 100%;
    min-height: 420px;
  }
  .cta__content {
    padding-left: 10px;
  }
}
.cta__label {
  display: block;
  margin-top: 14px;
  margin-bottom: 8px;
  font-weight: 800;
  color: #e5e7eb;
}
.cta__select {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}
.cta__select option {
  color: #111827;
}
.cta__societyMsg {
  margin-top: 12px;
  font-weight: 700;
  color: #4ade80;
  min-height: 22px;
}

/* ===== FAQ ===== */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.faq__q {
  width: 100%;
  padding: 16px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  font-family: lato, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  cursor: pointer;
  text-align: left;
}
.faq__q:hover {
  background: var(--alt);
}
.faq__leadIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  flex: 0 0 auto;
}
.faq__leadIcon svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.faq__icon {
  margin-left: auto;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: #fff;
}
.faq__aInner {
  padding: 0 16px 16px;
}
.faq__q[aria-expanded="true"] {
  background: var(--alt);
}

.faqCTA {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--alt);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faqCTA h3 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.faqCTA__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .faqCTA {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .faqCTA__call {
    width: 100%;
  }
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
}
.footer__logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}
.footer__nav {
  justify-self: end;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
}
.footer__links a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  margin-top: 18px;
  text-align: left;
}
.footer__hr {
  height: 1px;
  background: var(--line);
  margin-bottom: 14px;
}
.footer__made {
  margin: 0 0 6px;
  font-weight: 800;
}
.footer__copy {
  margin: 0;
}

@media (max-width: 760px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__nav {
    order: 1;
    justify-self: center;
  }
  .footer__links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer__links a {
    white-space: nowrap;
  }
  .footer__bottom {
    text-align: center;
  }
  .footer__brand {
    order: 2;
    display: flex;
    justify-content: center;
  }
  .footer__logo {
    width: 40vw;
    max-width: 220px;
  }
}

/* Desktop-only Pune area footer links */
.footerAreas {
  display: none;
  margin-bottom: 14px;
}
.footerAreas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.footerAreas__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footerAreas__col a {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 650;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footerAreas__col a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 981px) {
  .footerAreas {
    display: block;
  }
}

/* ===== Responsive core ===== */
@media (max-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .header__cta {
    display: none;
  }

  /* stable: logo left, icons right, hamburger after icons */
  .header__inner {
    justify-content: flex-start;
  }
  .brand {
    margin-right: auto;
  }
  .header__apps {
    display: flex;
    margin-left: 0;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }

  .announcement__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Mobile Fixed Bottom Order Bar ===== */
.mobile-order-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-order-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 14px 16px 18px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
  }

  .mobile-offer-text {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    color: #222;
  }

  .mobile-order-btn {
    display: block;
    width: 100%;
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
  }

  body {
    padding-bottom: 120px;
  }
}

/* ===== Promotional Rolling Bar ===== */
.promo-bar {
  width: 100%;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
}
.promo-track {
  display: inline-block;
  padding: 12px 0;
  animation: scrollText 25s linear infinite;
  font-size: 14px;
  font-weight: 500;
}
.promo-track span {
  padding-right: 50px;
}
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Hero Video Background ===== */
.hero--video {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
.hero__bgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.hero__center {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}
.hero__center h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 16px 0;
}
.hero__center .subhead {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
  max-width: none;
}
.hero__ctaRow {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn__icon svg {
  transition: transform 0.3s ease;
}
.btn:hover .btn__icon svg {
  transform: scale(1.1);
}

.hero__badges--center {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge--light {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 1024px) {
  .hero__center h1 {
    font-size: 56px;
  }
  .hero__center .subhead {
    font-size: 20px;
  }
}

/* ===== Serviceability card ===== */
.serviceCard {
  padding: 22px;
}
.serviceCard__head h2 {
  margin: 0 0 10px;
  font-size: 1.5em;
}
.serviceCard__head p {
  margin: 0 0 14px;
}

.serviceCard__row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.input {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  font-size: 16px;
  line-height: 52px;
  color: var(--text);
  outline: none;
  box-sizing: border-box;
}
.input::placeholder {
  opacity: 0.7;
}
.serviceCard__msg {
  margin-top: 10px;
  font-weight: 600;
}
.serviceCard__msg.ok {
  opacity: 1;
}
.serviceCard__msg.bad {
  opacity: 1;
}

@media (max-width: 640px) {
  .serviceCard {
    padding: 18px;
  }

  .serviceCard__row {
    flex-direction: column;
    align-items: stretch;
  }

  .input {
    width: 100%;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
  }

  .serviceCard__row .btn {
    width: 100%;
    height: 56px;
  }
}

/* Serviceability dark theme */
#serviceability {
  background: #0b1220;
  color: #ffffff;
  border-top: none;
  border-bottom: none;
}
#serviceability .card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
#serviceability .muted {
  color: #cbd5e1;
}
#serviceability .input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
#serviceability .input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#serviceability .serviceCard__msg {
  color: #ffffff;
}

/* ===== 5-image attached strip ===== */
.strip5 {
  padding: 0;
}
.strip5__wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.strip5__grid {
  overflow: hidden;
  background: #fff;
}
.strip5__item {
  display: grid;
}
.strip5__img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.strip5__text {
  padding: 14px;
}
.strip5__text h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.strip5__text p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 980px) {
  .strip5__item {
    grid-template-columns: 42% 58%;
  }
  .strip5__img img {
    height: 110px;
  }
  .strip5__text {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 981px) {
  .strip5__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .strip5__item {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line);
  }
  .strip5__item:last-child {
    border-right: 0;
  }
  .strip5__img img {
    height: 190px;
  }
}

/* ===== Launch Offer layout ===== */
.offer__wrap {
  display: grid;
  gap: 24px;
}
.offer__hero {
  width: 100%;
}
.offer__hero img {
  width: 100%;
  height: 40vh;
  min-height: 240px;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}
.offer__content h2 {
  margin: 0 0 12px;
}
.offer__footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.offer__btn {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border-radius: 18px;
  font-size: 14px;
}
@media (min-width: 980px) {
  .offer__wrap {
    grid-template-columns: 40% 60%;
    align-items: center;
  }
  .offer__hero img {
    height: 100%;
    min-height: 420px;
  }
  .offer__grid {
    display: contents;
  }
  .offer__content {
    padding-left: 20px;
  }
}

/* ===== Traceability ===== */
.trace__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.trace__media img {
  width: 100%;
  height: 42vh;
  min-height: 260px;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}
@media (min-width: 980px) {
  .trace__wrap {
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 22px;
  }
  .trace__text {
    order: 1;
  }
  .trace__media {
    order: 2;
  }
  .trace__media img {
    height: 100%;
    min-height: 420px;
  }
}

/* ===== Product layout (image + content) ===== */
.product--layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px;
}
.product__media img {
  width: 100%;
  height: 42vh;
  min-height: 260px;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}
.product__btn {
  margin-top: 16px;
}
@media (min-width: 980px) {
  .product--layout {
    grid-template-columns: 40% 60%;
    align-items: center;
  }
  .product__media img {
    height: 100%;
    min-height: 480px;
  }
  .product__content {
    padding-left: 20px;
  }
}

/* ===== App Download ===== */
.appDL__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
.appDL__copy h2 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.appDL__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.appDL__badge {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.12s ease, opacity 0.2s ease;
}
.appDL__badge:active {
  transform: translateY(1px);
}
.appDL__badge:hover {
  opacity: 0.92;
}
.appDL__badge img {
  height: 54px;
  width: auto;
  display: block;
}
@media (min-width: 980px) {
  .appDL__wrap {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
  .appDL__badge img {
    height: 58px;
  }
}

/* ===== Specifications section ===== */
.specs__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.specs__media img {
  width: 100%;
  height: 42vh;
  min-height: 280px;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}
.specs__content h2 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.specs__grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.specs__item {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.specs__item strong {
  font-weight: 900;
  margin-bottom: 4px;
}
.specs__includes {
  margin-top: 26px;
}
.specs__includes h3 {
  margin: 16px 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
@media (min-width: 980px) {
  .specs__wrap {
    grid-template-columns: 40% 60%;
    gap: 50px;
  }
  .specs__media img {
    height: 100%;
    min-height: 520px;
  }
  .specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Testimonials Carousel ===== */
.tCarousel {
  text-align: center;
}
.tCarousel__wrap {
  position: relative;
  margin-top: 18px;
}
.tCarousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.tCarousel__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}
.tCard {
  flex: 0 0 100%;
  padding: 24px 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.04);
  margin: 0 8px;
}
.tStars {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 10px;
}
.tText {
  margin: 0 auto 14px;
  max-width: 62ch;
  font-weight: 650;
  color: var(--text);
}
.tMeta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tName {
  font-weight: 950;
}
.tArea {
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
.tCarousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  display: none;
}
.tCarousel__nav--prev {
  left: -8px;
}
.tCarousel__nav--next {
  right: -8px;
}
@media (min-width: 980px) {
  .tCarousel__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .tCard {
    flex-basis: 50%;
  }
}
@media (min-width: 1200px) {
  .tCard {
    flex-basis: 33.333%;
  }
}
.tDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.tDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  opacity: 0.8;
}
.tDot.isActive {
  opacity: 1;
  background: var(--text);
}

/* ===== Image Testimonials Carousel ===== */
.iCarousel {
  text-align: center;
}
.iCarousel__wrap {
  position: relative;
  margin-top: 18px;
}
.iCarousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.iCarousel__track {
  display: flex;
  gap: 0;
  transition: transform 0.35s ease;
  will-change: transform;
}
.iCard {
  flex: 0 0 80%;
  margin: 0 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.04);
}
.iCard img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}
.iCarousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.iCarousel__nav--prev {
  left: -8px;
}
.iCarousel__nav--next {
  right: -8px;
}
@media (min-width: 980px) {
  .iCard {
    flex-basis: 33.333%;
  }
}
@media (min-width: 1200px) {
  .iCard {
    flex-basis: 25%;
  }
}
.iDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.iDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  opacity: 0.8;
}
.iDot.isActive {
  opacity: 1;
  background: var(--text);
}

/* ===== Parts Grid ===== */
.partsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.partCard {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.partCard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}
.partCard h3 {
  margin: 0;
  padding: 12px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}
@media (min-width: 760px) {
  .partsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 980px) {
  .partsGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Assembly Section ===== */
.assembly {
  background: var(--alt);
}
.assembly__wrap {
  display: grid;
  gap: 28px;
  align-items: center;
}
.assembly__content h2 {
  margin: 0 0 10px;
}
.assembly__content p {
  margin: 0 0 18px;
  max-width: 52ch;
}
.assembly__manual {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.assembly__videoWrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.assembly__videoWrap video {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 980px) {
  .assembly__wrap {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ===== Premium Table ===== */
.tableWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.specsTable {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
.specsTable thead {
  background: #0f172a;
}
.specsTable th {
  padding: 16px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
  text-align: left;
}
.specsTable td {
  padding: 16px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.specsTable td:first-child {
  font-weight: 800;
  color: var(--text);
}
.specsTable tbody tr:nth-child(even) {
  background: #f8fafc;
}
.specsTable tbody tr:hover {
  background: #eef2f7;
  transition: background 0.2s ease;
}

/* =========================
   Savings Calculator (Card-based)
   Add-on CSS for your theme
========================= */

.calc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 980px) {
  .calc__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.calcCard {
  padding: 0; /* use internal padding for symmetry */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.calcCard__head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}

.calcCard__head h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.calcCard__head .muted {
  margin: 0;
  font-weight: 600;
}

.calcCard__body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

/* Fields */
.calcField {
  display: grid;
  gap: 8px;
}

.calcLabel {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.calcInput {
  width: 100%;
}

/* Range row */
.calcRange {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calcRange__slider {
  flex: 1;
  width: 100%;
  accent-color: var(--text);
}

.calcRange__chip {
  min-width: 62px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--alt);
  font-weight: 950;
}

/* Divider */
.calcDivider {
  height: 1px;
  background: var(--line);
  margin: 6px 0;
}

.calcCard__subhead h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.calcCard__subhead .muted {
  margin: 0;
}

/* Right card (dark) */
.calcCard--dark {
  background: #0b1220;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.calcCard--dark .calcCard__head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.calcCard--dark .muted {
  color: #cbd5e1;
}

.calcCard--dark .calcRange__chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* KPIs */
.calcResults {
  display: grid;
  gap: 12px;
}

@media (min-width: 980px) {
  .calcResults {
    grid-template-columns: 1fr;
  }
}

.calcKPI {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 14px;
}

.calcKPI__label {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.8);
}

.calcKPI__value {
  margin: 6px 0 0;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

/* Note */
.calcNote {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 14px;
  font-weight: 650;
  color: rgba(229, 231, 235, 0.9);
}

/* CTA */
.calcCTA {
  width: 100%;
  margin-top: 4px;
}

/* Mobile tighten */
@media (max-width: 640px) {
  .calcCard__head {
    padding: 16px;
  }
  .calcCard__body {
    padding: 16px;
  }
  .calcKPI__value {
    font-size: 26px;
  }
}

/* =========================
   Compare With Soil Gardening (Page CSS)
   Keep your global styles.css unchanged
========================= */

.compareHero {
  padding-top: 44px;
}

.compareHero__wrap {
  display: grid;
  gap: 22px;
  align-items: center;
}

.compareHero__sub {
  max-width: 62ch;
}

.compareHero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.compareHero__chips {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.compareHero__media img {
  width: 100%;
  /* height: 46vh; */
  /* min-height: 260px;
  max-height: 520px; */
  object-fit: contain;
  border-radius: var(--radius);
  /* border: 1px solid var(--line); */
  background: #fff;
}

@media (min-width: 980px) {
  .compareHero__wrap {
    grid-template-columns: 58% 42%;
    gap: 28px;
  }
}

/* Summary cards */
.compareCards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 980px) {
  .compareCards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.compareCard h3 {
  margin: 0 0 8px;
}

/* Comparison table */
.compareTableWrap {
  padding: 0;
  overflow: hidden;
}

.compareTable {
  display: grid;
}

.compareTable__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.compareTable__row:last-child {
  border-bottom: 0;
}

.compareTable__row--head {
  background: #0b1220;
  color: #e5e7eb;
}

.compareTable__cell {
  padding: 14px 14px;
  border-right: 1px solid var(--line);
  font-weight: 650;
  color: var(--muted);
}

.compareTable__row--head .compareTable__cell {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.compareTable__cell:last-child {
  border-right: 0;
}

.compareTable__cell strong {
  color: var(--text);
  font-weight: 950;
}

.compareTable__row--head .compareTable__cell strong {
  color: #fff;
}

/* Mobile: stacked cards per row */
@media (max-width: 860px) {
  .compareTable__row {
    grid-template-columns: 1fr;
  }

  .compareTable__row--head {
    display: none; /* hide the header row on mobile */
  }

  .compareTable__cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compareTable__cell:last-child {
    border-bottom: 0;
  }

  /* Add labels with CSS only (no HTML change needed) */
  .compareTable__row .compareTable__cell:nth-child(1)::before {
    content: "Factor";
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .compareTable__row .compareTable__cell:nth-child(2)::before {
    content: "VertiFarm (Hydroponic Tower)";
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .compareTable__row .compareTable__cell:nth-child(3)::before {
    content: "Soil Gardening (Pots / Backyard)";
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
}

/* Choose section */
.chooseGrid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .chooseGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.chooseCard h3 {
  margin: 0 0 10px;
}

.compareCTA {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.compareCTA h3 {
  margin: 0 0 6px;
}

@media (max-width: 760px) {
  .compareCTA {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }
  .compareCTA .btn {
    width: 100%;
  }
}

/* =========================
   Real Responsive Table
========================= */

.compareTableWrapper {
  padding: 0;
  overflow: hidden;
}

.compareTableScroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compareTable {
  width: 100%;
  min-width: 720px; /* forces scroll on small screens */
  border-collapse: collapse;
  font-size: 14px;
}

.compareTable th,
.compareTable td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compareTable thead {
  background: #0b1220;
  color: #fff;
}

.compareTable th {
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

.compareTable td strong {
  font-weight: 950;
  color: var(--text);
}

/* Sticky first column (premium UX) */
.compareTable th:first-child,
.compareTable td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
  border-right: 1px solid var(--line);
}

.compareTable thead th:first-child {
  background: #0b1220;
  color: #fff;
}

/* Scroll hint indicator */
.compareTableScroll::-webkit-scrollbar {
  height: 6px;
}

.compareTableScroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* =========================
   Responsive Image Section
   Mobile: Full Width
   Desktop: 50% Centered
========================= */

.responsiveImageSection {
  width: 100%;
  padding: 0;
  text-align: center;
}

.responsiveImageSection__media {
  width: 100%;
}

/* Mobile — edge to edge */
.responsiveImageSection__media img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: block;
  height: auto;
  object-fit: contain;
  padding: 2em 0;
}

/* Desktop — 50% centered */
@media (min-width: 980px) {
  .responsiveImageSection__media {
    display: flex;
    justify-content: center;
  }

  .responsiveImageSection__media img {
    width: 50%;
    margin-left: 0;
  }
}

.responsiveImageSection__caption {
  font-size: 13px;
  padding: 12px 0 6px;
}

.address {
  padding: 6rem 0;
}

/* Main layout wrapper */
.address__wrap {
  display: grid;
  gap: 3rem;
}

/* Two-column form grid */
.address__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

/* Card */
.address__sheet {
  background: #fff;
  padding: 2.4rem;
  border-radius: 16px;
}

/* Fields */
.address__field {
  margin-bottom: 1.6rem;
}

.address__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.address__input {
  width: 100%;
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.address__input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* Bottom bar */
.address__bottom-bar {
  margin-top: 2.4rem;
  display: flex;
  justify-content: flex-end;
}

/* Save button */
.address__save-btn {
  padding: 1.2rem 2.4rem;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.address__save-btn:hover {
  background: #16a34a;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
  transform: translateY(-1px);
}

.address__save-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .address__grid {
    grid-template-columns: 1fr;
  }

  .address__row {
    grid-template-columns: 1fr;
  }
}
.address__error {
  display: block;
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 0.4rem;
}

.address__input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}
