:root {
  --color-accent: #2a9d8f;
  --color-accent-dark: #1d7a6e;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f5f7;
  --color-surface-soft: #f2f2f7;
  --color-page: #fbfbfd;
  --color-primary: #1d1d1f;
  --color-text: #1d1d1f;
  --color-text-muted: #6e6e73;
  --color-text-light: #86868b;
  --color-text-secondary: #86868b;
  --color-border: #e5e5e5;
  --gradient-hero: linear-gradient(135deg, #1a6b63 0%, #2a9d8f 100%);
  --shadow-card: 0 10px 40px rgba(0,0,0,0.03);
  --shadow-floating: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-cta: 0 8px 20px rgba(42,157,143,0.25);
  --radius-card: 32px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --header-height: 60px;
  --container-max: 1200px;
  --gutter-desktop: 48px;
  --gutter-tablet: 32px;
  --gutter-mobile: 20px;
  --space-section-desktop: 160px;
  --space-section-tablet: 120px;
  --space-section-mobile: 80px;
  --space-section-current: var(--space-section-desktop);
  --card-padding-block: clamp(40px, 5vw, 64px);
  --card-padding-inline: clamp(24px, 4vw, 48px);
  --card-gap-desktop: clamp(24px, 3vw, 32px);
  --bento-large-gap: clamp(40px, 6vw, 80px);
  --section-intro-max: 900px;
  --hero-break-spacing: 56px;
  --font-family-base: "SF Pro JP", "SF Pro Text", "SF Pro Display", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  --chat-green: #5d9585;
  --chat-green-hover: #4e8273;
  --fs-headline-xl: clamp(36px, 6vw, 72px);
  --fs-headline-lg: clamp(30px, 5vw, 56px);
  --fs-headline-md: clamp(24px, 3.8vw, 40px);
  --fs-body-lg: clamp(16px, 2.5vw, 22px);
  --fs-body-md: clamp(14px, 2vw, 18px);
  --transition-emphasis: 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-soft: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1024px) {
  :root {
      --space-section-current: var(--space-section-tablet);
  }
}

@media (max-width: 768px) {
  :root {
      --space-section-current: var(--space-section-mobile);
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-family-base);
  color: var(--color-text);
  background-color: var(--color-page);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-emphasis), opacity var(--transition-emphasis), transform var(--transition-emphasis);
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button, input, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

button:focus-visible, a:focus-visible {
  outline: 2px solid rgba(42,157,143,0.4);
  outline-offset: 3px;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}

body.js-enabled .fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-soft), transform var(--transition-soft);
  will-change: opacity, transform;
}

body.js-enabled .fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#pricing-section, #faq-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------
 グローバルレイアウト
------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
  position: relative;
}

@media (max-width: 1024px) {
  .container {
      padding-inline: var(--gutter-tablet);
  }
}

@media (max-width: 768px) {
  .container {
      padding-inline: var(--gutter-mobile);
  }
}

.section-spacing {
  padding-block: var(--space-section-current);
}

.section-intro {
  width: 100%;
  max-width: var(--section-intro-max);
  margin: 0 auto 80px 0;
  text-align: left;
}

.section-intro--narrow {
  --section-intro-max: 48rem;
}

:where(.kpi-card, .bento-card, .integ-card) {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: var(--shadow-card);
}

.security-inner,
.pricing-inner,
.faq-inner {
  margin: 0 auto;
}

.pricing-inner {
  max-width: 1120px;
  padding-inline: var(--gutter-tablet);
}

.faq-inner {
  max-width: 1080px;
  padding-inline: var(--gutter-tablet);
}

.security-grid {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: var(--gutter-tablet);
}

.pricing-table-scroll {
  overscroll-behavior-x: contain;
}

.pricing-table .feature-category-row th,
.pricing-table .feature-category-row td {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pricing-table .feature-category-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.5rem 1.5rem;
  position: sticky;
  left: 0;
  background: var(--color-surface-alt);
  z-index: 30;
}

.pricing-table .feature-category-fill {
  padding: 0;
}

.pricing-table .feature-row td:first-child {
  min-width: 260px;
}

@media (max-width: 640px) {
  .pricing-table .feature-row td:first-child,
  .pricing-table .feature-category-label {
      min-width: 180px;
      max-width: 180px;
      padding: 0.75rem 1rem;
      font-size: 12px;
      letter-spacing: 0.08em;
      white-space: normal;
  }

  .pricing-table .feature-row td:first-child {
      padding-inline: 1rem;
  }
}

.pricing-section {
  font-weight: 700;
}

.pricing-section * {
  font-weight: inherit;
}

.pricing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-price--value {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price--unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
}

@media (min-width: 1281px) {
  .pricing-inner .text-3xl,
  .pricing-price--value {
      font-size: 1.875rem;
  }
}

@media (max-width: 1280px) {
  .pricing-inner .text-3xl,
  .pricing-price--value {
      font-size: 24px;
  }

  .pricing-price {
      flex-wrap: nowrap;
  }
}

/* -------------------------------------------------
 ヘッダー
------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-surface);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header-container {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 var(--gutter-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  width: 120px;
  height: 24px;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav ul li a {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  padding: 5px 0;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-accent);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-button {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--color-text);
  transition: background 0.3s ease, color 0.3s ease;
}

.login-button:hover {
  background: rgba(42,157,143,0.08);
  color: var(--color-accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-surface);
  box-shadow: 0 8px 20px rgba(42,157,143,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.mobile-login-text {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(42,157,143,0.08);
}

.menu-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

.menu-icon::before, .menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-icon::before {
  top: -5px;
}

.menu-icon::after {
  top: 5px;
}

.mobile-menu-toggle.active .menu-icon {
  background: transparent;
}

.mobile-menu-toggle.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(42,157,143,0.1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  height: var(--header-height);
  border-bottom: 1px solid rgba(42,157,143,0.1);
}

.mobile-menu-login-text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

.mobile-menu-logo {
  display: inline-flex;
}

.mobile-menu-logo img {
  width: 120px;
  height: 24px;
}

.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(42,157,143,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mobile-menu-close:hover {
  transform: translateY(-50%) rotate(90deg);
  background: rgba(42,157,143,0.2);
}

.mobile-menu-close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.mobile-menu-close-icon::before, .mobile-menu-close-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  top: 50%;
  left: 0;
}

.mobile-menu-close-icon::before {
  transform: rotate(45deg);
}

.mobile-menu-close-icon::after {
  transform: rotate(-45deg);
}

.mobile-menu ul {
  list-style: none;
  padding: 40px;
}

.mobile-menu ul::after {
  content: '';
  display: block;
  height: 1px;
  background: #e0e0e0;
  margin-top: 10px;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.mobile-menu-buttons {
  padding: 30px 40px 40px;
}

.mobile-cta-button {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-surface);
  transition: opacity 0.3s ease;
}

.mobile-cta-button:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .header-container {
      padding: 0 32px;
      justify-content: center;
  }

  nav {
      display: none;
  }

  .header-buttons .login-button, .header-buttons .cta-button {
      display: none;
  }

  .mobile-login-text {
      display: inline-block;
      position: absolute;
      left: 24px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-accent);
      font-weight: 700;
      font-size: 14px;
  }

  .mobile-menu-toggle {
      display: flex;
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
  }

  .mobile-menu, .mobile-menu-overlay {
      display: block;
  }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  height: 90vh;
  max-height: 1000px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  height: 100%;
  z-index: 10;
}

.hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 60px 0;
}

.eyebrow img {
  width: min(100%, 360px);
  height: auto;
  opacity: 0.95;
  display: block;
}

@media (min-width: 1025px) {
  .eyebrow img {
      width: 80%;
      max-width: none;
  }
}

.headline img {
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 40px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-mobile-visual {
  display: none;
  width: 100%;
}

.model-img-mobile {
  width: min(100%, 240px);
  max-width: 240px;
}

.btn-primary {
  background: white;
  color: var(--color-accent-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.model-img {
  position: absolute;
  bottom: -45%;
  right: 50px;
  width: auto;
  height: 150%;
  max-height: 1400px;
  object-fit: contain;
  filter: drop-shadow(-20px 10px 40px rgba(0,0,0,0.15));
  z-index: 1;
  pointer-events: none;
}

.ui-showcase {
  background-color: var(--color-surface);
  padding: var(--space-section-current) 0;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ui-showcase-header {
  max-width: 1000px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.section-eyebrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ui-headline {
  font-size: var(--fs-headline-xl);
  line-height: 1.05;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin: 0;
}

.ui-headline span {
  display: block;
  color: var(--color-text);
}

.ui-desc {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 600;
  max-width: 1000px;
  margin-top: 24px;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.ui-showcase-container {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  margin-top: 40px;
}

.ui-showcase-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15), 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.5s ease;
}

.ui-showcase:hover .ui-showcase-img {
  transform: translateY(-10px);
}

.achievement-section {
  background: var(--color-page);
  padding: var(--space-section-current) 0;
}

.achievement-header {
  max-width: 960px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kpi-card {
  background: var(--color-surface);
  padding: 48px 32px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.kpi-card:hover {
  transform: none;
}

.kpi-visual-area {
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.kpi-icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kpi-icon.gray {
  stroke: #ccc;
}

.kpi-icon.fill-primary {
  fill: rgba(42, 157, 143, 0.1);
}

.kpi-label {
  font-size: var(--fs-body-md);
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.kpi-number-wrap {
  margin-bottom: 12px;
}

.kpi-number {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.kpi-unit {
  font-size: 24px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--color-text);
}

.kpi-desc {
  font-size: var(--fs-body-md);
  font-weight: 600;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

.bento-features {
  background-color: var(--color-surface-alt);
  padding: var(--space-section-current) 0;
}

.section-header {
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-headline {
  font-size: var(--fs-headline-lg);
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.04em;
}

.section-headline span {
  color: var(--color-text-light);
  display: block;
  margin-bottom: 10px;
  font-size: inherit;
}

.responsive-headline {
  font-size: var(--fs-headline-lg);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.responsive-desc {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  font-weight: 600;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(460px, auto);
  gap: var(--card-gap-desktop);
  align-items: stretch;
}

.bento-card {
  padding: var(--card-padding-block) var(--card-padding-inline);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-soft);
}

.bento-card:hover {
  transform: none;
}

.bento-card.large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bento-large-gap);
  align-items: center;
}

.bento-title {
  font-size: var(--fs-headline-md);
  font-weight: 700;
  margin: 0 0 clamp(16px, 2vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.bento-desc {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.bento-visual {
  background: var(--color-surface-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: clamp(280px, 32vw, 360px);
  padding: clamp(20px, 3vw, 32px);
}

.bento-card:not(.large) .bento-visual {
  margin-block-start: clamp(24px, 4vw, 48px);
  min-height: clamp(240px, 45vw, 320px);
  height: auto;
}

.bento-card:not(.large) .bento-title {
  font-size: clamp(22px, 3vw, calc(var(--fs-headline-md) * 0.85));
}

.visual-delivery {
  width: 85%;
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 10px 0 20px;
}

.progress-line {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #eee;
  z-index: 0;
}

.progress-line-fill {
  position: absolute;
  top: 12px;
  left: 0;
  width: 50%;
  height: 4px;
  background: var(--color-accent);
  z-index: 0;
}

.p-step {
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.p-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 4px solid #eee;
  transition: all 0.3s;
}

.p-step.active .p-circle {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(42,157,143,0.2);
}

.p-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
}

.p-step.active .p-label {
  color: var(--color-text);
}

.delivery-info {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.d-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  display: block;
}

.d-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.d-highlight {
  color: var(--color-accent);
}

.visual-steps {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 32px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 320px;
  background: white;
  padding: 16px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.visual-steps .step-num {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-arrow {
  color: #ccc;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

@media (max-width: 480px) {
  .visual-steps {
      align-items: flex-start;
  }

  .step-item {
      justify-content: flex-start;
      position: relative;
      padding-left: 48px;
  }

  .visual-steps .step-num {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
  }

  .step-arrow {
      padding-left: 40px;
  }
}

.visual-ticket {
  width: 80%;
  background: white;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.ticket-header {
  background: var(--color-accent);
  padding: 20px;
  color: white;
  text-align: center;
}

.ticket-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.ticket-body {
  padding: 32px;
  text-align: center;
}

.ticket-date {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 8px;
}

.ticket-time {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.ticket-detail {
  display: flex;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.td-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.td-item span {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  font-size: 16px;
  margin-top: 4px;
}

.integration-section {
  padding: var(--space-section-current) 0;
  background: var(--color-surface-alt);
}

.integ-header {
  margin-bottom: 60px;
  max-width: 700px;
}

.integ-title {
  font-size: var(--fs-headline-lg);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.integ-desc {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.integ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.integ-card {
  background: white;
  border-radius: 32px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.integ-card:hover {
  transform: none;
}

.integ-status {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(42, 157, 143, 0.08);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(42,157,143,0.2);
}

.integ-status.soon {
  background: var(--color-surface-alt);
  color: #999;
}

.integ-status.soon .status-dot {
  background: #ccc;
  box-shadow: none;
}

.integ-logo-box {
  width: 100%;
  max-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.integ-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.4s ease;
}

.integ-card-desc {
  font-size: var(--fs-body-md);
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: left;
  width: 100%;
}

.integ-card:hover .integ-logo-box img {
  transform: scale(1.03);
}

.integ-card:hover .integ-card-desc {
  color: var(--color-text);
}

.coming-soon-card {
  justify-content: center;
  background: #fafafa;
}

.coming-soon-text {
  font-size: 32px;
  font-weight: 800;
  color: #e0e0e0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: "SF Pro Display", sans-serif;
  margin-bottom: 16px;
}

.features-detail-section {
  background: var(--color-surface);
  padding: var(--space-section-current) 0;
}

.features-detail-header {
  text-align: left;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: 0;
  margin-right: 0;
}

.features-detail-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.features-detail-title {
  font-size: var(--fs-headline-lg);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-surface-alt);
  border-radius: 32px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  height: 600px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
  cursor: default;
}

.feature-card:hover {
  transform: none;
}

.feature-card-content {
  z-index: 2;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.feature-card-title {
  font-size: var(--fs-headline-md);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-card-desc {
  font-size: var(--fs-body-md);
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 700;
  max-width: 360px;
}

.feedback-chip-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  margin-bottom: 0;
}

.feedback-chip {
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #333;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.feature-card-visual {
  margin-top: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.feature-card-visual img {
  width: auto;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-visual img {
  transform: none;
}

.mockup-chat-ui {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 24px;
  width: 80%;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.mockup-bubble {
  background: var(--color-accent);
  color: white;
  padding: 12px 16px;
  border-radius: 16px 16px 0 16px;
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
  width: fit-content;
  margin-bottom: 12px;
}

.mockup-bubble.bot {
  background: #eee;
  color: #333;
  border-radius: 16px 16px 16px 0;
  margin-left: 0;
  margin-right: auto;
}

.mockup-list-ui {
  background: white;
  border-radius: 20px;
  padding: 20px;
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fafafa;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: #eee;
  width: 60%;
}

.mockup-invite-ui {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 80%;
  text-align: center;
}

.invite-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.invite-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  background: #ddd;
  margin-left: -12px;
}

.invite-avatar:first-child {
  margin-left: 0;
}

.invite-avatar.add {
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.feature-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 24px;
  background-color: var(--color-accent);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
  position: relative;
  z-index: 5;
}

.feature-cta-button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42, 157, 143, 0.4);
}

.mockup-form {
  width: 85%;
  background: white;
  padding: 24px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(0,0,0,0.03);
}

.form-row {
  margin-bottom: 16px;
}

.form-label {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input-box {
  height: 40px;
  background: #f2f2f7;
  border: none;
  border-radius: 10px;
  width: 100%;
}

.form-area-box {
  height: 72px;
  background: #f2f2f7;
  border: none;
  border-radius: 10px;
  width: 100%;
}

.scenario-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.steps-section {
  background: var(--color-page);
  padding: var(--space-section-current) 0;
}

.steps-header {
  margin: 0 0 100px;
  max-width: 800px;
  text-align: left;
}

.steps-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.steps-headline {
  font-size: var(--fs-headline-lg);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  color: var(--color-text);
  line-height: 1.1;
}

.steps-desc {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-top: 24px;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(42, 157, 143, 0.3) 20%, rgba(42, 157, 143, 0.3) 80%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.step-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.step-block.reverse {
  flex-direction: row-reverse;
}

.step-info {
  width: 45%;
}

.step-image {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps-timeline .step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: var(--color-accent);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(42, 157, 143, 0.4);
}

.step-block h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.step-block p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.file-icons-cluster {
  position: relative;
  width: 320px;
  height: auto;
  padding: 24px;
  background: var(--color-page);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.file-icon-item {
  width: 100%;
  aspect-ratio: 1;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: static;
}

.file-icon-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.code-window {
  width: 100%;
  max-width: 360px;
  background: #2d2d2d;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  font-family: monospace;
  font-size: 12px;
  color: #e0e0e0;
  line-height: 1.5;
  position: relative;
}

.code-window::before {
  content: '● ● ●';
  color: #555;
  font-size: 10px;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.line-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text);
}

.launch-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.active-badge-fixed {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(42,157,143,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  z-index: 2;
}

.ping-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 2px rgba(42,157,143,0.2);
}

.active-text {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-display-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.time-ring-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 8px solid rgba(42,157,143,0.1);
  border-top-color: var(--color-accent);
  transform: rotate(-45deg);
  background: radial-gradient(circle, rgba(42,157,143,0.05) 0%, transparent 70%);
}

.time-text {
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-text);
  letter-spacing: -0.04em;
  z-index: 1;
  margin-bottom: -8px;
}

.time-unit {
  font-size: 28px;
  color: var(--color-accent);
  margin-left: 4px;
}

.full-coverage {
  font-size: 12px;
  font-weight: 800;
  color: #999;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

.hybrid-tag-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  background: white;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(42,157,143,0.1);
}

.pdca-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-page);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.pdca-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(42,157,143,0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-center {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  z-index: 2;
}

.pdca-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin-slow 20s linear infinite;
}

.pdca-arrow::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateX(-50%);
}

@keyframes spin-slow {
  from {
      transform: rotate(0deg);
  }

  to {
      transform: rotate(360deg);
  }
}

.trend-line-box {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trend-icon {
  color: var(--color-accent);
}

.trend-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
}

.support-badge {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--color-text);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.glass-icon {
  background: rgba(42, 157, 143, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(42, 157, 143, 0.1);
}

.group:hover .graphic-element {
  transform: scale(1.05) translateY(-2px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.feature-row:hover {
  background-color: var(--color-page);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content.open {
  grid-template-rows: 1fr;
}

.accordion-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s;
  font-weight: 600;
}

.accordion-content.open .accordion-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
  padding-bottom: 28px;
  font-weight: 700;
}

.icon-chevron {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.group[aria-expanded="true"] .icon-chevron {
  transform: rotate(180deg);
}

.group:hover .icon-chevron {
  transform: translateY(2px);
}

.group[aria-expanded="true"]:hover .icon-chevron {
  transform: rotate(180deg) translateY(-2px);
}

.footer-link {
  position: relative;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #2a9d8f;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .container {
      padding: 0 32px;
  }

  .hero {
      min-height: 600px;
      padding-top: calc(var(--header-height) + var(--hero-break-spacing));
      padding-bottom: var(--hero-break-spacing);
  }

  .hero .container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }

  .hero-text {
      align-items: center;
      gap: 32px;
      padding: 0;
  }

  .hero-buttons {
      flex-direction: row;
      width: 100%;
      max-width: 420px;
      margin: 16px auto 0;
      gap: 12px;
      align-items: center;
      justify-content: center;
  }

  .hero-btn {
      flex: 1 1 auto;
      justify-content: center;
      padding: 14px 20px;
      font-size: 15px;
      height: auto;
  }

  .hero-visual {
      position: relative;
      order: 2;
      height: 360px;
  }

  .hero-visual.hero-visual-desktop {
      display: none;
  }

  .hero-mobile-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 0;
  }

  .model-img {
      position: relative;
      right: auto;
      bottom: auto;
      transform: translateX(0);
  }

  .model-img-mobile {
      width: min(100%, 240px);
      max-width: 240px;
      mask-image: linear-gradient(to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 70%,
      rgba(0,0,0,0.85) 85%,
      rgba(0,0,0,0) 100%);
      -webkit-mask-image: linear-gradient(to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 70%,
      rgba(0,0,0,0.85) 85%,
      rgba(0,0,0,0) 100%);
  }

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

  .feature-card {
      height: auto;
      min-height: 460px;
      padding: 36px;
  }

  .steps-timeline::before {
      left: 20px;
  }

  .step-block, .step-block.reverse {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 48px;
      gap: 32px;
  }

  .step-info, .step-image {
      width: 100%;
  }

  .steps-timeline .step-num {
      position: absolute;
      left: 0;
      top: 0;
  }

  .header-container {
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: 100%;
  }

  .logo {
      grid-column: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
  }

  .logo a {
      display: flex;
      align-items: center;
      height: 100%;
  }

  .logo img {
      height: 22px;
      display: block;
  }

  .mobile-menu-toggle {
      grid-column: 3;
      display: flex;
      margin-left: auto;
  }

  .container {
      padding: 0 32px;
  }

  .hero {
      height: auto;
      min-height: auto;
      padding-bottom: var(--hero-break-spacing);
      align-items: center;
  }

  .hero .container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
      display: grid;
  }

  .hero-text {
      width: auto;
      height: auto;
      align-items: center;
      padding-top: 0;
      padding-bottom: 0;
      order: 1;
  }

  .hero .container > .hero-visual {
      order: 2;
  }

  .eyebrow {
      margin-bottom: 8px;
      margin-top: 24px;
  }

  .eyebrow img {
      margin-left: auto;
      margin-right: auto;
  }

  .headline {
      margin-top: -32px;
      margin-bottom: 0;
      position: relative;
      z-index: 2;
  }

  .headline img {
      max-width: min(60%, 520px);
      margin: 0 auto;
  }

  .hero-buttons {
      flex-direction: row;
      width: 100%;
      max-width: 420px;
      margin: 16px auto 0;
      gap: 12px;
      align-items: center;
      justify-content: center;
  }

  .hero-visual {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      width: 100%;
      height: 400px;
      justify-content: center;
      margin-top: 20px;
      order: 2;
      z-index: 1;
  }

  .hero-text > .hero-visual {
      order: 2;
      width: 100%;
      height: auto;
      margin-top: 32px;
      justify-content: center;
  }

  .hero-text > .headline {
      order: 3;
  }

  .hero-text > .hero-buttons {
      order: 4;
  }

  .model-img {
      position: relative;
      right: auto;
      bottom: 0;
      height: auto;
      width: min(80%, 360px);
      max-width: 360px;
      left: 50%;
      transform: translateX(-50%);
  }

  .kpi-grid, .bento-grid, .integ-grid {
      grid-template-columns: 1fr;
  }

  .bento-card.large {
      grid-template-columns: 1fr;
  }

  .bento-card.large .bento-visual {
      order: -1;
      margin-block-start: 0;
      height: auto;
      min-height: 300px;
  }

  .kpi-number {
      font-size: 56px;
  }
}

@media (max-width: 768px) {
  :root {
      --bento-large-gap: 24px;
  }

  body {
      font-size: 15px;
  }

  .container {
      padding: 0 20px;
  }

  .hero {
      padding-top: calc(var(--header-height) + 12px);
  }

  .hero-text {
      text-align: center;
  }

  .hero-buttons {
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
  }

  .model-img-mobile {
      width: min(100%, 210px);
      max-width: 210px;
  }

  .feedback-chip {
      font-size: 9px;
      padding: 4px 10px;
  }

  .section-eyebrow {
      font-size: 11px;
      letter-spacing: 0.28em;
  }

  .pricing-table {
      font-size: 13px;
  }

  .section-header {
      margin-bottom: 56px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
  }

  .bento-card.large .bento-visual,
  .bento-card:not(.large) .bento-visual {
      min-height: 240px;
      height: auto;
  }

  .visual-delivery, .visual-ticket, .visual-steps {
      width: 100%;
      padding: 20px;
  }

  .delivery-info {
      flex-direction: row;
      gap: 12px;
      padding: 12px;
  }

  .d-label {
      font-size: 10px;
  }

  .d-value {
      font-size: 13px;
  }

  .visual-steps {
      padding: 10px 0;
  }

  .step-item {
      width: 100%;
      max-width: 100%;
      padding: 12px 16px;
  }

  .step-text {
      font-size: 14px;
  }

  .visual-ticket {
      width: 100%;
  }

  .ticket-date {
      font-size: 32px;
  }

  .ticket-time {
      font-size: 18px;
  }

  .file-icons-cluster {
      width: 240px;
      height: 240px;
      margin: 0 auto;
  }

  .file-icon-item {
      width: 56px;
      height: 56px;
  }

  .file-icon-label {
      font-size: 9px;
  }
}

@media (max-width: 600px) {
  :root {
      --bento-large-gap: 16px;
  }

  .headline img {
      max-width: 260px;
  }

  .hero-buttons {
      flex-direction: row;
      max-width: 320px;
      gap: 10px;
      justify-content: center;
  }

  .hero-btn {
      width: auto;
      flex: 0 0 auto;
      min-width: 0;
      padding: 12px 20px;
  }

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

  .pricing-table table {
      min-width: 640px;
  }
}

@media (max-width: 480px) {
  .model-img-mobile {
      width: min(100%, 192px);
      max-width: 192px;
  }
}

/* -------------------------------------------------
 ハイブリッド対応セクション
------------------------------------------------- */
.hybrid-section {
  background-color: var(--color-surface);
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hybrid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}

@media (max-width: 1024px) {
  .hybrid-container {
      padding-inline: var(--gutter-tablet);
  }
}

@media (max-width: 768px) {
  .hybrid-container {
      padding-inline: var(--gutter-mobile);
  }
}

.hybrid-header {
  margin-bottom: 80px;
  text-align: left;
}

.hybrid-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.hybrid-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--color-text);
}

.hybrid-headline .text-gradient {
  background: linear-gradient(135deg, #1d1d1f 30%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hybrid-lead {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--color-text-secondary);
  font-weight: 500;
  max-width: 720px;
}

.hybrid-section .switcher-controls {
  display: flex;
  justify-content: center;
  background: #f5f5f7;
  padding: 5px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 64px;
  position: relative;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.04);
}

.hybrid-section .switcher-backdrop {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s ease;
  width: 0;
  z-index: 1;
}

.hybrid-section .switcher-btn {
  position: relative;
  z-index: 2;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.hybrid-section .switcher-btn.active {
  color: var(--color-primary);
  font-weight: 700;
}

.hybrid-section .switcher-container {
  position: relative;
  min-height: 480px;
}

.hybrid-section .switcher-panel {
  display: none;
  width: 100%;
}

.hybrid-section .switcher-panel.active {
  display: block;
  animation: panelFadeUp 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hybrid-section .bento-grid {
  display: grid;
  gap: 24px;
  grid-auto-rows: auto;
  align-items: stretch;
}

.hybrid-section .grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.hybrid-section .grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.hybrid-section .bento-card {
  background: #ffffff;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: border-color 0.3s ease;
  height: auto;
}

.hybrid-section .bento-card:hover {
  border-color: rgba(42, 157, 143, 0.15);
  z-index: 2;
}

.hybrid-section .card-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  min-height: 240px;
}

.hybrid-section .grid-2 .card-visual {
  height: 320px;
  min-height: 320px;
}

.hybrid-section .hy-card .card-visual {
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.hybrid-section .card-visual.web-theme {
  background: #fbfbfd;
  background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.hybrid-section .card-visual.line-theme {
  background: #f2f7f4;
  background-image: radial-gradient(rgba(6,199,85,0.1) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.hybrid-section .card-content {
  padding: 32px;
  flex: 1;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.hybrid-section .pattern-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hybrid-section .p-num {
  background: var(--color-accent);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
}

.hybrid-section .p-label {
  color: var(--color-text-secondary);
}

.hybrid-section .card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.hybrid-section .card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hybrid-section .grid-3,
  .hybrid-section .grid-2 {
      grid-template-columns: 1fr;
  }

  .hybrid-section .card-visual {
      height: 280px;
  }
}

.notification-section {
  background-color: #fbfbfd;
  padding-top: 100px;
  padding-bottom: 120px;
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.notify-wrapper {
  text-align: left;
  width: 100%;
  margin: 0;
}

.notify-header {
  margin-bottom: 80px;
  max-width: 720px;
}

.notify-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.notify-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.notify-lead {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-weight: 500;
  max-width: 720px;
  margin: 0;
}

.notify-visual-stage {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto 0;
  width: 100%;
  max-width: 1000px;
}

.n-source {
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.n-logo-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.n-logo-circle img {
  width: 60px;
  height: auto;
}

.n-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0;
  animation: pulseWave 2s infinite;
  z-index: 1;
}

.n-flow-lines {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.n-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.n-targets {
  display: flex;
  justify-content: center;
  gap: 60px;
  z-index: 10;
  width: 100%;
  max-width: 800px;
}

.n-target-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s;
  width: 140px;
}

.n-target-item:hover {
  transform: translateY(-8px);
}

.n-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f9f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n-icon-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.n-label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

@media (max-width: 1024px) {
  .notification-section {
      padding: 60px 0;
  }

  .notify-visual-stage {
      height: 340px;
      gap: 20px;
  }

  .n-flow-lines {
      max-width: 100%;
      top: 40px;
      bottom: 40px;
  }

  .n-targets {
      gap: 12px;
      padding: 0 10px;
  }

  .n-target-item {
      width: auto;
      flex: 1;
      padding: 16px 8px;
      border-radius: 16px;
  }

  .n-icon-box {
      width: 44px;
      height: 44px;
      border-radius: 12px;
  }

  .n-icon-box img {
      width: 24px;
      height: 24px;
  }

  .n-label {
      font-size: 11px;
  }

  .n-logo-circle {
      width: 80px;
      height: 80px;
  }

  .n-logo-circle img {
      width: 48px;
  }
}

.hybrid-section .ui-browser-mockup {
  width: 80%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 400px;
}

.hybrid-section .ui-chat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.hybrid-section .ui-chat-row.right {
  justify-content: flex-end;
}

.hybrid-section .ui-chat-row.left {
  gap: 12px;
}

.hybrid-section .ui-bubble {
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 85%;
}

.hybrid-section .ui-bubble.user-green,
.hybrid-section .ui-bubble.user-green-large {
  background: var(--chat-green);
  color: white;
  border-bottom-right-radius: 4px;
}

.hybrid-section .ui-bubble.user-green-large {
  padding: 14px 24px;
  font-size: 15px;
}

.hybrid-section .ui-avatar {
  width: 32px;
  height: 32px;
  background: #eee;
  border-radius: 50%;
  flex-shrink: 0;
}

.hybrid-section .ui-avatar.human {
  background: #333;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hybrid-section .ui-avatar.p-avatar {
  width: 40px;
  height: 40px;
  background-image: url('https://assets.pecochat.co.jp/static/img/line/pecochat_logo.webp?v=1752945740');
  background-size: cover;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hybrid-section .ui-browser-mockup.fallback-mode.compact {
  height: 200px;
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hybrid-section .ui-chat-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.hybrid-section .ui-bubble.bot-white,
.hybrid-section .ui-bubble.bot-white-large {
  background: white;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-bottom-left-radius: 4px;
}

.hybrid-section .ui-bubble.bot-white-large {
  padding: 24px;
  border-radius: 24px;
  border-top-left-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 1.5;
  width: fit-content;
  max-width: 100%;
}

.hybrid-section .bot-text-large {
  margin: 0;
  font-weight: 500;
}

.hybrid-section .bot-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hybrid-section .bot-btn-green {
  background: var(--chat-green);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  width: 100%;
  max-width: 300px;
  transition: background 0.2s;
}

.hybrid-section .bot-btn-green:hover,
.hybrid-section .ui-fallback-btn-green:hover {
  background: var(--chat-green-hover);
}

.hybrid-section .ui-fallback-btn-green {
  background: var(--chat-green);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(93, 149, 133, 0.2);
  opacity: 0;
  animation: btnFadeUp 0.5s forwards 1s;
  cursor: pointer;
}

.hybrid-section .hand-icon {
  font-size: 14px;
}

.hybrid-section .delayed-response,
.hybrid-section .delayed-response-2 {
  opacity: 0;
  animation: msgSlideIn 0.5s forwards 0.5s;
}

.hybrid-section .delayed-response-2 {
  animation-delay: 0.8s;
}

.hybrid-section .ui-cursor-click-web {
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="black" viewBox="0 0 24 24"><path d="M7 2l12 11.2-5.8.5 3.3 7.3-2.2.9-3.2-7.4-4.4 4.3V2z" stroke="white" stroke-width="1"/></svg>') no-repeat center/contain;
  position: absolute;
  bottom: 20px;
  left: 60%;
  opacity: 0;
  animation: cursorClick 3s infinite;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hybrid-section .ui-contact-selector-flat {
  width: 90%;
  max-width: 500px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.hybrid-section .ui-phone-frame {
  width: 140px;
  height: 200px;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hybrid-section .phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #7690aa;
}

.hybrid-section .screen-chat-bg {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hybrid-section .chat-placeholder {
  width: 70%;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
}

.hybrid-section .chat-placeholder.short {
  width: 40%;
}

.hybrid-section .screen-rich-menu {
  background: #f7f7f7;
  border-top: 1px solid #ddd;
  padding-bottom: 8px;
  position: relative;
  z-index: 2;
}

.hybrid-section .menu-tab-bar {
  background: rgba(255,255,255,0.8);
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #666;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.hybrid-section .rm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 4px;
  gap: 2px;
}

.hybrid-section .rm-btn {
  background: white;
  height: 44px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  border: 1px solid #eee;
}

.hybrid-section .rm-btn.active-tap {
  border-color: #06C755;
  background: #eaffef;
  z-index: 10;
}

.hybrid-section .rm-icon {
  color: #333;
}

.hybrid-section .rm-label {
  font-size: 7px;
  font-weight: 700;
  color: #333;
}

.hybrid-section .rm-icon-placeholder,
.hybrid-section .rm-label-placeholder {
  background: #eee;
  border-radius: 2px;
}

.hybrid-section .rm-icon-placeholder {
  width: 12px;
  height: 12px;
}

.hybrid-section .rm-label-placeholder {
  width: 20px;
  height: 4px;
}

.hybrid-section .tap-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(6,199,85,0.2);
  animation: rippleTap 1.5s infinite;
  pointer-events: none;
}

.hybrid-section .tap-hand {
  position: absolute;
  bottom: -20px;
  right: -16px;
  width: 32px;
  animation: handTap 1.5s infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hybrid-section .ui-line-escalation {
  width: 80%;
  background: #7690aa;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  position: relative;
  border: 4px solid #fff;
}

.hybrid-section .le-chat-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hybrid-section .le-row {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  opacity: 0;
  animation: msgSlideIn 0.5s forwards;
}

.hybrid-section .le-row.right {
  justify-content: flex-end;
  animation-delay: 0s;
  opacity: 1;
}

.hybrid-section .le-row.delayed-1 {
  animation-delay: 0.5s;
}

.hybrid-section .le-row.delayed-3 {
  animation-delay: 2.5s;
}

.hybrid-section .le-bubble {
  background: #9de66a;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 10px;
  color: #000;
  max-width: 80%;
  line-height: 1.4;
}

.hybrid-section .le-bubble.bot,
.hybrid-section .le-bubble.operator {
  background: white;
  color: #333;
}

.hybrid-section .le-bubble.operator {
  border: 1px solid #06C755;
}

.hybrid-section .le-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hybrid-section .le-avatar.ai {
  background: #e5e5e5;
}

.hybrid-section .le-avatar.human {
  background: #333;
  border: 1px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hybrid-section .le-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  opacity: 0;
  animation: popToast 2s forwards 1.5s;
}

.hybrid-section .ui-peco-user-control {
  width: 85%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 16px;
  position: relative;
}

.hybrid-section .admin-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}

.hybrid-section .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hybrid-section .u-avatar {
  width: 32px;
  height: 32px;
  background: #e5e5e5;
  border-radius: 50%;
}

.hybrid-section .u-details {
  display: flex;
  flex-direction: column;
}

.hybrid-section .u-name {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hybrid-section .line-badge-icon {
  background: #06C755;
  color: white;
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 4px;
}

.hybrid-section .u-status {
  font-size: 9px;
  color: #888;
  margin-top: 2px;
}

.hybrid-section .peco-mode-switch {
  width: 140px;
  height: 32px;
  background: #f5f5f5;
  border-radius: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hybrid-section .pm-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  z-index: 2;
  transition: all 0.3s;
}

.hybrid-section .pm-option.pm-ai {
  background: #8ab6a4;
  color: white;
}

.hybrid-section .pm-option.pm-human {
  background: transparent;
  color: #999;
}

.hybrid-section .pm-icon {
  width: 14px;
  height: 14px;
}

.hybrid-section .hy-card:hover .pm-option.pm-ai {
  background: transparent;
  color: #999;
}

.hybrid-section .hy-card:hover .pm-option.pm-human {
  background: #c56353;
  color: white;
}

.hybrid-section .ui-cursor-hand-line {
  width: 28px;
  position: absolute;
  bottom: 8px;
  right: 20px;
  transform: translate(10px, 10px);
  opacity: 0;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
  transition: 0.4s;
}

.hybrid-section .hy-card:hover .ui-cursor-hand-line {
  transform: translate(0, 0);
  opacity: 1;
}

@keyframes panelFadeUp {
  from {
      opacity: 0;
      transform: translateY(8px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulseWave {
  0% {
      transform: scale(1);
      opacity: 0.6;
  }
  100% {
      transform: scale(1.8);
      opacity: 0;
  }
}

@keyframes btnFadeUp {
  from {
      opacity: 0;
      transform: translateY(5px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes cursorClick {
  0%, 30% {
      opacity: 0;
      transform: translate(20px, 20px);
  }
  40% {
      opacity: 1;
      transform: translate(0, 0);
  }
  50% {
      transform: scale(0.9);
  }
  60% {
      transform: scale(1);
  }
  80% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

@keyframes msgSlideIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes rippleTap {
  0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
  100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
  }
}

@keyframes handTap {
  0%, 100% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(-4px, -4px) scale(0.9);
  }
}

@keyframes popToast {
  0% {
      opacity: 0;
      transform: translateY(4px);
  }
  40% {
      opacity: 1;
      transform: translateY(0);
  }
  100% {
      opacity: 0;
      transform: translateY(-4px);
  }
}
