/* =========================================================
   SPRAY FOAM INSULATION PAGE
   Based on the visual system from products.css
========================================================== */

/* =========================================================
   PAGE
========================================================== */
.spray-foam-page {
  background: #f5f7f2;
}

/* =========================================================
   HERO
   - mantém a mesma linha visual do hero original
========================================================== */
.products-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0f140f;
}

.products-hero__bg,
.products-hero__overlay,
.products-hero__grid,
.products-hero__image {
  position: absolute;
  inset: 0;
}

.products-hero__bg {
  z-index: -3;
}

.products-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(7, 10, 7, 0.90) 0%, rgba(10, 16, 10, 0.78) 42%, rgba(13, 21, 13, 0.52) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 100%);
  box-shadow: inset 0 -120px 120px rgba(0, 0, 0, 0.18);
}

.products-hero__grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(151, 201, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 201, 58, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.products-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.products-hero__inner {
  max-width: 860px;
  padding: 150px 0 90px;
}

.products-hero__title {
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.paint-line {
  display: block;
  overflow: hidden;
}

.paint-reveal {
  display: inline-block;
}

.title-white {
  color: #ffffff;
}

.title-green {
  color: #97c93a;
}

.products-hero__subtitle {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
}

.products-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.products-hero__actions .btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.products-hero__actions .btn--cta {
  background: #97c93a !important;
  border: 1px solid #97c93a !important;
  color: #111611 !important;
}

.products-hero__actions .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #ffffff !important;
}

.products-hero__actions .btn--cta:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111611 !important;
}

.products-hero__actions .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

/* =========================================================
   GLOBAL SECTION SYSTEM
========================================================== */
.section {
  position: relative;
  padding: 110px 0;
}

.section-heading {
  max-width: 980px;
  margin: 0 0 54px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #97c93a !important;
  line-height: 1;
}

.pill::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #97c93a;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111611;
}

.section-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(17, 22, 17, 0.74);
}

.section--dark {
  background: #111611;
}

.section--dark .section-title {
  color: #ffffff;
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.76);
}

.section--accent {
  background: #111611;
}

.section--accent .section-title {
  color: #ffffff;
}

.section--accent .section-subtitle {
  color: rgba(255, 255, 255, 0.76);
}

/* =========================================================
   INTRO
========================================================== */
.spray-intro {
  background: #f5f7f2;
  border-top: 4px solid #97c93a;
}

.spray-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.spray-intro__card {
  padding: 28px 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 22, 17, 0.10);
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.05);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.spray-intro__card:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.42);
  box-shadow: 0 24px 60px rgba(10, 16, 10, 0.10);
}

.spray-intro__cardTitle {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.08;
  font-weight: 900;
  color: #111611;
}

.spray-intro__cardText {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.78;
  color: rgba(17, 22, 17, 0.76);
}

/* =========================================================
   FOAM TYPES
========================================================== */
.foam-types {
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 110px;
}

.foam-types-shell {
  position: relative;
}

.foam-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.foam-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 30px 30px;
  background: #f5f7f2;
  border: 1px solid rgba(17, 22, 17, 0.10);
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.05);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.foam-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.42);
  box-shadow: 0 24px 60px rgba(10, 16, 10, 0.10);
}

.foam-type-card--featured {
  background: #111611;
  border-color: rgba(151, 201, 58, 0.24);
}

.foam-type-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 14px;
  background: rgba(151, 201, 58, 0.12);
  border: 1px solid rgba(151, 201, 58, 0.28);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #567a17;
}

.foam-type-card--featured .foam-type-card__label {
  background: rgba(151, 201, 58, 0.14);
  border-color: rgba(151, 201, 58, 0.34);
  color: #97c93a;
}

.foam-type-card__title {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111611;
}

.foam-type-card--featured .foam-type-card__title {
  color: #ffffff;
}

.foam-type-card__text {
  margin: 0 0 18px;
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(17, 22, 17, 0.76);
}

.foam-type-card--featured .foam-type-card__text {
  color: rgba(255, 255, 255, 0.78);
}

.foam-type-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.foam-type-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(17, 22, 17, 0.82);
}

.foam-type-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #97c93a;
  transform: translateY(-50%);
}

.foam-type-card--featured .foam-type-card__list li {
  color: rgba(255, 255, 255, 0.82);
}

.foam-type-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 0 !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.foam-type-card .btn--cta {
  background: #97c93a !important;
  border: 1px solid #97c93a !important;
  color: #111611 !important;
}

.foam-type-card .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.16) !important;
  color: #111611 !important;
}

.foam-type-card--featured .btn--ghost {
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

.foam-type-card .btn--cta:hover,
.foam-type-card .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

.foam-type-card--featured .btn--cta:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111611 !important;
}

.foam-types-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.foam-types-dots__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(151, 201, 58, 0.32);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.foam-types-dots__dot.is-active {
  background: #97c93a;
  transform: scale(1.15);
}

/* =========================================================
   APPLICATIONS
   - adaptado do arquivo base
========================================================== */
.applications {
  position: relative;
  margin-top: 18px;
}

.applications .section-heading {
  max-width: 1180px;
  margin: 0 0 28px;
  text-align: left;
}

.applications .section-title {
  margin: 0 0 16px;
  max-width: 1180px;
  color: #ffffff;
}

.applications .section-subtitle {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.applications-shell {
  position: relative;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.application-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(151, 201, 58, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.application-card:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.application-card__image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.application-card__body {
  padding: 24px;
}

.application-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  background: rgba(151, 201, 58, 0.14);
  border: 1px solid rgba(151, 201, 58, 0.26);
  color: #567a17;
}

.application-card__icon svg {
  width: 22px;
  height: 22px;
}

.application-card__title {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.08;
  font-weight: 900;
  color: #111611;
}

.application-card__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(17, 22, 17, 0.78);
}

.applications .section-cta--green {
  margin-top: 56px;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid rgba(17, 22, 17, 0.18);
  background: #97c93a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  text-align: center;
}

.applications .section-cta--green .section-cta__text {
  margin: 0 0 18px;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 800;
  color: #111611;
}

.applications .section-cta--green .section-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.applications .section-cta--green .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.applications .section-cta--green .btn--cta {
  background: #111611 !important;
  border: 1px solid #111611 !important;
  color: #ffffff !important;
}

.applications .section-cta--green .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.42) !important;
  color: #111611 !important;
}

.applications .section-cta--green .btn--cta:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111611 !important;
}

.applications .section-cta--green .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

.applications-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.applications-dots__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(151, 201, 58, 0.32);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.applications-dots__dot.is-active {
  background: #97c93a;
  transform: scale(1.15);
}

/* =========================================================
   BENEFITS
========================================================== */
.spray-benefits {
  background: #f5f7f2;
  padding-top: 24px;
  padding-bottom: 110px;
}

.spray-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.spray-benefits__card {
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 22, 17, 0.10);
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.05);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.spray-benefits__card:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.42);
  box-shadow: 0 24px 60px rgba(10, 16, 10, 0.10);
}

.spray-benefits__title {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.1;
  font-weight: 900;
  color: #111611;
}

.spray-benefits__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.74;
  color: rgba(17, 22, 17, 0.76);
}

/* =========================================================
   COMPARISON
========================================================== */
.materials-comparison {
  background: #ffffff;
  position: relative;
  padding-top: 24px;
  padding-bottom: 110px;
}

.materials-comparison .section-heading {
  max-width: 980px;
  margin: 0 0 28px;
  text-align: left;
}

.comparison-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.comparison-table {
  display: grid;
  min-width: 920px;
  border: 1px solid rgba(17, 22, 17, 0.10);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.06);
}

.comparison-table__head,
.comparison-table__body {
  display: grid;
}

.comparison-table__row {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1fr) minmax(240px, 1.1fr) minmax(220px, 1fr);
}

.comparison-table__cell {
  display: flex;
  align-items: center;
  padding: 20px 18px;
  font-size: 0.95rem;
  line-height: 1.66;
  color: rgba(17, 22, 17, 0.78);
  border-right: 1px solid rgba(17, 22, 17, 0.08);
  border-bottom: 1px solid rgba(17, 22, 17, 0.08);
}

.comparison-table__cell:last-child {
  border-right: 0;
}

.comparison-table__row:last-child .comparison-table__cell {
  border-bottom: 0;
}

.comparison-table__cell--head {
  background: #111611;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table__body .comparison-table__row:nth-child(even) .comparison-table__cell {
  background: #fbfcf9;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(151, 201, 58, 0.28);
  background: rgba(151, 201, 58, 0.12);
  color: #111611;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-note {
  padding: 18px 20px;
  border: 1px solid rgba(17, 22, 17, 0.10);
  background: #f5f7f2;
}

.comparison-note p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(17, 22, 17, 0.76);
}

/* =========================================================
   PROCESS
========================================================== */
.process {
  background: #111611;
  position: relative;
  padding-top: 24px;
  padding-bottom: 110px;
}

.process .section-heading {
  max-width: 980px;
  margin: 0 0 40px;
  text-align: left;
}

.process .section-title {
  color: #ffffff;
}

.process .section-subtitle {
  color: rgba(255, 255, 255, 0.76);
}

.process-shell {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 26px 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 22, 17, 0.08);
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.06);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.40);
  box-shadow: 0 24px 60px rgba(10, 16, 10, 0.12);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  background: rgba(151, 201, 58, 0.12);
  border: 1px solid rgba(151, 201, 58, 0.26);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #567a17;
  text-transform: uppercase;
}

.process-step__title {
  margin: 0 0 12px;
  font-size: 1.32rem;
  line-height: 1.08;
  font-weight: 900;
  color: #111611;
}

.process-step__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.74;
  color: rgba(17, 22, 17, 0.78);
}

.process-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.process-dots__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(151, 201, 58, 0.32);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.process-dots__dot.is-active {
  background: #97c93a;
  transform: scale(1.15);
}

/* =========================================================
   FAQ
========================================================== */
.faq-section {
  padding: 120px 0;
  background: #f5f7f2;
  border-bottom: 2px solid #97c93a;
}

#faq .faqGrid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.45fr);
  gap: 56px;
  align-items: start;
}

#faq .faqLeft .section-label,
#faq .faqLeft .section-title,
#faq .faqLeft .section-subtitle {
  color: #111611;
}

#faq .faqLeft .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #97c93a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

#faq .faqLeft .section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #97c93a;
  flex: 0 0 30px;
}

#faq .faqLeft .section-title {
  margin: 0 0 18px;
  max-width: 420px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #111611;
}

#faq .faqLeft .section-subtitle {
  margin: 0;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(17, 22, 17, 0.76);
}

#faq .faqHelp {
  margin-top: 18px;
}

#faq .underLink {
  display: inline-block;
  margin-top: 0;
  color: #97c93a;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid #97c93a;
  padding-bottom: 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

#faq .underLink:hover {
  color: #111611;
  border-color: #111611;
}

#faq .faqRight {
  padding: 0;
  background: transparent;
  border: none;
}

#faq .faqItem {
  border-bottom: 1px solid rgba(151, 201, 58, 0.6);
}

#faq .faqItem:first-child {
  border-top: 1px solid rgba(151, 201, 58, 0.6);
}

#faq .faqQ {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: #111611;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

#faq .faqQ span:first-child {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #111611;
}

#faq .faqIcon {
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1;
  color: #97c93a;
  transition: transform 0.25s ease, color 0.25s ease;
}

#faq .faqQ[aria-expanded="true"] .faqIcon {
  color: #97c93a;
  transform: rotate(45deg);
}

#faq .faqA {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

#faq .faqA p {
  margin: 0 0 24px;
  color: rgba(17, 22, 17, 0.72);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 760px;
}

#faq .faqA.open {
  max-height: 400px;
}

/* =========================================================
   FINAL CTA
========================================================== */
.final-cta {
  overflow: hidden;
  background: #ffffff;
}

.final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.final-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  background: #181f18;
  border: 1px solid rgba(151, 201, 58, 0.16);
}

.final-cta__title {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #ffffff;
}

.final-cta__text {
  margin: 0 0 24px;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-cta__actions .btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.final-cta__actions .btn--cta {
  background: #97c93a !important;
  border: 1px solid #97c93a !important;
  color: #111611 !important;
}

.final-cta__actions .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

.final-cta__actions .btn--cta:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111611 !important;
}

.final-cta__actions .btn--ghost:hover {
  background: #97c93a !important;
  border-color: #97c93a !important;
  color: #111611 !important;
}

.final-cta__media {
  overflow: hidden;
  border: 1px solid rgba(151, 201, 58, 0.16);
  background: #0f140f;
}

.final-cta__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1366px) {
  .foam-type-card {
    padding: 30px 26px 26px;
  }
}

@media (max-width: 1200px) {
  .spray-intro__grid,
  .spray-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta__layout {
    grid-template-columns: 1fr;
  }

  .final-cta__media {
    min-height: 360px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 96px 0;
  }

  .spray-intro__grid,
  .foam-types-grid,
  .applications-grid,
  .process-grid,
  .spray-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materials-comparison,
  .spray-benefits,
  .foam-types,
  .process {
    padding-bottom: 96px;
  }

  .comparison-table__row {
    grid-template-columns: 1fr;
  }

  .comparison-table__cell--head {
    display: none;
  }

  .comparison-table__body .comparison-table__row {
    border-bottom: 1px solid rgba(17, 22, 17, 0.08);
    padding: 6px 0;
  }

  .comparison-table__body .comparison-table__row:last-child {
    border-bottom: 0;
  }

  .comparison-table__body .comparison-table__cell {
    padding: 12px 16px;
    border-bottom: 0;
  }

  #faq .faqGrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  #faq .faqLeft .section-title,
  #faq .faqLeft .section-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .products-hero__inner {
    padding: 138px 0 82px;
  }

  .products-hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .products-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .products-hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .pill {
    margin-bottom: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .pill::before {
    width: 28px;
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.7rem);
    line-height: 1;
  }

  .section-subtitle {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .spray-intro__grid,
  .spray-benefits__grid {
    grid-template-columns: 1fr;
  }

  .foam-types {
    padding-top: 18px;
    padding-bottom: 88px;
  }

  .foam-types-shell,
  .applications-shell,
  .process-shell {
    overflow: hidden;
  }

  .foam-types-grid,
  .applications-grid,
  .process-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .foam-types-grid::-webkit-scrollbar,
  .applications-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .foam-type-card,
  .application-card,
  .process-step {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .foam-type-card:hover,
  .application-card:hover,
  .process-step:hover {
    transform: none;
  }

  .foam-types-dots,
  .applications-dots,
  .process-dots {
    display: flex;
  }

  .applications .section-heading,
  .process .section-heading {
    margin: 0 0 24px;
  }

  .applications .section-cta--green {
    margin-top: 34px;
    margin-bottom: 24px;
    padding: 24px 20px;
  }

  .applications .section-cta--green .section-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .applications .section-cta--green .section-cta__actions .btn {
    width: 100%;
  }

  .application-card__image {
    height: 220px;
  }

  .process {
    padding-top: 18px;
    padding-bottom: 88px;
  }

  .materials-comparison,
  .spray-benefits {
    padding-top: 18px;
    padding-bottom: 88px;
  }

  .comparison-table {
    min-width: 760px;
  }

  .comparison-table__cell {
    padding: 16px 14px;
    font-size: 0.90rem;
  }

  .comparison-note {
    padding: 16px;
  }

  .comparison-note p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .faq-section {
    padding: 96px 0;
  }

  #faq .faqGrid {
    gap: 28px;
  }

  #faq .faqLeft .section-title {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 0.96;
  }

  #faq .faqQ {
    padding: 20px 0;
    gap: 14px;
  }

  #faq .faqQ span:first-child {
    font-size: 0.95rem;
  }

  #faq .faqA p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .final-cta__content {
    padding: 34px 24px;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .final-cta__media {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .products-hero__inner {
    padding: 128px 0 74px;
  }

  .spray-intro__card,
  .foam-type-card,
  .application-card__body,
  .spray-benefits__card,
  .process-step {
    padding-left: 18px;
    padding-right: 18px;
  }

  .foam-type-card__title,
  .application-card__title,
  .process-step__title {
    font-size: 1.14rem;
  }

  .spray-intro__cardText,
  .foam-type-card__text,
  .application-card__text,
  .spray-benefits__text,
  .process-step__text,
  .comparison-note p,
  #faq .faqA p,
  .final-cta__text {
    font-size: 0.92rem;
  }

  .application-card__image {
    height: 200px;
  }

  .comparison-table {
    min-width: 680px;
  }

  .comparison-badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .faq-section {
    padding: 84px 0;
  }

  #faq .faqQ span:first-child {
    font-size: 0.9rem;
  }

  #faq .faqIcon {
    font-size: 1.3rem;
  }

  .final-cta__content {
    padding: 30px 18px;
  }

  .final-cta__media {
    min-height: 240px;
  }
}