: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(110deg, #0b3f3b 0%, #155e56 48%, #2fbf9c 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: #2A9D8F;
  --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);
      --hero-break-spacing: 24px;
  }
}


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

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

.lp-web-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;
  -webkit-font-smoothing: antialiased;
}

.lp-web-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-emphasis), opacity var(--transition-emphasis), transform var(--transition-emphasis);
}

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

.lp-web-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-web-control {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

.lp-web-button {
  cursor: pointer;
}

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

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

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

.lp-web-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-label,
.pricing-table .feature-category-fill {
  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-label {
  min-width: 260px;
}

@media (max-width: 640px) {
  .pricing-table .feature-row-label,
  .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-label {
      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;
  }
}

/* -------------------------------------------------
 ãƒ˜ãƒƒãƒ€ãƒ¼
------------------------------------------------- */
.site-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;
}

.site-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;
}

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

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

.site-nav-link: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-list {
  list-style: none;
  padding: 40px;
}

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

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

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

.mobile-menu-link: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;
  }

  .site-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: 1fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  background-image:
    linear-gradient(90deg, rgba(6,20,18,0.45) 0%, rgba(6,20,18,0) 58%),
    radial-gradient(circle at 18% 32%, rgba(6,20,18,0.35) 0%, rgba(6,20,18,0) 62%),
    repeating-linear-gradient(30deg, rgba(255,255,255,0.035) 0 1px, rgba(255,255,255,0) 1px 36px),
    repeating-linear-gradient(150deg, rgba(255,255,255,0.03) 0 1px, rgba(255,255,255,0) 1px 36px);
  opacity: 1;
}

.hero::after {
  background-image:
    radial-gradient(circle at 76% 20%, rgba(72,220,170,0.42) 0%, rgba(72,220,170,0) 46%),
    radial-gradient(circle at 86% 58%, rgba(46,200,160,0.32) 0%, rgba(46,200,160,0) 52%),
    radial-gradient(circle at 64% 82%, rgba(32,170,140,0.28) 0%, rgba(32,170,140,0) 55%),
    radial-gradient(circle at 35% 75%, rgba(28,140,120,0.18) 0%, rgba(28,140,120,0) 60%);
  filter: blur(6px);
  opacity: 0.85;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.glass-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass-card {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.3);
  }
}

.glass-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.glass-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}

.glass-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
}

.glass-line.short {
  width: 60px;
}

.glass-line:not(.short) {
  width: 120px;
}

.glass-pill {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  width: 90px;
}

.glass-pill.wide {
  width: 140px;
}

.glass-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  width: 100%;
}

.card-a {
  right: 18%;
  top: 20%;
  width: 220px;
  height: 140px;
  transform: rotate(-3deg);
}

.card-b {
  right: 8%;
  top: 42%;
  width: 250px;
  height: 160px;
  transform: rotate(2deg);
}


.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;
}

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

@media (min-width: 1025px) {
  .hero .container {
      position: relative;
      grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-text {
      position: relative;
      z-index: 2;
  }

  .hero-visual {
      position: absolute;
      right: -60px;
      top: auto;
      bottom: 0;
      width: 55%;
      height: 100%;
      align-items: flex-end;
      justify-content: flex-end;
      z-index: 1;
  }

  .hero .eyebrow-img {
      width: 72%;
      max-width: none;
  }

  .hero .headline-img {
      width: 88%;
      max-width: 560px;
  }

  .hero .model-img {
      position: absolute;
      right: 5%;
      top: clamp(16px, 4vh, 48px);
      bottom: auto;
      width: auto;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      transform: scale(1.15);
      transform-origin: right top;
  }
}

@media (min-width: 1280px) {
  .hero .model-img {
      right: 6%;
      transform: scale(1.2);
  }
}

.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;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(300px, 50vw, 500px);
  z-index: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: clamp(320px, 40vw, 520px);
  height: clamp(320px, 40vw, 520px);
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.12) 32%, rgba(255,255,255,0) 72%);
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

.model-img {
  position: relative;
  width: clamp(260px, 32vw, 400px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(-20px 10px 40px rgba(0,0,0,0.15));
  z-index: 1;
  pointer-events: none;
  transform: translateY(clamp(15px, 6%, 40px));
}

.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-sub {
  display: block;
  color: var(--color-text);
}

.ui-headline-line {
  display: block;
}

.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-sub {
  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-value {
  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-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-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-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-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 .step-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.step-block .step-desc {
  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: 1120px) and (min-width: 1025px) {
  .hero {
      min-height: 600px;
      height: auto;
      align-items: flex-start;
      padding-top: calc(var(--header-height) + 12px);
  }

  .hero-text {
      padding-top: 12px;
      padding-bottom: 20px;
  }

  .hero-visual {
      right: -80px;
  }

  .hero .model-img {
      right: 0;
  }
}

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

  .hero {
      min-height: 600px;
      height: auto;
      padding-top: calc(var(--header-height) + var(--hero-break-spacing));
      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;
      gap: 32px;
      padding: 0;
      order: 1;
  }

  .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 .container > .hero-visual {
      order: 2;
  }

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

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

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

  .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-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%);
  }

  .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-link {
      display: flex;
      align-items: center;
      height: 100%;
  }

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

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

  .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;
  }

  .lp-web-body {
      font-size: 15px;
  }

  .container {
      padding: 0 20px;
  }

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

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

  .ui-headline {
      font-size: clamp(24px, 7vw, 32px);
  }

  .ui-headline-line {
      white-space: nowrap;
  }

  .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;
	  padding-left: 48px;
  }

  .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 {
      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;
  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 24px;
  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-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-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-img {
      width: 24px;
      height: 24px;
  }

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

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

  .n-logo-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;
  z-index: 2;
}

@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);
  }
}

.hero-url-input {
  margin: 18px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 75%;
  font-size: 16px;
}

.hero-url-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  /* text-align: center; */
  margin-bottom: 16px;
}

.hero-url-field {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-url-text {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--textMain, #1f2937);
}

.hero-url-text::placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.hero-btn.btn-primary.hero-cta-highlight {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  border: 3px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(120deg, #22d3ee, #a78bfa, #34d399, #facc15, #22d3ee) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 300% 300%;
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.35), 0 10px 24px rgba(0, 0, 0, 0.2);
  animation: hero-cta-breathe 1.7s ease-in-out infinite, hero-cta-shift 3.6s ease-in-out infinite;
}

.hero-btn.btn-primary.hero-cta-highlight::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 60%);
  filter: blur(6px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
  animation: hero-cta-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-cta-shift {
  0% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
  100% { background-position: 0 0, 0% 50%; }
}

@keyframes hero-cta-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

@keyframes hero-cta-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-btn.btn-primary.hero-cta-highlight {
      animation: none;
  }
  .hero-btn.btn-primary.hero-cta-highlight::after {
      animation: none;
  }
}

@media (max-width: 1024px) {
  .hero-text > .hero-url-input {
      order: 4;
  }
  .hero-text > .hero-buttons {
      order: 5;
  }
}

@media (max-width: 768px) {
  .hero-url-input {
      width: 100%;
      max-width: 100%;
  }
}


.precision-architecture-section {
    /* --- PecoChat Theme Colors --- */
    --p-bg-base: #fbfbfd;
    --p-text-main: #1d1d1f;
    --p-text-muted: #6e6e73;
    --p-accent-primary: #2a9d8f;
    --p-accent-dark: #1d7a6e;
    --p-ease-apple: cubic-bezier(0.2, 0.8, 0.2, 1);

    background-color: var(--p-bg-base);
    color: var(--p-text-main);
    padding: 140px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 背景装飾 */
.precision-bg-ambient {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.precision-container {
    max-width: 1140px;
    margin: 0 auto;
    padding-inline: var(--gutter-desktop, 64px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}


/* --- 左カラム：テキスト --- */
.precision-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.precision-headline {
	font-size: var(--fs-headline-xl);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--p-text-main);
    margin-bottom: 32px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.precision-headline-line {
    display: block;
}

.precision-desc {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    line-height: 1.6;
    color: var(--p-text-muted);
    font-weight: 700;
    margin-bottom: 48px;
    max-width: 600px;
}

.precision-desc p {
    margin: 0;
}

@media (max-width: 960px) {
	.precision-desc {
		margin-left: auto;
		margin-right: auto;
	}
}

.precision-credentials {
    display: flex;
    gap: 24px;
    padding-top: 0;
}
@media (max-width: 960px) {
    .precision-credentials {
        justify-content: center;
        gap: 20px;
    }
}

.precision-cred-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--p-text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.cred-icon-check {
    width: 20px;
    height: 20px;
    background: var(--p-accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    flex-shrink: 0;
}

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

.gauge-container {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gauge-center-stat {
    position: absolute;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: auto;
    height: auto;
}

.gauge-val {
    font-family: var(--font-family-base, -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: clamp(5.5rem, 11vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    background: linear-gradient(135deg, #1d1d1f 30%, #2a9d8f 100%);
    -webkit-background-clip: text;
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gauge-unit {
    font-size: 0.45em;
    font-weight: 700;
    margin-left: 2px;
    background: linear-gradient(135deg, #1d1d1f 30%, #2a9d8f 100%);
    -webkit-background-clip: text;
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 1025px) {
  .gauge-val {
      font-size: clamp(4.5rem, 6vw, 6.5rem);
  }
}

.gauge-label {
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--p-text-muted);
}

.gauge-ticks {
    position: absolute;
    inset: 0;
    animation: gaugeEntrance 1.8s var(--p-ease-apple) forwards;
}

.tick {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 50%;
    transform-origin: bottom center;
}

.tick::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    transition: all 0.6s var(--p-ease-apple);
}

.tick.active::after {
    background-color: var(--p-accent-primary);
}

.tick.inactive::after {
    background-color: #d1d1d6;
    height: 32px;
    top: 4px;
    opacity: 0.5;
}

@keyframes gaugeEntrance {
    from { transform: rotate(-60deg) scale(0.95); opacity: 0; }
    to { transform: rotate(0deg) scale(1); opacity: 1; }
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--p-ease-apple), transform 1s var(--p-ease-apple);
}
.in-view .reveal-up {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (max-width: 1420px) {
    .precision-container {
      grid-template-columns: minmax(0, 1fr);
      padding-inline: var(--gutter-tablet, 40px);
      gap: 60px;
      text-align: center;
    }

	.precision-text-col {
		align-items: center;
    }
}
@media (max-width: 768px) {
    .precision-architecture-section {
        padding: 100px 0;
        overflow-x: hidden;
    }
    .precision-container {
      	padding-inline: var(--gutter-mobile, 24px);
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .precision-headline {
        font-size: clamp(1.8rem, 6.5vw, 2.4rem);
        word-break: normal;
        overflow-wrap: normal;
    }
    .precision-headline-line {
        display: inline;
    }
    .precision-text-col,
    .precision-visual-col {
        min-width: 0;
        max-width: 100%;
    }
    .precision-desc {
        max-width: 100%;
    }
    .precision-credentials {
        flex-wrap: wrap;
        row-gap: 12px;
    }
    .precision-visual-col {
        width: 100%;
    }
    .gauge-container {
        width: 100%;
        max-width: min(360px, 100%);
        margin-inline: auto;
    }
}

.service-mode-section {
    --service-mode-primary: #2a9d8f;
    --service-mode-primary-hover: #238b7e;
    --service-mode-text-main: #1d1d1f;
    --service-mode-text-body: #6e6e73;
    --service-mode-text-sub: #86868b;
    --service-mode-bg-body: #e8e8ed;
    --service-mode-bg-card: #ffffff;
    --service-mode-ui-border: #e1e4e8;
    --service-mode-ui-bg-toolbar: #f4f6f8;
    background-color: var(--service-mode-bg-body);
    color: var(--service-mode-text-main);
    font-family: var(--font-family-base);
    line-height: 1.5;
}

@media (min-width: 1025px) {
    .service-mode-section.section-spacing {
        padding-block: 140px;
    }
}

.service-mode-container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: var(--gutter-desktop);
    text-align: center;
}

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

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

.service-mode-lead {
    margin-bottom: 80px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.service-mode-title {
    font-size: clamp(37px, 5.5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.08;
    margin-bottom: 24px;
    margin-top: 0;
    background-image: linear-gradient(129deg, #63d2c1, #40bcae, #2a9d8f, #207e72, #18635a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.service-mode-subtitle {
    font-size: 24px;
    color: var(--service-mode-text-body);
    font-weight: 600;
    margin: 0 auto;
    line-height: 1.4;
    max-width: 800px;
}

.service-mode-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}

.service-mode-card {
    background: var(--service-mode-bg-card);
    border-radius: 28px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-mode-card-header {
    margin-bottom: 32px;
}

.service-mode-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--service-mode-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(42, 157, 143, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-mode-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--service-mode-primary);
}

.service-mode-card-description {
    font-size: 19px;
    line-height: 1.45;
    color: var(--service-mode-text-body);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.service-mode-simulator {
    margin-top: auto;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-mode-editor {
    border: 1px solid var(--service-mode-ui-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
}

.service-mode-editor-toolbar {
    background-color: var(--service-mode-ui-bg-toolbar);
    border-bottom: 1px solid var(--service-mode-ui-border);
    padding: 8px 12px;
    display: flex;
    gap: 8px;
}

.service-mode-tool-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    font-size: 12px;
    font-weight: bold;
    cursor: default;
}

.service-mode-tool-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.service-mode-editor-textarea {
    flex-grow: 1;
    padding: 16px;
    font-size: 14px;
    color: #333;
    position: relative;
    overflow: hidden;
}

.service-mode-editor-placeholder {
    color: #a1a1a6;
    pointer-events: none;
    position: absolute;
    top: 16px;
    left: 16px;
    transition: opacity 0.2s;
}

.service-mode-editor-content {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.service-mode-cursor::after {
    content: "|";
    animation: service-mode-blink 1s step-end infinite;
    color: var(--service-mode-primary);
}

@keyframes service-mode-blink {
    50% { opacity: 0; }
}

.service-mode-editor-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.service-mode-char-count {
    font-size: 11px;
    color: #a1a1a6;
    margin-right: auto;
}

.service-mode-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e5e5ea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-mode-send-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-left: 2px;
    margin-top: 1px;
}

.service-mode-send-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.service-mode-send-btn.is-active {
    background-color: var(--service-mode-primary);
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3);
}

.service-mode-send-btn.is-sending {
    transform: scale(0.9);
    background-color: var(--service-mode-primary-hover);
}

.service-mode-generate-btn {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--service-mode-ui-border);
    background-color: #fff;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-mode-generate-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.service-mode-generate-btn.is-active {
    border-color: var(--service-mode-primary);
    background-color: rgba(42, 157, 143, 0.05);
    color: var(--service-mode-primary);
}

.service-mode-auto-visual {
    position: relative;
    height: 100%;
    background: #f5f5f7;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.service-mode-chat-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.service-mode-chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 88%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 13px;
    line-height: 1.4;
    position: relative;
}

.service-mode-chat-bubble.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-mode-chat-bubble--user {
    background-color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: var(--service-mode-text-main);
}

.service-mode-chat-bubble--ai {
    background-color: var(--service-mode-primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: #fff;
}

@media (max-width: 768px) {
    .service-mode-lead {
        margin-bottom: 40px;
    }
    .service-mode-title {
        text-align: left;
    }
    .service-mode-subtitle {
        font-size: 18px;
        text-align: left;
    }
    .service-mode-card {
        padding: 24px;
    }
    .service-mode-card-description {
        font-size: 16px;
    }
}

@media (min-width: 900px) {
    .service-mode-cards {
        grid-template-columns: 1fr 1fr;
    }
}
