@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* --- Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 860px design canvas — JS scales to 750px display width (and smaller viewports) */
html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #070605;
  color: #333333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: var(--floating-inquiry-height, 380px);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* App Container (860px design canvas) */
.app-container {
  width: 860px;
  max-width: 860px;
  margin: 0 auto;
  background-color: #0a0907;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
}

/* Screen reader text for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Page Scale Wrapper --- */
.page-scale-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.page-scale-root {
  width: 860px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
}

/* --- SECTION 1: Promo Packages --- */
.promo-section {
  background-color: #f4ece1;
  padding: 60px 24px 60px 24px;
  text-align: center;
}

.promo-header {
  margin-bottom: 40px;
}

.promo-sub-title {
  display: block;
  font-size: 1.75rem;
  color: #1a1512;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.promo-title {
  font-size: 3.5rem;
  color: #1a1512;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.promo-discount-badge {
  display: block;
  background-color: transparent;
  box-shadow: none;
  color: #812f2f;
  font-size: 3.75rem;
  font-weight: 900;
  padding: 0;
  margin-bottom: 36px;
}

.promo-cards-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-card {
  background-color: #ffffff;
  border: 2px solid #812f2f;
  border-radius: 12px;
  padding: 32px 32px 0;
  position: relative;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.promo-card-header {
  margin-bottom: 12px;
}

.promo-card-brand {
  font-size: 1.5rem;
  color: #812f2f;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-card-name {
  font-size: 3.5rem;
  color: #1a1512;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.promo-card-image-wrap {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.promo-badge {
  position: absolute;
  top: -24px;
  right: 0;
  background-color: #812f2f;
  color: #ffffce;
  font-size: 2.5rem;
  font-weight: 700;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 6px 16px rgba(129, 47, 47, 0.35);
  z-index: 10;
}

.promo-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 0 4px;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(129, 47, 47, 0.15);
}

.promo-card-title-group {
  display: flex;
  flex-direction: column;
}

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.promo-card:hover .promo-card-image img {
  transform: scale(1.05);
}

.promo-multi-images {
  gap: 12px;
}

.box-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.box-small {
  width: 90px;
  height: auto;
}

.plus-icon {
  font-size: 1.5rem;
  color: #812f2f;
  font-weight: 700;
  margin: 0 4px;
}

.box-grid-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.box-tiny {
  width: 65px;
  height: auto;
}

.box-group-horizontal {
  display: flex;
  gap: 6px;
}

.promo-original-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.125rem;
  color: #8c8986;
  margin: 12px 0 8px;
}

.promo-original-price .original-label {
  font-weight: 500;
}

.promo-original-price .original-value {
  text-decoration: line-through;
  font-weight: 500;
}

.promo-price-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #812f2f;
  padding: 20px 32px;
  margin: 0 -32px -2px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.promo-price-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-label {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
}

.discount-rate {
  font-size: 3.125rem;
  color: #ffffff;
  font-weight: 900;
}

.price-value {
  font-size: 3.125rem;
  color: #ffff00;
  font-weight: 900;
}

/* --- SECTION 2: Premium Supporters --- */
.supporters-section {
  background-color: #0a0907;
  padding: 80px 24px;
  text-align: center;
  color: #ffffff;
}

.supporters-banner-wrapper {
  position: relative;
  width: 100%;
}

.supporters-header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0 20px;
}

.supporters-badge {
  display: inline-block;
  font-size: 2.5rem;
  color: #1a1512;
  background-color: #f4ece1;
  border: none;
  padding: 10px 32px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.supporters-title {
  font-size: 5.3125rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.supporters-subtitle-gold {
  font-size: 2.5rem;
  color: #ffff00;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.supporters-tagline {
  font-size: 1.875rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.supporters-hero-image {
  width: 100%;
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: 12px;
}

.supporters-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.supporters-star-wrapper {
  position: relative;
  width: 100%;
}

.supporters-star-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.supporters-star-image img {
  width: 100%;
  height: auto;
  display: block;
}

.supporters-star-wrapper .supporters-list-container {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 720px;
  z-index: 10;
  padding: 0 24px;
  box-sizing: border-box;
}

.supporters-names-list {
  list-style: none;
  font-size: 1.125rem;
  color: #b0afae;
  line-height: 1.85;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.celeb-shots-tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 1.375rem;
  color: #d6a05e;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-bottom: 1.5px solid #d6a05e;
  padding-bottom: 4px;
}

/* --- SECTION 3: Celeb/Customer Reviews --- */
.reviews-section {
  background-color: #f4ece1;
  padding: 80px 24px;
  text-align: center;
}

.reviews-header {
  margin-bottom: 48px;
}

.stars-rating {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
}

.reviews-sub-title {
  display: block;
  font-size: 2.8125rem;
  color: #1a1512;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.reviews-title {
  font-size: 4.0625rem;
  color: #1a1512;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.reviews-card-container {
  max-width: 860px;
  margin: 0 auto 60px auto;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 44px 52px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  height: 540px;
  position: relative;
  box-sizing: border-box;
}

.reviews-slider-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.review-row {
  height: 150px;
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
  box-sizing: border-box;
  padding: 14px 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.25;
  transform: scale(0.96);
  filter: blur(0.5px);
}

.review-row.active {
  opacity: 1;
  transform: scale(1.02);
  filter: none;
}

.review-age-badge {
  background-color: #841c1c;
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 24px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.review-row.active .review-age-badge {
  background-color: #841c1c;
  color: #ffffff;
}

.review-text-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-headline {
  font-size: 1.75rem;
  color: #a8a5a2;
  font-weight: 700;
  transition: color 0.4s ease;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.review-row.active .review-headline {
  color: #1a1512;
}

.review-description {
  font-size: 1.625rem;
  color: #c4c4c2;
  line-height: 1.45;
  font-weight: 400;
  transition: color 0.4s ease;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.review-row.active .review-description {
  color: #5c5956; /* Dark description when active */
}

.reviews-footer-callout {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.reviews-footer-title {
  font-size: 3.875rem;
  color: #494242;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.reviews-footer-highlight {
  color: #841c1c;
}

.reviews-product-banner {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.reviews-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SECTION 1: New Hero Section --- */
.hero-section-new {
  width: 100%;
  background-color: #0b0907;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
}

.hero-banner-img-container {
  width: 100%;
  aspect-ratio: 860 / 1804;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-wrapper .hero-text-block {
  position: absolute;
  bottom: 110px;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
}

.hero-brand-eng {
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  display: block;
}

.hero-brand-kor {
  font-size: 4.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.3;
}

.hero-brand-tagline {
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

/* --- SECTION 2: Problem / Concern Section --- */
.concern-section {
  background-color: #f4ece1;
  padding: 130px 48px;
  text-align: center;
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: 3.75rem;
  color: #1a1512;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.concern-section-title .concern-title-line {
  display: inline-block;
}

.concern-section-title .concern-title-line-1 {
  animation: concern-title-swap-1 1.8s ease-in-out infinite;
}

.concern-section-title .concern-title-line-2 {
  animation: concern-title-swap-2 1.8s ease-in-out infinite;
}

@keyframes concern-title-swap-1 {
  0%, 49% { color: #919191; }
  50%, 100% { color: #b14a28; }
}

@keyframes concern-title-swap-2 {
  0%, 49% { color: #b14a28; }
  50%, 100% { color: #919191; }
}

.section-subtitle {
  font-size:2.2rem;
  color: #59524c;
  font-weight: 400;
}

.cards-grid {
  display: flex;
  gap: 0;
  margin: 0 -24px 60px;
  width: calc(100% + 48px);
}

.card-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  border: 4px solid #919191;
  box-sizing: border-box;
  transition: border-color 0.35s ease;
}

.card-item + .card-item {
  margin-left: -4px;
}

.card-item.active {
  border-color: #b14a28;
  position: relative;
  z-index: 1;
}

.card-img-container {
  width: 100%;
  aspect-ratio: 366 / 520;
  overflow: hidden;
  border: none;
  box-sizing: border-box;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.card-footer {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 20px 8px;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #919191;
  transition: background-color 0.35s ease;
}

.card-item.active .card-footer {
  background-color: #b14a28;
}

.section-conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.warning-text {
  font-size: 2.8125rem;
  color: #1a1512;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.checkmark-container {
  margin-bottom: 16px;
  cursor: pointer;
}

.checkmark-svg {
  width: 86px;
  height: 86px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checkmark-container:hover .checkmark-svg {
  transform: scale(1.15) rotate(4deg);
}

.solution-text {
  font-size: 2.2rem;
  color: #1a1512;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.solution-highlight {
  font-size: 3.125rem;
  color: #1a1512;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* --- SECTION 3: Brand Intro Section --- */
.brand-intro-section {
  width: 100%;
  aspect-ratio: 860 / 2026;
  background-image: url('img/01.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8% 4% 10% 4%;
  color: #ffffff;
}

.brand-intro-content {
  width: 100%;
  text-align: center;
  z-index: 10;
}

.brand-intro-top {
  margin-top: 24px;
}

.brand-intro-subtitle {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.brand-intro-title {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 32px;
}

.vertical-divider {
  width: 1px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 32px;
}

.brand-product-eng {
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  display: block;
}

.brand-product-kor {
  font-size: 4.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
}

.brand-product-tagline {
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.pill-ingredients-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}

.pill-item {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 48px;
  padding: 10px 28px;
  font-size: 2.5rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.05em;
}

.brand-bottom-callout {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* --- SECTION 4: Value Proposition 2 (Combined with Capsule Detail) --- */
.value-prop-section {
  width: 100%;
  aspect-ratio: 860 / 2322;
  background-image: url('img/02.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10% 4% 8% 4%;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

.value-prop-header {
  margin-top: 10px;
  margin-bottom: 66px;
  z-index: 10;
}

.value-prop-title {
  font-size: 4.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.value-prop-summary {
  margin: 145px auto 0;
  max-width: 720px;
  padding: 0 24px;
  text-align: center;
}

.overlay-intro {
  font-size: 2.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.overlay-emphasis {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.capsule-detail-block {
  z-index: 10;
  margin-top: 20px;
}

.value-prop-section .capsule-desc-wrapper {
  margin-bottom: 40px;
  line-height: 1.8;
}

.value-prop-section .capsule-desc-sub {
  font-size: 2.5rem;
  color: #c4c4c2;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-prop-section .capsule-desc-main {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.value-prop-section .capsule-conclusion {
  max-width: 680px;
  margin: 0 auto;
}

.value-prop-section .capsule-conclusion-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* --- SECTION 6: Detailed Ingredients (Why Gac) --- */
.why-gac-section {
  background-color: #0a0907;
  padding: 80px 0 0 0;
  text-align: center;
}

.why-gac-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.why-gac-title {
  font-size: 4.0625rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 18px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.panels-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #0a0907;
  max-width: 770px;
  margin: 0 auto;
}

.panel-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #0a0907;
}

/* Panel Intro Block for point01.jpg backdrop */
.panel-intro-block {
  width: 100%;
  aspect-ratio: 772 / 1328;
  background-image: url('img/point01.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12% 6%;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.panel-intro-block .panel-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
  color: #d6a05e;
  font-family: Georgia, serif;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  margin-top: 10px;
}

.panel-intro-block .panel-heading {
  font-size: 3.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 28px;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.panel-intro-block .panel-heading .highlight-bg {
  background-color: #fff200;
  color: #1a1512;
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  letter-spacing: -0.05em;
}

.panel-intro-block .panel-subheading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: -0.05em;
}

.panel-intro-block .panel-subheading .highlight-gold {
  color: #ffeb3b;
  letter-spacing: -0.05em;
}

.panel-intro-block .panel-description {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.7;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: -0.05em;
}

.panel-intro-block .panel-description strong {
  font-weight: 700;
}

/* Panel 02 with point02.jpg backdrop */
.detail-panel-02 {
  width: 100%;
  aspect-ratio: 772 / 1271;
  background-image: url('img/point02.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12% 6% 6% 6%;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.detail-panel-02 .panel-02-content {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.detail-panel-02 .panel-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
  color: #d6a05e;
  font-family: Georgia, serif;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  margin-top: 10px;
}

.detail-panel-02 .panel-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffe8b8;
  line-height: 1.35;
  margin-bottom: 0;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.detail-panel-02 .panel-heading .highlight-gold {
  color: #ffe8b8;
  letter-spacing: -0.06em;
}

.detail-panel-02 .panel-02-description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-panel-02 .panel-02-description .desc-line1 {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.detail-panel-02 .panel-02-description .desc-line2 {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: -0.05em;
}

/* Panel 03, 04, 05-doctor, and 05-factory grouped backdrop styling */
.detail-panel-03,
.detail-panel-04,
.detail-panel-05-doctor,
.detail-panel-05-factory {
  width: 100%;
  aspect-ratio: 772 / 1270;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12% 6% 6% 6%;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.detail-panel-03 { background-image: url('img/point03.jpg'); }
.detail-panel-04 { background-image: url('img/point04.jpg'); }
.detail-panel-05-doctor { background-image: url('img/point05.jpg'); }
.detail-panel-05-factory { background-image: url('img/point06.jpg'); }

.detail-panel-03 .panel-03-content,
.detail-panel-04 .panel-04-content,
.detail-panel-05-doctor .panel-05-doctor-content,
.detail-panel-05-factory .panel-05-factory-content {
  width: 100%;
  max-width: 670px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.detail-panel-03 .panel-num,
.detail-panel-04 .panel-num,
.detail-panel-05-doctor .panel-num,
.detail-panel-05-factory .panel-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
  color: #d6a05e;
  font-family: Georgia, serif;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  margin-top: 10px;
}

.detail-panel-03 .panel-heading,
.detail-panel-04 .panel-heading,
.detail-panel-05-doctor .panel-heading,
.detail-panel-05-factory .panel-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffe8b8;
  line-height: 1.35;
  margin-bottom: 0;
  letter-spacing: -0.05em;
}

.detail-panel-03 .panel-03-description,
.detail-panel-04 .panel-04-description,
.detail-panel-05-doctor .panel-05-doctor-description,
.detail-panel-05-factory .panel-05-factory-description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-panel-03 .desc-line1,
.detail-panel-04 .desc-line1,
.detail-panel-05-doctor .desc-line1,
.detail-panel-05-factory .desc-line1 {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.detail-panel-03 .desc-line2,
.detail-panel-04 .desc-line2,
.detail-panel-05-factory .desc-line2 {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.detail-panel-05-doctor .doctor-signature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.detail-panel-05-doctor .doc-title {
  font-size: 2.2rem;
  color: #a09e9c;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.detail-panel-05-doctor .doc-name {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px solid #d6a05e;
  padding-bottom: 2px;
  letter-spacing: -0.05em;
}

.panel-text-content {
  padding: 80px 24px 44px 24px;
  text-align: center;
  background-color: #0a0907;
}

.panel-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #d6a05e;
  font-family: Georgia, serif;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.panel-heading {
  font-size: 2.8125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.panel-photo-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #0a0907;
}

.panel-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.panel-item:hover .panel-img {
  transform: scale(1.04);
}

/* --- SECTION 7: Recommendation Section --- */
.recommend-section {
  background-color: #f4ece1;
  padding: 120px 48px;
  text-align: center;
}

.recommend-banner-wrapper {
  margin-bottom: 28px;
}

.recommend-banner {
  background-color: #b44322;
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 40px;
  display: inline-block;
  position: relative;
  box-shadow: 0 8px 24px rgba(180, 67, 34, 0.16);
  letter-spacing: -0.01em;
  animation: recommend-bubble-float 2.5s ease-in-out infinite;
}

@keyframes recommend-bubble-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.recommend-banner::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #b44322 transparent transparent transparent;
}

.recommend-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1a1714;
  margin: 0 0 48px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto;
  max-width: 760px;
  text-align: left;
}

.recommend-card {
  background-color: #ffffff;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 2px solid rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  animation: recommend-card-bg-wave 5.4s ease-in-out infinite;
}

.recommend-card:nth-child(1) { animation-delay: 0s; }
.recommend-card:nth-child(2) { animation-delay: 0.9s; }
.recommend-card:nth-child(3) { animation-delay: 1.8s; }
.recommend-card:nth-child(4) { animation-delay: 2.7s; }
.recommend-card:nth-child(5) { animation-delay: 3.6s; }
.recommend-card:nth-child(6) { animation-delay: 4.5s; }

@keyframes recommend-card-bg-wave {
  0%, 14%, 100% {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.04);
  }
  4%, 10% {
    background-color: #841c1c;
    border-color: #841c1c;
  }
}

.recommend-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #b44322;
  animation: recommend-check-wave 5.4s ease-in-out infinite;
}

.recommend-card:nth-child(1) .recommend-check { animation-delay: 0s; }
.recommend-card:nth-child(2) .recommend-check { animation-delay: 0.9s; }
.recommend-card:nth-child(3) .recommend-check { animation-delay: 1.8s; }
.recommend-card:nth-child(4) .recommend-check { animation-delay: 2.7s; }
.recommend-card:nth-child(5) .recommend-check { animation-delay: 3.6s; }
.recommend-card:nth-child(6) .recommend-check { animation-delay: 4.5s; }

@keyframes recommend-check-wave {
  0%, 14%, 100% { color: #b44322; }
  4%, 10% { color: #ffffff; }
}

.recommend-desc {
  font-size: 2.2rem;
  color: #332d28;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.4;
  animation: recommend-desc-wave 5.4s ease-in-out infinite;
}

.recommend-card:nth-child(1) .recommend-desc { animation-delay: 0s; }
.recommend-card:nth-child(2) .recommend-desc { animation-delay: 0.9s; }
.recommend-card:nth-child(3) .recommend-desc { animation-delay: 1.8s; }
.recommend-card:nth-child(4) .recommend-desc { animation-delay: 2.7s; }
.recommend-card:nth-child(5) .recommend-desc { animation-delay: 3.6s; }
.recommend-card:nth-child(6) .recommend-desc { animation-delay: 4.5s; }

@keyframes recommend-desc-wave {
  0%, 14%, 100% { color: #332d28; }
  4%, 10% { color: #ffffff; }
}

/* --- SECTION 8: Brand Slogan Section --- */
.slogan-section {
  width: 100%;
  aspect-ratio: 860 / 1406;
  background-image: url('img/last.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.slogan-text-container {
  padding: 0 24px 10%;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.slogan-text-line1,
.slogan-text-line2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
}

.slogan-text-line1 {
  margin-bottom: 0;
}

/* --- Floating Inquiry Form --- */
.floating-inquiry-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  max-width: 860px;
  max-height: calc(100dvh - env(safe-area-inset-top, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #88301b;
  padding: 28px 40px calc(24px + env(safe-area-inset-bottom, 0px));
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.inquiry-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.form-label {
  width: 4.5em;
  min-width: 4.5em;
  max-width: 4.5em;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  text-align: left;
  white-space: nowrap;
  padding-top: 12px;
}

.form-field-wrap {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.form-input.is-error {
  border-color: #ffd18a;
  box-shadow: 0 0 0 1px rgba(255, 209, 138, 0.35);
}

.form-error-msg {
  margin: 4px 0 0;
  color: #ffe8b8;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 600;
}

.form-row.is-error .form-label {
  color: #ffe8b8;
}

.form-radio-group.is-error .radio-label {
  color: #ffe8b8;
}

.form-input {
  width: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  outline: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 3px;
  height: 44px;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 400;
}

.form-row[data-field="gender"] {
  align-items: center;
}

.form-row[data-field="gender"] .form-label {
  padding-top: 0;
}

.form-radio-group {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 44px;
  color: #ffffff;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  position: relative;
}

.custom-radio {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-label input[type="radio"]:checked + .custom-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.form-consent-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  width: 100%;
}

.form-consent-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 0.9375rem;
  margin-top: 2px;
}

.form-consent-error {
  text-align: right;
}

.form-consent-row.is-error .consent-checkbox-label,
.form-consent-row.is-error .consent-detail-link {
  color: #ffe8b8;
}

.form-consent-row.is-error .custom-checkbox {
  border-color: #ffd18a;
}

.consent-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
}

.consent-checkbox-label input[type="checkbox"] {
  display: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  display: inline-block;
  position: relative;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.consent-checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
  content: '✓';
  position: absolute;
  top: -4px;
  left: 1px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: bold;
}

.consent-detail-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  font-weight: 400;
}

.consent-detail-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --- Privacy Consent Modal --- */
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.consent-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.consent-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.consent-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background-color: #1c1917;
  color: #f5f0ea;
  border: 1px solid rgba(214, 160, 94, 0.35);
  border-radius: 12px;
  padding: 32px 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.consent-modal.is-open .consent-modal-dialog {
  transform: translateY(0);
}

.consent-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.consent-modal-close:hover {
  color: #ffffff;
}

.consent-modal-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #d6a05e;
  margin: 0 0 20px;
  padding-right: 32px;
  letter-spacing: -0.02em;
}

.consent-modal-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.consent-modal-body p {
  margin: 0 0 16px;
}

.consent-modal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 0.875rem;
}

.consent-modal-table th,
.consent-modal-table td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.consent-modal-table th {
  width: 90px;
  background-color: rgba(214, 160, 94, 0.12);
  color: #d6a05e;
  font-weight: 700;
  white-space: nowrap;
}

.consent-modal-confirm {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  background-color: #d6a05e;
  color: #1c1917;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.consent-modal-confirm:hover {
  background-color: #e8b872;
}

body.modal-open {
  overflow: hidden;
}

.submit-btn {
  background-color: #ffffff;
  color: #000000;
  font-size: 1.375rem;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 10px 16px;
  width: 100%;
  cursor: pointer;
  margin-top: 4px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: -0.01em;
}

.submit-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* --- Footer --- */
.main-footer {
  background-color: #050403;
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 670px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 1.375rem;
  color: #8c8986;
  margin-bottom: 8px;
  font-weight: 500;
}

.footer-info {
  font-size: 1.375rem;
  color: #5c5956;
  line-height: 1.5;
}

/* --- Scroll Animation Classes --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Concern Checklist --- */
.concern-checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 36px auto;
  text-align: left;
  padding: 0 24px;
  box-sizing: border-box;
}

.checklist-box {
  background-color: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: checklist-bg-wave 5.4s ease-in-out infinite;
}

.checklist-box:nth-child(1) { animation-delay: 0s; }
.checklist-box:nth-child(2) { animation-delay: 0.9s; }
.checklist-box:nth-child(3) { animation-delay: 1.8s; }
.checklist-box:nth-child(4) { animation-delay: 2.7s; }
.checklist-box:nth-child(5) { animation-delay: 3.6s; }
.checklist-box:nth-child(6) { animation-delay: 4.5s; }

@keyframes checklist-bg-wave {
  0%, 14%, 100% {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
  }
  4%, 10% {
    background-color: #ffffff;
    border-color: #ffffff;
  }
}

.checkmark-box {
  font-size: 2.2rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #d6a05e;
  animation: checklist-check-wave 5.4s ease-in-out infinite;
}

.checklist-box:nth-child(1) .checkmark-box { animation-delay: 0s; }
.checklist-box:nth-child(2) .checkmark-box { animation-delay: 0.9s; }
.checklist-box:nth-child(3) .checkmark-box { animation-delay: 1.8s; }
.checklist-box:nth-child(4) .checkmark-box { animation-delay: 2.7s; }
.checklist-box:nth-child(5) .checkmark-box { animation-delay: 3.6s; }
.checklist-box:nth-child(6) .checkmark-box { animation-delay: 4.5s; }

@keyframes checklist-check-wave {
  0%, 14%, 100% { color: #d6a05e; }
  4%, 10% { color: #b14a28; }
}

.checklist-text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  animation: checklist-text-wave 5.4s ease-in-out infinite;
}

.checklist-box:nth-child(1) .checklist-text { animation-delay: 0s; }
.checklist-box:nth-child(2) .checklist-text { animation-delay: 0.9s; }
.checklist-box:nth-child(3) .checklist-text { animation-delay: 1.8s; }
.checklist-box:nth-child(4) .checklist-text { animation-delay: 2.7s; }
.checklist-box:nth-child(5) .checklist-text { animation-delay: 3.6s; }
.checklist-box:nth-child(6) .checklist-text { animation-delay: 4.5s; }

@keyframes checklist-text-wave {
  0%, 14%, 100% { color: #ffffff; }
  4%, 10% { color: #1a1512; }
}

/* --- Expanded Panel 01 Styles --- */
.panel-subheading {
  font-size: 2.2rem;
  color: #d6a05e;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 18px;
  margin-bottom: 14px;
  letter-spacing: -0.05em;
}

.panel-description {
  font-size: 2.2rem;
  color: #b0afae;
  line-height: 1.65;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto;
  letter-spacing: -0.05em;
}

.panel-capsules-checklist {
  width: 100%;
  aspect-ratio: 772 / 966;
  background-size: cover;
  background-position: center;
  position: relative;
  box-sizing: border-box;
  padding: 12% 10% 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
}

.capsules-checklist-content {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.capsules-checklist-title {
  font-size: 3.6rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 3px;
  width: 100%;
  text-align: center;
}

.capsules-checklist-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}

.capsules-checklist-items li {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  letter-spacing: -0.05em;
  width: auto;
  text-align: left;
}

.bullet-check-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffebc1;
  color: #b44322;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.375rem;
  flex-shrink: 0;
}

.panel-history-section {
  width: 100%;
  background-color: #050403; /* very dark black background */
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 60px;
}

.history-image-wrapper {
  width: 100%;
}

.history-img {
  width: 100%;
  height: auto;
  display: block;
}

.history-content-block {
  width: 100%;
  padding: 70px 0;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.panel-history-section .history-title {
  font-size: 3.125rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.history-quote-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history-quote-details .quote-intro {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 400;
}

.history-quote-details .quote-highlight {
  font-size: 2.2rem;
  color: #ffeb3b;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.history-quote-details .quote-desc-text {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -0.05em;
}

.history-quote-details .quote-footer-text {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.panel-cites-section {
  width: 100%;
  background-color: #050403; /* very dark black background */
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 60px;
}

.cites-image-wrapper {
  width: 100%;
}

.cites-img {
  width: 100%;
  height: auto;
  display: block;
}

.cites-content-block {
  width: 100%;
  padding: 48px 6% 0 6%;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.panel-cites-section .cites-title {
  font-size: 3.125rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cites-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cites-details .cites-desc-text {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -0.05em;
}

.cites-details .cites-desc-text strong {
  font-weight: 700;
}

.cites-details .cites-desc-text .highlight-gold {
  color: #ffeb3b; /* bright yellow gold */
  font-weight: 700;
}

.cites-details .cites-footer-text {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.05em;
}

/* Comparison Table */
.panel-comparison-section {
  background-color: #56281a; /* reddish-brown background from the image */
  padding: 80px 24px;
  color: #ffffff;
  text-align: center;
  margin-top: 40px;
}

.comparison-title {
  font-size: 3.125rem;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 3px;
  margin: 0 auto 60px auto;
  letter-spacing: -0.01em;
}

.comparison-flex-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  box-sizing: border-box;
}

.comp-col {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.comp-labels-col {
  width: 130px;
  flex-shrink: 0;
  justify-content: flex-start;
}

.comp-card-col {
  flex: 1;
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comp-powder-card {
  background-color: #2b1b17; /* dark brown powder card */
}

.comp-capsules-card {
  background-color: #b44322; /* reddish-orange capsules card */
}

.comp-card-img-wrapper {
  width: 100%;
  height: 160px; /* fixed height for alignment consistency */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.comp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comp-header-placeholder {
  height: 208px; /* matches 24px top padding + 160px image height + 24px margin-bottom */
}

.comp-cell {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  letter-spacing: -0.05em;
}

.comp-label-cell {
  justify-content: flex-start;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.05em;
}

.comp-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* Capsules card highlighted text in bright gold/yellow */
.comp-cell.highlighted {
  color: #ffeb3b;
}

/* Difference Details Section */
.panel-difference-section {
  background-color: #000000; /* Solid black background */
  padding: 80px 24px;
  color: #ffffff;
  text-align: center;
  margin-top: 40px;
}

.diff-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.diff-badge {
  background-color: #b44322;
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  position: relative;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: recommend-bubble-float 2.5s ease-in-out infinite;
}

.diff-badge::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #b44322;
}

.diff-title {
  font-size: 3.125rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.diff-image-wrapper {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.diff-img {
  width: 100%;
  height: auto;
  display: block;
}

.diff-footer-text {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.05em;
}

.diff-footer-text .highlight-gold {
  color: #ffeb3b; /* bright gold/yellow for emphasis */
}

.doctor-signature {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.doc-title {
  font-size: 1.375rem;
  color: #a09e9c;
  font-weight: 500;
}

.doc-name {
  font-size: 1.375rem;
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px solid #d6a05e;
  padding-bottom: 2px;
}

.slogan-sub-desc {
  margin-top: 32px;
}

.slogan-brand-title {
  font-size: 2.5rem;
  color: #d6a05e;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.slogan-brand-text {
  font-size: 2.25rem;
  color: #ffffff;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* --- Responsive Adjustments (Mobile Breakpoints) --- */
@media (max-width: 749px) {
  .floating-inquiry-bar {
    padding: 32px 36px calc(30px + env(safe-area-inset-bottom, 0px));
  }

  .inquiry-form {
    gap: 6px;
  }

  .form-row {
    gap: 14px;
  }

  .form-label {
    width: 5.5em;
    min-width: 5.5em;
    max-width: 5.5em;
    font-size: 1.75rem;
    white-space: nowrap;
    padding-top: 17px;
  }

  .form-error-msg {
    font-size: 1.5rem;
  }

  .form-consent-error {
    font-size: 1.5rem;
  }

  .form-input {
    font-size: 1.75rem;
    height: 66px;
    padding: 12px 16px;
    border-width: 2px;
    border-radius: 5px;
  }

  .form-input::placeholder {
    font-size: 1.75rem;
  }

  .form-row[data-field="gender"] {
    align-items: center;
  }

  .form-row[data-field="gender"] .form-label {
    padding-top: 0;
  }

  .form-radio-group {
    gap: 24px;
    min-height: 66px;
    padding-top: 0;
  }

  .radio-label {
    font-size: 1.75rem;
    gap: 10px;
  }

  .custom-radio {
    width: 22px;
    height: 22px;
  }

  .radio-label input[type="radio"]:checked + .custom-radio::after {
    width: 11px;
    height: 11px;
  }

  .form-consent-row {
    font-size: 1.625rem;
    gap: 8px;
    margin-top: 4px;
  }

  .consent-checkbox-label {
    gap: 10px;
  }

  .custom-checkbox {
    width: 24px;
    height: 24px;
  }

  .consent-checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
    font-size: 1.25rem;
    top: -3px;
    left: 1px;
  }

  .consent-detail-link {
    font-size: 1.625rem;
  }

  .submit-btn {
    font-size: 2.25rem;
    padding: 16px 16px;
    margin-top: 10px;
    border-radius: 6px;
  }
}

