/* ─── PRODUCT SECTION ─────────────────────────────────── */
.product-section-macaw {
  display: flex;
  position: relative;
  align-items: flex-start;
  padding-top: 109px;
}

/* LEFT – sticky image panel */
.left {
  width: 44%;
  position: sticky;
  top: 20px;
  height: calc(100vh - 64px);
  overflow: hidden;
  flex-shrink: 0;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-wrapper-inner {
  position: absolute;
  width: 100%;
  height: 400%;
  /* 4 images */
  top: 0;
  left: 0;
  transition: var(--transition-img);
  will-change: transform;
}

.image-wrapper-inner img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* dot nav */
.img-dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
  display: none;
}

.img-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.img-dot.active {
  background: #fff;
  transform: scale(1.5);
}

/* image index counter */
.img-counter {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  display: none;
}

/* RIGHT – scrollable content */
.right {
  width: 50%;
  padding: 20px 56px;
  background: var(--white);
}

.product-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.right h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}

.right .product-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.badge {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--mid);
  letter-spacing: 0.5px;
}

.badge.green {
  border-color: #27ae60;
  color: #27ae60;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* benefit cards */
.benefit {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  /* opacity: 0.38;
    transition: opacity 0.45s ease; */
}

.benefit:last-child {
  border-bottom: none;
}

.benefit.active {
  opacity: 1;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.benefit-icon.blue {
  color: #181717;
  background: none;
}

.benefit-icon.green {
  background: #eafaf1;
}

.benefit-icon.amber {
  background: #fef9e7;
}

.benefit-icon.red {
  background: #fdecea;
}

.benefit-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  color: #000;
}

.benefit-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* specs strip */
.specs-strip {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.spec-item {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.spec-item:last-child {
  border-right: none;
}

.spec-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.spec-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* CTA row */
.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn-primary {
  flex: 1;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #a93226;
}

.btn-outline {
  flex: 1;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}


/* ─── APPLICATION PROCESS ─────────────────────────────── */
.application-section {
  padding: 45px 56px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.app-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.application-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  margin-bottom: 16px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #cf685d;
}

.step-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.step p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  max-width: 180px;
}


/* ─── FAQ SECTION ───────────────────────────── */
.faq-section {
  padding: 60px 56px;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-bottom: 0px;
}

.faq-header .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* .faq-item-products {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  cursor: pointer;
} */

.faq-item {
  border-bottom: 1px solid var(--border);
  /* padding: 18px 0; */
  cursor: pointer;
}

.faq-question {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-right: 20px;
  color: #000;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 26px;
  color: #cf695e;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  padding: 0px 15px;
  padding-bottom: 10px;
}

.p_15 {
  padding: 15px;
}

ul.download_file {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 17px;
}

ul.download_file li a {
  padding: 10px 15px;
  color: #FFF;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 1px;
  display: inline-block;
  border-radius: 35px;
  border: solid 1px #b3b3b3;
  color: #8c3035;
}


@media only screen and (max-width: 600px) {
.right {width: auto;padding: 20px 15px;}
.left {width: auto;height: calc(100vh - 180px);}
.product-section-macaw {display: block; }
.process-track {display: block;}
.product-section-macaw { padding-top: 67px;}
.application-section {padding: 45px 15px;}
.faq-section {padding: 60px 15px;}

}