﻿/* ===== detail-production.css ===== */

.outcomes-section {
  padding: 110px clamp(24px, 7vw, 110px);
  background: #10211d;
  color: #fff;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  align-items: start;
}
.outcomes-heading {
  position: sticky;
  top: 120px;
}
.outcomes-heading h2,
.journey-intro h2,
.faq-heading h2 {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.outcomes-heading h2 em,
.journey-intro h2 em {
  color: #d9ff64;
}
.outcomes-heading > p,
.journey-intro > p {
  color: #a9bab4;
  line-height: 1.8;
  max-width: 520px;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.outcome-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  position: relative;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.outcome-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 255, 100, 0.4);
  background: rgba(255, 255, 255, 0.075);
}
.outcome-grid article > span {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.045);
}
.outcome-grid .icon {
  width: 33px;
  height: 33px;
  color: #d9ff64;
  margin-bottom: 45px;
}
.outcome-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.outcome-grid p {
  color: #91a49d;
  font-size: 12px;
  line-height: 1.6;
}
.service-journey {
  padding: 120px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  background: #f2f7f4;
}
.journey-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}
.journey-intro h2 em,
.faq-heading h2 em {
  color: #087f79;
}
.journey-intro > p {
  color: #64746e;
}
.journey-intro .button {
  margin-top: 22px;
}
.journey-list {
  position: relative;
}
.journey-list:before {
  content: "";
  position: absolute;
  left: 27px;
  top: 25px;
  bottom: 25px;
  width: 1px;
  background: linear-gradient(#087f79, #b5ddd6);
}
.journey-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 25px;
  padding: 0 0 42px;
  position: relative;
}
.journey-list article > span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #b6d8d1;
  color: #087f79;
  font-size: 12px;
  font-weight: 800;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(8, 127, 121, 0.1);
}
.journey-list article > div {
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 20px;
  padding: 25px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.journey-list article:hover > div {
  transform: translateX(7px);
  box-shadow: 0 18px 42px rgba(16, 33, 29, 0.08);
}
.journey-list h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.journey-list p {
  color: #687871;
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}
.expert-note {
  padding: 85px clamp(24px, 11vw, 180px);
  background: linear-gradient(120deg, #d9ff64, #c2f1e8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.expert-mark {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: #10211d;
  color: #d9ff64;
  display: grid;
  place-items: center;
  transform: rotate(-5deg);
}
.expert-mark .icon {
  width: 30px;
  height: 30px;
}
.expert-note blockquote {
  max-width: 1050px;
  font:
    500 clamp(25px, 3vw, 43px)/1.4 Georgia,
    serif;
  color: #18312b;
  margin: 38px auto 28px;
}
.expert-note > div:last-child {
  display: flex;
  flex-direction: column;
}
.expert-note small {
  margin-top: 6px;
  color: #52665f;
}
.faq-section {
  padding: 120px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
}
.faq-heading > p {
  color: #687871;
  line-height: 1.75;
}
.faq-list details {
  border-bottom: 1px solid #dbe4df;
  padding: 23px 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef4f1;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: #d9ff64;
}
.faq-list details p {
  color: #687871;
  line-height: 1.75;
  max-width: 720px;
  padding-right: 45px;
  animation: faqIn 0.25s ease;
}
@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
}
.related {
  background: #f7f8f5;
}
.related .product-grid {
  max-width: 1200px;
}
.detail-facts {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}
.detail-facts > div {
  padding: 18px 20px;
  border: 1px solid #dfe7e2;
  border-radius: 15px;
  background: #f7faf8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-facts small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: #74817c;
}
.detail-facts strong {
  font-size: 13px;
  line-height: 1.5;
}
.detail-disclaimer {
  font-size: 12px !important;
  padding: 17px 19px;
  border-left: 3px solid #087f79;
  background: #f1f8f6;
  border-radius: 0 12px 12px 0;
}
@media (max-width: 900px) {
  .outcomes-section,
  .service-journey,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .outcomes-heading,
  .journey-intro {
    position: static;
  }
}
@media (max-width: 600px) {
  .outcomes-section,
  .service-journey,
  .faq-section {
    padding: 80px 20px;
  }
  .outcome-grid {
    grid-template-columns: 1fr;
  }
  .expert-note {
    padding: 70px 20px;
  }
  .journey-list article {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }
  .journey-list article > span {
    width: 45px;
    height: 45px;
  }
  .journey-list:before {
    left: 22px;
  }
}

