/* ============================================
   Brand — Project Stylesheet
   ============================================ */

/* ── Design System Imports ── */
@import './design-system-css/fonts.css';
@import './design-system-css/tokens.css';
@import './design-system-css/components.css';
@import './design-system-css/utilities.css';

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Brand accent colors */
  --brand-green: #53FF9A;
  --brand-blue: #41C1F7;
  --brand-pink: #FF7CF2;
  --brand-gradient: linear-gradient(90deg, #53FF9A 0%, #41C1F7 50%, #FF7CF2 100%);
  --brand-green-bg: rgba(83, 255, 154, 0.1);
  --brand-blue-bg: rgba(65, 193, 247, 0.1);
  --brand-pink-bg: rgba(255, 124, 242, 0.1);
  --brand-green-border: rgba(83, 255, 154, 0.3);
  --brand-blue-border: rgba(65, 193, 247, 0.3);
  --brand-pink-border: rgba(255, 124, 242, 0.3);

  /* Font */
  --font-sans: 'LINE Seed Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'LINE Seed Sans KR', sans-serif;

  /* Semantic color aliases (light mode) */
  --background: var(--bg-canvas);
  --foreground: var(--text-primary);
  --muted: var(--bg-surface);
  --muted-foreground: var(--text-secondary);
  --border: var(--border-default);
  --border-color: var(--border-default);
  --card: var(--bg-canvas);
  --ring: var(--greyscale-400);
  --section-alt: var(--bg-surface);
  --header-bg: rgba(255, 255, 255, 0.85);
  --destructive: var(--feedback-error);
  --divider-color: var(--bg-surface);

  /* Radius */
  --radius: 0.75rem;
  --radius-full: 9999px;
}

html.dark {
  --background: var(--bg-canvas);
  --foreground: var(--text-primary);
  --muted: var(--bg-surface);
  --muted-foreground: var(--text-secondary);
  --border: var(--border-default);
  --border-color: var(--border-default);
  --card: var(--bg-surface);
  --ring: var(--greyscale-500);
  --section-alt: var(--bg-surface);
  --header-bg: rgba(0, 0, 0, 0.85);
}

html.dark {
  color-scheme: dark;
}

/* ============================================
   i18n Visibility Rules
   ============================================ */
.lang-en { display: none; }
.lang-en-block { display: none; }
html[lang="en"] .lang-ko { display: none; }
html[lang="en"] .lang-en { display: inline; }
html[lang="en"] p.lang-en,
html[lang="en"] div.lang-en,
html[lang="en"] section.lang-en,
html[lang="en"] li.lang-en { display: block; }
html[lang="en"] .lang-ko-block { display: none; }
html[lang="en"] .lang-en-block { display: block; }

/* ============================================
   Base Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#main-content > section + section {
  margin-top: 80px;
}

#main-content > #hero + #about {
  margin-top: 0;
}

:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ============================================
   Skip Navigation
   ============================================ */
.skip-nav {
  position: absolute;
  z-index: 9999;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--text-primary);
  color: var(--bg-canvas);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* ============================================
   Container
   ============================================ */
.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================
   Navigation / Title Bar
   ============================================ */
.title-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px;
  pointer-events: none;
}

.title-bar__inner {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 19px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  box-shadow: 0px 8px 4px 0px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}

/* Logo */
.title-bar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.title-bar__logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.title-bar__logo-wordmark {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

html.dark .title-bar__logo-wordmark { filter: invert(1); }

/* Nav Menu — centered absolutely */
.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu__item {
  font-size: var(--typo-caption-size);
  line-height: var(--typo-caption-line-height);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav-menu__item:hover { opacity: 0.55; }

/* Actions */
.title-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language button — outline pill */
.nav-lang-btn {
  padding: 10px 16px;
  border: 1px solid var(--button-outline-border);
  border-radius: 999px;
  background: transparent;
  color: var(--button-outline-fg);
  font-size: var(--typo-caption-size);
  line-height: var(--typo-caption-line-height);
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-lang-btn:hover { background: var(--button-outline-bg-hover); }

/* Contact button — primary filled pill */
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--button-default-bg);
  color: var(--button-default-fg);
  font-size: var(--typo-caption-size);
  line-height: var(--typo-caption-line-height);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-contact-btn:hover { background: var(--button-default-bg-hover); }

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 31.94vh; /* 345px / 1080px */
  background: linear-gradient(to top, white 21.801%, rgba(255, 255, 255, 0) 89.42%);
  z-index: 1;
}

html.dark .hero-gradient {
  background: linear-gradient(to top, var(--bg-canvas) 21.801%, rgba(0, 0, 0, 0) 89.42%);
}

.hero-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 36.3vh 1.5rem 60px;
  text-align: center;
  gap: 0;
}

.hero-section__headline {
  font-size: 64px;
  font-weight: var(--font-weight-bold);
  line-height: 92px;
  letter-spacing: var(--typo-heading1-letter-spacing);
  color: var(--text-primary);
  max-width: 920px;
  margin: 0;
}

.hero-section__subtitle-wrapper {
  position: relative;
  max-width: 1098px;
  width: 100%;
  padding: 10px;
}

.hero-section__subtitle-blur {
  position: absolute;
  inset: 0;
  background: rgba(2, 153, 208, 0.6);
  filter: blur(15px);
  border-radius: 4px;
}

.hero-section__subtitle {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 2.08vw, 30px);
  line-height: clamp(28px, 2.5vw, 36px);
  color: #000000;
  text-align: center;
  padding: 10px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

html.dark .hero-section__subtitle {
  color: var(--greyscale-0);
}

.hero-section__chips {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.hero-section__chip {
  padding: 15px 20px;
  border-radius: var(--radius-full);
  background: var(--action-primary-bg);
  color: var(--action-primary-fg);
  font-size: 20px;
  line-height: 16px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-section__chip--friendly:hover {
  background: #39FF14;
  color: #000000;
}

.hero-section__chip--honest:hover {
  background: #00CFFF;
  color: #000000;
}

.hero-section__chip--distinct:hover {
  background: #FF10F0;
  color: #000000;
}

/* ============================================
   About / Brand Section
   ============================================ */
.about-section {
  background: var(--bg-canvas);
  padding: 81px 0 72px;
  transition: background 0.3s;
}

.about-section__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.about-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-section__eyebrow {
  font-size: 16px;
  line-height: 26px;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.values-eyebrow {
  letter-spacing: 1.92px;
}

.about-section__intro {
  font-size: var(--typo-body1-size);
  line-height: var(--typo-body1-line-height);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-medium);
}

.about-section__desc {
  font-size: var(--typo-body2-size);
  line-height: var(--typo-body2-line-height);
  color: var(--text-secondary);
  max-width: 640px;
  margin-inline: auto;
}

.c-green { color: var(--brand-green); }
.c-blue  { color: var(--brand-blue); }
.c-pink  { color: var(--brand-pink); }

.about-words {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  transition: transform 0.3s ease;
}
.brand-word:hover { transform: scale(1.04); }
.brand-word.green { background: var(--brand-green-bg); color: var(--brand-green); border: 1px solid var(--brand-green-border); }
.brand-word.blue  { background: var(--brand-blue-bg);  color: var(--brand-blue);  border: 1px solid var(--brand-blue-border); }
.brand-word.pink  { background: var(--brand-pink-bg);  color: var(--brand-pink);  border: 1px solid var(--brand-pink-border); }

.about-section__ticker-wrapper {
  overflow-x: clip;
  overflow-y: visible;
  border-radius: 10px;
  padding-block: 6px;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

.ticker-text {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  line-height: 50px;
  color: var(--text-primary);
}

.ticker-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  padding: 0 1rem;
}

.ticker-separator {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
  background: var(--bg-surface);
  padding: 5rem 0;
  transition: background 0.3s;
}

.services-section__inner { }

.services-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-section__title {
  font-size: var(--typo-heading2-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--typo-heading2-line-height);
  letter-spacing: var(--typo-heading2-letter-spacing);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.services-section__subtitle {
  font-size: var(--typo-body2-size);
  color: var(--text-secondary);
  line-height: var(--typo-body2-line-height);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card__accent {
  height: 3px;
}
.service-card__accent--green { background: var(--brand-green); }
.service-card__accent--blue  { background: var(--brand-blue); }
.service-card__accent--pink  { background: var(--brand-pink); }

.service-card__body {
  padding: 1.5rem;
}

.service-card__status {
  display: inline-block;
  font-size: var(--typo-label-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.service-card__status--green { background: var(--brand-green-bg); color: var(--brand-green); }
.service-card__status--blue  { background: var(--brand-blue-bg);  color: var(--brand-blue); }
.service-card__status--pink  { background: var(--brand-pink-bg);  color: var(--brand-pink); }

.service-card__name {
  font-size: var(--typo-heading3-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--typo-heading3-letter-spacing);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-card__tagline {
  font-size: var(--typo-body3-size);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.75rem;
  line-height: var(--typo-body3-line-height);
}
.service-card__tagline--green { color: var(--brand-green); }
.service-card__tagline--blue  { color: var(--brand-blue); }
.service-card__tagline--pink  { color: var(--brand-pink); }

.service-card__description {
  font-size: var(--typo-body3-size);
  color: var(--text-secondary);
  line-height: var(--typo-body3-line-height);
  margin-bottom: 1rem;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--typo-body3-size);
  color: var(--text-secondary);
  line-height: var(--typo-body3-line-height);
}

.service-card__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.service-card__feature-dot--green { background: var(--brand-green); }
.service-card__feature-dot--blue  { background: var(--brand-blue); }
.service-card__feature-dot--pink  { background: var(--brand-pink); }

.service-card__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--typo-body3-size);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: opacity 0.15s;
}
.service-card__cta--green { background: var(--brand-green-bg); color: var(--brand-green); border: 1px solid var(--brand-green-border); }
.service-card__cta--blue  { background: var(--brand-blue-bg);  color: var(--brand-blue);  border: 1px solid var(--brand-blue-border); }
.service-card__cta--pink  { background: var(--brand-pink-bg);  color: var(--brand-pink);  border: 1px solid var(--brand-pink-border); }
.service-card__cta:hover  { opacity: 0.8; }
.service-card__cta--disabled {
  background: var(--bg-surface);
  color: var(--text-tertiary);
  border: 1px solid var(--border-default);
  pointer-events: none;
  cursor: default;
}

/* ============================================
   Mission Section
   ============================================ */
.mission-section {
  background: var(--bg-canvas);
  padding: 5rem 0;
  transition: background 0.3s;
}

.mission-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.mission-section__title {
  font-size: var(--typo-heading2-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--typo-heading2-line-height);
  letter-spacing: var(--typo-heading2-letter-spacing);
  color: var(--text-primary);
}

.mission-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.mission-card__accent {
  width: 4px;
  flex-shrink: 0;
}
.mission-card__accent--green { background: var(--brand-green); }
.mission-card__accent--blue  { background: var(--brand-blue); }
.mission-card__accent--pink  { background: var(--brand-pink); }

.mission-card__body {
  padding: 1.5rem;
}

.mission-card__label {
  display: inline-block;
  font-size: var(--typo-label-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.mission-card__text {
  font-size: var(--typo-body2-size);
  color: var(--text-secondary);
  line-height: var(--typo-body2-line-height);
}

.mission-card__text--highlight {
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  background: var(--bg-surface);
  padding: 5rem 0;
  transition: background 0.3s;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-section__title {
  font-size: var(--typo-heading2-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--typo-heading2-line-height);
  letter-spacing: var(--typo-heading2-letter-spacing);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-section__subtitle {
  font-size: var(--typo-body2-size);
  color: var(--text-secondary);
  line-height: var(--typo-body2-line-height);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-info__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-info__title {
  font-size: var(--typo-body1-size);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-info__desc {
  font-size: var(--typo-body3-size);
  color: var(--text-secondary);
  line-height: var(--typo-body3-line-height);
  margin-bottom: 1rem;
}

.contact-info__email {
  font-size: var(--typo-body3-size);
  color: var(--accent-secondary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
}
.contact-info__email:hover { text-decoration: underline; }

.contact-form {
  background: var(--bg-canvas);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-form__field label {
  font-size: var(--typo-body3-size);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.contact-form__input,
.contact-form__textarea {
  font-family: var(--font-sans);
  font-size: var(--typo-body3-size);
  color: var(--text-primary);
  background: var(--bg-canvas);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(83, 255, 154, 0.15);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--text-tertiary);
}

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

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--text-primary);
  color: var(--bg-canvas);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--typo-body3-size);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.contact-form__submit:hover { opacity: 0.82; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-canvas);
  border-top: 1px solid var(--border-default);
  padding: 2.5rem 0 2rem;
  transition: background 0.3s, border-color 0.3s;
}

.footer__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.footer__copyright {
  font-size: var(--typo-caption-size);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.footer__info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.25rem;
}

.footer__info-text {
  font-size: var(--typo-caption-size);
  color: var(--text-secondary);
}

.footer__divider {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 10px;
  background: var(--border-default);
  margin: 0 0.75rem;
}

.footer__legal-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.footer__legal-link {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.125rem 0.25rem;
  transition: color 0.2s;
}
.footer__legal-link:hover { color: var(--text-primary); text-decoration: underline; }

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
  min-height: calc(100vh - 64px);
  background: var(--bg-canvas);
  padding: 3rem 0 4.5rem;
}

.legal-page__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.legal-page__header { margin-bottom: 2.25rem; }

.legal-page__back {
  display: inline-block;
  font-size: var(--typo-body3-size);
  text-decoration: none;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.legal-page__back:hover { color: var(--text-primary); }

.legal-page__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.375rem;
  letter-spacing: -0.025em;
}

.legal-page__date {
  font-size: var(--typo-caption-size);
  color: var(--text-secondary);
}

.legal-page__divider {
  height: 1px;
  background: var(--border-default);
  margin-bottom: 2.25rem;
}

.legal-page__intro {
  margin-bottom: 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border-radius: 0.75rem;
  border: 1px solid var(--border-default);
}

.legal-page__intro p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-page__body {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.legal-section__title {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-default);
}

.legal-section p,
.legal-section li {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-section p { margin-bottom: 0.5rem; }

.legal-section ol,
.legal-section ul {
  padding-left: 1.25rem;
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.legal-section li { margin-bottom: 0.3125rem; }

.legal-section b {
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
}

.legal-page__contact {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1.125rem;
  gap: 0.3125rem;
}

.legal-page__contact p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0 !important;
}

.legal-page__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-default);
  gap: 1rem;
}

.legal-page__footer p {
  font-size: var(--typo-caption-size);
  color: var(--text-secondary);
}

.legal-page__link {
  white-space: nowrap;
  font-size: var(--typo-caption-size);
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.legal-page__link:hover { color: var(--text-primary); text-decoration: underline; }

/* ============================================
   Scroll Animations
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   prefers-reduced-motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .mission-highlight__icon { animation: none !important; }
  .flow-step,
  .flow-step__dot {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   Responsive Breakpoints
   ============================================ */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding-inline: 1rem; }
  .nav-menu { display: none !important; }
  .contact-pill { display: none !important; }
  .title-bar { padding: 12px; }
  .title-bar__inner {
    padding: 8px 12px;
    border-radius: 12px;
  }
  .hero-section__content { padding-top: 25vh; }
  .hero-section__headline { font-size: 2.5rem; line-height: 1.2; }
  .hero-section__subtitle-wrapper {
    max-width: min(100%, 620px);
  }
  .hero-section__subtitle {
    font-size: clamp(17px, 4vw, 24px);
    line-height: 1.45;
  }
  .services-grid { grid-template-columns: 1fr; }
  .ticker-text {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-section__content { padding-top: 20vh; }
  .hero-section__headline { font-size: 2rem; }
  .hero-section__subtitle-wrapper {
    padding: 6px;
  }
  .hero-section__subtitle {
    padding: 8px;
    font-size: clamp(16px, 4.6vw, 20px);
    line-height: 1.5;
  }
  .hero-section__chips { gap: 6px; }
  .hero-section__chip { padding: 6px 14px; font-size: 0.8125rem; }
  .about-words { gap: 0.5rem; }
  .brand-word { font-size: 1.125rem; padding: 0.5rem 1rem; }
  .about-section__ticker-wrapper {
    margin-top: 2rem;
  }
  .ticker-text {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ============================================
   v2.0.1 — New Section Styles
   ============================================ */

.about-section__container {
  max-width: 1280px;
  padding-inline: 0;
}

/* About Narrative */
.about-narrative {
  padding: 100px 0 0;
}

.about-narrative__grid {
  display: grid;
  grid-template-columns: 620px 600px;
  justify-content: space-between;
  gap: 60px;
  align-items: start;
  margin-bottom: 0;
}

.about-narrative__heading {
  max-width: 620px;
  font-size: 64px;
  font-weight: var(--font-weight-bold);
  line-height: 70px;
  color: var(--text-primary);
  margin-bottom: 0;
}

.about-narrative__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-narrative__bullets {
  list-style: none;
  padding: 0;
  margin: 42px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 600px;
}

.about-narrative__bullet {
  font-size: var(--typo-body1-size);
  color: #313131;
  line-height: var(--typo-body1-line-height);
}

.about-narrative__deco {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  align-self: flex-end;
}

/* Values Section */
.values-section {
  padding: 100px 0 0;
}

.values-header {
  margin-bottom: 54px;
}

.values-heading {
  max-width: 760px;
  margin-top: 8px;
  font-size: 56px;
  line-height: 68px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.values-grid {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid #f0f0f0;
}

.value-item {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 175px;
  padding: 25px 54px 25px 0;
}

.value-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 372px;
  max-width: 100%;
}

.value-item__top {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.value-item__index {
  font-size: 16px;
  line-height: 1;
  font-weight: var(--font-weight-bold);
  margin-bottom: 3px;
}

.value-item__title {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 53px;
}

.value-item__desc {
  width: 100%;
  min-width: 100%;
  font-size: 18px;
  color: #bdbdbd;
  line-height: 28px;
}

/* Mission Section v2 */
.mission-section__inner {
  padding: 5rem 0;
}

.mission-eyebrow {
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.mission-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.mission-headline {
  font-size: 72px;
  font-weight: var(--font-weight-bold);
  line-height: 78px;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.mission-lead {
  font-size: 24px;
  color: var(--text-secondary);
  line-height: 36px;
}

.mission-highlight {
  position: relative;
  overflow: clip;
  border-radius: 24px;
  width: 284px;
  min-width: 284px;
  min-height: 200px;
}

.mission-highlight__icon {
  position: absolute;
  left: 18px;
  top: 38px;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  color: var(--accent-tertiary, var(--brand-pink));
}

.mission-highlight.animate-on-scroll.visible .mission-highlight__icon {
  animation: north-star-twinkle 3s linear infinite;
}

.mission-highlight__accent {
  position: absolute;
  left: 28px;
  top: 70px;
  width: 4px;
  height: 90px;
  border-radius: 2px;
  background: var(--accent-tertiary, var(--brand-pink));
}

.mission-highlight__label {
  position: absolute;
  left: 46px;
  top: 40px;
  font-size: 14px;
  line-height: normal;
  font-weight: var(--font-weight-regular);
  letter-spacing: 1.4px;
  color: var(--text-secondary);
  margin: 0;
}

@keyframes north-star-twinkle {
  0% {
    opacity: 0.85;
    transform: scale(0.9) rotate(0deg);
    filter: none;
  }
  4% {
    opacity: 1;
    transform: scale(1.18) rotate(10deg);
    filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent-tertiary, var(--brand-pink)) 65%, white));
  }
  8% {
    opacity: 1;
    transform: scale(0.96) rotate(-6deg);
    filter: drop-shadow(0 0 7px color-mix(in srgb, var(--accent-tertiary, var(--brand-pink)) 45%, white));
  }
  12% {
    opacity: 1;
    transform: scale(1.04) rotate(2deg);
    filter: drop-shadow(0 0 4px color-mix(in srgb, var(--accent-tertiary, var(--brand-pink)) 35%, white));
  }
  16% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: none;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: none;
  }
}

.mission-highlight__body {
  position: absolute;
  left: 46px;
  top: 64px;
  margin: 0;
}

.mission-highlight__body p {
  font-size: 22px;
  line-height: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin: 0;
}

.mission-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 2.5rem 0;
}

.mg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mg-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 24px;
  min-height: 360px;
  padding: 27px 33px 33px;
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 0.32s ease,
              box-shadow 0.32s ease,
              opacity 0.28s ease,
              filter 0.28s ease,
              border-color 0.32s ease;
}

.mg-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--border-strong);
}

.mg-cards:hover .mg-card:not(:hover) {
  opacity: 0.56;
  transform: scale(0.97);
  filter: saturate(0.74);
}

.mg-card__deco {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -41px;
  bottom: -42px;
  z-index: 1;
  pointer-events: none;
}
.mg-card__deco--green { background: var(--brand-green); }
.mg-card__deco--blue  { background: var(--brand-blue); }

.mg-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}
.mg-card__accent--green { background: var(--brand-green); }
.mg-card__accent--blue  { background: var(--brand-blue); }

.mg-card__index {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 28px;
  font-weight: var(--font-weight-bold);
  margin: 0 0 10px;
}

.mg-card__title {
  position: relative;
  z-index: 2;
  width: 240px;
  max-width: 100%;
  font-size: 54px;
  line-height: 60px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin: 0 0 30px;
}

.mg-card__body {
  position: relative;
  z-index: 2;
  width: 540px;
  max-width: 100%;
  font-size: 24px;
  line-height: 48px;
  color: var(--text-secondary);
  margin: 0;
}

/* Execution Flow */
.flow-title {
  font-size: 44px;
  line-height: 52px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.flow-subtitle {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
}

.flow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 70px;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 67px 58px 56px;
  gap: 0;
  overflow: clip;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 79px;
  right: 79px;
  top: 73px;
  height: 1px;
  background: var(--border-default);
}

.flow-step {
  position: relative;
  min-width: 0;
  padding-top: 30px;
  opacity: 0.58;
  transform: none;
  transform-origin: top center;
  will-change: opacity;
  animation: flow-step-pulse 8s ease-in-out infinite;
}

.flow-step--1 {
  animation-delay: 0s;
  transform-origin: top left;
}
.flow-step--2 { animation-delay: 2s; }
.flow-step--3 { animation-delay: 4s; }
.flow-step--4 {
  animation-delay: 6s;
  transform-origin: top right;
}

.flow-step__connector {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  display: block;
}

.flow-step__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  opacity: 0.52;
  transform: scale(0.82);
  animation: flow-dot-pulse 8s ease-in-out infinite;
}
.flow-step--1 .flow-step__dot { animation-delay: 0s; }
.flow-step--2 .flow-step__dot { animation-delay: 2s; }
.flow-step--3 .flow-step__dot { animation-delay: 4s; }
.flow-step--4 .flow-step__dot { animation-delay: 6s; }

.flow-step__dot--green {
  background: var(--brand-green);
  color: var(--brand-green);
}
.flow-step__dot--blue {
  background: var(--brand-blue);
  color: var(--brand-blue);
}
.flow-step__dot--pink {
  background: var(--brand-pink);
  color: var(--brand-pink);
}
.flow-step__dot--muted {
  background: var(--text-tertiary);
  color: var(--text-tertiary);
}

.flow-step__line {
  display: none;
}

.flow-step__connector--last .flow-step__dot { margin-right: 0; }

.flow-step__title {
  font-size: 33px;
  line-height: 40px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  width: 220px;
  max-width: 100%;
  margin: 0 0 12px;
}

.flow-step__desc {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-secondary);
  width: 210px;
  max-width: 100%;
  margin: 0;
}

@keyframes flow-step-pulse {
  0%, 18% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0.58;
  }
}

@keyframes flow-dot-pulse {
  0%, 18% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 6px currentColor);
  }
  25%, 100% {
    opacity: 0.52;
    transform: scale(0.82);
    filter: none;
  }
}

/* Services Section v2 */
.services-section {
  background: var(--bg-canvas);
  padding: 5rem 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.services-headline {
  font-size: 60px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.services-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.featured-service {
  background: #111827;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  overflow: hidden;
}

.featured-service__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.featured-service__name {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.featured-service__tagline {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.featured-service__desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.featured-service__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.featured-service__features li {
  font-size: 1rem;
  color: #bdbdbd;
  line-height: 1.5;
}

.featured-service__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.featured-service__cta:hover { opacity: 0.8; }

.featured-service__mockup {
  width: 180px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  display: block;
}

/* Service Ecosystem */
.service-ecosystem {
  margin-top: 2rem;
}

.ecosystem-list {
  margin-top: 1rem;
}

.ecosystem-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 1.25rem 0;
}

.ecosystem-item__name {
  font-size: 1.125rem;
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
}

.ecosystem-item__desc {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.ecosystem-divider {
  height: 1px;
  background: var(--border-default);
}

/* Contact Section v2 */
.contact-section {
  background: var(--bg-canvas);
  padding: 5rem 0;
}

.contact-section__inner {
  /* uses container */
}

.faq-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.faq-list {
  margin-top: 1rem;
}

.faq-item {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.3s ease,
              background 0.3s ease,
              border-radius 0.3s ease,
              padding 0.3s ease,
              margin 0.3s ease,
              box-shadow 0.3s ease;
}

.faq-item.is-open {
  max-height: 600px;
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 0 1.25rem;
  margin: 0.5rem -1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transform: scale(1.01);
}

.faq-list.has-open .faq-item:not(.is-open) {
  opacity: 0.55;
  transform: scale(0.985);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 1.25rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.25s ease;
}

.faq-item.is-open .faq-item__question {
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
}

.faq-item__icon {
  font-size: 1.35rem;
  color: var(--text-primary);
  flex-shrink: 0;
  margin-left: 1rem;
  font-weight: 300;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item__divider {
  height: 1px;
  background: var(--border-default);
}

/* Contact CTA */
.contact-cta {
  margin-top: 3rem;
}

.contact-cta__divider {
  height: 1px;
  background: var(--border-default);
  margin-bottom: 2rem;
}

.contact-cta__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.contact-cta__title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.4;
}

.contact-cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-cta__email {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-cta__email:hover { color: var(--text-primary); text-decoration: underline; }

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--text-primary);
  color: var(--bg-canvas);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.contact-cta__btn:hover { opacity: 0.82; }

/* Responsive — v2.0.1 */
@media (max-width: 900px) {
  .about-section { padding: 56px 0; }
  .about-section__container { padding-inline: 1.25rem; }
  .about-narrative { padding-top: 56px; }
  .about-narrative__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-narrative__bullets {
    width: 100%;
    margin-top: 0;
  }
  .about-narrative__deco { align-self: flex-start; }
  .values-section { padding-top: 72px; }
  .values-header { margin-bottom: 32px; }
  .values-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .value-item { padding: 1.5rem 0; }
  .value-item__content { width: 100%; }
  .mission-header { grid-template-columns: 1fr; }
  .mg-cards { grid-template-columns: 1fr; }
  .mg-card {
    min-height: auto;
    transform: none;
  }
  .mg-card:hover {
    transform: none;
    box-shadow: none;
  }
  .mg-cards:hover .mg-card:not(:hover) {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .mg-card__deco {
    left: auto;
    top: auto;
    right: -41px;
    bottom: -17px;
  }
  .flow-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 32px 28px;
  }
  .flow-timeline::before { display: none; }
  .flow-step { padding-top: 0; }
  .flow-step__connector {
    position: static;
    margin-bottom: 10px;
  }
  .flow-step__title,
  .flow-step__desc {
    width: auto;
  }
  .featured-service { grid-template-columns: 1fr; }
  .featured-service__visual { display: none; }
  .ecosystem-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .contact-cta__body { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mission-headline { font-size: 44px; line-height: 52px; }
  .services-headline { font-size: 36px; }
  .mg-card {
    padding: 20px;
  }
  .mg-card__title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 16px;
  }
  .mg-card__body {
    font-size: 22px;
    line-height: 32px;
  }
  .mg-card__deco {
    width: 180px;
    height: 180px;
    right: -50px;
    bottom: -30px;
  }
  .flow-title { font-size: 32px; line-height: 40px; }
  .flow-step__title { font-size: 22px; line-height: 28px; }
  .flow-step__desc { font-size: 15px; line-height: 22px; }
  .flow-timeline {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    row-gap: 1rem;
  }
  .about-narrative__heading { font-size: 32px; line-height: 1.2; }
  .about-narrative__deco {
    width: 120px;
    height: 120px;
  }
  .values-heading { font-size: 32px; line-height: 1.25; }
  .value-item {
    min-height: auto;
    padding: 20px 0;
  }
  .value-item__content { gap: 14px; }
  .value-item__title {
    font-size: 32px;
    line-height: 1.25;
  }
  .value-item__desc {
    font-size: 16px;
    line-height: 24px;
  }
}
