/* ========================================
   SAI GOODS WEBSITE - COMPONENT STYLES
   ======================================== */

/* Mobile menu open: no page scroll (see index.html nav scroll lock) */
html.nav-menu-open,
body.nav-menu-open {
  overflow: hidden;
  height: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: var(--space-3xl);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('../img/sai-goods-hero-bg.png') lightgray 50% / cover no-repeat;
  filter: blur(2px);
  transform: scale(1.06);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 85% 70% at 100% 0%,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.28) 42%,
      transparent 72%
    ),
    linear-gradient(95deg, rgba(191, 88, 65, 0.45) 11.18%, rgba(191, 88, 65, 0.00) 94.37%),
    linear-gradient(95deg, rgba(0, 0, 0, 0.25) 11.18%, rgba(0, 0, 0, 0.00) 94.37%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.hero__content h1 {
  margin: 0;
  font-weight: var(--font-bold);
  line-height: var(--lh-heading);
  font-size: clamp(1.75rem, 1.45rem + 2.85vw, 2.5rem);
  max-width: 22ch;
}

.hero__sub {
  margin: 0;
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  max-width: 40ch;
}

/* Hero “Shop Now” CTA */
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: var(--space-md);
  padding: 0.6rem 0.95rem;
  border: 1px solid #fff;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero__cta-icon {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

/* Navigation */
.nav {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  padding: var(--space-md) clamp(var(--space-lg), 4vw, 7.5rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.nav__line {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__line:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav__menu {
  display: flex;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  transition: opacity var(--transition-fast);
  padding: var(--space-xs) var(--space-xs);
}

.nav a:hover,
.nav a:focus {
  opacity: 0.8;
}

.nav__menu a.nav__link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__menu a.nav__link-with-icon svg {
  flex-shrink: 0;
}

/* ===== INTRO SECTION ===== */
.intro {
  background: var(--bg-secondary);
  padding: var(--space-xl) var(--space-xl);
}

/* Mobile section padding override */
@media (max-width: 768px) {
  section {
    padding-block: var(--space-lg);
    padding-inline: var(--space-md);
  }
  
  .hero {
    padding: var(--space-lg);
  }
  
  .services {
    padding-block: var(--space-lg);
    padding-inline: var(--space-md);
  }
  
  .values {
    padding-block: var(--space-lg);
    padding-inline: var(--space-md);
  }
}

.intro__brand {
  margin: 0 0 var(--space-md);
  line-height: 0;
}

.intro__logo {
  display: block;
  width: 13rem;
  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .intro__logo {
    width: 11rem;
  }
}

@media (max-width: 430px) {
  .intro__logo {
    width: 9.25rem;
  }
}

.intro .lead {
  margin: 0;
  line-height: 1.4;
}

.lead strong {
  font-weight: var(--font-semibold);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--bg-primary);
  padding-bottom: var(--space-xl);
}

.services h2 {
  margin: 0 0 var(--space-2xs);
  color: var(--text-secondary);
  font-weight: var(--font-bold);
  font-size: var(--text-2xl);
  line-height: var(--lh-heading);
}

/* Services Grid 1: Card 1 (65%) | Card 2 (35%) */
.services__grid-1 {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.86fr 1fr; /* 65% : 35% ratio */
  width: 100%;
}

.service-card-1 { 
  grid-column: 1; 
  grid-row: 1; 
  min-width: 0;
  overflow: hidden;
}

.service-card-2 { 
  grid-column: 2; 
  grid-row: 1; 
  min-width: 0;
  overflow: hidden;
}

/* Services Grid 2: Card 3 (35%) | Card 4 (65%) */
.services__grid-2 {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1.86fr; /* 35% : 65% ratio */
  margin-top: 10px;
  width: 100%;
}

.service-card-3 { 
  grid-column: 1; 
  grid-row: 1; 
  min-width: 0;
  overflow: hidden;
}

.service-card-4 { 
  grid-column: 2; 
  grid-row: 1; 
  min-width: 0;
  overflow: hidden;
}

/* ===== VALUES SECTION ===== */
.values {
  background: url('../img/value-section-bg-img.png') center/cover no-repeat;
  position: relative;
  padding-bottom: var(--space-xl);
}

.values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.values .wrap {
  position: relative;
  z-index: 2;
}

.values h2 {
  text-align: center;
  color: #ffffff85;
  margin: 0 0 var(--space-xs);
  font-size: var(--text-2xl);
  line-height: var(--lh-heading);
  font-weight: var(--font-bold);
}

.values__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

.value-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: clamp(250px, 25vw, 350px); /* Consistent responsive height for all cards */
  width: 100%;
  gap: var(--space-sm);
  padding: var(--space-md);
  box-sizing: border-box;
}

.value-card__header {
  background: #f5f5f5;
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  width: 100%;
}

.value-card__header h3 {
  margin: 0;
  color: var(--brand);
  text-align: center;
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  line-height: var(--lh-heading);
}

.value-card__body {
  padding: var(--space-sm);
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.value-card__body p {
  margin: 0;
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  text-align: center;
  max-width: 100%;
}

/* ===== WHY SAI SECTION ===== */
.why-sai {
  background: var(--bg-muted);
}

.why-sai__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-sai__text {
  max-width: 65ch;
}

.why-sai__text h3 {
  color: var(--brand);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  line-height: var(--lh-heading);
  margin: 0 0 var(--space-sm);
}

.why-sai__text p {
  margin: 0 0 var(--space-md);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: var(--lh-body);
}

.why-sai__image {
  height: 100%;
  min-height: 400px;
}

.why-sai__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ===== IMAGE SLICES ===== */
.slice {
  padding: 0;
}

.slice__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== FOOTER SECTION ===== */
.footer {
  background: #e8eaec;
  color: var(--text-secondary);
}

.footer__content {
  display: flex;
  flex-direction: column;
  padding: 3rem var(--section-px) 1rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.brand__row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.brand__logo {
  width: 200px;
  height: 40px;
  object-fit: contain;
}

.brand__name {
  font-weight: var(--font-bold);
  color: var(--brand);
  font-size: var(--text-xl);
  line-height: var(--lh-heading);
}

.brand__tagline {
  margin: var(--space-xs) 0 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: 300px;
}

.brand__address {
  margin: var(--space-sm) 0 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--lh-body);
  font-style: normal;
}

.widget {
  display: grid;
}

.widget__title {
  margin: 0 0 var(--space-xs);
  color: var(--brand);
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
  font-weight: var(--font-bold);
}

.widget__list {
  display: grid;
  gap: var(--space-sm);
}

.contact {
  font-style: normal;
}

.contact__label {
  font-weight: var(--font-bold);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.contact__value {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.contact__value:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.credential {
  display: grid;
  gap: var(--space-2xs);
}

.credential__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 300px;
}

.credential__value {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: var(--font-medium);
  font-family: 'Courier New', monospace;
}

.rule {
  border: 0;
  height: 1px;
  background: #cccfd3;
  margin: var(--space-sm) 0 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.rights {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

.social img {
  height: 24px;
  width: auto;
  opacity: .85;
}



/* ===== CARD COMPONENTS ===== */
.card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: var(--space-md);
  color: #fafafa;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  box-sizing: border-box;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px var(--shadow-hover);
}

/* Disable hover lift on mobile */
@media (max-width: 768px) {
  .card:hover {
    transform: none;
    box-shadow: 0 10px 30px var(--shadow);
  }
}

.card h3 {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--lh-heading);
}

.card p {
  margin: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: var(--text-sm);
  line-height: var(--lh-heading);
}

/* Service cards: frosted upper-right + icon */
.services .card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: min(52%, 7rem);
  height: min(52%, 7rem);
  z-index: 0;
  pointer-events: none;
  border-bottom-left-radius: 100%;
  background: linear-gradient(
    225deg,
    rgba(15, 23, 30, 0.42) 0%,
    rgba(15, 23, 30, 0.12) 55%,
    transparent 85%
  );
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.services .card .service-card__icon {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  left: auto;
  z-index: 2;
  width: clamp(2rem, 5vw, 2.65rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.services .card h3,
.services .card p {
  position: relative;
  z-index: 1;
}

/* Background images + readable gradient */
.service-card-1 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 20%, #000 100%),
              url('../img/our-services-box-1.png') lightgray 50% / cover no-repeat;
}

.service-card-2 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 20%, #000 100%),
              url('../img/our-services-box-2.png') lightgray 50% / cover no-repeat;
}

.service-card-3 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 20%, #000 100%),
              url('../img/our-services-box-3.png') lightgray 50% / cover no-repeat;
}

.service-card-4 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 20%, #000 100%),
              url('../img/our-services-box-4.png') lightgray 50% / cover no-repeat;
}

/* ===== UTILITIES ===== */
a {
  outline-offset: 3px;
}

/* Focus styles for accessibility */
a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ===== MOBILE (≤430px) ===== */
@media (max-width: 430px) {
  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__content h1 {
    text-align: center;
  }

  .hero__sub {
    max-width: none;
  }

  .hero {
    padding: var(--space-md);
    min-height: 50vh;
  }
  
  .nav {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .nav a {
    font-size: var(--text-sm);
    padding: var(--space-2xs) var(--space-2xs);
  }
  
  .card {
    min-height: 12rem;
    padding: var(--space-sm);
  }
  
  .card h3 {
    font-size: var(--text-base);
  }
  
  .card p {
    font-size: var(--text-sm);
  }
  
  .value-card {
    min-height: 200px;
    padding: var(--space-sm);
  }
  
  .value-card__header {
    padding: var(--space-xs);
  }
  
  .value-card__header h3 {
    font-size: var(--text-base);
  }
  
  .value-card__body {
    padding: var(--space-xs);
  }
  
  .value-card__body p {
    font-size: var(--text-sm);
  }
  
  .why-sai {
    padding: var(--space-lg) var(--space-md);
  }
  
  .why-sai__text h3 {
    font-size: var(--text-xl);
  }
  
  .footer__content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .brand__tagline {
    font-size: var(--text-xs);
  }
  
  .widget__title {
    font-size: var(--text-base);
  }
  
  .contact__label,
  .credential__label {
    font-size: var(--text-xs);
  }
  
  .contact__value,
  .credential__value {
    font-size: var(--text-sm);
  }
}

/* ===== MOBILE FIRST (≤768px) ===== */
@media (max-width: 768px) {
  /*
   * Home hamburger: stacking (top → bottom) = .nav__toggle → .nav__menu → .nav → .hero__content
   * vs. page = main.index > .hero (layer 10) above .intro/sections (layer 0). Remove isolation/overflow
   * clipping the fixed overlay (was sitting behind .hero__content and .intro on mobile).
   */
  main.index > :not(.hero) {
    position: relative;
    z-index: 0;
  }

  main.index > .hero {
    padding: var(--space-lg);
    min-height: 55vh;
    position: relative;
    z-index: 10;
    isolation: auto;
  }

  html.nav-menu-open main.index > .hero {
    overflow: visible;
  }

  main.index .hero__content {
    z-index: 0;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__content h1 {
    text-align: center;
  }

  .hero__sub {
    max-width: 36ch;
  }

  main.index .nav {
    padding: var(--space-sm) var(--space-md);
    z-index: 4;
  }

  /* Hamburger menu for mobile */
  main.index .nav__toggle {
    display: block;
    z-index: 6;
  }
  
  main.index .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-width: 100vw;
    background: var(--brand);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transition: left 0.3s ease;
    z-index: 5;
    padding: var(--space-xl);
  }
  
  main.index .nav__menu.active {
    left: 0;
  }
  
  .nav a {
    font-size: var(--text-lg);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__menu a.nav__link-with-icon {
    justify-content: center;
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .services h2,
  .values h2 {
    font-size: var(--text-xl);
  }

  /* Services grids - stack vertically */
  .services__grid-1,
  .services__grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4 {
    grid-column: 1;
    grid-row: auto;
  }
  
  .card {
    min-height: 14rem;
    padding: var(--space-md);
  }
  
  .card h3 {
    font-size: var(--text-lg);
  }
  
  .card p {
    font-size: var(--text-sm);
  }
  
  /* Values section */
  .value-card {
    min-height: 220px;
    padding: var(--space-md);
  }
  
  .value-card__header {
    padding: var(--space-sm);
  }
  
  .value-card__header h3 {
    font-size: var(--text-lg);
  }
  
  .value-card__body {
    padding: var(--space-sm);
  }
  
  .value-card__body p {
    font-size: var(--text-sm);
  }
  
  /* Why SAI section - mobile stack */
  .why-sai {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .why-sai__content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .why-sai__text {
    order: 1;
  }

  .why-sai__text h3 {
    font-size: var(--text-xl);
  }
  
  .why-sai__image {
    order: 2;
    min-height: 250px;
  }
  
  /* Footer mobile adjustments */
  .footer__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .footer__top {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer__bottom {
    gap: var(--space-sm);
    text-align: center;
  }
  
  .brand__tagline {
    font-size: var(--text-sm);
    max-width: 100%;
  }
  
  .widget__title {
    font-size: var(--text-lg);
  }
  
  .contact__label,
  .credential__label {
    font-size: var(--text-sm);
  }
  
  .contact__value,
  .credential__value {
    font-size: var(--text-sm);
  }
}

/* ===== VALUE CARDS RESPONSIVE BREAKING ===== */
.value-card {
  flex: 1;
  min-width: 300px; /* Minimum width before breaking */
  max-width: 400px; /* Maximum width when not full */
}

/* Medium screens: 2 cards on top, 1 card full width below */
@media (max-width: 1075px) and (min-width: 740px) {
  .value-card:nth-child(1),
  .value-card:nth-child(2) {
    flex: 0 0 calc(50% - var(--space-md));
    max-width: none;
  }
  
  .value-card:nth-child(3) {
    flex: 1 1 100%;
    min-width: 0;
    max-width: none;
  }
  
  .value-card__body {
    width: 100%;
    max-width: none;
  }
}

/* Small screens: all cards full width */
@media (max-width: 748px) {
  .value-card {
    flex: 1 1 100%;
    min-width: 0;
    max-width: none;
  }
  
  .value-card__body {
    width: 100%;
    max-width: none;
  }
}

/* ===== TABLET (770px - 1023px) ===== */
@media (min-width: 770px) and (max-width: 1023px) {
  /* Services grids - maintain ratios with fr units */
  .services__grid-1 {
    grid-template-columns: 1.86fr 1fr; /* 65% : 35% ratio */
  }
  
  .services__grid-2 {
    grid-template-columns: 1fr 1.86fr; /* 35% : 65% ratio */
  }
  
  .card {
    min-height: 18rem;
  }
  
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  /* Services grids - maintain custom layouts with fr units */
  .services__grid-1 {
    grid-template-columns: 1.86fr 1fr; /* 65% : 35% ratio */
  }
  
  .services__grid-2 {
    grid-template-columns: 1fr 1.86fr; /* 35% : 65% ratio */
  }
  
  .services__grid-1,
  .services__grid-2 {
    gap: 10px;
  }
  
  /* Larger cards for wide screens */
  .service-card-2,
  .service-card-3 {
    min-height: 20rem;
  }
  
  .card {
    min-height: 18rem;
  }
  
}

/* ===== LARGE DESKTOP (1100px+) ===== */
@media (min-width: 1100px) {
  .services__grid-1,
  .services__grid-2 {
    gap: 10px;
  }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (min-width: 820px) {
  .footer__top {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

/* ===== LYDUS PRODUCT EXPERIENCE ===== */
.lydus-page {
  --lydus-blue: #34558b;
  --font-base: "Circular Std", "CircularStd", "Circular Std Book", Arial, sans-serif;
  font-family: var(--font-base);
  background: #FAFAFA;
  color: #182b40;
  line-height: 1.6;
}

.lydus-page .wrap {
  width: min(1180px, 100% - clamp(6rem, 8vw, 9rem));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .lydus-page .wrap {
    width: min(100%, 100% - 3rem);
  }
}

/* LYDUS Navigation */
.lydus-nav {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  height: 72px;
  font-size: 1rem;
  z-index: 100;
}

.lydus-nav .wrap {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
}

.lydus-nav__logos {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.lydus-nav__logos img {
  height: 34px;
  width: 100%;
}

.lydus-nav__logos img:nth-child(2) {
  height: 18px;
  width: 18px;
  opacity: 0.6;
}

.lydus-nav__tagline {
  flex: 1 1 280px;
  text-align: center;
}

.lydus-nav__tagline p {
  margin: 0;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  color: rgba(24, 43, 64, 0.7);
  line-height: 1.4;
}

.lydus-nav__tagline span {
  color: var(--lydus-blue);
  font-weight: 600;
}

.registered-mark {
  position: relative;
  top: -0.08em;
  font-size: 0.5em;
  line-height: 0;
  vertical-align: super;
}

.lydus-nav__links {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

.lydus-nav__links a {
  color: #182b40;
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.275rem;
}

.lydus-nav__links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 2px;
  background: #34558B;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.lydus-nav__links a:hover::after,
.lydus-nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.lydus-nav__links a.nav__link-with-icon {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  /* Keep icon + label on one line (lydus-globals sets svg { display: block; max-width: 100% }) */
  max-width: max-content;
  white-space: nowrap;
}

.lydus-nav__links a.nav__link-with-icon svg {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: none;
}

.lydus-hero {
  background: #fafafa;
  padding-block: clamp(4rem, 7vw, 7.5rem);
  padding-inline: 0;
}

.lydus-hero .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 6vw, 7.5rem);
}

.lydus-hero__content {
  flex: 1 1 36rem;
  min-width: 0;
  max-width: 40rem;
}

.lydus-hero h1 {
  margin: 0 0 clamp(0.75rem, 2.5vw, 1.5rem);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #333;
  white-space: normal;
  text-wrap: balance;
}

.lydus-hero p {
  margin: 0;
  max-width: 70ch;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  line-height: 1.6;
  color: #333;
}

.lydus-hero .lydus-text {
  color: var(--lydus-blue);
  font-weight: 600;
}

@keyframes lydus-hero-fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero__content,
body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero__visual {
  animation: lydus-hero-fade-in 650ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero__visual {
  animation-delay: 80ms;
}

.lydus-hero__visual {
  display: grid;
  place-items: center;
  flex: 0 1 27.2rem;
  min-width: 0;
}

.lydus-hero__visual picture {
  display: block;
}

.lydus-hero__visual img {
  width: 27.2rem;
  height: 20.7rem;
  aspect-ratio: 272/207;
  object-fit: contain;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: 4.5rem;
  font-weight: 700;
  color: #182b40;
  line-height: 1.2;
}

.section-lead {
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  max-width: 64ch;
  color: rgba(24, 43, 64, 0.74);
  font-size: 1.25rem;
}

.lydus-products {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 5rem;
  background: #ffffff;
  scroll-margin-top: 72px;
}

.lydus-products__intro {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.lydus-products__intro h2 {
  margin: 0 0 0.75rem;
  color: #182b40;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.lydus-heading-brand {
  color: var(--lydus-blue);
  white-space: nowrap;
}

.lydus-products__intro p {
  margin: 0;
  width: 100%;
  max-width: none;
  color: rgba(24, 43, 64, 0.74);
  font-size: 1rem;
  line-height: 1.5;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.6667rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8333rem;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-grid li {
  scroll-snap-align: start;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28.6458rem;
  height: 28.8542rem;
  flex-shrink: 0;
  border-radius: 0.5208rem;
  padding: 1.6667rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}

.product-grid li:nth-child(1) .product-card {
  background: linear-gradient(225deg, #C1E1FF 0.05%, #F3E7F3 100.05%);
}

.product-grid li:nth-child(2) .product-card {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 100%), linear-gradient(39deg, #FFCBA7 2.28%, #F66392 97.31%);
}

.product-grid li:nth-child(3) .product-card {
  background: linear-gradient(135deg, #D4FBF8 0%, #F2F6F6 100%);
}

.product-grid li:nth-child(4) .product-card {
  background: linear-gradient(138deg, #DDDCDC 0.91%, #EFEDED 99.09%);
}

.product-grid li:nth-child(5) .product-card {
  background: linear-gradient(138deg, #DDDCDC 0.91%, #EFEDED 99.09%);
}

.product-card__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14.7917rem;
  height: 14.7917rem;
  border-radius: 14.7917rem;
  transition: all 0.4s ease;
}

.product-card:hover .product-card__circle {
  width: 12.4479rem;
  height: 12.4479rem;
  transform: translate(-50%, -87%);
}

.product-card__circle--1 {
  background: linear-gradient(225deg, #E792ED 0%, #EC8DAC 100%);
}

.product-card__circle--2 {
  background: linear-gradient(197deg, #F66392 12.4%, #FFCBA7 92.24%);
}

.product-card__circle--3 {
  background: linear-gradient(225deg, #8CF9E8 0%, #A5E0C3 100%);
}

.product-card__circle--4 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.60) 100%), linear-gradient(225deg, #2F0D00 0%, #454545 100%);
}

.product-card__circle--5 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.60) 100%), linear-gradient(225deg, #2F0D00 0%, #454545 100%);
}

.product-card__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22.4479rem;
  height: auto;
  object-fit: contain;
  z-index: 2;
  transition: all 0.4s ease;
}

.product-card:hover .product-card__img {
  width: 18.9063rem;
  transform: translate(-50%, -80%);
}

.product-card__info {
  position: absolute;
  bottom: 1.6667rem;
  left: 1.6667rem;
  right: 1.6667rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 3;
  text-align: left;
}

.product-card:hover .product-card__info {
  opacity: 1;
  transform: translateY(0);
}

/* On touch devices, show product info by default and use compact art sizing */
@media (hover: none) and (pointer: coarse) {
  .product-card__info {
    opacity: 1;
    transform: none;
  }

  .product-card__circle {
    width: 12.4479rem;
    height: 12.4479rem;
    transform: translate(-50%, -80%);
  }

  .product-card__img {
    width: 18.9063rem;
    transform: translate(-50%, -80%);
  }
}

.product-card__info h3 {
  margin: 0 0 0.2292rem;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.2;
  font-weight: 600;
  white-space: normal;
  text-wrap: balance;
}

.product-card__info p:first-of-type {
  margin: 0 0 1.0417rem;
  font-size: 1rem;
  font-weight: 400;
  color: #828282;
  width: 100%;
  line-height: 1.3;
}

.product-card__info p:last-of-type {
  display: inline-block;
  margin: 0;
  border-radius: 0.3041rem;
  background: #34558B;
  padding: 0.6082rem 0.9123rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-grid li:nth-child(1) .product-card__info p:last-of-type {
  background: #34558B;
}

.product-grid li:nth-child(2) .product-card__info p:last-of-type {
  background: #ED3067;
}

.product-grid li:nth-child(3) .product-card__info p:last-of-type {
  background: #8AE3E7;
}

.product-grid li:nth-child(4) .product-card__info p:last-of-type {
  background: #646364;
}

.product-grid li:nth-child(5) .product-card__info p:last-of-type {
  background: #646364;
}

.lydus-reviews {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: #ffffff;
}

.lydus-review__symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lydus-reviews__heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.lydus-reviews__heading .section-title {
  margin: 0;
  color: #182b40;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.lydus-reviews__heading > p {
  max-width: 62rem;
  margin: 0;
  color: rgba(24, 43, 64, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.lydus-reviews__viewport {
  overflow: hidden;
}

.lydus-reviews__track {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform 0.42s ease;
  will-change: transform;
}

.lydus-review {
  flex: 0 0 calc((100% - clamp(1rem, 2vw, 1.5rem)) / 2);
  min-width: 0;
  border-radius: 0.625rem;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  background: #f5f5f5;
  color: #2d2d2d;
}

.lydus-review__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lydus-review__stars,
.lydus-review__author {
  margin: 0;
}

.lydus-review__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f5b800;
  line-height: 1;
}

.lydus-review__stars svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex: 0 0 0.9375rem;
}

.lydus-review__stars > .lydus-review__star-empty {
  color: #d3d5d7;
}

.lydus-review__author {
  margin-top: 0.35rem;
  color: rgba(45, 45, 45, 0.68);
  font-size: 0.75rem;
  line-height: 1.25;
}

.lydus-review__source {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  background: #19212a;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.lydus-review h3 {
  margin: 0 0 0.45rem;
  color: #2d2d2d;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.lydus-review blockquote,
.lydus-review blockquote p {
  margin: 0;
}

.lydus-review blockquote p {
  color: rgba(45, 45, 45, 0.88);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.lydus-reviews__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lydus-reviews__controls button {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(24, 43, 64, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: #2d2d2d;
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lydus-reviews__controls button:hover,
.lydus-reviews__controls button:focus-visible {
  border-color: rgba(45, 45, 45, 0.42);
  background: #f5f5f5;
  color: #2d2d2d;
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lydus-records {
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  padding-bottom: 0rem;
  background: #fafafa;
}

.lydus-records .section-title {
  font-size: 2.5rem;
}

.records-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.record {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.25rem 0;
}

.record img {
  width: auto;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.record h3 {
  font-size: 1.75rem;
  color: #2d4d8c;
  font-weight: 700;
}

.record p {
  margin: 0;
  color: rgba(24, 43, 64, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lydus-certifications {
  padding-block: clamp(3rem, 8vw, 5.5rem);
  padding-top: 1.85rem;
  background: #fafafa;
}

.lydus-certifications .section-title {
  font-size: 2.5rem;
}

.cert-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(2rem, 6vw, 3rem);
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.cert-pill {
  background: #F6F6F6;
  border-radius: 0.625rem;
  padding: clamp(0.875rem, 3vw, 1rem);
  display: grid;
}

.cert-pill h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #182b40;
}

.cert-pill p {
  margin: 0;
  color: rgba(24, 43, 64, 0.7);
  font-size: 0.95rem;
}

.cert-pill a {
  color: #bf5841;
  font-weight: 600;
  text-decoration: none;
}

.cert-detail-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.detail h3 {
  margin: 0 0 0.15rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #182b40;
  line-height: 1.2;
}

.detail p {
  margin: 0;
  color: rgba(24, 43, 64, 0.7);
  font-size: 0.95rem;
  line-height: 1.3;
}

.lydus-mission {
  background: linear-gradient(135deg, #fef4dc 0%, #fdf0ff 55%, #f0f7ff 100%);
  padding-block: clamp(3rem, 8vw, 5.5rem);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 4rem);
  /* AOS slide fades use translateX; keep transforms from widening the viewport */
  overflow-x: hidden;
}

.lydus-mission .wrap div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lydus-mission .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.lydus-mission h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: #34558b;
}

.lydus-mission p {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  line-height: 1.6;
  color: rgba(24, 43, 64, 0.82);
  max-width: 70vw;
}

.lydus-mission strong {
  font-weight: 600;
  color: #182b40;
}

.lydus-mission .wrap img {
  max-width: 300px;
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

.lydus-footer {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background: #ffffff;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.5rem;
}

.footer-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 900ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.footer-reveal [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.local-reveal-ready body.lydus-page main [data-aos] {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 900ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.local-reveal-ready body.lydus-page main [data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .footer-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html.local-reveal-ready body.lydus-page main [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand__row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand__row strong {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: #182b40;
}

.footer-brand {
  display: grid;
  gap: 1.25rem;
}

.footer-brand img {
  width: clamp(48px, 8vw, 64px);
  height: auto;
  transition: opacity 0.2s ease;
}

.footer-brand a:hover img {
  opacity: 0.8;
}

.footer-brand strong {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 600;
  color: #bf5841;
}

.footer-brand p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(24, 43, 64, 0.72);
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #bf5841;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.footer-column p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(24, 43, 64, 0.72);
  display: flex;
  flex-direction: column;
}

.footer-column a {
  color: #bf5841;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.2s ease;
}

.footer-column a:hover {
  opacity: 0.75;
}

.footer-bottom {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(24, 43, 64, 0.1);
  color: rgba(24, 43, 64, 0.65);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
  font-weight: 500;
}

.footer-bottom img {
  width: clamp(110px, 20vw, 150px);
  height: auto;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 420px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .lydus-hero {
    padding-block: 6rem;
  }

  .lydus-hero .wrap {
    gap: 5rem;
  }
}

@media (max-width: 1024px) {
  .lydus-hero {
    padding-block: 5rem;
  }

  .lydus-hero .wrap {
    gap: 3rem;
  }

  .lydus-hero__visual img {
    width: 22.4rem;
    height: 17.05rem;
  }
}

@media (max-width: 920px) {
  .lydus-hero {
    padding-block: 4rem;
  }

  .lydus-hero .wrap {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  /* Flex-basis represents height after the layout becomes a column. Reset the
     desktop bases so the mobile hero hugs its image and copy. */
  .lydus-hero__content {
    flex: 0 1 auto;
    width: 100%;
  }

  .lydus-hero__visual {
    order: -1;
    flex: 0 0 auto;
    width: 100%;
  }

  .lydus-hero p {
    margin-inline: auto;
  }

  .lydus-nav__tagline {
    order: 3;
  }

  .lydus-nav__links {
    order: 2;
  }

  /* Hide tagline when space is constrained */
  .lydus-nav__tagline {
    display: none;
  }

  .section-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  .section-lead {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .lydus-mission {
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(2rem, 6vw, 3rem) 2rem;
  }

  .lydus-mission img {
    display: none;
  }
}

@media (max-width: 768px) {
  .lydus-hero {
    padding-block: 3rem;
  }

  .lydus-hero .wrap {
    gap: 1.5rem;
  }

  .lydus-hero__visual img {
    width: 16rem;
    height: 12.175rem;
  }
}

@media (max-width: 560px) {
  .lydus-reviews {
    padding-block: 3rem;
  }

  .lydus-review {
    flex-basis: 100%;
  }

  .lydus-reviews__controls {
    justify-content: center;
  }

  .lydus-reviews__heading .section-title {
    font-size: 1.375rem;
  }

  .lydus-hero {
    padding-block: 2rem 1.75rem;
  }

  .lydus-nav .wrap {
    justify-content: space-between;
  }

  .lydus-nav__links {
    gap: 1rem;
  }

  /* Slightly decrease nav link font-size on small screens */
  .lydus-nav__links a {
    font-size: 0.9rem;
  }

  /* Decrease logo sizes on mobile for non-index pages */
  .lydus-nav__logos img {
    height: 28px;
  }

  .lydus-nav__logos img:nth-child(2) {
    height: 14px;
    width: 14px;
  }

  .lydus-hero__visual img {
    width: 12.8rem;
    height: 9.74rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Match mission section padding with previous section */
  .lydus-mission {
    padding: 2rem 0.5rem 1.75rem;
  }

  /* Lydus products: scale cards down for small screens */
  .product-grid {
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  /* Reduce bottom spacing of the section */
  .lydus-products {
    padding-bottom: 2rem;
  }

  .product-card {
    width: 20rem;
    height: 20rem;
    padding: 0.875rem;
  }

  .product-card__circle {
    width: 9rem;
    height: 9rem;
    transform: translate(-50%, -72%);
  }

  .product-card__img {
    width: 13.5rem;
    transform: translate(-50%, -72%);
  }

  .product-card__info {
    bottom: 0.875rem;
    left: 0.875rem;
    right: 0.875rem;
  }

  .product-card__info h3 {
    font-size: 1.25rem;
  }

  .product-card__info p:first-of-type {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .product-card__info p:last-of-type {
    display: none;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  /* Neutralize hover effects on small screens */
  .product-card,
  .product-card__circle,
  .product-card__img,
  .product-card__info {
    transition: none;
  }

  .product-card:hover .product-card__circle {
    width: 9rem;
    height: 9rem;
    transform: translate(-50%, -72%);
  }

  .product-card:hover .product-card__img {
    width: 13.5rem;
    transform: translate(-50%, -72%);
  }

  .product-card:hover .product-card__info {
    opacity: 1;
    transform: none;
  }

  /* lydus-records mobile adjustments */
  .lydus-records {
    padding-inline: 0.5rem;
  }

  .lydus-records .section-title {
    font-size: 1.75rem;
  }

  .records-grid {
    gap: 0;
  }

  .record img {
    height: 2rem;
  }

  .record h3 {
    font-size: 1.25rem;
  }

  .record p {
    font-size: 0.95rem;
  }

  /* lydus-certifications mobile adjustments */
  .lydus-certifications {
    padding-inline: 0.5rem;
  }

  .lydus-certifications .section-title {
    font-size: 1.75rem;
  }

  .cert-pill {
    width: 100%;
  }

  .cert-pill h3 {
    font-size: 1rem;
  }

  .cert-detail-grid {
    gap: clamp(1.25rem, 4vw, 2.75rem);
  }

  /* Footer mobile adjustments */
  .lydus-footer {
    padding: 2rem 0.25rem 0.5rem 0.25rem;
  }

  .footer-bottom {
    padding-top: 0.65rem;
  }

  .footer-brand p {
    font-size: 1rem;
  }

  /* Decrease footer logo size on mobile for non-index pages */
  .footer-brand img {
    width: clamp(40px, 6vw, 48px);
  }

  .footer-column {
    gap: 0.25rem;
  }

  .footer-column h3 {
    margin: 0;
  }

  .footer-column p {
    line-height: 1.45;
  }

  .footer-grid {
    gap: clamp(1.25rem, 5vw, 3rem);
  }

  .footer-bottom {
    margin: clamp(1rem, 6vw, 2rem) 0 0;
    justify-content: space-between;
  }
}






















.spec-hero {
  background: linear-gradient(225deg, #C1E1FF 0.05%, #F3E7F3 100.05%);
  margin-bottom: 3rem;
}

/* Nitrile Premium Hero Background */
.nitrile-premium .spec-hero {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 100%), linear-gradient(39deg, #FFCBA7 2.28%, #F66392 97.31%);
}

/* Latex Standard Hero Background */
.latex-standard .spec-hero {
  background: linear-gradient(135deg, #D4FBF8 0%, #F2F6F6 100%);
}

/* Black Nitrile Hero Background (both general and heavy duty) */
.black-nitrile-general .spec-hero,
.black-nitrile-heavy-duty .spec-hero {
  background: linear-gradient(138deg, #DDDCDC 0.91%, #EFEDED 99.09%);
}

.spec-hero .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 4rem 3rem;
}

.spec-hero__image {
  position: absolute;
  right: 6rem;
  top: 5rem;
}

.spec-hero__image img {
  width: 26rem;
  height: 20.7rem;
  aspect-ratio: 795 / 632;
  object-fit: contain;
}


/* Tablet breakpoint - smooth transition */
@media (max-width: 768px) {
  .spec-hero .wrap {
    padding-block: 3rem 2.5rem
  }

  .spec-hero__image {
    right: 4rem;
    top: 6rem;
  }

  .spec-hero__image img {
    width: 20rem;
    height: auto;
  }

  .subtitle {
    font-size: 1.375rem;
  }
}

/* Mobile breakpoint - stacked layout */
@media (max-width: 695px) {
  .spec-hero .wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 1.5rem 2rem;
  }

  .spec-hero__image {
    position: relative;
    top: auto;
    right: auto;
    align-self: center;
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .spec-hero__image img {
    width: 22rem;
    height: auto;
  }

  .subtitle {
    font-size: 1.25rem;
    margin-top: 0.25rem;
  }
}

.spec-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #182b40;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #5B5B5B;
  line-height: 1.6;
}

.wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #192E40;
  line-height: 1.2;
  margin-bottom: 0.375rem;
}



.wrap p span {
  font-weight: 600;
  color: #2d2d2d;
}

.wrap p.lead {
  width: 75%;
  line-height: 1.5;
}

.spec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.spec-action {
  display: inline-flex;
  column-gap: 5px;
  min-height: 2.875rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #34558b;
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.spec-action--primary {
  background: #34558b;
  color: #fff;
}

.spec-action--secondary {
  background: transparent;
  color: #34558b;
}

.spec-action--primary:hover,
.spec-action--primary:focus-visible {
  background: #294570;
}

.spec-action--secondary:hover,
.spec-action--secondary:focus-visible {
  background: rgba(52, 85, 139, 0.08);
}

/* Nitrile Plus product actions */
.nitrile-premium .spec-action {
  border-color: #ed3067;
}

.nitrile-premium .spec-action--primary {
  background: #ed3067;
}

.nitrile-premium .spec-action--secondary {
  color: #ed3067;
}

.nitrile-premium .spec-action--primary:hover,
.nitrile-premium .spec-action--primary:focus-visible {
  background: #c82457;
  border-color: #c82457;
}

.nitrile-premium .spec-action--secondary:hover,
.nitrile-premium .spec-action--secondary:focus-visible {
  background: rgba(237, 48, 103, 0.08);
}

/* Latex Standard product actions */
.latex-standard .spec-action {
  border-color: #63cbd0;
}

.latex-standard .spec-action--primary {
  background: #8ae3e7;
  color: #182b40;
}

.latex-standard .spec-action--secondary {
  color: #287f84;
}

.latex-standard .spec-action--primary:hover,
.latex-standard .spec-action--primary:focus-visible {
  background: #74d7dc;
  border-color: #55bdc2;
}

.latex-standard .spec-action--secondary:hover,
.latex-standard .spec-action--secondary:focus-visible {
  background: rgba(138, 227, 231, 0.18);
}

/* Black Nitrile product actions */
.black-nitrile-general .spec-action,
.black-nitrile-heavy-duty .spec-action {
  border-color: #2b2b2c;
}

.black-nitrile-general .spec-action--primary,
.black-nitrile-heavy-duty .spec-action--primary {
  background: #2b2b2c;
  color: #fff;
}

.black-nitrile-general .spec-action--secondary,
.black-nitrile-heavy-duty .spec-action--secondary {
  color: #2b2b2c;
}

.black-nitrile-general .spec-action--primary:hover,
.black-nitrile-general .spec-action--primary:focus-visible,
.black-nitrile-heavy-duty .spec-action--primary:hover,
.black-nitrile-heavy-duty .spec-action--primary:focus-visible {
  background: #151516;
  border-color: #151516;
}

.black-nitrile-general .spec-action--secondary:hover,
.black-nitrile-general .spec-action--secondary:focus-visible,
.black-nitrile-heavy-duty .spec-action--secondary:hover,
.black-nitrile-heavy-duty .spec-action--secondary:focus-visible {
  background: rgba(43, 43, 44, 0.08);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-top: 1rem;
}

.spec-table th,
.spec-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(24, 43, 64, 0.1);
}

.spec-table th {
  font-weight: 600;
  color: #182b40;
  width: 70%;
}

.spec-table td {
  color: rgba(24, 43, 64, 0.75);
  font-weight: 400;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 4rem;
}

.spec-block {
  background: transparent;
}

.spec-block h2 {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.spec-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.spec-links a {
  color: #34558B;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.spec-links a:hover {
  color: #bf5841;
}

.spec-section {
  background: #fafafa;
  padding-block: 2rem;
}

/* Tablet breakpoint for spec-grid */
@media (max-width: 920px) {
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .spec-section {
    padding-block: 0rem 4rem;
  }
}

/* Mobile breakpoint for spec-section */
@media (max-width: 768px) {

  .spec-grid {
    gap: 2rem;
    margin-top: 1.75rem;
  }
}

/* Small mobile breakpoint - optimized for small screens */
@media (max-width: 560px) {
  .spec-hero {
    margin-bottom: 1.75rem;
  }

  .spec-hero .wrap {
    padding: 1.75rem 1.125rem 2.25rem;
  }

  .spec-title {
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1.1875rem;
    margin-top: 0.5rem;
  }

  .spec-section {
    padding-block: 1rem 2rem;
  }

  .spec-section .wrap {
    padding-inline: 0.6rem;
  }

  .spec-section .wrap h2 {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
  }

  .spec-section .wrap p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .spec-section .wrap p.lead {
    width: 100%;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .spec-grid {
    gap: 1.375rem;
    margin-top: 1.375rem;
  }

  /* Optimized table for mobile */
  .spec-table {
    font-size: 0.875rem;
    margin-top: 0.75rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.5625rem 0.6875rem;
    line-height: 1.4;
  }

  .spec-table th {
    width: 52%;
    font-size: 0.8125rem;
  }

  .spec-table td {
    font-size: 0.875rem;
  }

  .spec-links a {
    font-size: 0.875rem;
    display: block;
  }
}

/* Extra small mobile breakpoint */
@media (max-width: 375px) {
  .spec-hero .wrap {
    padding: 1.375rem 0.875rem 1.875rem;
  }

  .spec-title {
    font-size: 1.375rem;
  }

  .subtitle {
    font-size: 1.0625rem;
  }

  .spec-section .wrap {
    padding-inline: 0.875rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.4375rem 0.4375rem;
  }

  .spec-table th {
    width: 40%;
    font-size: 0.75rem;
  }

  .spec-table td {
    font-size: 0.8125rem;
  }
}


/* Quotation page sticky footer layout */
.quotation-page {
  background: #fafafa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Ensure quotation page navigation matches LYDUS pages */
.quotation-page .lydus-nav {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  height: 72px;
  font-size: 1rem;
  z-index: 100;
  padding: 0;
}

.quotation-page .lydus-nav .wrap {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
}

.quotation-main {
  padding-block: 5rem;
  flex: 1;
}

.quotation-main .wrap {
  width: min(960px, 100% - 2.5rem);
  margin-inline: auto;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--lydus-border);
  border-radius: 1.5rem;
  padding: 2.75rem;
  box-shadow: 0 0 32px rgba(15, 44, 106, 0.02);
  display: grid;
  gap: 2.5rem;
}

.quote-card__header h1 {
  color: var(--lydus-navy);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.quote-card__header p {
  color: var(--text-secondary, #6b7280);
  font-size: 1.125rem;
  max-width: 90%;
}

.quote-form__grid {
  display: grid;
  gap: 1.125rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.quote-form .field {
  display: flex;
  flex-direction: column;
}

.quote-form .hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form .field-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.quote-form .field-label abbr {
  text-decoration: none;
  color: var(--brand, #bf5841);
}

.quote-form .field-hint {
  font-weight: 400;
  color: #9aa6be;
  font-size: 0.8rem;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  border: 1px solid #d5ddea;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font: inherit;
  color: var(--text-primary, #192e40);
  background: #ffffff;
  transition: border-color var(--transition-fast, 0.2s ease), box-shadow var(--transition-fast, 0.2s ease);
}

.quote-form input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--brand, #bf5841);
  cursor: pointer;
}

.quote-form fieldset.field--products {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.quote-form fieldset.field--products .field-label {
  padding: 0;
}

.quote-form .product-checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin-top: 0.35rem;
}

.quote-form .product-checkbox-list > label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text-primary, #192e40);
  cursor: pointer;
  font-weight: 500;
}

.quote-form .field--span-2 {
  grid-column: span 2;
}

.quote-form .field--products {
  grid-column: 1 / -1;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aa6be;
}

.quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.quote-form select option {
  color: var(--text-primary, #192e40);
  background: #ffffff;
}

.quote-form input:focus-visible,
.quote-form textarea:focus-visible,
.quote-form select:focus-visible {
  border-color: var(--brand, #bf5841);
  box-shadow: 0 0 0 3px rgba(191, 88, 65, 0.15);
  outline: none;
}

.field--textarea {
  grid-column: 1 / -1;
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.quote-form__actions {
  display: flex;
  justify-content: flex-end;
}

.quote-form button {
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  border: none;
  background: var(--brand, #bf5841);
  color: #fff;
  font-weight: var(--font-semibold, 600);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-fast, 0.2s ease), transform var(--transition-fast, 0.2s ease);
}

.quote-form button:hover,
.quote-form button:focus-visible {
  background: #a04634;
  transform: translateY(-1px);
  outline: none;
}

.quote-form button:active {
  transform: translateY(0);
}

/* Tablet - 960px */
@media (max-width: 960px) {
  .quotation-main {
    padding-block: 4rem;
  }
  
  .quote-card {
    border-radius: 1.25rem;
    padding: 2.5rem;
    gap: 2.25rem;
  }
  
  .quote-card__header h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }
  
  .quote-card__header p {
    font-size: 1.0625rem;
  }
  
  .quote-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .quote-form button {
    font-size: 0.95rem;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .quotation-main {
    padding-block: 3.5rem;
  }
  
  .quotation-main .wrap {
    width: min(600px, 100% - 2rem);
  }

  .quote-card {
    border-radius: 1rem;
    padding: 2rem;
    gap: 2rem;
  }
  
  .quote-card__header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .quote-card__header p {
    font-size: 1rem;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-form .field--span-2 {
    grid-column: auto;
  }
  
  .quote-form button {
    font-size: 0.95rem;
    padding: 0.8rem 2.25rem;
  }

  .quote-form__actions {
    justify-content: center;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .nav__brand {
    gap: var(--space-2xs);
  }
  
  .nav__company-name {
    font-size: var(--text-sm);
  }
  
  .quotation-main {
    padding-block: 3rem;
  }
  
  .quotation-main .wrap {
    width: 100% - 1.5rem;
  }

  .quote-card {
    border-radius: 0.875rem;
    padding: 1.75rem;
    gap: 1.75rem;
  }
  
  .quote-card__header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.375rem;
  }
  
  .quote-card__header p {
    font-size: 0.9375rem;
  }

  .quote-form__grid {
    gap: 0.875rem;
  }
  
  .quote-form input,
  .quote-form textarea {
    padding: 0.8rem 0.875rem;
    border-radius: 10px;
  }
  
  .quote-form button {
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
  }
}

/* LYDUS landing-page refinements */
.lydus-wordmark,
.lydus-nav .lydus-nav__tagline p > span {
  color: var(--lydus-blue);
}

body.lydus-page:not(.spec-page):not(.quotation-page) main [data-aos] {
  transform: translate3d(0, 8px, 0) !important;
  transition-duration: 900ms !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.lydus-page:not(.spec-page):not(.quotation-page) main [data-aos].aos-animate {
  transform: none !important;
}

/* Shared SAI Goods footer, based on the homepage footer */
.lydus-footer.site-footer--shared {
  padding: 0;
  background: #ffffff;
}

.site-footer--shared .footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 4rem;
  align-items: start;
  margin: 0;
  padding-block: 3.75rem 2.25rem;
}

.site-footer--shared .footer-brand {
  display: block;
  min-width: 0;
}

.site-footer--shared .footer-brand__row {
  display: block;
}

.site-footer--shared .footer-brand .footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: 1028 / 219;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.5rem;
}

.site-footer--shared .footer-brand p {
  max-width: 310px;
  margin: 0;
  color: #52525b;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer--shared .footer-brand .footer-address {
  margin-top: 0.75rem;
  color: #71717a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer--shared .footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer--shared .footer-column h3 {
  margin: 0 0 1rem;
  color: #bf5841;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer--shared .footer-column p {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.55rem 0 0;
  color: #182b40;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer--shared .footer-column p span {
  color: #182b40;
}

.site-footer--shared .footer-column a {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 400;
}

.site-footer--shared .footer-column p:not(:has(a)) {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 400;
}

.site-footer--shared .footer-column p:not(:has(a)) span {
  color: #182b40;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-footer--shared .footer-column a:hover,
.site-footer--shared .footer-bottom a:hover {
  color: #a84734;
}

.site-footer--shared .footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(24, 43, 64, 0.1);
  color: #52525b;
  font-size: 0.86rem;
}

.site-footer--shared .footer-bottom a {
  color: #52525b;
  text-decoration: none;
}

@media (max-width: 760px) {
  .lydus-products {
    padding-top: 2.5rem;
  }

  .site-footer--shared .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3rem 2rem;
  }

  .site-footer--shared .footer-brand .footer-address {
    font-size: 0.9375rem;
  }

  .site-footer--shared .footer-column h3 {
    margin-bottom: 0.25rem;
  }

  .site-footer--shared .footer-column h3 + p {
    margin-top: 0.25rem;
  }

  .site-footer--shared .footer-column p,
  .site-footer--shared .footer-column a,
  .site-footer--shared .footer-column p:not(:has(a)) {
    font-size: 0.9375rem;
  }

  .site-footer--shared .footer-column p span,
  .site-footer--shared .footer-column p:not(:has(a)) span {
    font-size: 1rem;
  }

  .site-footer--shared .footer-bottom {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    padding-block: 1rem;
    text-align: left;
  }
}

@media (max-width: 560px) {
  body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero {
    padding-block: 2.25rem;
  }

  body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero h1 {
    margin-bottom: 1rem;
    line-height: 1.12;
  }

  body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero p {
    line-height: 1.55;
  }

  .lydus-products__intro h2 {
    font-size: 1.375rem;
    line-height: 1.2;
    text-wrap: wrap;
    word-break: normal;
    overflow-wrap: normal;
  }

  .lydus-products__intro p {
    line-height: 1.45;
  }

  .lydus-records .section-title,
  .lydus-certifications .section-title {
    font-size: 1.375rem;
    line-height: 1.2;
  }
}

@media (min-width: 921px) {
  .lydus-products__intro h2,
  .lydus-records .section-title,
  .lydus-certifications .section-title,
  .lydus-reviews__heading .section-title {
    font-size: 1.75rem;
  }

  .lydus-mission {
    padding-block: 4rem;
  }

  .lydus-products {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }

  .lydus-records {
    padding-top: 3.125rem;
  }

  .lydus-reviews {
    padding-block: 3.125rem;
  }

  .record h3 {
    font-size: 1.375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero__content,
  body.lydus-page:not(.spec-page):not(.quotation-page) .lydus-hero__visual {
    animation: none;
  }

  body.lydus-page:not(.spec-page):not(.quotation-page) main [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lydus-reviews__track {
    transition: none;
  }
}
