/* ================================================
   2H&G Design System — style.css
   ================================================ */

/* --- CSS Variables --- */
:root {
  --color-dark: #0d1f16;
  --color-primary: #1e4d35;
  --color-mint: #7ac4a0;
  --color-gold: #c6a050;
  --color-cream: #f8f6f0;
  --color-text: #1a1a1a;
  --color-text-light: #666;
  --color-white: #ffffff;
  --color-border: #e0ddd5;

  --font-headline: 'Noto Serif KR', serif;
  --font-body: 'Noto Sans KR', sans-serif;
  --font-number: 'Montserrat', sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: #d4ad5c;
  border-color: #d4ad5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(198, 160, 80, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(13, 31, 22, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: var(--color-gold);
}

.nav__link--cta {
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
}

.nav__link--cta:hover {
  background: #d4ad5c;
  color: var(--color-dark);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 22, 0.6);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__number {
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-gold);
}

.hero__unit {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-gold);
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

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

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

.section__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--color-text);
}

.section__title--light {
  color: var(--color-white);
}

.section__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 60px;
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Cards (S2) --- */
.cards--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(0, 0, 0, 0.1);
}

.card__icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.card__title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.card__text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Science Cards (S3) --- */
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.science-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 36px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.science-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
}

.science-card--wide {
  grid-column: 1 / -1;
}

.science-card__badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.science-card__title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.5;
}

.science-card__meta {
  margin-bottom: 16px;
}

.science-card__meta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.science-card__meta strong {
  color: var(--color-mint);
}

.science-card__highlight {
  background: rgba(198, 160, 80, 0.12);
  border-left: 3px solid var(--color-gold);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}

.science-card__highlight p {
  font-size: 0.92rem;
  color: var(--color-white);
  font-weight: 500;
}

.science-card__patent-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  aspect-ratio: 3 / 4;
}

.science-card__patent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.science-card__list {
  list-style: none;
}

.science-card__list li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.science-card__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.science-card__list strong {
  color: var(--color-mint);
}

/* --- Compare Table --- */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.compare-table th {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-mint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compare-table .highlight-col {
  background: rgba(198, 160, 80, 0.1);
  color: var(--color-gold);
  font-family: var(--font-number);
  font-weight: 700;
}

.compare-table .highlight-col strong {
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 1.05rem;
}

.compare-table .total-row {
  border-top: 2px solid var(--color-gold);
}

.compare-table .total-row td {
  font-weight: 700;
}

.table-source {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

/* --- Disclaimer --- */
.disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  line-height: 1.5;
}

.section--cream .disclaimer {
  color: var(--color-text-light);
}

.disclaimer--center {
  text-align: center;
  margin-top: 32px;
}

/* --- Researcher (S4) --- */
.researcher {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.researcher__photo {
  flex-shrink: 0;
  width: 280px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-primary);
}

.researcher__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: var(--color-primary);
}

.researcher__name {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.researcher__profile {
  list-style: none;
}

.researcher__profile li {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.researcher__profile li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.num-highlight {
  font-family: var(--font-number);
  font-weight: 900;
  color: var(--color-primary);
}

/* --- Reviews Slider (S5) --- */
.reviews-slider {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.review-card__stars {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-card__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-card__author {
  font-size: 0.88rem;
  color: var(--color-mint);
  font-weight: 500;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.reviews-nav__btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav__btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.reviews-nav__dots {
  display: flex;
  gap: 8px;
}

.reviews-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.reviews-nav__dot.active {
  background: var(--color-gold);
}

/* --- Form (S6) --- */
.form {
  margin-top: 48px;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form__required {
  color: #c0392b;
}

.form__optional {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 77, 53, 0.12);
}

.form__input.error,
.form__select.error {
  border-color: #c0392b;
}

.form__error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 6px;
}

.form__error.show {
  display: block;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(30, 77, 53, 0.08);
  border-radius: 12px;
  margin-top: 24px;
}

.form__success.show {
  display: block;
}

.form__success p {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.6;
}

.form__store-link {
  text-align: center;
  margin-top: 32px;
}

.form__store-link a {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.form__store-link a:hover {
  color: var(--color-gold);
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  padding: 60px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-gold);
}

.footer__company {
  font-size: 0.85rem;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__info p {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__actions .btn--outline {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  padding: 8px 16px;
}

.footer__actions .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 24px;
}

.footer__legal p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  text-align: center;
}

.footer__copy {
  text-align: center;
}

.footer__copy p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   Responsive
   ================================================ */

@media (max-width: 1024px) {
  .cards--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__actions {
    align-items: center;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 31, 22, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__headline {
    font-size: 2.2rem;
  }

  .hero__sub {
    font-size: 0.9rem;
  }

  .section {
    padding: 72px 0;
  }

  .section__title {
    font-size: 1.7rem;
  }

  .cards--three {
    grid-template-columns: 1fr;
  }

  .science-grid {
    grid-template-columns: 1fr;
  }

  .researcher {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .researcher__photo {
    width: 200px;
    height: 250px;
    margin: 0 auto;
  }

  .researcher__profile li {
    text-align: left;
  }

  .review-card {
    padding: 32px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__actions {
    align-items: center;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 14px;
  }

  .hero__headline {
    font-size: 1.9rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* 논문 배지 색상 */
.science-card__badge--alzheimer { background: #6b3fa0; }
.science-card__badge--diabetes  { background: #2563a8; }
.science-card__badge--liver     { background: #1a7a4a; }
.science-card__badge--patent    { background: #b8860b; }

/* ===== 만성염증 히어로 섹션 ===== */
.inflammation-hero {
  text-align: center;
  padding: 2rem 0 3rem;
}
.inflammation-hero__pre {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--color-primary, #1e4d35);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.inflammation-hero__title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.inflammation-hero__diseases {
  color: #1e4d35;
  border-bottom: 3px solid #c6a050;
  padding-bottom: 2px;
}
.inflammation-hero__sub {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

/* 카드 저널 출처 */
.card__journal {
  font-size: 0.78rem;
  color: #888;
  font-style: italic;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

/* 특허 배너 */
.patent-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #1e4d35, #0d2e1e);
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  border-left: 5px solid #c6a050;
}
.patent-banner__icon { font-size: 2rem; flex-shrink: 0; }
.patent-banner__text { display: flex; flex-direction: column; gap: 0.4rem; }
.patent-banner__text strong { font-size: 1.05rem; }
.patent-banner__text span { font-size: 0.85rem; opacity: 0.85; }
@media (max-width: 600px) {
  .patent-banner { flex-direction: column; text-align: center; }
}

/* ===== 슬로건 & 미션 ===== */
.hero__slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c6a050;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer__slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c6a050;
  text-transform: uppercase;
  margin: 0.3rem 0 0.2rem;
}
.footer__mission {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-top: 0.3rem;
}

/* ===== 희소성 섹션 ===== */
.section--ivory { background: #faf8f3; }

.rarity-hero {
  text-align: center;
  padding: 2rem 0 3rem;
}
.rarity-hero__pre {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #1e4d35;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.rarity-hero__title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.rarity-hero__accent {
  color: #1e4d35;
  border-bottom: 3px solid #c6a050;
  padding-bottom: 2px;
}
.rarity-hero__sub {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* 테두리 카드 변형 */
.card--bordered {
  border: 1.5px solid #e0d9c8;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.card--bordered:hover {
  border-color: #c6a050;
  box-shadow: 0 4px 24px rgba(198,160,80,0.15);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* ===== 조인트벤처 스토리 섹션 ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.story__pre {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #c6a050;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.story__title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 1.5rem;
}
.story__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 2;
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.story-card--highlight {
  background: rgba(198,160,80,0.12);
  border-color: #c6a050;
}
.story-card__icon { font-size: 1.8rem; margin-bottom: 0.3rem; }
.story-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.story-card__company {
  font-size: 0.82rem;
  color: #c6a050;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
}
.story-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-top: 0.25rem;
}

.story__quote {
  text-align: center;
  font-family: 'Noto Serif KR', serif;
  font-size: 1.15rem;
  color: #c6a050;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-style: italic;
}

/* 특허 강조 섹션 */
.science-card__patent-highlights {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.patent-highlight-item {
  background: #f0f7f4;
  border-left: 3px solid var(--color-primary, #1e4d35);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}
.patent-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-primary, #1e4d35);
  font-weight: 600;
  text-align: center;
  padding: 0.75rem;
  background: #f5f0e8;
  border-radius: 6px;
}
