/*
 * public.css
 * Public Website — Page-Specific Styles — Bnood Industrial V1
 *
 * Source of truth: docs/02_UX_UI/UI_TOKENS.md, docs/02_UX_UI/DESIGN_SYSTEM.md
 * Task: B02-T04 — Create Public Layout Shell
 * Batch: B02 — UI Foundation & Shared Layouts
 *
 * Rules:
 * - All values must reference tokens from tokens.css.
 * - No Tailwind, Bootstrap, Sass, or CSS framework.
 * - No fake content.
 * - Import order: @import tokens.css → base.css → layout.css → components.css → responsive.css → public.css
 */


/* =========================
   Public UI Foundation
========================= */

.public-page,
.site-main {
  min-width: 0;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
}

.site-header__inner,
.site-footer__grid,
.site-footer__bottom,
.home-hero__grid,
.home-hero__text,
.products-hero__container,
.product-hero__container,
.product-content__layout,
.quote-hero__container,
.quote-form-layout,
.contact-content__layout,
.about-intro__container,
.about-vision__container,
.about-cta__container,
.product-card,
.category-card,
.contact-card,
.quote-form-card,
.product-section-card,
.products-quote-cta__panel,
.product-final-cta__panel,
.thank-you-card {
  min-width: 0;
}

.home-hero__title,
.products-hero__title,
.product-hero__title,
.quote-hero__title,
.contact-hero__title,
.about-hero__title,
.product-card__title,
.category-card__title,
.contact-card__link,
.site-footer__link {
  overflow-wrap: anywhere;
}

.section-bg-white {
  background: var(--color-bg-white);
}

.section-bg-soft {
  background: var(--color-bg-soft);
}

.section-bg-technical {
  background: var(--color-bg-technical);
}

/* =========================
   Public Header
========================= */

.site-header {
  height: var(--header-height-desktop);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 234, 240, 0.90);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__image {
  width: auto;
  max-width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-8);
  flex-shrink: 0;
}

.site-logo__text {
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary-900);
  line-height: 1.1;
}

.site-logo__text span {
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__link {
  font-size: var(--font-body-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-secondary);
  padding: 10px 0;
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-standard);
}

.site-nav__link:hover {
  color: var(--color-primary-900);
}

.site-nav__link[aria-current="page"] {
  color: var(--color-primary-900);
  border-bottom: 2px solid var(--color-primary-900);
}

/* Header Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 36px;
  padding-inline: var(--space-10);
  border-radius: var(--radius-button-sm);
  border: var(--border-strong);
  background: var(--color-bg-white);
  font-family: var(--font-family-base);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    color        var(--duration-fast) var(--ease-standard),
    background   var(--duration-fast) var(--ease-standard);
}

.lang-switch:hover {
  border-color: var(--color-primary-900);
  color: var(--color-primary-900);
  background: var(--color-bg-soft);
}

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-button-sm);
  border: var(--border-soft);
  background: var(--color-bg-white);
  color: var(--color-text-main);
  cursor: pointer;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.48);
  z-index: var(--z-admin-drawer);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
    visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-standard);
  overflow: hidden;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
    visibility: visible;
}

.mobile-nav__panel {
  position: absolute;
  inset-block: 0;
  background: var(--color-bg-white);
  width: min(320px, 88vw);
  padding: var(--space-24) var(--space-20);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-floating);
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

/* RTL: panel slides from the right */
[dir="rtl"] .mobile-nav__panel {
  inset-inline-start: auto;
  inset-inline-end: 0;
  transform: translateX(100%);
}

[dir="ltr"] .mobile-nav__panel {
  inset-inline-start: 0;
  inset-inline-end: auto;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  height: 48px;
  padding-inline: var(--space-12);
  border-radius: var(--radius-12);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  text-decoration: none;
  transition:
    background-color var(--duration-fast) var(--ease-standard),
    color            var(--duration-fast) var(--ease-standard);
}

.mobile-nav__link:hover {
  background: var(--color-bg-muted);
  color: var(--color-primary-900);
}

.mobile-nav__link.is-active {
  background: var(--color-bg-soft);
  color: var(--color-primary-900);
}

.mobile-nav__close {
  align-self: flex-end;
  margin-bottom: var(--space-8);
}

.mobile-nav__lang {
  margin-top: auto;
  padding-top: var(--space-16);
  border-top: var(--border-soft);
}

.mobile-nav__cta {
  margin-top: var(--space-16);
}


/* =========================
   Public Footer
========================= */

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverted);
  padding-block: var(--space-64) 28px;
}

.site-footer__grid {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-40);
}

.site-footer__brand .site-logo__text {
  color: var(--color-text-inverted);
}

.site-footer__tagline {
  font-size: var(--font-body-sm);
  line-height: 1.7;
  color: var(--color-text-inverted-muted);
  margin-top: var(--space-12);
}

.site-footer__title {
  font-size: 15px;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 14px;
  color: var(--color-text-inverted);
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.site-footer__link {
  font-size: var(--font-body-sm);
  line-height: 1.8;
  color: var(--color-text-inverted-muted);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-standard);
}

.site-footer__link:hover {
  color: var(--color-accent-500);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-inline: var(--space-10);
  border: var(--border-dark-soft);
  border-radius: var(--radius-pill);
  color: var(--color-text-inverted-muted);
  font-size: var(--font-caption);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard);
}

.site-footer__social-link:hover {
  border-color: var(--color-accent-500);
  color: var(--color-accent-500);
}

.site-footer__locale-link {
  font-size: var(--font-caption);
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  font-size: var(--font-body-sm);
  line-height: 1.8;
  color: var(--color-text-inverted-muted);
}

.site-footer__bottom {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  border-top: var(--border-dark-soft);
  margin-top: var(--space-40);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.site-footer__copyright {
  font-size: var(--font-caption);
  color: rgba(255, 255, 255, 0.40);
}


/* =========================
   Text Utility Classes (typography tokens)
========================= */

.text-hero {
  font-size: var(--font-hero);
  line-height: var(--line-tight);
  letter-spacing: var(--tracking-hero);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
}

.text-page-title {
  font-size: var(--font-page-title);
  line-height: var(--line-title);
  letter-spacing: var(--tracking-title);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
}

.text-section-title {
  font-size: var(--font-section-title);
  line-height: var(--line-heading);
  letter-spacing: var(--tracking-section);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
}

.text-card-title {
  font-size: var(--font-card-title);
  line-height: var(--line-card);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.text-body-lg {
  font-size: var(--font-body-lg);
  line-height: var(--line-body-loose);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
}

.text-body {
  font-size: var(--font-body);
  line-height: var(--line-body);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
}

.text-body-sm {
  font-size: var(--font-body-sm);
  line-height: var(--line-small);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
}

.text-caption {
  font-size: var(--font-caption);
  line-height: 1.45;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
}

.text-eyebrow {
  font-size: var(--font-caption);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

[dir="rtl"] .text-hero,
[dir="rtl"] .text-page-title,
[dir="rtl"] .text-section-title,
[dir="rtl"] .home-hero__title,
[dir="rtl"] .products-hero__title,
[dir="rtl"] .product-hero__title,
[dir="rtl"] .quote-hero__title,
[dir="rtl"] .contact-hero__title,
[dir="rtl"] .about-hero__title {
  line-height: var(--line-title);
  letter-spacing: 0;
}

/* =========================
   Home Page Styles
========================= */

/* Hero Section */
.home-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-page);
  padding-block: 88px 44px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: var(--space-64);
  align-items: center;
}

.home-hero__text {
  max-width: 620px;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  height: 30px;
  padding-inline: var(--space-12);
  border-radius: var(--radius-pill);
  background: var(--color-accent-100);
  color: var(--color-primary-900);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 18px;
}

.home-hero__title {
  font-size: clamp(var(--font-hero-mobile), 4vw, var(--font-hero));
  line-height: var(--line-heading);
  letter-spacing: -0.8px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary-900);
  margin: 0;
}

.home-hero__subtitle {
  font-size: var(--font-body-lg);
  line-height: var(--line-body-loose);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin-top: 18px;
  max-width: 620px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin-top: 28px;
  flex-wrap: wrap;
}

.home-hero__actions .btn-primary {
  height: 50px;
  padding-inline: 24px;
}

.home-hero__actions .btn-outline {
  height: 50px;
  padding-inline: 22px;
}

.home-hero__support {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: var(--font-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
}

.home-hero__support-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-inline: var(--space-12);
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-neutral-700);
  box-shadow: var(--shadow-subtle);
}

.home-hero__visual {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-card-hover);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-hero__visual--image {
  padding: 0;
}

.home-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.home-hero__floating-card {
  position: absolute;
  inset-inline-end: 24px;
  bottom: 24px;
  width: 210px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--border-soft);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-card);
  padding: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-8);
  text-decoration: none;
}

.home-hero__floating-icon {
  color: var(--color-primary-900);
}

.home-hero__floating-text {
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
}

/* Trust Line */
.home-trust-line {
  padding-block: var(--space-24) var(--space-36);
}

.home-trust-line__card {
  width: min(100% - (var(--container-padding-desktop) * 2), 1040px);
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.88);
  border: var(--border-soft);
  border-radius: var(--radius-20);
  box-shadow: var(--shadow-surface);
  padding: var(--space-16) var(--space-20);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-12);
  align-items: center;
}

.home-trust-line__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  min-width: 0;
  text-align: center;
  font-size: var(--font-body-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-700);
}

.home-trust-line__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--color-primary-900);
}

.home-trust-line__dot {
  display: none;
}

/* Common Section */
.home-section {
  padding-block: var(--section-y-desktop);
}

.home-section-heading {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-40);
  text-align: center;
}

.home-section-heading .text-body,
.home-section-heading .text-body-lg {
  max-width: 640px;
  margin-inline: auto;
}

/* Categories Section */
.home-categories__nav {
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.home-categories__nav::-webkit-scrollbar {
  display: none;
}

.home-categories__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-category-tab {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: var(--space-16);
  border-radius: var(--radius-pill);
  background: var(--color-bg-white);
  border: var(--border-soft);
  color: var(--color-neutral-700);
  font-size: var(--font-body-sm);
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  box-shadow: var(--shadow-surface);
  transition:
    background-color 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard),
    color 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.home-category-tab:hover {
  background: var(--color-bg-soft);
  border-color: var(--color-border-strong);
  transform: translateY(-1px);
}

.home-category-tab.is-active {
  background: var(--color-primary-900);
  border-color: var(--color-primary-900);
  color: var(--color-text-inverted);
}

.home-category-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-20);
}

.home-category-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard);
}

.home-category-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-card-hover);
}

.home-category-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(252, 196, 36, 0.12), rgba(15, 23, 42, 0.04)),
    var(--color-bg-soft);
}

.home-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-category-card__placeholder {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-white);
  color: var(--color-primary-900);
  box-shadow: var(--shadow-surface);
}

.home-category-card__placeholder svg {
  width: 30px;
  height: 30px;
}

.home-category-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--space-20);
}

.home-category-card__title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
}

.home-category-card__desc {
  font-size: var(--font-body-sm);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.home-category-card__cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary-900);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-24);
}

/* Product Card */
.product-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-16);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-default);
}

.product-card__media {
  height: 196px;
  background: var(--color-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.product-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.50;
  pointer-events: none;
}

.product-card__image {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-card__content {
  padding: var(--space-20);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card__code {
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 13px;
  line-height: 1.4;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.2px;
  color: var(--color-primary-900);
}

.product-card__category {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding-inline: 9px;
  border-radius: var(--radius-pill);
  background: var(--color-neutral-100);
  color: var(--color-neutral-700);
  border: var(--border-soft);
  font-size: 12px;
  font-weight: var(--font-weight-extrabold);
}

.product-card__title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0;
}

.product-card__technical-name {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.product-card__description {
  font-size: var(--font-body-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.product-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--color-neutral-50);
  border: var(--border-soft);
  font-size: 13px;
  color: var(--color-text-muted);
}
.product-card__price strong {
  direction: ltr;
  unicode-bidi: isolate;
  color: var(--color-text-main);
}

.product-card__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card__actions .btn {
  height: 42px;
}

.flex-1 {
  flex: 1;
}

/* Quote Process CTA Section */
.products-quote-cta {
  padding-block: 0 var(--section-y-desktop);
}

.products-quote-cta__panel {
  background: var(--color-primary-900);
  color: var(--color-text-inverted);
  border-radius: var(--radius-24);
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-floating);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  position: relative;
}

.products-quote-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.products-quote-cta__content,
.products-quote-cta__actions {
  position: relative;
  z-index: 1;
}

.products-quote-cta__actions {
  display: flex;
  gap: 12px;
}


/* Products Page Hero */
.products-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-page);
  padding-block: var(--section-y-desktop) var(--section-y-compact-desktop);
}

.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.04;
  pointer-events: none;
}

.products-hero__container {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 40px;
  align-items: center;
}

.products-hero__text {
  /* text wrapper */
}

.products-hero__title {
  font-size: clamp(var(--font-page-title-mobile), 3.4vw, var(--font-page-title));
  line-height: var(--line-title);
  letter-spacing: -0.6px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary-900);
  margin: 0;
  max-width: 760px;
}

.products-hero__subtitle {
  font-size: 18px;
  line-height: 1.8;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin-top: 16px;
  max-width: 720px;
}

.products-hero__summary {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.products-hero__summary-title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin-top: 0;
  margin-bottom: 16px;
}

.products-hero__summary-list {
  display: grid;
  gap: 12px;
}

.products-hero__summary-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.products-hero__summary-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary-900);
  margin-top: 3px;
}

/* =========================
   Product Detail Page
========================= */

/* Breadcrumbs */
.product-breadcrumbs {
  padding-block: 22px 0;
}
.product-breadcrumbs__container {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
}
.product-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-muted);
}
.product-breadcrumbs__link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 180ms ease;
}
.product-breadcrumbs__link:hover {
  color: var(--color-primary-900);
}
.product-breadcrumbs__separator {
  color: var(--color-neutral-400);
}
.product-breadcrumbs__current {
  color: var(--color-text-main);
  font-weight: var(--font-weight-extrabold);
}

/* Product Hero */
.product-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y-compact-desktop) var(--section-y-tablet);
  background-color: var(--color-bg-page);
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.04;
  pointer-events: none;
}
.product-hero__container {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  gap: 48px;
  align-items: center;
}
[dir="rtl"] .product-hero__container {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas: "media summary";
}
[dir="ltr"] .product-hero__container {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-areas: "summary media";
}
.product-hero__summary {
  grid-area: summary;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-hero__media { grid-area: media; }

.product-hero__badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.product-hero__code-badge {
  background: var(--color-bg-technical);
  color: var(--color-text-secondary);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--font-family-mono);
  border: 1px solid var(--color-border-soft);
}

.product-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  padding-inline: 12px;
  border-radius: var(--radius-pill);
  background: var(--color-accent-light);
  color: var(--color-primary-900);
  border: 1px solid rgba(252, 196, 36, 0.45);
  font-size: 11px;
  font-weight: var(--font-weight-extrabold);
}

.product-hero__code {
  direction: ltr;
  unicode-bidi: isolate;
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.2px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.product-hero__title,
.product-hero-title {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-primary-900);
  margin: 0;
}

.product-hero__technical-name,
.product-hero-technical {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  font-weight: 600;
  color: #526071;
  font-family: var(--font-family-base);
  margin-top: 8px;
  font-style: normal;
}

.product-hero__description,
.product-hero-description {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  max-width: 680px;
  margin-top: 12px;
}

.product-hero__specs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 8px;
}
.product-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.product-hero__actions .btn {
  height: 50px;
}
.product-hero__actions .btn-primary {
  padding-inline: 24px;
  border-radius: 12px;
  background: var(--color-primary-900);
  color: var(--color-bg-white);
}
.product-hero__actions .btn-outline {
  padding-inline: 22px;
  border-radius: 12px;
  background: var(--color-bg-white);
  color: var(--color-primary-900);
  border: 1px solid var(--color-neutral-300);
}
.product-hero__support-note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.product-price-box {
  width: fit-content;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--color-bg-white);
  border: var(--border-soft);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}
.product-price-box__label {
  font-size: 12px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-muted);
}
.product-price-box__value {
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 24px;
  line-height: 1.25;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary-900);
  margin-top: 4px;
}
.product-price-box__note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-top: 6px;
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-gallery__main {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 0;
  min-height: auto;
  box-shadow: var(--shadow-sm);
}
.product-gallery__main::before {
  display: none;
}
.product-gallery__image {
  width: 92%;
  height: 92%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}
.product-gallery__thumb {
  width: 74px;
  height: 64px;
  flex: 0 0 auto;
  border: var(--border-soft);
  border-radius: 12px;
  background: var(--color-bg-white);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.product-gallery__thumb.is-active {
  border-color: var(--color-primary-900);
  box-shadow: 0 0 0 3px rgba(252, 196, 36, 0.24);
}
.product-gallery__thumb:hover {
  transform: translateY(-1px);
  border-color: var(--color-neutral-300);
}
.product-gallery__thumb img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}
.product-gallery__placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  border: 1px dashed #e3e8f0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--color-neutral-400);
  text-align: center;
}
.product-gallery__placeholder-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.8;
}

/* Quick Specs Strip */
.product-quick-specs {
  padding-block: 0 56px;
}
.product-quick-specs__grid {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.quick-spec-card {
  background: #fff;
  border: 1px solid #e5eaf2;
  border-radius: 18px;
  padding: 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: start;
}
.quick-spec-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f6f8fb;
  color: var(--color-primary-900);
}
.quick-spec-icon svg {
  width: 18px;
  height: 18px;
}
.quick-spec-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}
.quick-spec-value {
  font-size: 18px;
  color: #07101f;
  font-weight: 900;
}

/* Product Content Layout */
.product-content {
  padding-block: var(--space-32) var(--section-y-desktop);
}
.product-content__layout {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
[dir="rtl"] .product-content__layout { grid-template-areas: "main sidebar"; }
[dir="ltr"] .product-content__layout { grid-template-areas: "main sidebar"; }
.product-content__main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}
.product-content__sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 100px;
}

/* Shared Product Section Card */
.product-section-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px;
}
.product-section-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0 0 16px;
}
.product-section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.product-section-body p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin: 0;
}
.product-section-body { display: grid; gap: 14px; }

/* Specs */
.product-specs__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.product-specs__row { border-bottom: var(--border-soft); }
.product-specs__row:last-child { border-bottom: 0; }
.product-specs__label {
  width: 38%;
  padding: 14px 0;
  color: var(--color-text-muted);
  font-weight: var(--font-weight-bold);
}
.product-specs__value {
  padding: 14px 0;
  color: var(--color-text-main);
  font-weight: var(--font-weight-extrabold);
}
.product-specs__value--code {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Applications */
.product-applications__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.application-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--color-neutral-50);
  border: var(--border-soft);
  border-radius: 14px;
  padding: 14px;
}
.application-item__icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary-900);
  margin-top: 2px;
  flex: 0 0 auto;
}
.application-item__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Features */
.product-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  background: var(--color-bg-white);
  border: var(--border-soft);
}
.feature-item__icon {
  width: 20px;
  height: 20px;
  color: #168A5B;
  margin-top: 2px;
  flex: 0 0 auto;
}
.feature-item__title {
  font-size: 15px;
  line-height: 1.45;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
}
.feature-item__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Compatibility */
.compatibility-list { display: grid; gap: 12px; }
.compatibility-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #FFF7E0;
  border: 1px solid rgba(183, 121, 31, 0.25);
  border-radius: 14px;
  color: var(--color-text-secondary);
}
.compatibility-note__icon {
  width: 20px;
  height: 20px;
  color: #B7791F;
  margin-top: 2px;
  flex: 0 0 auto;
}
.compatibility-note span { font-size: 14px; line-height: 1.7; }

/* Downloads */
.product-downloads__list { display: grid; gap: 12px; }
.download-file {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: var(--border-soft);
  border-radius: 14px;
  background: var(--color-neutral-50);
}
.download-file__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-accent-light);
  color: var(--color-primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-file__title {
  font-size: 14px;
  line-height: 1.45;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
}
.download-file__meta {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.download-file__action { height: 38px; padding-inline: 14px; border-radius: 10px; font-size: 13px; font-weight: var(--font-weight-extrabold); }

/* Video */
.product-video__frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-primary-900);
}
.product-video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ Accordion */
.product-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-faq-item {
  cursor: pointer;
  border: 1px solid #e5eaf2;
  border-radius: 14px;
  background: var(--color-bg-white);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}

.product-faq-item:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.product-faq-item.is-open {
  border-color: #94a3b8;
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.product-faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text-main);
  cursor: pointer;
  text-align: start;
}

.product-faq-question-text {
  flex: 1;
}

.product-faq-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #64748b;
  margin-inline-start: 16px;
  transition: transform .25s ease;
}

.product-faq-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.product-faq-item.is-open .product-faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary-900);
}

.product-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.product-faq-item.is-open .product-faq-answer {
  grid-template-rows: 1fr;
}

.product-faq-answer-inner {
  overflow: hidden;
}

.product-faq-answer-text {
  padding: 0 20px 18px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Sidebar Quote Card */
.product-quote-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 22px;
}
.product-quote-card__title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0;
}
.product-quote-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-top: 10px;
}
.product-quote-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.product-quote-card__actions .btn {
  width: 100%;
  height: 46px;
}
.product-quote-card__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: var(--border-soft);
}
.product-quote-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Final CTA Panel */
.product-final-cta { padding-block: 0 var(--section-y-desktop); }
.product-final-cta__panel {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  background: var(--color-primary-900);
  color: var(--color-bg-white);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  position: relative;
}
.product-final-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.product-final-cta__content, .product-final-cta__actions {
  position: relative;
  z-index: 1;
}
.product-final-cta__title {
  font-size: 30px;
  line-height: 1.25;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-bg-white);
  margin: 0;
}
.product-final-cta__body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 10px;
  max-width: 680px;
}
.product-final-cta__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-final-cta__actions .btn { height: 50px; }
.product-final-cta__btn-primary { background: #FCC424; color: #0B0F19; border-color: #FCC424; }
.product-final-cta__btn-outline { color: #FFFFFF; border-color: #FFFFFF; }

/* Inline Style Replacements */
.product-gallery__thumb-icon { width: 24px; height: 24px; }
.product-specs__empty, .product-downloads__empty {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  padding: 16px;
  background: var(--color-neutral-50);
  border-radius: 12px;
  border: 1px dashed var(--color-neutral-300);
}
.product-faq__icon { width: 16px; height: 16px; color: #9CA3AF; }
.product-quote-card__icon { width: 16px; height: 16px; color: #B7791F; }


/* =========================
   Mobile header overrides
========================= */

@media (max-width: 767px) {
  .site-header {
    height: var(--header-height-mobile);
  }

  .site-header__inner {
    width: min(100% - (var(--container-padding-mobile) * 2), var(--container-default));
  }

  .site-nav,
  .site-header__actions .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .site-nav {
    gap: 18px;
  }
}

/* =========================
   Request Quote Page
========================= */

/* Hero */
.quote-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-page);
  padding-block: var(--section-y-desktop) var(--section-y-compact-desktop);
}

.quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.04;
  pointer-events: none;
}

.quote-hero__container {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: var(--space-40);
  align-items: center;
}

.quote-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  height: 30px;
  padding-inline: var(--space-12);
  border-radius: var(--radius-pill);
  background: var(--color-accent-100);
  color: var(--color-primary-900);
  border: 1px solid rgba(252, 196, 36, 0.45);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 18px;
}

.quote-hero__title {
  font-size: clamp(var(--font-page-title-mobile), 3.4vw, var(--font-page-title));
  line-height: var(--line-title);
  letter-spacing: -0.6px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0;
  max-width: 760px;
}

.quote-hero__subtitle {
  font-size: var(--font-body-lg);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-top: 16px;
  max-width: 720px;
}

.quote-hero__info-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-20);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 24px;
}

.quote-hero__info-title {
  font-size: var(--font-body-lg);
  line-height: 1.35;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0 0 16px;
}

.quote-hero__info-list {
  display: grid;
  gap: 12px;
}

.quote-hero__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-body-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.quote-hero__info-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary-900);
  margin-top: 3px;
  flex: 0 0 auto;
}

/* Layout */
.quote-form-section {
  padding-block: var(--space-40) var(--section-y-desktop);
}

.quote-form-layout {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--space-32);
  align-items: start;
}

[dir="rtl"] .quote-form-layout {
  grid-template-areas: "form side";
}

[dir="ltr"] .quote-form-layout {
  grid-template-areas: "form side";
}

.quote-form-main {
  grid-area: form;
  min-width: 0;
}

.quote-form-side {
  grid-area: side;
}

/* Side Panel */
.quote-form-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

.quote-help-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-20);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 22px;
}

.quote-help-card__title {
  font-size: var(--font-body-lg);
  line-height: 1.35;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0;
}

.quote-help-card__body {
  font-size: var(--font-body-sm);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-top: 10px;
}

.quote-help-card__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: var(--border-soft);
}

.quote-help-card__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.quote-help-card__icon {
  width: 18px;
  height: 18px;
  color: var(--color-success-600);
  margin-top: 2px;
  flex: 0 0 auto;
}

.quote-whatsapp-card {
  background: var(--color-primary-900);
  color: var(--color-text-inverted);
  border-radius: var(--radius-20);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.quote-whatsapp-card__title {
  font-size: 17px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.35;
  color: var(--color-text-inverted);
  margin: 0;
}

.quote-whatsapp-card__body {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 8px;
  margin-bottom: 16px;
}

.quote-whatsapp-card .btn {
  width: 100%;
}

/* Form Card */
.quote-form-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-20);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  padding: 36px;
}

.quote-form-card__title {
  font-size: 26px;
  line-height: 1.25;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0;
}

.quote-form-card__intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-top: 10px;
  margin-bottom: 24px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
}

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

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

.quote-field__label {
  display: block;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: var(--color-neutral-700);
  margin-bottom: 8px;
}

.quote-field__required {
  color: var(--color-error-600);
  margin-inline-start: 3px;
}

.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-10);
  font-family: var(--font-family-base);
  font-size: var(--font-body-sm);
  color: var(--color-text-main);
  transition:
    border-color 160ms var(--ease-standard),
    box-shadow 160ms var(--ease-standard),
    background-color 160ms var(--ease-standard);
}

.quote-input,
.quote-select {
  height: 46px;
  padding: 0 14px;
}

.quote-textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
  line-height: 1.65;
}

.quote-input:hover,
.quote-select:hover,
.quote-textarea:hover {
  border-color: var(--color-neutral-400);
}

.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus {
  border-color: var(--color-primary-900);
  box-shadow: 0 0 0 3px rgba(252, 196, 36, 0.24);
  outline: none;
}

.quote-input.is-error,
.quote-select.is-error,
.quote-textarea.is-error {
  border-color: var(--color-error-600);
  box-shadow: 0 0 0 3px rgba(201, 42, 42, 0.10);
}

.quote-input:disabled,
.quote-select:disabled,
.quote-textarea:disabled {
  background-color: var(--color-bg-muted);
  color: var(--color-neutral-400);
  cursor: not-allowed;
}

.quote-field__help {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.quote-field__error {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-error-600);
  margin-top: 6px;
}

.quote-product-code {
  direction: ltr;
  unicode-bidi: isolate;
}

.quote-form__submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 6px;
}

.quote-submit-btn {
  height: 50px;
  padding-inline: 28px;
  border-radius: var(--radius-12);
  background: var(--color-primary-900);
  color: var(--color-text-inverted);
  border: 1px solid var(--color-primary-900);
  font-size: var(--font-body-sm);
  font-weight: var(--font-weight-extrabold);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
  transition:
    background-color 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard),
    transform 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard);
  cursor: pointer;
  font-family: inherit;
}

.quote-submit-btn:hover {
  background: var(--color-primary-950);
  border-color: var(--color-primary-950);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

.quote-submit-btn:focus-visible {
  outline: 3px solid rgba(252, 196, 36, 0.35);
  outline-offset: 2px;
}

.quote-submit-btn.is-loading {
  opacity: 0.85;
  cursor: progress;
  pointer-events: none;
}

.quote-submit-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 0;
}

/* =========================
   Thank You Page
========================= */

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 300px);
  background-color: var(--color-bg-page);
  padding-block: var(--section-y-desktop);
}

.thank-you-container {
  width: min(100% - (var(--container-padding-desktop) * 2), 600px);
  margin-inline: auto;
}

.thank-you-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-20);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thank-you-card--neutral {
  max-width: 500px;
  margin-inline: auto;
  padding: 40px;
}

.thank-you-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.thank-you-card__icon svg {
  width: 36px;
  height: 36px;
}

.thank-you-card__title {
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  line-height: 1.3;
  margin: 0 0 16px;
}

.thank-you-card__title--neutral {
  margin-bottom: 20px;
}

.thank-you-card__message {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  max-width: 480px;
}

.thank-you-card__message--neutral {
  margin-bottom: 30px;
}

.thank-you-card__actions {
  margin-bottom: 32px;
}

.thank-you-card__btn {
  min-width: 200px;
  height: 50px;
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-12);
}

.thank-you-card__footer {
  border-top: var(--border-soft);
  padding-top: 24px;
  width: 100%;
}

.thank-you-card__footer-text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

.thank-you-card__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding-inline: 20px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-10);
  color: var(--color-text-secondary);
  border-color: var(--color-neutral-300);
}

.thank-you-card__whatsapp-btn:hover {
  background: var(--color-bg-muted);
  color: var(--color-text-main);
  border-color: var(--color-neutral-400);
}

.thank-you-card__whatsapp-btn .btn-icon {
  width: 18px;
  height: 18px;
  color: #25D366; /* WhatsApp brand color */
}

/* =========================
   Contact Page
========================= */

.contact-page {
  background-color: var(--color-bg-page);
  padding-bottom: 0;
}

.contact-hero {
  position: relative;
  background-color: var(--color-bg-white);
  padding-block: var(--section-y-desktop) var(--section-y-compact-desktop);
  border-bottom: var(--border-soft);
}

.contact-hero__container {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  text-align: center;
}

.contact-hero__title {
  font-size: clamp(var(--font-page-title-mobile), 3.2vw, 44px);
  line-height: var(--line-title);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.contact-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 auto;
  max-width: 600px;
}

.contact-content {
  padding-block: var(--section-y-compact-desktop) var(--section-y-desktop);
}

.contact-content__layout {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}

[dir="rtl"] .contact-content__layout {
  grid-template-areas: "cards guidance";
}

[dir="ltr"] .contact-content__layout {
  grid-template-areas: "guidance cards";
}

.contact-cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-20);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: transform 160ms var(--ease-standard), box-shadow 160ms var(--ease-standard);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.contact-card--whatsapp {
  background: var(--color-primary-900);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-12);
  background: var(--color-bg-page);
  color: var(--color-primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card--whatsapp .contact-card__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-inverted);
}

.contact-card__title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  margin: 0 0 8px;
}

.contact-card--whatsapp .contact-card__title {
  color: var(--color-text-inverted);
}

.contact-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
  flex-grow: 1;
}

.contact-card--whatsapp .contact-card__text {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card__link {
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-900);
  text-decoration: none;
}

.contact-card__link:hover {
  text-decoration: underline;
}

.contact-card--whatsapp .contact-card__link {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  height: 44px;
  border-radius: var(--radius-10);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-card--whatsapp .contact-card__link:hover {
  background: #20BA5A;
  text-decoration: none;
}

.contact-guidance {
  grid-area: guidance;
  position: sticky;
  top: 100px;
}

.contact-guidance__box {
  background: var(--color-accent-100);
  border-radius: var(--radius-20);
  padding: 36px 32px;
  border: 1px solid rgba(252, 196, 36, 0.4);
}

.contact-guidance__title {
  font-size: 24px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary-900);
  margin: 0 0 16px;
  line-height: 1.3;
}

.contact-guidance__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-neutral-800);
  margin: 0 0 24px;
}

.contact-guidance__btn {
  width: 100%;
  height: 52px;
  font-size: 15px;
}

.contact-icon--rtl-flip {
  transform: scaleX(-1);
}

/* =========================
   About Page
========================= */

.about-page {
  background-color: var(--color-bg-page);
}

.about-hero {
  background-color: var(--color-bg-white);
  padding-block: var(--section-y-desktop) var(--section-y-tablet);
  border-bottom: var(--border-soft);
  text-align: center;
}

.about-hero__container {
  width: min(100% - (var(--container-padding-desktop) * 2), 800px);
  margin-inline: auto;
}

.about-hero__title {
  font-size: clamp(var(--font-page-title-mobile), 3.4vw, var(--font-page-title));
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-title);
  color: var(--color-text-main);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.about-hero__subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
}

.about-intro {
  padding-block: var(--section-y-desktop);
}

.about-intro__container {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
}

.about-intro__content {
  max-width: 820px;
  margin-inline: auto;
}

/* =========================
   Inline Styles Cleanup
========================= */

.product-card__empty-icon {
  color: #9CA3AF;
}
.product-card__empty-text {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 8px;
}
.products-categories-nav {
  padding-block: var(--space-32) var(--space-24);
}
.products-listing {
  padding-block: var(--space-40) var(--section-y-desktop);
}
.products-listing__header {
  text-align: center;
  margin-bottom: 36px;
}
.products-listing__header-text {
  max-width: 680px;
  margin-inline: auto;
}
.products-listing__title {
  font-size: 32px;
  line-height: 1.22;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary-900);
  margin: 0;
}
.products-listing__subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-top: 10px;
  margin-bottom: 0;
}
.products-listing__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.products-quote-cta__title {
  margin-top: 0;
}
.products-quote-cta__desc {
  opacity: 0.8;
  max-width: 480px;
}
.products-quote-cta__desc--no-margin {
  margin-bottom: 0;
}
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-vision {
  padding-block: 0 var(--section-y-desktop);
}

.about-vision__container {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.vision-card {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-20);
  padding: 48px 40px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.vision-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-12);
  background: var(--color-accent-100);
  color: var(--color-primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vision-card__icon svg {
  width: 32px;
  height: 32px;
}

.vision-card__title {
  font-size: 24px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin: 0 0 16px;
}

.vision-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0;
}

.about-cta {
  padding-block: var(--space-40) var(--section-y-desktop);
}

.about-cta__container {
  width: min(100% - (var(--container-padding-desktop) * 2), var(--container-default));
  margin-inline: auto;
}

.about-cta__box {
  background: var(--color-primary-900);
  border-radius: var(--radius-20);
  padding: 64px 48px;
  text-align: center;
  color: var(--color-text-inverted);
}

.about-cta__title {
  font-size: 32px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-inverted);
  margin: 0 0 16px;
}

.about-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}

.about-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* =========================
   Home Missing Sections (QA Fixes)
========================= */
.home-featured {
  padding-bottom: var(--section-y-desktop);
}

.home-process {
  padding-block: var(--section-y-desktop);
}

.home-faq-preview {
  padding-block: var(--section-y-desktop);
}

.home-process .home-section-heading,
.home-faq-preview .home-section-heading {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-40);
}

.home-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-24);
}
.process-step {
  background: var(--color-bg-white);
  padding: var(--space-32);
  border-radius: var(--radius-16);
  border: var(--border-soft);
  position: relative;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
.process-step__number {
  width: 48px;
  height: 48px;
  background: var(--color-primary-100);
  color: var(--color-primary-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-20);
}
.process-step__title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  margin-bottom: var(--space-12);
}
.process-step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.home-faq-preview__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  max-width: 800px;
  margin: 0 auto;
}
.faq-accordion-item {
  background: var(--color-bg-white);
  border: var(--border-soft);
  border-radius: var(--radius-12);
  padding: 16px 20px;
}
.faq-accordion-item__header {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-accordion-item__header .faq-icon,
.faq-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--color-text-muted);
}

.home-page .products-quote-cta {
  margin-block: var(--section-y-compact-desktop);
}
.faq-accordion-item__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-top: var(--space-12);
}

.home-partners__empty {
  padding: var(--space-20);
  background: var(--color-bg-muted);
  border-radius: var(--radius-12);
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  border: 1px dashed var(--color-neutral-300);
}

.home-clients {
  overflow: hidden;
  padding-block: var(--section-y-compact-desktop);
}

.home-clients__heading {
  margin-bottom: var(--space-24);
}

.home-clients__viewport {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-20);
  direction: ltr;
}

.home-clients__track {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: var(--space-8) 0;
  direction: ltr;
}

.home-clients__group {
  display: flex;
  gap: var(--space-16);
  padding-inline-end: var(--space-16);
}

.home-clients__logo-card {
  flex: 0 0 156px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-14);
  border: var(--border-soft);
  border-radius: var(--radius-16);
  background: var(--color-bg-white);
  box-shadow: var(--shadow-surface);
  transition:
    transform var(--duration-normal) var(--ease-standard),
    box-shadow var(--duration-normal) var(--ease-standard),
    border-color var(--duration-normal) var(--ease-standard);
}

.home-clients__logo-card:hover,
.home-clients__logo-card:focus-within {
  transform: translateY(var(--hover-lift-card));
  box-shadow: var(--shadow-dashboard-hover);
  border-color: var(--color-border-default);
}

.home-clients__logo {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.65;
  transition:
    filter var(--duration-normal) var(--ease-standard),
    opacity var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-standard);
}

.home-clients__logo-card:hover .home-clients__logo,
.home-clients__logo-card:focus-within .home-clients__logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.home-clients--static .home-clients__track {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.home-clients--marquee .home-clients__track {
  width: max-content;
  justify-content: flex-start;
  animation: home-clients-marquee 42s linear infinite;
}

.home-clients--marquee .home-clients__viewport:hover .home-clients__track {
  animation-play-state: paused;
}

@keyframes home-clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-clients--marquee .home-clients__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================
   Product Detail Specs Priority (QA Fixes)
========================= */
.product-specs-priority {
  margin-block: var(--space-32);
}
.product-specs-card--featured {
  background: var(--color-bg-white);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-16);
  padding: var(--space-32);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.product-specs-card--featured .product-section-title {
  font-size: 20px;
  margin-bottom: var(--space-24);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--color-neutral-100);
}
.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16) var(--space-32);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding-block: var(--space-12);
  border-bottom: 1px solid var(--color-neutral-100);
  font-size: 14px;
}
.spec-label {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}
.spec-value {
  color: var(--color-text-main);
  font-weight: var(--font-weight-bold);
  text-align: end;
}

/* FAQ Accordion Transitions */
.faq-accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-standard), margin-top 0.3s var(--ease-standard);
  margin-top: 0;
}

.home-partners--hidden {
  display: none;
}
.faq-accordion-item.is-active .faq-accordion-item__body {
  max-height: 500px;
  margin-top: var(--space-12);
}
.faq-accordion-item__header .faq-icon {
  transition: transform 0.3s var(--ease-standard);
}
.faq-accordion-item.is-active .faq-accordion-item__header .faq-icon {
  transform: rotate(180deg);
}

/* CTA Visibility Fix */
.products-quote-cta__content h2,
.products-quote-cta__content p {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

/* Trust bar */
.home-trust-line__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Products Page Spacing Fix */
.products-page .products-quote-cta {
  margin-block: var(--section-y-compact-desktop);
}

/* Premium Industrial Placeholder */
.premium-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-technical);
  overflow: hidden;
}
.premium-placeholder__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.premium-placeholder__shape {
  position: relative;
  width: 140px;
  height: 140px;
  z-index: 1;
  opacity: 0.8;
}
.premium-placeholder__badge {
  position: absolute;
  background: var(--color-bg-white);
  border: var(--border-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}
.premium-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent-500);
}
.premium-placeholder__badge--top {
  top: 30px;
  left: 30px;
}
.premium-placeholder__badge--bottom {
  bottom: 30px;
  right: 30px;
}

/* Products Empty State */
.products-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-64) var(--space-24);
  background: var(--color-bg-white);
  border: 1px dashed var(--color-neutral-300);
  border-radius: var(--radius-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
}
.products-empty-state__icon {
  color: var(--color-neutral-400);
  margin-bottom: var(--space-8);
}
.products-empty-state__title {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-900);
}
.products-empty-state__desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 500px;
  line-height: 1.6;
}
.products-empty-state__actions {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-8);
  justify-content: center;
}

.quote-form__errors {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: var(--radius-8);
  background: #fee2e2;
  color: #991b1b;
}

.quote-form__error-list {
  margin: 0;
  padding-inline-start: 20px;
}

/* =========================
   Final Recovery Pass: scoped tablet layouts
========================= */
@media (max-width: 1023px) {
  .site-header__inner,
  .site-footer__grid,
  .site-footer__bottom,
  .home-hero__grid,
  .home-trust-line__card,
  .products-hero__container,
  .product-breadcrumbs__container,
  .product-hero__container,
  .product-quick-specs__grid,
  .product-content__layout,
  .product-final-cta__panel,
  .quote-hero__container,
  .quote-form-layout,
  .contact-hero__container,
  .contact-content__layout,
  .about-intro__container,
  .about-vision__container,
  .about-cta__container {
    width: min(100% - (var(--container-padding-tablet) * 2), var(--container-default));
  }

  .about-hero__container {
    width: min(100% - (var(--container-padding-tablet) * 2), 800px);
  }

  .thank-you-container {
    width: min(100% - (var(--container-padding-tablet) * 2), 600px);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__grid,
  .products-hero__container,
  .quote-hero__container,
  .contact-content__layout,
  .quote-form-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero__visual {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  [dir="rtl"] .contact-content__layout,
  [dir="ltr"] .contact-content__layout {
    grid-template-areas: "guidance" "cards";
  }

  [dir="rtl"] .quote-form-layout,
  [dir="ltr"] .quote-form-layout {
    grid-template-areas: "form" "side";
  }

  .contact-guidance,
  .quote-form-side {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   Final Recovery Pass: scoped mobile layouts
========================= */
@media (max-width: 767px) {
  .site-header__inner,
  .site-footer__grid,
  .site-footer__bottom,
  .home-hero__grid,
  .home-trust-line__card,
  .products-hero__container,
  .quote-hero__container,
  .quote-form-layout,
  .contact-content__layout,
  .about-hero__container,
  .about-intro__container,
  .about-vision__container,
  .about-cta__container {
    width: min(100% - (var(--container-padding-mobile) * 2), var(--container-default));
  }

  .thank-you-container {
    width: min(100% - (var(--container-padding-mobile) * 2), 600px);
  }

  .site-header__inner {
    gap: 8px;
  }

  .site-logo {
    min-width: 0;
  }

  .site-logo__text {
    font-size: 14px;
    white-space: nowrap;
  }

  .site-logo__image {
    max-width: 36px;
    height: 36px;
  }

  .site-header .site-logo__text span {
    display: none;
  }

  .site-header__actions {
    margin-inline-start: auto;
  }

  .site-header__actions .lang-switch {
    width: 40px;
    padding-inline: 0;
    justify-content: center;
  }

  .site-footer__grid,
  .home-category-cards,
  .home-hero__grid,
  .home-trust-line__card,
  .home-process__grid,
  .product-grid,
  .products-hero__container,
  .products-quote-cta__panel,
  .vision-cards,
  .contact-content__layout,
  .contact-cards,
  .quote-hero__container,
  .quote-form-layout,
  .quote-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__grid {
    gap: var(--space-28);
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero {
    padding-block: var(--section-y-mobile) var(--space-28);
  }

  .home-hero__grid {
    gap: 28px;
  }

  .home-hero__title {
    font-size: 34px;
    line-height: 1.18;
  }

  .home-hero__subtitle {
    font-size: 15px;
  }

  .home-category-cards {
    gap: var(--space-16);
  }

  .home-category-card__content {
    padding: var(--space-16);
  }

  .home-hero__actions,
  .products-hero__actions,
  .products-empty-state__actions,
  .products-quote-cta__actions,
  .about-cta__actions,
  .quote-form__submit-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__actions .btn,
  .products-hero__actions .btn,
  .products-empty-state__actions .btn,
  .products-quote-cta__actions .btn,
  .quote-form__submit-row .btn,
  .contact-card .btn {
    width: 100%;
  }

  .home-hero__support {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-8);
    line-height: 1.6;
  }

  .home-hero__support-pill {
    min-height: 32px;
    font-size: 13px;
  }

  .home-hero__visual {
    width: 100%;
    border-radius: 22px;
    padding: 18px;
  }

  .home-hero__floating-card {
    display: none;
  }

  .home-clients {
    padding-block: var(--section-y-compact-mobile);
  }

  .home-clients__track {
    flex-wrap: nowrap;
    gap: 0;
    padding: var(--space-4) 0;
  }

  .home-clients__group {
    display: flex;
    gap: var(--space-12);
    padding-inline-end: var(--space-12);
  }

  .home-clients--marquee .home-clients__track {
    width: max-content;
    animation: home-clients-marquee 45s linear infinite;
    justify-content: flex-start;
  }

  .home-clients__logo-card {
    flex: 0 1 140px;
    height: 68px;
    padding: var(--space-10);
  }

  .home-clients__logo {
    max-height: 34px;
  }

  .home-trust-line__card {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-10);
    padding: var(--space-16);
  }

  .home-trust-line__item {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .premium-placeholder__shape {
    width: 110px;
    height: 110px;
  }

  .premium-placeholder__badge--top {
    top: 18px;
    left: 18px;
  }

  .premium-placeholder__badge--bottom {
    right: 18px;
    bottom: 18px;
  }

  .home-trust-line__card {
    gap: 12px;
    padding: 16px;
  }

  .home-section,
  .home-process,
  .home-faq-preview {
    padding-block: var(--section-y-mobile);
  }

  .home-process .home-section-heading,
  .home-faq-preview .home-section-heading {
    margin-bottom: var(--space-28);
  }

  .process-step,
  .faq-accordion-item {
    padding: var(--space-20);
  }

  .products-hero,
  .quote-hero,
  .contact-hero,
  .about-hero {
    padding-block: var(--section-y-mobile) var(--section-y-compact-mobile);
  }

  .products-hero__title,
  .quote-hero__title,
  .contact-hero__title,
  .about-hero__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .products-hero__summary,
  .quote-hero__info-card {
    padding: 20px;
  }

  .products-listing__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-listing__title {
    font-size: 27px;
  }

  .products-empty-state {
    padding: var(--space-40) var(--space-18);
  }

  .products-quote-cta__panel {
    gap: var(--space-24);
    padding: 32px 20px;
    text-align: center;
  }

  .vision-card,
  .about-cta__box {
    padding: 32px 22px;
  }

  .about-intro {
    padding-block: var(--section-y-mobile);
  }

  .about-vision {
    padding-bottom: var(--section-y-mobile);
  }

  .about-cta {
    padding-block: 0 var(--section-y-mobile);
  }

  .about-cta__title {
    font-size: 27px;
  }

  .contact-content {
    padding-block: var(--space-32) var(--section-y-mobile);
  }

  .contact-content__layout {
    gap: 24px;
  }

  .contact-card,
  .contact-guidance__box {
    min-width: 0;
    padding: 24px 20px;
  }

  .contact-card__link {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-guidance__btn {
    height: auto;
    min-height: 52px;
    white-space: normal;
  }

  .quote-form-section {
    padding-block: var(--space-24) var(--section-y-mobile);
  }

  .quote-form-layout {
    gap: 24px;
  }

  .quote-form-card,
  .quote-help-card,
  .quote-whatsapp-card {
    min-width: 0;
    padding: 22px 18px;
  }

  .quote-input,
  .quote-select,
  .quote-textarea {
    width: 100%;
    min-width: 0;
  }

  .quote-form__submit-row {
    gap: 12px;
  }

  .quote-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .home-section-heading {
    margin-bottom: var(--space-24);
  }

  .home-hero__title,
  .products-hero__title,
  .product-hero__title,
  .quote-hero__title,
  .contact-hero__title,
  .about-hero__title {
    font-size: clamp(28px, 9vw, var(--font-page-title-mobile));
  }

  .site-main .btn,
  .site-footer .btn {
    min-height: 44px;
    max-width: 100%;
    white-space: normal;
  }
}

/* ============================================================
   Why Choose Us Section
   ============================================================ */
.home-why-choose {
  background: var(--color-bg-soft);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

.why-choose-card {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 23, 42, .12);
}

.why-choose-card__icon {
  width: 48px;
  height: 48px;
  background: #fff4c7;
  color: #080d18;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-heading);
  margin: 0;
}

.why-choose-card__details {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Industries We Serve Section
   ============================================================ */
.home-industries {
  background: #fff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

.industry-card {
  background: #f6f8fb;
  border: 1px solid #e6eaf0;
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 23, 42, .12);
}

.industry-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-heading);
  margin: 0;
}

.industry-card__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Category Filter Chips Scroll
   ============================================================ */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-block: var(--space-24) var(--space-32);
}

.category-filter {
  height: 38px;
  padding-inline: 18px;
  border-radius: 999px;
  border: 1px solid #d9dee8;
  background: #fff;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard),
              background var(--duration-fast) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard);
}

.category-filter:hover {
  border-color: var(--color-primary-900);
  color: var(--color-primary-900);
  transform: translateY(-1px);
}

.category-filter.is-active {
  background: var(--color-primary-900);
  border-color: var(--color-primary-900);
  color: #fff;
}

@media (max-width: 768px) {
  .category-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-inline: 16px;
    padding-bottom: 8px;
    margin-inline: -16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .category-filter {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* ============================================================
   Mobile Sticky Bottom CTA
   ============================================================ */
.product-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .product-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e6eaf0;
    padding: 12px 16px;
    z-index: 999;
    box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.05);
  }
  .product-sticky-cta__inner {
    display: flex;
    gap: 12px;
    width: 100%;
  }
  .product-sticky-cta .btn {
    margin: 0;
  }
  .product-detail-page {
    padding-bottom: 76px;
  }
}

/* ============================================================
   19. ABOUT PAGE REDESIGN
   ============================================================ */
.about-page {
  padding-bottom: var(--space-88);
}

.about-hero {
  background: var(--color-bg-technical);
  border-bottom: 1px solid var(--color-border-soft);
  padding-block: var(--space-64);
  text-align: center;
  margin-bottom: var(--space-48);
}

.about-hero__container {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

.about-hero__title {
  font-size: 38px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-16);
}

.about-hero__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.about-intro {
  margin-bottom: var(--space-64);
}

.about-intro__container {
  width: min(100% - 32px, 800px);
  margin-inline: auto;
  text-align: center;
}

.about-intro__content .section-title {
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-20);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-8);
}

.about-intro__content .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--color-accent);
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.about-vision {
  background: var(--color-bg-technical);
  padding-block: var(--space-64);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  margin-bottom: var(--space-64);
}

.about-vision__container {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-32);
}

.vision-card {
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 20px;
  padding: var(--space-32);
  transition: transform var(--duration-normal) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.vision-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-technical);
  color: var(--color-primary-900);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-20);
}

.vision-card__icon svg {
  width: 24px;
  height: 24px;
}

.vision-card__title {
  font-size: 20px;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-main);
  margin-bottom: var(--space-12);
}

.vision-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.about-help {
  margin-bottom: var(--space-64);
}

.about-help__container {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

.about-help__heading {
  text-align: center;
  margin-bottom: var(--space-40);
}

.about-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-24);
}

.help-card {
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 16px;
  padding: var(--space-24);
  text-align: start;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
  transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.help-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-technical);
  color: var(--color-primary-900);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-16);
}

.help-card__icon svg {
  width: 20px;
  height: 20px;
}

.help-card__title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  margin-bottom: var(--space-8);
}

.help-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.about-industries-section {
  background: #fff;
  margin-bottom: var(--space-64);
}

.about-industries-section__container {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

.about-industries-heading {
  text-align: center;
  margin-bottom: var(--space-40);
}

.about-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-20);
}

.about-industry-card {
  background: var(--color-bg-technical);
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  padding: var(--space-24);
  text-align: start;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-industry-card:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.about-industry-card__title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  margin-bottom: var(--space-8);
}

.about-industry-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.about-cta {
  padding-bottom: var(--space-32);
}

.about-cta__container {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

.about-cta__box {
  background: #080d18;
  color: #fff;
  border-radius: 24px;
  padding: var(--space-48) var(--space-32);
  text-align: center;
  box-shadow: var(--shadow-floating);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(247, 201, 72, 0.08) 0%, transparent 60%);
  z-index: -1;
}

.about-cta__title {
  font-size: 26px;
  font-weight: var(--font-weight-extrabold);
  color: #fff;
  margin-bottom: var(--space-12);
}

.about-cta__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-32);
  max-width: 600px;
  margin-inline: auto;
}

.about-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
}

@media (max-width: 768px) {
  .vision-cards {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
  .about-cta__box {
    padding: var(--space-32) var(--space-20);
  }
  .about-cta__title {
    font-size: 20px;
  }
  .about-cta__text {
    font-size: 14px;
  }
  .about-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .about-cta__actions .btn {
    width: 100%;
  }
}
