
/* ================================================================
   3b. PRODUCT LINES — block-cards style (Playa ref)
   ================================================================ */

.gm-product-lines > .gm-shell {
  border: 1px solid var(--gm-color-line);
  border-radius: var(--gm-radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  overflow: hidden;
}

/* Header — centered, stacked */
.gm-product-lines__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gm-product-lines__title {
  margin: 0;
  font-family: var(--gm-font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gm-color-ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
}

/* Switch — toggle track */
.gm-product-lines__switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gm-product-lines__switch-label {
  font-family: var(--gm-font-description);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: var(--gm-fw-medium);
  color: var(--gm-color-ink);
  opacity: 0.5;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity var(--gm-transition);
}

.gm-product-lines__switch-label.is-active {
  opacity: 1;
}

.gm-product-lines__switch-track {
  position: relative;
  width: 64px;
  height: 34px;
  border-radius: 17px;
  border: none;
  background: var(--gm-color-blue);
  cursor: pointer;
  padding: 0;
  transition: background var(--gm-transition);
  display: block;
}

.gm-product-lines__switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gm-color-white);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.gm-product-lines__switch-track.is-on .gm-product-lines__switch-thumb {
  transform: translateX(24px);
}

/* Grids — stack both, only active visible */
.gm-product-lines__grids-wrap {
  display: grid;
}

.gm-product-lines__grid {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  visibility: hidden;
  pointer-events: none;
  padding-top: 1rem;
}

.gm-product-lines__grid.is-active {
  visibility: visible;
  pointer-events: auto;
}

/* ── Card wrapper ── */
.gm-product-lines__card {
  position: relative;
  transform: translateY(var(--_sway, 0));
  transition: opacity 0.5s ease;
  will-change: transform;
}

.gm-product-lines__card[data-pl-reveal] {
  opacity: 0;
}

.gm-product-lines__card.is-visible {
  opacity: 1;
}

/* Fade-in on material switch */
@keyframes gm-pl-fade-in {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.gm-product-lines__grid.is-dropping .gm-product-lines__card {
  animation: gm-pl-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gm-product-lines__grid.is-dropping .gm-product-lines__card:nth-child(1) { animation-delay: 0s; }
.gm-product-lines__grid.is-dropping .gm-product-lines__card:nth-child(2) { animation-delay: 0.12s; }
.gm-product-lines__grid.is-dropping .gm-product-lines__card:nth-child(3) { animation-delay: 0.24s; }

/* Last card: reduced overlap */
.gm-product-lines__card:last-child .gm-product-lines__card-inner {
  margin-bottom: -1rem;
}

/* ── Card inner — the visible card surface ── */
.gm-product-lines__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(670px, 58%);
  aspect-ratio: 670 / 536;
  padding: 3.5rem 2.75rem 2.75rem;
  text-decoration: none;
  color: var(--gm-color-ink);
  margin-bottom: -4rem;
  background: var(--gm-color-surface);
  border-radius: 0;
  overflow: hidden;
  /* mask removed — applied per-card via nth-child in horizontal layout */
}

/* Alternating left / right + tilt */
.gm-product-lines__card:nth-child(odd) .gm-product-lines__card-inner {
  margin-left: 4rem;
}

.gm-product-lines__card:nth-child(even) .gm-product-lines__card-inner {
  margin-left: auto;
  margin-right: 4rem;
}

/* Card tilt — subtle angle like reference */
.gm-product-lines__card:nth-child(1) .gm-product-lines__card-inner { transform: rotate(-1.5deg); }
.gm-product-lines__card:nth-child(2) .gm-product-lines__card-inner { transform: rotate(1.8deg); }
.gm-product-lines__card:nth-child(3) .gm-product-lines__card-inner { transform: rotate(-1deg); }


/* Card shadow — removed */
.gm-product-lines__card {
  filter: none;
}


/* ── Card title ── */
.gm-product-lines__card-title {
  margin: 0;
  font-family: var(--gm-font-description);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: var(--gm-fw-medium);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 65%;
}

/* ── Card description ── */
.gm-product-lines__card-desc {
  margin: 0.75rem 0 1.25rem;
  font-family: var(--gm-font-description);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  opacity: 0.7;
  max-width: 65%;
}

/* ── Tags / pills ── */
.gm-product-lines__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  max-width: 85%;
}

.gm-product-lines__tag {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border: 1px solid var(--gm-color-ink);
  border-radius: 0.875rem;
  font-family: var(--gm-font-description);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  line-height: 1.2;
  white-space: nowrap;
}

/* ── Product image — top-right, blend to hide white bg ── */
.gm-product-lines__card-img {
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(180px, 22vw, 280px);
  height: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: darken;
}

/* ── Stat tag — highlighted ── */
.gm-product-lines__tag--stat {
  background: var(--tag-color, var(--gm-color-yellow));
  border-color: var(--tag-color, var(--gm-color-yellow));
  border-radius: 0.875rem;
  font-weight: var(--gm-fw-semibold);
  color: var(--gm-color-ink);
}

/* ── Action — transparent flex row, children are the visual buttons ── */
.gm-product-lines__card-action {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: auto;
  padding-top: 1.5rem;
}

/* Text button — rounded rect, NOT pill */
.gm-product-lines__action-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.85rem;
  background: var(--gm-color-ink);
  color: var(--gm-color-white);
  border-radius: 0.875rem;
  font-family: var(--gm-font-description);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: var(--gm-fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--gm-transition);
}

/* Arrow circle — matches button height */
.gm-product-lines__action-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--gm-color-ink);
  color: var(--gm-color-white);
  flex-shrink: 0;
  transition: background var(--gm-transition);
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .gm-product-lines__card-inner {
    width: min(500px, 70%);
  }

  .gm-product-lines__card:nth-child(odd) .gm-product-lines__card-inner {
    margin-left: 2rem;
  }

  .gm-product-lines__card:nth-child(even) .gm-product-lines__card-inner {
    margin-right: 2rem;
  }
}

@media (max-width: 768px) {

  .gm-product-lines__card-inner {
    width: calc(100% - 2rem);
    margin-bottom: -1.5rem;
    padding: 2rem 1.5rem 1.75rem;
  }

  .gm-product-lines__card:nth-child(odd) .gm-product-lines__card-inner,
  .gm-product-lines__card:nth-child(even) .gm-product-lines__card-inner {
    margin-left: auto;
    margin-right: auto;
  }

  .gm-product-lines__card-title {
    max-width: 60%;
  }

  .gm-product-lines__card-desc {
    max-width: 60%;
  }

  .gm-product-lines__card-tags {
    max-width: 100%;
  }

  .gm-product-lines__card-img {
    right: 0.5rem;
    top: 0.75rem;
    width: 100px;
  }

  .gm-product-lines__card-inner {
    margin-bottom: -2rem;
  }

  .gm-product-lines__card:nth-child(1) .gm-product-lines__card-inner,
  .gm-product-lines__card:nth-child(2) .gm-product-lines__card-inner,
  .gm-product-lines__card:nth-child(3) .gm-product-lines__card-inner {
    transform: none;
  }
}


/* ================================================================
   4. REVIEWS — Scattered draggable cards (SuperHi style)
   ================================================================ */

.gm-about-v2__reviews {
  padding: var(--gm-section-space) 0;
}

.gm-about-v2__reviews-inner {
  background: var(--gm-color-surface);
  border-radius: var(--gm-radius-lg);
  padding: 3.5rem 3.5rem 0;
  overflow: hidden;
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
}

.gm-about-v2__reviews-title {
  margin: 0 0 1.5rem;
  font-family: var(--gm-font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gm-color-ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Scatter container — relative, fixed height, cards absolutely placed */
.gm-about-v2__reviews-scatter {
  position: relative;
  width: 100%;
  height: 720px;
  user-select: none;
  -webkit-user-select: none;
}

/* Review card base — size varies per card via --_w */
.gm-about-v2__review-card {
  position: absolute;
  left: var(--_x, 10%);
  top: var(--_y, 10%);
  width: var(--_w, clamp(280px, 28vw, 380px));
  min-height: var(--_h, 200px);
  padding: 1.75rem 1.75rem 1.25rem;
  border-radius: var(--gm-radius-card);
  transform: rotate(var(--_rot, 0deg)) translateY(var(--_sway, 0px));
  z-index: var(--_z, 1);
  cursor: grab;
  transition: box-shadow 0.2s ease;
  box-shadow: var(--gm-shadow-subtle);
}

/* Card size variations — large, medium, small */
.gm-about-v2__review-card:nth-child(1) { --_w: clamp(320px, 32vw, 440px); --_h: 240px; }
.gm-about-v2__review-card:nth-child(2) { --_w: clamp(260px, 26vw, 340px); --_h: 180px; }
.gm-about-v2__review-card:nth-child(3) { --_w: clamp(300px, 30vw, 400px); --_h: 220px; }
.gm-about-v2__review-card:nth-child(4) { --_w: clamp(240px, 24vw, 320px); --_h: 170px; }
.gm-about-v2__review-card:nth-child(5) { --_w: clamp(340px, 34vw, 460px); --_h: 250px; }
.gm-about-v2__review-card:nth-child(6) { --_w: clamp(270px, 27vw, 360px); --_h: 190px; }
.gm-about-v2__review-card:nth-child(7) { --_w: clamp(300px, 30vw, 400px); --_h: 210px; }
.gm-about-v2__review-card:nth-child(8) { --_w: clamp(250px, 25vw, 330px); --_h: 180px; }

.gm-about-v2__review-card:hover {
  z-index: 50;
  transform: rotate(var(--_rot, 0deg)) translateY(-8px) scale(1.04);
  box-shadow: 0 32px 64px -24px rgba(8, 8, 10, 0.32);
}

.gm-about-v2__review-card.is-dragging {
  cursor: grabbing;
  z-index: 100;
  box-shadow: var(--gm-shadow-strong);
  transform: rotate(0deg) translateY(0) scale(1.04);
  transition: box-shadow 0.15s ease;
}

/* Card color variants */
.gm-about-v2__review-card--white {
  background: var(--gm-color-blue);
  color: var(--gm-color-white);
}

.gm-about-v2__review-card--yellow {
  background: var(--gm-color-yellow);
  color: var(--gm-color-ink);
}

.gm-about-v2__review-card--pink {
  background: var(--gm-color-brand-accent);
  color: var(--gm-color-white);
}

/* Quote — size varies per card, weight always 400 */
.gm-about-v2__review-quote {
  margin: 0;
  font-family: var(--gm-font-body);
  font-size: var(--_quote-fs, 1.2rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Short quotes = big text, long quotes = smaller text */
.gm-about-v2__review-card:nth-child(1) .gm-about-v2__review-quote { --_quote-fs: 1.7rem; }
.gm-about-v2__review-card:nth-child(2) .gm-about-v2__review-quote { --_quote-fs: 1.15rem; }
.gm-about-v2__review-card:nth-child(3) .gm-about-v2__review-quote { --_quote-fs: 1.3rem; }
.gm-about-v2__review-card:nth-child(4) .gm-about-v2__review-quote { --_quote-fs: 1.1rem; }
.gm-about-v2__review-card:nth-child(5) .gm-about-v2__review-quote { --_quote-fs: 1.5rem; }
.gm-about-v2__review-card:nth-child(6) .gm-about-v2__review-quote { --_quote-fs: 1.15rem; }
.gm-about-v2__review-card:nth-child(7) .gm-about-v2__review-quote { --_quote-fs: 1.35rem; }
.gm-about-v2__review-card:nth-child(8) .gm-about-v2__review-quote { --_quote-fs: 1.1rem; }

.gm-about-v2__review-quote::before {
  content: "\201C";
}

.gm-about-v2__review-quote::after {
  content: "\201D";
}

/* Meta — avatar + name + platform */
.gm-about-v2__review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gm-about-v2__review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gm-overlay-light);
  font-family: var(--gm-font-description);
  font-size: 0.7rem;
  font-weight: var(--gm-fw-bold);
  color: inherit;
  flex-shrink: 0;
}

.gm-about-v2__review-name {
  font-family: var(--gm-font-data);
  font-size: 0.7rem;
  font-weight: var(--gm-fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
}

.gm-about-v2__review-platform {
  font-family: var(--gm-font-data);
  font-size: 0.6rem;
  font-weight: var(--gm-fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.1rem 0.45rem;
  border-radius: var(--gm-radius-pill);
  background: var(--gm-overlay-faint);
  color: inherit;
  opacity: 0.5;
}


/* ================================================================
   5. THE EVIDENCE — Dark section with horizontal slider
   ================================================================ */

.gm-about-v2__evidence {
  background: var(--gm-color-navy);
  padding: 4rem 0 3rem;
}

.gm-about-v2__evidence-header {
  width: var(--gm-shell);
  margin: 0 auto 2rem;
}

.gm-about-v2__evidence-title {
  margin: 0;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-h2);
  font-weight: var(--gm-fw-bold);
  color: var(--gm-dark-text);
  letter-spacing: var(--gm-ls-heading);
}

.gm-about-v2__evidence-sub {
  margin: 0.5rem 0 0;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-body);
  color: var(--gm-dark-text-muted);
  line-height: 1.65;
}

/* Horizontal slider */
.gm-about-v2__evidence-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 max(1rem, calc((100vw - var(--gm-shell)) / 2 + 1rem)) 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gm-about-v2__evidence-slider::-webkit-scrollbar {
  display: none;
}

/* Evidence card */
.gm-about-v2__evidence-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--gm-dark-card-bg);
  border: 1px solid var(--gm-dark-card-border);
  border-radius: var(--gm-radius-card);
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 300px;
}

/* Colored top accent bar per card */
.gm-about-v2__evidence-card::before {
  content: "";
  display: block;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  background: var(--gm-color-brand-accent);
  opacity: 0.5;
}

.gm-about-v2__evidence-card:nth-child(even)::before {
  background: var(--gm-color-blue);
}

/* Badge */
.gm-about-v2__evidence-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: var(--gm-radius-pill);
  font-family: var(--gm-font-data);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.gm-about-v2__evidence-badge--stat {
  background: color-mix(in srgb, var(--gm-color-brand-accent) 15%, transparent);
  color: var(--gm-color-brand-accent);
}

.gm-about-v2__evidence-badge--source {
  background: color-mix(in srgb, var(--gm-color-blue) 15%, transparent);
  color: var(--gm-color-blue);
}

/* Value */
.gm-about-v2__evidence-value {
  margin: 0.5rem 0;
  font-family: var(--gm-font-title);
  font-size: 3.5rem;
  font-weight: var(--gm-fw-bold);
  color: var(--gm-dark-text);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Description */
.gm-about-v2__evidence-desc {
  margin: 0;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-body);
  color: var(--gm-dark-text-muted);
  line-height: 1.5;
}

/* Source */
.gm-about-v2__evidence-source {
  margin: 0;
  font-family: var(--gm-font-data);
  font-size: 0.7rem;
  color: var(--gm-dark-text-faint);
  letter-spacing: 0.08em;
}


/* ================================================================
   6. NEWSLETTER
   ================================================================ */

.gm-about-v2__newsletter {
  background: var(--gm-color-brand-accent);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative triangle shapes like SuperHi */
.gm-about-v2__newsletter::before,
.gm-about-v2__newsletter::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--gm-color-white);
  opacity: 0.12;
  border-radius: 4px;
}

.gm-about-v2__newsletter::before {
  top: -20px;
  left: 10%;
  transform: rotate(25deg);
}

.gm-about-v2__newsletter::after {
  bottom: -30px;
  right: 8%;
  transform: rotate(-15deg);
}

.gm-about-v2__newsletter-title {
  margin: 0;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-h3);
  font-weight: var(--gm-fw-semibold);
  color: var(--gm-color-white);
  letter-spacing: var(--gm-ls-heading);
}

.gm-about-v2__newsletter-sub {
  margin: 0.5rem 0 0;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-body);
  color: var(--gm-color-white);
  opacity: 0.8;
}

.gm-about-v2__newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 1.5rem auto 0;
  border-radius: var(--gm-radius-pill);
  overflow: hidden;
  background: var(--gm-color-white);
}

.gm-about-v2__newsletter-input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 0.8rem 1.2rem;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-body);
  background: transparent;
  outline: none;
  color: var(--gm-color-ink);
}

.gm-about-v2__newsletter-input::placeholder {
  color: var(--gm-color-steel);
}

.gm-about-v2__newsletter-btn {
  width: 3rem;
  flex-shrink: 0;
  border: none;
  background: var(--gm-color-ink);
  color: var(--gm-color-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--gm-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gm-about-v2__newsletter-btn:hover {
  background: var(--gm-color-navy);
}


/* ================================================================
   7. FAQ — Accordion
   ================================================================ */

.gm-about-v2__faq {
  padding: calc(var(--gm-section-space) * 1.5) 0;
}

.gm-about-v2__faq-title {
  margin: 0 0 2.5rem;
  font-family: var(--gm-font-description);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: var(--gm-fw-bold);
  color: var(--gm-color-ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.gm-about-v2__faq-list {
  max-width: 800px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gm-about-v2__faq-item {
  border-top: 1px solid var(--gm-color-line);
}

.gm-about-v2__faq-item:last-child {
  border-bottom: 1px solid var(--gm-color-line);
}

.gm-about-v2__faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-body-lg);
  font-weight: var(--gm-fw-medium);
  color: var(--gm-color-ink);
  text-align: left;
  gap: 1rem;
  transition: color var(--gm-transition);
}

.gm-about-v2__faq-header:hover {
  color: var(--gm-color-brand-accent);
}

.gm-about-v2__faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 300ms ease;
}

.gm-about-v2__faq-item.is-open .gm-about-v2__faq-icon {
  transform: rotate(45deg);
}

/* Panel — grid-row animation */
.gm-about-v2__faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.gm-about-v2__faq-item.is-open .gm-about-v2__faq-panel {
  grid-template-rows: 1fr;
}

.gm-about-v2__faq-answer {
  overflow: hidden;
}

.gm-about-v2__faq-item.is-open .gm-about-v2__faq-answer {
  padding-bottom: 1.25rem;
}

.gm-about-v2__faq-answer p {
  margin: 0;
  font-family: var(--gm-font-description);
  font-size: var(--gm-fs-body);
  color: var(--gm-color-steel);
  line-height: 1.65;
  max-width: 60ch;
}

.gm-about-v2__faq-answer p + p {
  margin-top: 0.75rem;
}


/* ================================================================
   8. CLOSING CTA
   ================================================================ */

.gm-about-v2__closing {
  margin: var(--gm-section-space) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gm-about-v2__closing-shape {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: block;
  color: var(--gm-color-brand-accent);
}


/* ================================================================
   NEWSLETTER — Shake & Success states
   ================================================================ */

@keyframes gm-about-shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

.gm-about-v2__newsletter-form.is-shake {
  animation: gm-about-shake 0.5s ease;
}

.gm-about-v2__newsletter-form.is-success {
  opacity: 0.7;
  pointer-events: none;
}

.gm-about-v2__newsletter-form.is-success .gm-about-v2__newsletter-btn {
  background: color-mix(in srgb, var(--gm-color-blue) 60%, var(--gm-color-yellow));
}


/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */

.gm-about-v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gm-about-v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   RESPONSIVE — Tablet (max-width: 989px)
   ================================================================ */

@media (max-width: 989px) {

  /* Product lines — 2+1 grid */
  .gm-product-lines__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gm-product-lines__card:last-child {
    grid-column: 1 / -1;
  }

  .gm-product-lines__inner {
    padding: 2rem 1.5rem;
  }

  .gm-product-lines__card {
    min-height: 480px;
    padding: 2rem 1.5rem 1.5rem;
  }

  .gm-about-v2__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  /* Way cards — stack vertically */
  .gm-about-v2__way-card {
    grid-template-columns: 1fr;
  }

  .gm-about-v2__way-card-visual {
    height: 250px;
  }

  .gm-about-v2__way-tab {
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
  }

  /* Evidence cards smaller */
  .gm-about-v2__evidence-card {
    flex: 0 0 240px;
  }

  /* Review scatter — shorter on tablet */
  .gm-about-v2__reviews-inner {
    padding: 2rem 2rem 0;
  }

  .gm-about-v2__reviews-scatter {
    height: 480px;
  }

  .gm-about-v2__review-card {
    width: clamp(180px, 24vw, 260px);
    padding: 1.25rem;
  }

  /* Hero shapes — scale down */
  .gm-about-v2__hero-shape--1 {
    width: 280px;
    height: 80px;
  }

  .gm-about-v2__hero-shape--3 {
    width: 100px;
    height: 100px;
  }
}


/* ================================================================
   RESPONSIVE — Mobile (max-width: 640px)
   ================================================================ */

@media (max-width: 640px) {

  /* Product lines — single column */
  .gm-product-lines__grid {
    grid-template-columns: 1fr;
  }

  .gm-product-lines__card:last-child {
    grid-column: auto;
  }

  .gm-product-lines__inner {
    padding: 1.5rem 1.25rem;
    border-radius: var(--gm-radius-card);
  }

  .gm-product-lines__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gm-product-lines__card {
    min-height: auto;
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .gm-product-lines__card-title {
    font-size: 1.4rem;
  }

  .gm-about-v2__hero {
    min-height: 60vh;
    padding: 3rem 0;
  }

  .gm-about-v2__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .gm-about-v2__hero-sub {
    font-size: var(--gm-fs-body);
  }

  /* Way tabs wrap */
  .gm-about-v2__way-tabs {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .gm-about-v2__way-tab {
    font-size: 0.85rem;
    padding: 0.35rem 0.8rem;
  }

  /* Way card content */
  .gm-about-v2__way-card-content {
    padding: 1.5rem;
  }

  .gm-about-v2__way-card-visual {
    height: 200px;
    padding: 1.5rem;
  }

  /* Review scatter — stack on mobile */
  .gm-about-v2__reviews-inner {
    padding: 1.5rem 1.25rem;
    border-radius: var(--gm-radius-card);
  }

  .gm-about-v2__reviews-scatter {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.85rem;
    padding-bottom: 0.5rem;
  }

  .gm-about-v2__review-card,
  .gm-about-v2__review-card:nth-child(1),
  .gm-about-v2__review-card:nth-child(2),
  .gm-about-v2__review-card:nth-child(3),
  .gm-about-v2__review-card:nth-child(4),
  .gm-about-v2__review-card:nth-child(5),
  .gm-about-v2__review-card:nth-child(6),
  .gm-about-v2__review-card:nth-child(7),
  .gm-about-v2__review-card:nth-child(8) {
    position: static;
    width: 100%;
    --_w: 100%;
    --_h: auto;
    min-height: 0;
    padding: 1.25rem 1.25rem 1rem;
    transform: rotate(var(--_rot, 0deg));
    cursor: auto;
  }

  /* 모바일: 카드 6~8 숨김 (5장만 노출) */
  .gm-about-v2__review-card:nth-child(n+6) {
    display: none;
  }

  /* 모바일: 카드별 폰트 크기/두께 다양하게 */
  .gm-about-v2__review-card:nth-child(1) .gm-about-v2__review-quote {
    --_quote-fs: 1.35rem;
    font-weight: 600;
    line-height: 1.35;
  }
  .gm-about-v2__review-card:nth-child(2) .gm-about-v2__review-quote {
    --_quote-fs: 1rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .gm-about-v2__review-card:nth-child(3) .gm-about-v2__review-quote {
    --_quote-fs: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .gm-about-v2__review-card:nth-child(4) .gm-about-v2__review-quote {
    --_quote-fs: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .gm-about-v2__review-card:nth-child(5) .gm-about-v2__review-quote {
    --_quote-fs: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
  }

  /* Evidence cards narrower */
  .gm-about-v2__evidence-card {
    flex: 0 0 220px;
    padding: 1.25rem;
  }

  .gm-about-v2__evidence-value {
    font-size: 2rem;
  }

  /* FAQ — smaller heading */
  .gm-about-v2__faq-title {
    font-size: var(--gm-fs-h2);
  }

  /* Newsletter — stack vertically */
  .gm-about-v2__newsletter-form {
    flex-direction: column;
    border-radius: var(--gm-radius-card);
    max-width: 100%;
    background: transparent;
    gap: 0.5rem;
  }

  .gm-about-v2__newsletter-input {
    border-radius: var(--gm-radius-pill);
    background: var(--gm-color-white);
    width: 100%;
    padding: 0.9rem 1.2rem;
  }

  .gm-about-v2__newsletter-btn {
    border-radius: var(--gm-radius-pill);
    width: 100%;
    height: 3rem;
  }

  /* Hero shapes — hide some for clean mobile */
  .gm-about-v2__hero-shape--1 {
    width: 200px;
    height: 60px;
  }

  .gm-about-v2__hero-shape--5 {
    display: none;
  }

  /* Showcase — less border-radius on mobile */
  .gm-about-v2__showcase-img {
    border-radius: var(--gm-radius-sm);
  }

  /* Closing */
  .gm-about-v2__closing-shape {
    width: 60px;
    height: 60px;
  }
}

/* ================================================================
   PRODUCT LINES — block-cards override (Playa-style 3-step cards)
   ================================================================ */

.gm-product-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 98px 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.gm-product-lines > .gm-shell {
  display: none;
}

.gm-product-lines__header {
  text-align: center;
  width: 100%;
  padding: 0 40px;
}

.gm-product-lines__title {
  font-family: var(--gm-font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gm-color-ink);
}

.gm-product-lines__cards {
  display: none;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.gm-product-lines__cards.is-active {
  display: flex;
  padding-bottom: 98px;
}

.gm-product-lines__card {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

.gm-product-lines__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: var(--card-bg);
  overflow: hidden;
  transform: none;
  margin: 0;
  -webkit-mask-image: none;
  mask-image: none;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Card 1: exact reference mask (LEFT=small bump, RIGHT=deep wave) */
.gm-product-lines__card:nth-child(1) .gm-product-lines__card-inner {
  --_mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 380 408' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 156.215V30C0 13.431 13.431 0 30 0h320c16.569 0 30 13.431 30 30v118.233a33.228 33.228 0 0 1-12.725 26.148l-2.182 1.711c-17.974 14.093-17.719 41.391.516 55.146A36.176 36.176 0 0 1 380 260.12V378c0 16.569-13.431 30-30 30H30c-16.569 0-30-13.431-30-30V252.743C0 230.794 17.794 213 39.743 213h6.383a8.52 8.52 0 0 0 0-17.042h-6.383C17.793 195.958 0 178.164 0 156.215Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--_mask);
  mask-image: var(--_mask);
}

/* Card 2: exact reference mask (LEFT=deep wave, RIGHT=deep wave) */
.gm-product-lines__card:nth-child(2) .gm-product-lines__card-inner {
  --_mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 380 408' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 147.706V30C0 13.431 13.431 0 30 0h320c16.569 0 30 13.431 30 30v118.34a33.417 33.417 0 0 1-12.544 26.097l-2.159 1.728c-17.709 14.165-17.455 41.181.517 55.011A36.364 36.364 0 0 1 380 259.994V378c0 16.569-13.431 30-30 30H30c-16.569 0-30-13.431-30-30V258.858a31.838 31.838 0 0 1 13.822-26.251c20.25-13.9 20.522-43.701.527-57.967l-.756-.539A32.426 32.426 0 0 1 0 147.706Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--_mask);
  mask-image: var(--_mask);
}

/* Card 3: exact reference mask (LEFT=deep wave, RIGHT=small bump) */
.gm-product-lines__card:nth-child(3) .gm-product-lines__card-inner {
  --_mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 380 408' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M380 251.785V378c0 16.569-13.431 30-30 30H30c-16.569 0-30-13.432-30-30V259.767a33.228 33.228 0 0 1 12.725-26.148l2.182-1.711c17.974-14.093 17.719-41.391-.516-55.146A36.177 36.177 0 0 1 0 147.88V30C0 13.431 13.431 0 30 0h320c16.569 0 30 13.431 30 30v125.257C380 177.206 362.206 195 340.257 195h-6.383a8.521 8.521 0 0 0 0 17.042h6.383c21.949 0 39.743 17.794 39.743 39.743Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--_mask);
  mask-image: var(--_mask);
}


/* Override old nth-child rules */
.gm-product-lines__card:nth-child(odd) .gm-product-lines__card-inner,
.gm-product-lines__card:nth-child(even) .gm-product-lines__card-inner,
.gm-product-lines__card:nth-child(1) .gm-product-lines__card-inner,
.gm-product-lines__card:nth-child(2) .gm-product-lines__card-inner,
.gm-product-lines__card:nth-child(3) .gm-product-lines__card-inner,
.gm-product-lines__card:last-child .gm-product-lines__card-inner {
  margin: 0;
  transform: none;
  width: 100%;
  aspect-ratio: 670 / 536;
}

.gm-product-lines__card-top {
  z-index: 2;
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gm-product-lines__card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gm-color-ink);
  color: var(--gm-color-white);
  font-family: var(--gm-font-body);
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.gm-product-lines__card-label {
  display: block;
  font-family: var(--gm-font-description);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--gm-color-ink);
  max-width: none !important;
}

.gm-product-lines__card-img {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 55%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: darken;
}

.gm-product-lines__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
  position: relative;
  max-width: 60%;
}

.gm-product-lines__tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--gm-color-line);
  border-radius: 100px;
  font-family: var(--gm-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gm-color-ink);
  background: transparent;
  white-space: nowrap;
}

.gm-product-lines__tag--red {
  background: var(--gm-color-brand-accent);
  color: var(--gm-color-white);
  border-color: var(--gm-color-brand-accent);
}

.gm-product-lines__tag--blue {
  background: var(--gm-color-blue);
  color: var(--gm-color-white);
  border-color: var(--gm-color-blue);
}

.gm-product-lines__tag--yellow {
  background: var(--gm-color-yellow);
  color: var(--gm-color-ink);
  border-color: var(--gm-color-yellow);
}

.gm-product-lines__card-header {
  z-index: 2;
  position: relative;
}

.gm-product-lines__card-bottom,
.gm-product-lines__tags {
  z-index: 2;
  position: relative;
  max-width: 60%;
  margin-top: auto;
}

.gm-product-lines .gm-product-lines__card-desc {
  font-family: var(--gm-font-body) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: var(--gm-color-ink) !important;
  text-align: left !important;
  margin: 0.5rem 0 0 !important;
  max-width: 55% !important;
  opacity: 0.7 !important;
  z-index: 2 !important;
  position: relative !important;
}

/* ── Arrows — absolute on card right edge ── */
.gm-product-lines__arrow {
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 32px;
  color: var(--gm-color-ink);
  z-index: 10;
}

/* ── Bottom description ── */
.gm-product-lines__desc {
  font-family: var(--gm-font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gm-color-ink);
  text-align: center;
  max-width: 70%;
  margin: 0;
  padding: 0 40px;
  opacity: 0.7;
}

/* ── Mobile ── */
@media (max-width: 989px) {
  .gm-product-lines__cards {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }

  .gm-product-lines__card {
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 360px;
    flex: none;
  }

  .gm-product-lines__arrow {
    top: auto;
    bottom: -24px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }

  .gm-product-lines__desc {
    padding: 0 16px;
  }
}

/* ================================================================
   ABOUT PAGE — Playa-style redesign
   ================================================================ */

/* ── 1. Hero — 2-column split ── */
.gm-about__hero {
  padding: 100px 40px 80px;
}

.gm-about__hero-inner {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 40px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.gm-about__hero-title {
  font-family: var(--gm-font-body);
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gm-color-ink);
  margin: 0;
}

.gm-about__hero-body {
  font-family: var(--gm-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gm-color-ink);
  margin: 0;
  padding-top: 8px;
}

/* ── 2. Vision — stacked cards with blob mask ── */
.gm-about__vision {
  position: relative;
  padding: 0 40px 40px;
}

.gm-about__vision-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--gm-color-steel) 0%, var(--gm-color-bg) 40%, var(--gm-color-steel) 100%);
  border-radius: 40px;
  margin: 0 40px;
  opacity: 0.5;
}

.gm-about__vision-svg-defs {
  position: absolute;
  pointer-events: none;
}

.gm-about__vision-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.gm-about__vision-card {
  position: relative;
  width: min(670px, 100%);
  margin-bottom: -60px;
}

.gm-about__vision-card:last-child {
  margin-bottom: 0;
}

.gm-about__vision-card:nth-child(odd) {
  align-self: flex-start;
  margin-left: 60px;
}

.gm-about__vision-card:nth-child(even) {
  align-self: flex-end;
  margin-right: 60px;
}

.gm-about__vision-card-clip {
  clip-path: url(#gm-blob-clip);
  width: 100%;
  aspect-ratio: 670 / 536;
  overflow: hidden;
  background: var(--gm-color-surface);
}

.gm-about__vision-card--image .gm-about__vision-card-clip {
  background: var(--gm-color-bg);
}

.gm-about__vision-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.gm-about__vision-card-content {
  display: flex;
  flex-direction: column;
  padding: 50px 40px 40px;
  height: 100%;
}

.gm-about__vision-card-label {
  font-family: var(--gm-font-data);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gm-color-steel);
  margin-bottom: 16px;
}

.gm-about__vision-card-title {
  font-family: var(--gm-font-body);
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gm-color-ink);
  margin: 0 0 12px;
  max-width: 90%;
}

.gm-about__vision-card-subtitle {
  font-family: var(--gm-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gm-color-ink);
  margin: 0 0 20px;
  max-width: 50%;
}

.gm-about__vision-card-desc {
  font-family: var(--gm-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gm-color-ink);
  margin: 0;
  max-width: 88%;
}

/* ── 3. Pillars — 3-card grid ── */
.gm-about__pillars {
  padding: 120px 40px;
}

.gm-about__pillars-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.gm-about__pillars-header {
  text-align: center;
  margin-bottom: 60px;
}

.gm-about__pillars-title {
  font-family: var(--gm-font-body);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gm-color-ink);
  margin: 0;
}

.gm-about__pillars-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.gm-about__pillar-card {
  flex: 1;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gm-about__pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 260px;
  background: var(--gm-color-bg);
  border-radius: 20px;
}

.gm-about__pillar-icon--materials { background: color-mix(in srgb, var(--gm-color-brand-accent) 15%, #fff); }
.gm-about__pillar-icon--safety { background: color-mix(in srgb, var(--gm-color-yellow) 15%, #fff); }
.gm-about__pillar-icon--design { background: color-mix(in srgb, var(--gm-color-blue) 15%, #fff); }

.gm-about__pillar-num {
  font-family: var(--gm-font-body);
  font-size: 60px;
  font-weight: 700;
  color: var(--gm-color-ink);
  opacity: 0.15;
}

.gm-about__pillar-name {
  font-family: var(--gm-font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--gm-color-ink);
  margin: 0;
  text-align: center;
}

.gm-about__pillar-desc {
  font-family: var(--gm-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gm-color-ink);
  margin: 0;
  text-align: center;
  opacity: 0.7;
}

.gm-about__pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gm-font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--gm-color-brand-accent);
  text-decoration: none;
  justify-content: center;
  transition: gap 0.2s ease;
}

.gm-about__pillar-link:hover {
  gap: 10px;
}

/* ── 4. FAQ — 2-column (Playa-style) ── */
.gm-about__faq {
  padding: 120px 40px;
}

.gm-about__faq-inner {
  display: grid;
  grid-template-columns: minmax(300px, 440px) 1fr;
  gap: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.gm-about__faq-title {
  font-family: var(--gm-font-body);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--gm-color-ink);
  margin: 0 auto 40px;
  text-align: center;
  max-width: 1360px;
}

.gm-about__faq-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gm-about__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 20px 20px 30px;
  border: none;
  border-radius: 20px;
  background: #F6F6F6;
  font-family: var(--gm-font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--gm-color-ink);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gm-about__faq-question.is-active {
  background: var(--gm-color-brand-accent);
  color: var(--gm-color-white);
}

.gm-about__faq-question.is-active .gm-about__faq-plus {
  display: none;
}

.gm-about__faq-plus {
  flex-shrink: 0;
  opacity: 0.4;
}

.gm-about__faq-right {
  background: transparent;
  border-radius: 0;
  padding: 40px;
  min-height: 400px;
}

.gm-about__faq-answer {
  display: none;
}

.gm-about__faq-answer.is-active {
  display: block;
}

.gm-about__faq-answer-title {
  font-family: var(--gm-font-body);
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--gm-color-ink);
  margin: 0 0 24px;
}

.gm-about__faq-answer-body {
  font-family: var(--gm-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gm-color-ink);
  margin: 0;
}

/* ── 5. CTA — full-bleed image ── */
.gm-about__cta {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}

.gm-about__cta-bg {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  height: 634px;
  border-radius: 0;
  overflow: hidden;
}

.gm-about__cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-about__cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.gm-about__cta-inner {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  bottom: 0;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.gm-about__cta-title {
  font-family: var(--gm-font-body);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--gm-color-white);
  margin: 0 0 20px;
  max-width: 890px;
  text-align: center;
}

.gm-about__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 60px;
  background: var(--gm-color-ink);
  color: var(--gm-color-white);
  border-radius: 14px;
  font-family: var(--gm-font-body);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
  transition: background 0.2s ease;
}

.gm-about__cta-btn svg {
  display: none;
}

.gm-about__cta-btn:hover {
  background: var(--gm-color-brand-accent);
  color: var(--gm-color-white);
}

/* ── Mobile ── */
@media (max-width: 989px) {
  .gm-about__hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gm-about__hero {
    padding: 80px 16px 60px;
  }

  .gm-about__vision {
    padding: 0 16px 24px;
  }

  .gm-about__vision-bg {
    margin: 0 16px;
  }

  .gm-about__vision-card {
    width: 100%;
    margin-bottom: -30px;
  }

  .gm-about__vision-card:nth-child(odd),
  .gm-about__vision-card:nth-child(even) {
    align-self: center;
    margin-left: 0;
    margin-right: 0;
  }

  .gm-about__vision-card-subtitle {
    max-width: 100%;
  }

  .gm-about__pillars {
    padding: 60px 16px;
  }

  .gm-about__pillars-grid {
    flex-direction: column;
    align-items: center;
  }

  .gm-about__pillar-card {
    max-width: 100%;
  }

  .gm-about__faq {
    padding: 60px 16px;
  }

  .gm-about__faq-inner {
    grid-template-columns: 1fr;
  }

  .gm-about__faq-right {
    min-height: auto;
  }

  .gm-about__cta {
    padding: 0 16px;
  }

  .gm-about__cta-inner {
    left: 16px;
    right: 16px;
    padding: 30px;
  }

  .gm-about__cta-bg {
    height: 400px;
    border-radius: 24px;
  }
}


/* ================================================================
   Product Lines — Banner + Tabbed Block (Raw Materials reference)
   ================================================================ */

/* Section: full shell width — override all prior .gm-product-lines rules */
.gm-product-lines {
  display: block;
  width: var(--gm-shell);
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  align-items: unset;
  gap: unset;
  overflow: hidden;
}

/* ── Divider Banner ── */
/* ── Tabbed Block Container ── */
.gm-product-lines__block {
  position: relative;
  border-radius: 0 0 1rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* ── Material Tab Row ── */
.gm-product-lines__tabrow {
  display: flex;
  margin: 0 -1px 0 -1px;
  width: calc(100% + 2px);
}

.gm-product-lines__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.8vw 1rem;
  height: 74px;
  background: #fff;
  border: none;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  font-family: var(--gm-font-type-body);
  margin-left: -1px;
}

.gm-product-lines__tab:first-child {
  margin-left: 0;
  background: var(--gm-color-yellow);
}

.gm-product-lines__tab:last-child {
  background: var(--gm-color-blue);
}

.gm-product-lines__tab.is-active {
  border-bottom-color: transparent;
}

.gm-product-lines__tab-title {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin: 16px 0 16px 0;
}

.gm-product-lines__tab.is-active .gm-product-lines__tab-title {
  color: #000000;
}

.gm-product-lines__tab-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8vw;
  height: 1.7vw;
  min-width: 36px;
  min-height: 22px;
  border-radius: 24px;
  border: 1px solid var(--gm-color-ink);
  font-size: 1vw;
  font-weight: 400;
  color: var(--gm-color-ink);
  margin: 16px 0;
}

.gm-product-lines__tab-num.is-active {
  background: var(--gm-color-brand-accent);
  color: var(--gm-color-white);
  border-color: var(--gm-color-brand-accent);
}

/* ── Material Panel (SuperHi SlidePanel_slider style) ── */
.gm-product-lines__material {
  display: none;
}

.gm-product-lines__material.is-active {
  display: block;
  position: relative;
  margin-top: -1rem;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 24px 40px;
  overflow: visible;
}

/* ── Product Sub-tabs ── */
.gm-product-lines__subtabs {
  display: flex;
  border-bottom: 1px solid var(--gm-color-line);
}

.gm-product-lines__subtab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.8vw;
  height: 52px;
  background: #fff;
  border: none;
  border-right: 1px solid var(--gm-color-line);
  cursor: pointer;
  font-family: var(--gm-font-type-body);
}

.gm-product-lines__subtab:last-child {
  border-right: none;
}

.gm-product-lines__subtab.is-active {
  border-bottom: 2px solid var(--gm-color-brand-accent);
}

.gm-product-lines__subtab-title {
  font-size: 1vw;
  font-weight: 400;
  color: var(--gm-color-ink);
}

.gm-product-lines__subtab.is-active .gm-product-lines__subtab-title {
  color: var(--gm-color-brand-accent);
}

.gm-product-lines__subtab-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2vw;
  height: 1.5vw;
  min-width: 30px;
  min-height: 20px;
  border-radius: 20px;
  border: 1px solid var(--gm-color-ink);
  font-size: 0.8vw;
  font-weight: 400;
  color: var(--gm-color-ink);
}

.gm-product-lines__subtab-num.is-active {
  background: var(--gm-color-brand-accent);
  color: var(--gm-color-white);
  border-color: var(--gm-color-brand-accent);
}

/* ── Product Panels Container (SuperHi SlidePanel flex row) ── */
.gm-product-lines__panels {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 16px 0;
  overflow: visible;
}

/* ── Product Panel (Product Card — SuperHi style: tilted, color-blocked) ── */
.gm-product-lines__panel {
  position: relative;
  flex: 0 1 448px;
  width: 448px;
  max-width: 33.333%;
  height: 672px;
  background: #E1EDFF;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
  gap: 28px;
  color: #111118;
  box-shadow: 0 6px 16px rgba(17, 17, 24, 0.10), 0 2px 6px rgba(17, 17, 24, 0.06);
  transform-origin: center center;
  --gm-pl-y: 0px;
  --gm-pl-rot: 0deg;
  --gm-pl-scale: 1;
  transform: translate3d(0, var(--gm-pl-y), 0) rotate(var(--gm-pl-rot)) scale(var(--gm-pl-scale));
  will-change: transform;
  transition: transform 0.18s linear;
}

.gm-product-lines__panel:nth-child(1) {
  background: #FFFFFF;
  color: #111118;
  --gm-pl-rot: -2deg;
  z-index: 1;
}

.gm-product-lines__panel:nth-child(2) {
  background: #FFFFFF;
  color: #111118;
  --gm-pl-rot: 3deg;
  --gm-pl-scale: 1.025;
  z-index: 2;
}

.gm-product-lines__panel:nth-child(3) {
  background: #FFFFFF;
  color: #111118;
  --gm-pl-rot: -1.5deg;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .gm-product-lines__panel {
    --gm-pl-y: 0px !important;
    transition: none;
  }
}

.gm-product-lines__panel:nth-child(1) .gm-product-lines__panel-label {
  padding-right: 0;
}

.gm-product-lines__panel-media {
  width: 100%;
  height: 200px;
  background: #FFFFFF;
  border: 1px solid #83807C;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 8px;
}

.gm-product-lines__panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-product-lines__panel-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.gm-product-lines__panel-label {
  font-family: 'Manrope', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: inherit;
  margin: 0 0 12px;
  padding-right: 0;
  max-width: 100%;
}

.gm-product-lines__panel-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.38;
  color: inherit;
  margin: 0;
  letter-spacing: -0.005em;
  max-width: 100%;
  opacity: 0.92;
}

.gm-product-lines__panel-tags {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gm-product-lines__panel-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 1rem;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: inherit;
  opacity: 1;
  letter-spacing: -0.005em;
}

.gm-product-lines__panel-tag.is-red {
  background: var(--gm-color-brand-accent);
  border-color: var(--gm-color-brand-accent);
  color: #FFFFFF;
  font-weight: 500;
  opacity: 1;
}

.gm-product-lines__panel-tag.is-blue {
  background: var(--gm-color-blue);
  border-color: var(--gm-color-blue);
  color: #FFFFFF;
  font-weight: 500;
  opacity: 1;
}

.gm-product-lines__panel-tag.is-yellow {
  background: var(--gm-color-yellow);
  border-color: var(--gm-color-yellow);
  color: #111118;
  font-weight: 500;
  opacity: 1;
}

.gm-product-lines__panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 7px 18px;
  background: #FFFFFF;
  color: #111118;
  border-radius: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: transform 0.2s ease;
}

.gm-product-lines__panel:nth-child(1) .gm-product-lines__panel-cta,
.gm-product-lines__panel:nth-child(3) .gm-product-lines__panel-cta {
  background: var(--gm-color-blue);
  color: var(--gm-color-white);
}

.gm-product-lines__panel:nth-child(2) .gm-product-lines__panel-cta {
  background: var(--gm-color-yellow);
}

.gm-product-lines__panel-cta:hover {
  transform: translateX(4px);
}

.gm-product-lines__panel-cta svg {
  width: 18px;
  height: 10px;
  flex-shrink: 0;
}

.gm-product-lines__panel-cta svg path {
  stroke: currentColor;
}

.gm-product-lines__panel-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  z-index: 3;
  animation: gm-product-lines__badge-spin 12s linear infinite;
}

.gm-product-lines__panel:nth-child(1) .gm-product-lines__panel-badge {
  background: var(--gm-color-brand-accent);
  color: #FFFFFF;
  animation-delay: 0s;
}

.gm-product-lines__panel:nth-child(2) .gm-product-lines__panel-badge {
  background: var(--gm-color-blue);
  color: #FFFFFF;
  animation-delay: -4s;
}

.gm-product-lines__panel:nth-child(3) .gm-product-lines__panel-badge {
  background: var(--gm-color-yellow);
  color: #111118;
  animation-delay: -8s;
}

@keyframes gm-product-lines__badge-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Responsive ── */

@media (max-width: 989px) {
  .gm-product-lines__tabrow {
    margin: 0;
    width: 100%;
    gap: 0;
  }

  .gm-product-lines__tab {
    height: 72px;
    padding: 0 18px 14px;
    margin-left: 0;
    border-radius: 14px 14px 0 0;
  }

  .gm-product-lines__tab-title {
    font-size: 22px;
    margin: 14px 0;
  }

  .gm-product-lines__subtab-title {
    font-size: 0.85rem;
  }

  .gm-product-lines__tab-num {
    min-width: 36px;
    min-height: 24px;
    width: 36px;
    height: 24px;
    font-size: 13px;
    margin: 14px 0;
  }

  /* Material panel: 좌우 끝 패딩 0 으로 — 카드가 화면 끝까지 흐름 */
  .gm-product-lines__material.is-active {
    padding: 16px 0 32px;
  }

  /* Panels container: 가로 스크롤 (SuperHi-style horizontal scroller with peek) */
  .gm-product-lines__panels {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    padding: 12px 16px 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gm-product-lines__panels::-webkit-scrollbar {
    display: none;
  }

  /* Panel: 75vw 고정 너비, 다음 카드가 우측으로 ~40px 보임 */
  .gm-product-lines__panel {
    flex: 0 0 75vw;
    width: 75vw;
    max-width: 320px;
    min-height: 0;
    height: auto;
    padding: 1.2rem;
    justify-content: flex-start;
    gap: 16px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .gm-product-lines__panel-body {
    flex: 0 0 auto;
    gap: 12px;
  }

  .gm-product-lines__panel-label {
    font-size: 40px;
  }

  .gm-product-lines__panel-desc {
    font-size: 14px;
  }

  /* 모바일: 대표 태그(첫번째)만 노출 + 폰트 14px */
  .gm-product-lines__panel-tag {
    font-size: 14px;
  }

  .gm-product-lines__panel-tag:not(:first-child) {
    display: none;
  }
}

@media (max-width: 640px) {
  .gm-product-lines__block {
    border-radius: 0 0 12px 12px;
  }

  .gm-product-lines__tab {
    height: 66px;
    padding: 0 14px 12px;
    border-radius: 12px 12px 0 0;
  }

  .gm-product-lines__tab-title {
    font-size: 20px;
    margin: 12px 0;
  }

  .gm-product-lines__tab-num {
    min-width: 32px;
    min-height: 22px;
    width: 32px;
    height: 22px;
    font-size: 12px;
    margin: 12px 0;
  }

  .gm-product-lines__subtab {
    height: 40px;
    padding: 0 12px;
  }

  .gm-product-lines__panel {
    padding: 1.2rem;
    gap: 16px;
    min-height: 0;
  }

  .gm-product-lines__panel-label {
    font-size: 38px;
  }

  .gm-product-lines__panel-desc {
    font-size: 14px;
  }

  .gm-product-lines__panel-cta {
    font-size: 16px;
    padding: 8px 18px;
  }

  .gm-product-lines__panel-badge {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 13px;
  }
}

