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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-outline {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.btn-outline:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.logo-icon {
  color: #2563eb;
}

.logo-tagline {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-left: 8px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-link {
  font-size: 14px;
  color: #666;
}

.header-link:hover {
  color: #333;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===== PATTERN 1: Trust Stats ===== */
.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  padding: 32px 48px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.trust-stat {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.trust-plus,
.trust-unit {
  font-size: 28px;
  font-weight: 700;
}

.trust-label {
  display: block;
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 60px;
  background: #e2e8f0;
}

/* ===== PATTERN 2: Dashboard Mock ===== */
.hero-split {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-bottom: 80px;
  z-index: 1;
}

.hero-split-content {
  flex: 1.2;
  min-width: 0;
}

.hero-title-left,
.hero-desc-left {
  text-align: left;
}

.hero-cta-left {
  justify-content: flex-start !important;
  padding-left: 0;
}

.hero-split-visual {
  flex: 0.9;
  display: flex;
  justify-content: center;
}

.dashboard-mock {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.dashboard-dots span:first-child {
  background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
  background: #f59e0b;
}

.dashboard-dots span:nth-child(3) {
  background: #22c55e;
}

.dashboard-title {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.dashboard-body {
  display: flex;
  min-height: 240px;
}

.dashboard-sidebar {
  width: 50px;
  background: #1e293b;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-item {
  width: 34px;
  height: 34px;
  background: #334155;
  border-radius: 8px;
}

.sidebar-item.active {
  background: #2563eb;
}

.dashboard-content {
  flex: 1;
  padding: 20px;
  background: #f8fafc;
}

.dashboard-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.dash-card {
  flex: 1;
  background: #fff;
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.dash-card-value {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.dash-card-label {
  font-size: 10px;
  color: #64748b;
  margin-top: 4px;
}

.dashboard-chart {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.dashboard-chart svg {
  width: 100%;
  height: auto;
}

/* ===== PATTERN 3: Client Logos ===== */
.client-logos {
  margin-top: 48px;
}

.client-logos-label {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.client-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.client-logo {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo svg {
  width: 120px;
  height: 40px;
}

/* ===== PATTERN 4: Background Shapes ===== */
.hero-pattern-4,
.hero-combined {
  background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f0f7ff 100%);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  opacity: 0.08;
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  opacity: 0.06;
  bottom: 100px;
  left: -80px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  opacity: 0.1;
  top: 200px;
  left: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: #fbbf24;
  opacity: 0.15;
  bottom: 200px;
  right: 15%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-5 {
  width: 80px;
  height: 80px;
  background: #10b981;
  opacity: 0.12;
  top: 150px;
  right: 20%;
}

.bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto 80px;
}

.hero-lead {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.hero-lead-char {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2px;
}

.hero-lead-char::before {
  content: '●';
  font-size: 4px;
  margin-bottom: 0;
  color: #333;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-number {
  font-size: 96px;
  font-weight: 900;
  color: #2563eb;
  letter-spacing: -2px;
}

.hero-number-img {
  height: 96px;
  width: auto;
  vertical-align: bottom;
  margin-right: -8px;
}

.hero-number-unit {
  font-size: 64px;
  font-weight: 800;
  color: #2563eb;
}

.hero-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-desc strong {
  color: #111;
  font-weight: 700;
}

.price-highlight {
  color: #2563eb;
  font-weight: 700;
  border-bottom: 3px solid #2563eb;
  padding-bottom: 2px;
}

.marker-highlight {
  background: linear-gradient(transparent 80%, #fff3b0 80%);
  padding: 0 4px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hero-cta .btn {
  min-width: 220px;
}

.btn-text {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  transition: color 0.2s;
}

.btn-text:hover {
  color: #2563eb;
}

/* Hero Flow */
.hero-flow {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 40px 20px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.flow-line {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: #e5e7eb;
}

.flow-item {
  position: relative;
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding-top: 32px;
}

.flow-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #cbd5e1;
  border-radius: 50%;
  z-index: 1;
}

.flow-item.featured .flow-dot {
  width: 20px;
  height: 20px;
  background: #2563eb;
  border-color: #2563eb;
  top: -2px;
  z-index: 1;
}

.flow-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.flow-item.featured .flow-label {
  color: #2563eb;
}

.flow-badge {
  display: inline-block;
  background: #fef3c7;
  color: #d97706;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

.flow-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.flow-item.featured .flow-name {
  color: #2563eb;
}

.flow-detail {
  font-size: 13px;
  color: #6b7280;
}

/* Step Flow Section - Full Width */
.step-flow-section {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 100px 0 80px;
  margin-top: 0;
  overflow: hidden;
}

.step-flow-section > .container {
  position: relative;
  z-index: 1;
}

.step-flow-section .section-title {
  margin-bottom: 0;
}

.step-flow-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 60px;
}

.step-flow-line {
  position: absolute;
  top: 9px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
  z-index: 0;
}

.step-flow-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.step-flow-dot {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid #cbd5e1;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-flow-item.featured .step-flow-dot {
  width: 28px;
  height: 28px;
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
  margin-top: -4px;
}

.step-flow-item:hover .step-flow-dot {
  border-color: #2563eb;
  transform: scale(1.1);
}

.step-flow-content {
  margin-bottom: 16px;
}

.step-flow-label {
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.step-flow-item.featured .step-flow-label {
  color: #2563eb;
}

.step-flow-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.step-flow-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.step-flow-item.featured .step-flow-name {
  color: #2563eb;
  font-size: 20px;
}

.step-flow-price {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Tooltip Bubble */
.step-flow-tooltip {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
  width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  opacity: 0.95;
  transition: all 0.3s ease;
}

.step-flow-item:hover .step-flow-tooltip {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-flow-item.featured .step-flow-tooltip {
  border-color: #2563eb;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.step-flow-tooltip-arrow {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: translateX(-50%) rotate(45deg);
}

.step-flow-item.featured .step-flow-tooltip-arrow {
  border-color: #2563eb;
}

.step-flow-tooltip-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.step-flow-tooltip-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Section Titles */
.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

/* Section Watermark (common styles) */
.section-watermark {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.section-label {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

/* Contact Banner Section */
.contact-banner {
  position: relative;
  padding: 80px 0;
  background: #4a5568;
  overflow: hidden;
}

.contact-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
  z-index: 1;
}

.contact-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/><rect fill="rgba(255,255,255,0.03)" x="50" y="50" width="50" height="50"/></svg>');
  background-size: 30px 30px;
  opacity: 0.5;
}

.contact-banner .container {
  position: relative;
  z-index: 2;
}

.contact-banner-content {
  text-align: center;
}

.contact-banner-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-banner-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.contact-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
}

.contact-banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 48px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-banner-btn-primary {
  background: #fff;
  color: #1a1a2e;
}

.contact-banner-btn-primary:hover {
  background: #f0f4ff;
}

.contact-banner-btn-secondary {
  background: #2563eb;
  color: #fff;
}

.contact-banner-btn-secondary:hover {
  background: #1d4ed8;
}

.contact-banner-btn-text {
  white-space: nowrap;
}

.contact-banner-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 50%;
}

.contact-banner-btn-primary .contact-banner-btn-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.contact-banner-btn-secondary .contact-banner-btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* News Section (Top Page) */
.news-section {
  padding: 100px 0;
  background: #fff;
}

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

.news-section-list {
  border-top: 1px solid #e5e7eb;
}

.news-section-item {
  border-bottom: 1px solid #e5e7eb;
}

.news-section-item a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 16px;
  transition: background 0.3s;
}

.news-section-item a:hover {
  background: #f8fafc;
}

.news-section-date {
  font-size: 15px;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
  min-width: 100px;
}

.news-section-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 80px;
}

.news-section-text {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  flex: 1;
  line-height: 1.6;
}

.news-section-arrow {
  font-size: 16px;
  color: #999;
  transition: transform 0.3s, color 0.3s;
}

.news-section-item a:hover .news-section-arrow {
  transform: translateX(4px);
  color: #2563eb;
}

.news-section-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 40px;
}

.news-more-text {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.news-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.3s, transform 0.3s;
}

.news-more-btn:hover {
  background: #2563eb;
  transform: scale(1.05);
}

/* Problem Section */
.problem {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.problem-watermark {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.problem .container {
  position: relative;
  z-index: 1;
}

.problem-label {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

/* PC: 横4列でカードの下にキャラクター */
.problem-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-item {
  display: flex;
  flex-direction: column;
}

.problem-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 28px 24px;
  min-height: 140px;
  display: flex;
  align-items: center;
  flex: 1;
}

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

.problem-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.problem-list li:last-child {
  margin-bottom: 0;
}

.problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #333;
}

.persona {
  text-align: center;
  margin-top: 16px;
}

.persona-illustration {
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
}

.persona-illustration svg {
  width: 100%;
  height: 100%;
}

.persona-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Service/Value Section */
.service {
  position: relative;
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.service .container {
  position: relative;
  z-index: 1;
}

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

.value-item {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.value-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Merit Section */
.merit {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.merit .container {
  position: relative;
  z-index: 1;
}

.merit-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.merit-item:last-child {
  margin-bottom: 0;
}

.merit-item.reverse {
  flex-direction: row-reverse;
}

.merit-content {
  flex: 1;
}

.merit-heading {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin-bottom: 20px;
}

.merit-text {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
}

.merit-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merit-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Features Section */
.features {
  position: relative;
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.features .container {
  position: relative;
  z-index: 1;
}

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

.feature-item {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 12px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Plan Section */
.plan {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.plan .container {
  position: relative;
  z-index: 1;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid #2563eb;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 20px;
}

.plan-header {
  margin-bottom: 20px;
}

.plan-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  background: #e8f4fe;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #333;
}

.plan-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.plan-price {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-currency {
  font-size: 16px;
  font-weight: 500;
}

.price-value {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #1a1a2e;
}

.price-value-text {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
}

.price-unit {
  font-size: 13px;
  color: #666;
  margin-left: 4px;
}

.plan-period {
  font-size: 13px;
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.plan-features {
  text-align: left;
  margin-bottom: 20px;
  flex: 1;
}

.plan-features li {
  font-size: 13px;
  color: #333;
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 600;
  font-size: 12px;
}

.plan-benefit {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}

.benefit-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #d97706;
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 12px;
  color: #92400e;
}

.plan-note {
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
  padding: 8px;
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
}

.plan-note-bottom {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

/* Comparison Section */
.comparison {
  position: relative;
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.comparison .container {
  position: relative;
  z-index: 1;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  vertical-align: middle;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.comparison-table th.col-metric {
  width: 180px;
}

.comparison-table th.col-21days {
  position: relative;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
}

.comparison-table th.col-other {
  color: #666;
  font-weight: 500;
}

.col-badge {
  display: block;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  color: #2563eb;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table td {
  line-height: 1.5;
}

.comparison-table td.metric-cell {
  text-align: left;
  background: #fafbfc;
}

.metric-name {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 15px;
  margin-bottom: 4px;
}

.metric-desc {
  display: block;
  font-size: 12px;
  color: #888;
}

.comparison-table td.highlight {
  background: #f0f7ff;
  border-left: 3px solid #2563eb;
  border-right: 3px solid #2563eb;
}

.comparison-table tbody tr:first-child td.highlight {
  border-top: 3px solid #2563eb;
}

.comparison-table tbody tr:last-child td.highlight {
  border-bottom: 3px solid #2563eb;
}

.comparison-table td.highlight strong {
  color: #2563eb;
  font-size: 17px;
}

.rating {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: bold;
}

.rating-best {
  color: #2563eb;
}

.rating-good {
  color: #10b981;
}

.rating-mid {
  color: #f59e0b;
}

.rating-bad {
  color: #9ca3af;
}

.cell-note {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.comparison-table td.highlight .cell-note {
  color: #6b8dd6;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: #fafbfc;
}

.comparison-table tbody tr:hover td.highlight {
  background: #e8f0fe;
}

/* Tech Section */
.tech {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.tech .container {
  position: relative;
  z-index: 1;
}

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

.tech-item {
  text-align: center;
  padding: 24px 12px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tech-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.tech-icon svg {
  width: 100%;
  height: 100%;
}

.tech-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.tech-text {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* Target Section */
.target {
  position: relative;
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.target .container {
  position: relative;
  z-index: 1;
}

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

.target-item {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
}

.target-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.target-icon svg {
  width: 100%;
  height: 100%;
}

.target-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.target-subtitle {
  font-size: 13px;
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 16px;
}

.target-text {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: left;
}

/* Showcase Preview Section */
.showcase-preview {
  position: relative;
  padding: 100px 0 80px;
  background: #fff;
  overflow: hidden;
}

.showcase-preview .container {
  position: relative;
  z-index: 1;
}

/* Showcase More Button */
.showcase-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.showcase-more-text {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.showcase-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.3s, transform 0.3s;
}

.showcase-more-btn:hover {
  background: #2563eb;
  transform: scale(1.05);
}

/* Showcase Carousel */
.showcase-carousel-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.showcase-carousel {
  display: flex;
  gap: 24px;
  padding: 0 40px 0 calc((100vw - 1100px) / 2 + 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 1140px) {
  .showcase-carousel {
    padding: 0 40px 0 20px;
  }
}

.showcase-carousel::-webkit-scrollbar {
  display: none;
}

/* Showcase Card */
.showcase-card {
  flex: 0 0 340px;
  min-width: 340px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: start;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.showcase-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.showcase-card-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.showcase-card-info {
  padding: 20px;
}

.showcase-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.showcase-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;
}

.showcase-card-tag {
  display: block;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* Legacy styles for backward compatibility */
.showcase-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.showcase-preview-item {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-preview-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.showcase-preview-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.showcase-preview-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.showcase-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.showcase-preview-item:hover .showcase-preview-overlay {
  opacity: 1;
}

.showcase-preview-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.showcase-preview-info {
  padding: 20px;
}

.showcase-preview-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.showcase-preview-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.showcase-preview-tag {
  display: inline-block;
  font-size: 11px;
  color: #2563eb;
  background: #e8f0fe;
  padding: 4px 10px;
  border-radius: 20px;
}

.showcase-preview-more {
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

/* Legal Pages (Terms & Privacy) */
.legal-page-header {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  text-align: center;
}

.legal-page-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.legal-page-updated {
  font-size: 14px;
  color: #666;
}

.legal-content {
  padding: 60px 0 100px;
  background: #fff;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 16px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid #2563eb;
}

.legal-body p {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.legal-body li {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 8px;
  list-style-type: disc;
}

.legal-contact {
  background: #f8fafc;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  line-height: 1.8;
}

.legal-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-contact-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.legal-note {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
  font-size: 14px;
  color: #666;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .legal-page-header {
    padding: 120px 0 40px;
  }

  .legal-page-title {
    font-size: 28px;
  }

  .legal-content {
    padding: 40px 0 60px;
  }

  .legal-body h2 {
    font-size: 18px;
    margin: 32px 0 12px;
  }

  .legal-body p,
  .legal-body li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .legal-page-header {
    padding: 100px 0 30px;
  }

  .legal-page-title {
    font-size: 24px;
  }

  .legal-content {
    padding: 30px 0 50px;
  }

  .legal-intro {
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 24px;
  }

  .legal-body h2 {
    font-size: 16px;
    padding-left: 12px;
  }

  .legal-body p,
  .legal-body li {
    font-size: 13px;
  }

  .legal-contact {
    padding: 16px;
    font-size: 14px;
  }
}

/* News Page Header */
.news-page-header {
  position: relative;
  padding: 120px 0 60px;
  background: #f5f5f5;
  overflow: hidden;
}

.news-page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(229, 229, 229, 0.5) 50%, #e5e5e5 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.news-page-header-content {
  position: relative;
  z-index: 1;
}

.news-page-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.news-page-label-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #fbbf24;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.news-page-label-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.05em;
}

.news-page-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.15em;
}

/* News List Section */
.news-list-section {
  padding: 80px 0;
  background: #fff;
}

.news-simple-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-simple-item {
  border-bottom: 1px solid #e5e7eb;
}

.news-simple-item a {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 16px;
  transition: background 0.3s;
}

.news-simple-item a:hover {
  background: #fafafa;
}

.news-simple-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
  min-width: 90px;
}

.news-simple-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 80px;
}

.news-simple-title {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  flex: 1;
  line-height: 1.6;
}

/* News Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.news-pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  transition: all 0.3s;
}

.news-pagination-item:hover:not(.active) {
  background: #f5f5f5;
  border-color: #333;
}

.news-pagination-item.active {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff;
}

.news-pagination-next {
  border: none;
  background: transparent;
  color: #333;
}

.news-pagination-next:hover {
  background: transparent;
  color: #666;
}

/* News Detail */
/* Page Header (Breadcrumb) */
.page-header {
  padding: 120px 0 24px;
  background: #f8fafc;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #666;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #2563eb;
}

.breadcrumb span {
  color: #999;
}

.news-detail {
  padding: 60px 0;
  background: #fff;
}

.news-article {
  max-width: 800px;
  margin: 0 auto;
}

.news-article-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.news-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.news-article-date {
  font-size: 14px;
  color: #666;
}

.news-article-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 16px;
  border-radius: 4px;
}

.news-article-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

.news-article-body {
  font-size: 16px;
  color: #333;
  line-height: 1.9;
}

.news-article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid #2563eb;
}

.news-article-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 32px 0 12px;
}

.news-article-body p {
  margin-bottom: 20px;
}

.news-article-body ul,
.news-article-body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.news-article-body li {
  margin-bottom: 8px;
}

.news-article-body a {
  color: #2563eb;
  text-decoration: underline;
}

.news-article-body a:hover {
  opacity: 0.7;
}

.news-article-body strong {
  font-weight: 600;
  color: #111;
}

/* News Navigation */
.news-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.news-nav-item {
  flex: 1;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
}

.news-nav-item:hover:not(.disabled):not(.news-nav-list) {
  background: #e8f0fe;
  border-color: #2563eb;
}

.news-nav-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.news-nav-prev {
  text-align: left;
}

.news-nav-next {
  text-align: right;
}

.news-nav-list {
  flex: 0 0 auto;
  text-align: center;
  background: transparent;
  border: none;
  padding: 12px 16px;
}

.news-nav-list:hover {
  background: transparent;
  border: none;
}

.news-nav-list .news-nav-label {
  color: #64748b;
  font-size: 14px;
  transition: color 0.2s ease;
}

.news-nav-list:hover .news-nav-label {
  color: #2563eb;
}

.news-nav-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.news-nav-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta .btn-primary {
  margin-bottom: 20px;
  background: #2563eb;
  font-size: 16px;
  padding: 18px 48px;
}

.cta .btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.cta-note {
  font-size: 13px;
  color: #888;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: #f8fafc;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: #666;
}

.footer-links-group {
  display: flex;
  gap: 60px;
}

.footer-col {
  min-width: 140px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #666;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-bottom {
  text-align: center;
}

.copyright {
  font-size: 12px;
  color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .logo-tagline {
    font-size: 10px;
  }

  .header-right {
    gap: 12px;
  }

  .header-right .btn-sm {
    padding: 6px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Step Flow Section Responsive 1024px */
  .step-flow-section {
    margin-top: 0;
    padding: 80px 0 60px;
  }

  .step-flow-container {
    padding: 0 30px;
    gap: 16px;
  }

  .step-flow-line {
    left: 30px;
    right: 30px;
  }

  .step-flow-tooltip {
    width: 180px;
    padding: 16px;
  }

  .step-flow-name {
    font-size: 16px;
  }

  .step-flow-item.featured .step-flow-name {
    font-size: 18px;
  }

  .step-flow-price {
    font-size: 13px;
  }

  .step-flow-tooltip-title {
    font-size: 13px;
  }

  .step-flow-tooltip-text {
    font-size: 12px;
  }

  .hero-flow {
    flex-wrap: wrap;
    gap: 24px 0;
  }

  .flow-line {
    display: none;
  }

  .flow-item {
    flex: 0 0 50%;
    max-width: none;
    padding-top: 0;
    padding-left: 24px;
    text-align: left;
  }

  .flow-dot {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: inline-block;
    margin-bottom: 8px;
  }

  /* Hero Patterns Responsive - 1024px */
  .hero-split {
    gap: 40px;
  }

  .trust-stats {
    gap: 24px;
    padding: 24px 32px;
  }

  .trust-number {
    font-size: 40px;
  }

  .dashboard-mock {
    max-width: 400px;
  }

  .problem-watermark {
    font-size: 100px;
  }

  /* タブレット: 2列グリッド */
  .problem-items {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .merit-item {
    gap: 40px;
    margin-bottom: 60px;
  }

  .merit-heading {
    font-size: 28px;
  }

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

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

  .plan-card.featured {
    transform: none;
  }

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

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

  .showcase-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Showcase Carousel Responsive 1024px */
  .showcase-card {
    flex: 0 0 300px;
    min-width: 300px;
  }

  .section-watermark {
    font-size: 100px;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .news-section-item a {
    gap: 16px;
    padding: 24px 12px;
  }

  .news-section-date {
    min-width: 90px;
    font-size: 14px;
  }

  .news-section-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  /* Problem Section: カード内の右側にキャラクター配置 */
  .problem-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .problem-card {
    flex: 1;
    min-height: auto;
    padding: 16px;
    border-radius: 16px 0 0 16px;
  }

  .problem-list {
    margin-bottom: 0;
  }

  .persona {
    background: #f5f5f5;
    border-radius: 0 16px 16px 0;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    margin-top: 0;
  }

  .persona-illustration {
    width: 36px;
    height: 36px;
    margin: 0 0 4px 0;
  }

  .persona-label {
    font-size: 9px;
    color: #666;
    white-space: nowrap;
  }

  /* Header Responsive 768px */
  .logo-tagline {
    font-size: 9px;
    margin-left: 6px;
  }

  .header-right {
    gap: 8px;
  }

  .header-right .btn-outline {
    display: none;
  }

  .header-right .btn-sm {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Step Flow Section Responsive 768px */
  .step-flow-section {
    margin-top: 0;
    padding: 60px 0 50px;
  }

  .step-flow-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
    padding: 0 20px;
  }

  .step-flow-line {
    display: none;
  }

  .step-flow-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .step-flow-dot {
    width: 16px;
    height: 16px;
    margin-bottom: 12px;
  }

  .step-flow-item.featured .step-flow-dot {
    width: 22px;
    height: 22px;
    margin-top: -3px;
  }

  .step-flow-tooltip {
    width: 100%;
    max-width: 200px;
    padding: 14px;
  }

  .step-flow-name {
    font-size: 15px;
  }

  .step-flow-item.featured .step-flow-name {
    font-size: 16px;
  }

  .step-flow-price {
    font-size: 12px;
  }

  .step-flow-label {
    font-size: 11px;
  }

  .step-flow-tooltip-title {
    font-size: 12px;
  }

  .step-flow-tooltip-text {
    font-size: 11px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-inner {
    margin-bottom: 60px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-number {
    font-size: 72px;
  }

  .hero-number-unit {
    font-size: 48px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }

  /* Hero Patterns Responsive - 768px */
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-title-left,
  .hero-desc-left {
    text-align: center;
  }

  .hero-cta-left {
    justify-content: center;
  }

  .trust-stats {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
  }

  .trust-number {
    font-size: 36px;
  }

  .dashboard-mock {
    max-width: 100%;
  }

  .client-logos-grid {
    gap: 20px;
  }

  .client-logo svg {
    width: 100px;
    height: 32px;
  }

  .bg-shape {
    display: none;
  }

  .bg-dots {
    opacity: 0.3;
  }

  .flow-item {
    flex: 0 0 50%;
  }

  .section-title {
    font-size: 24px;
  }

  .section-watermark {
    font-size: 60px;
    top: 30px;
  }

  .section-label {
    font-size: 12px;
  }

  .problem-watermark {
    font-size: 60px;
    top: 30px;
  }

  .problem-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .problem-card {
    padding: 20px 18px;
    min-height: 120px;
  }

  .problem-list li {
    font-size: 14px;
    padding-left: 16px;
    margin-bottom: 10px;
  }

  .problem-personas {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .persona-illustration {
    width: 100px;
    height: 100px;
  }

  .persona-label {
    font-size: 14px;
  }

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

  .merit-item {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
  }

  .merit-item.reverse {
    flex-direction: column;
  }

  .merit-heading {
    font-size: 24px;
  }

  .merit-visual svg {
    max-width: 280px;
  }

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

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 13px;
  }

  .comparison-table th.col-metric {
    width: 120px;
  }

  .col-badge {
    font-size: 10px;
    padding: 2px 8px;
  }

  .metric-name {
    font-size: 13px;
  }

  .metric-desc {
    font-size: 11px;
  }

  .rating {
    font-size: 20px;
  }

  .comparison-table td.highlight strong {
    font-size: 15px;
  }

  .cell-note {
    font-size: 10px;
  }

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

  .showcase-preview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-preview {
    padding: 80px 0 60px;
  }

  /* Showcase Carousel Responsive 768px */
  .showcase-more-text {
    font-size: 14px;
  }

  .showcase-more-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .showcase-card {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .showcase-carousel {
    gap: 16px;
    padding: 0 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 30px;
  }

  /* News Section Responsive 768px */
  .news-section {
    padding: 60px 0;
  }

  .news-section-item a {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 8px;
  }

  .news-section-date {
    min-width: auto;
    font-size: 13px;
  }

  .news-section-category {
    font-size: 11px;
    padding: 4px 12px;
    min-width: auto;
  }

  .news-section-text {
    flex-basis: 100%;
    order: 3;
    font-size: 14px;
  }

  .news-section-arrow {
    display: none;
  }

  .news-section-more {
    margin-top: 30px;
    gap: 12px;
  }

  .news-more-text {
    font-size: 14px;
  }

  .news-more-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  /* Contact Banner Responsive 768px */
  .contact-banner {
    padding: 60px 0;
  }

  .contact-banner-title {
    font-size: 22px;
  }

  .contact-banner-buttons {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-banner-btn {
    padding: 20px 32px;
    font-size: 16px;
  }

  /* News Page Responsive 768px */
  .news-page-header {
    padding: 100px 0 40px;
  }

  .news-page-heading {
    font-size: 32px;
  }

  .news-list-section {
    padding: 60px 0;
  }

  .news-simple-item a {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 8px;
  }

  .news-simple-date {
    min-width: auto;
    font-size: 13px;
  }

  .news-simple-category {
    font-size: 11px;
    padding: 4px 12px;
    min-width: auto;
  }

  .news-simple-title {
    flex-basis: 100%;
    font-size: 14px;
  }

  .news-pagination {
    margin-top: 40px;
  }

  .news-article-title {
    font-size: 22px;
  }

  .news-article-body h2 {
    font-size: 18px;
  }

  .news-nav {
    flex-direction: column;
    gap: 12px;
  }

  .news-nav-list {
    order: -1;
  }
}

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

  /* Step Flow Section Responsive 480px */
  .step-flow-section {
    margin-top: 0;
    padding: 50px 0 40px;
  }

  .step-flow-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 16px;
  }

  .step-flow-item {
    flex: 0 0 100%;
    max-width: 280px;
    width: 100%;
  }

  .step-flow-dot {
    width: 14px;
    height: 14px;
    margin-bottom: 10px;
  }

  .step-flow-item.featured .step-flow-dot {
    width: 20px;
    height: 20px;
    margin-top: -3px;
  }

  .step-flow-tooltip {
    max-width: 100%;
    padding: 12px 14px;
  }

  .step-flow-name {
    font-size: 14px;
  }

  .step-flow-item.featured .step-flow-name {
    font-size: 15px;
  }

  .step-flow-price {
    font-size: 11px;
  }

  .step-flow-label {
    font-size: 10px;
  }

  .step-flow-badge {
    font-size: 9px;
    padding: 2px 8px;
  }

  .step-flow-tooltip-title {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .step-flow-tooltip-text {
    font-size: 10px;
    line-height: 1.5;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .hero-number-unit {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .flow-item {
    flex: 0 0 100%;
    padding-left: 0;
    text-align: center;
  }

  .flow-dot {
    margin: 0 auto 8px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-watermark {
    font-size: 40px;
    top: 20px;
  }

  .section-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .problem,
  .service,
  .merit,
  .features,
  .plan,
  .tech,
  .target {
    padding: 60px 0;
  }

  .problem-watermark {
    font-size: 40px;
    top: 20px;
  }

  .problem-label {
    font-size: 12px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }

  .problem-card {
    padding: 18px 16px;
    min-height: auto;
  }

  .problem-list li {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .problem-personas {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .persona-illustration {
    width: 80px;
    height: 80px;
  }

  .persona-label {
    font-size: 12px;
  }

  .comparison {
    padding: 60px 0;
  }

  .comparison-table-wrapper {
    margin-top: 24px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 11px;
  }

  .comparison-table th.col-metric {
    width: 80px;
  }

  .col-badge {
    font-size: 9px;
    padding: 2px 6px;
    margin-bottom: 4px;
  }

  .metric-name {
    font-size: 11px;
  }

  .metric-desc {
    display: none;
  }

  .rating {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .comparison-table td.highlight strong {
    font-size: 13px;
  }

  .cell-note {
    display: none;
  }

  .comparison-table td.highlight {
    border-left-width: 2px;
    border-right-width: 2px;
  }

  .comparison-table tbody tr:first-child td.highlight {
    border-top-width: 2px;
  }

  .comparison-table tbody tr:last-child td.highlight {
    border-bottom-width: 2px;
  }

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

  .merit-item {
    margin-bottom: 50px;
  }

  .merit-heading {
    font-size: 22px;
  }

  .merit-text {
    font-size: 15px;
  }

  .merit-visual svg {
    max-width: 240px;
  }

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

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

  .showcase-preview {
    padding: 60px 0 40px;
  }

  .showcase-preview-grid {
    gap: 20px;
    margin-bottom: 40px;
  }

  .showcase-preview-info {
    padding: 16px;
  }

  .showcase-preview-info h3 {
    font-size: 15px;
  }

  .showcase-preview-info p {
    font-size: 12px;
  }

  /* Showcase Carousel Responsive 480px */
  .showcase-more {
    margin-top: 30px;
    gap: 12px;
  }

  .showcase-more-text {
    font-size: 13px;
  }

  .showcase-more-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .showcase-card {
    flex: 0 0 260px;
    min-width: 260px;
  }

  .showcase-card-info {
    padding: 16px;
  }

  .showcase-card-title {
    font-size: 15px;
  }

  .showcase-card-tag {
    font-size: 11px;
  }

  .cta {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta .btn-primary {
    padding: 16px 32px;
    font-size: 14px;
  }

  /* News Page Responsive 480px */
  .page-header {
    padding: 90px 0 24px;
  }

  .page-title {
    font-size: 22px;
  }

  .breadcrumb {
    font-size: 12px;
    gap: 6px;
  }

  .news-filter {
    gap: 8px;
    margin-bottom: 24px;
  }

  .news-filter-btn {
    padding: 6px 14px;
    font-size: 13px;
  }

  .news-page {
    padding: 40px 0;
  }

  .news-page-date {
    font-size: 12px;
    min-width: auto;
  }

  .news-page-category {
    font-size: 10px;
    padding: 3px 8px;
    min-width: auto;
  }

  .news-detail {
    padding: 40px 0;
  }

  .news-article-title {
    font-size: 20px;
  }

  .news-article-body {
    font-size: 15px;
  }

  .news-article-body h2 {
    font-size: 17px;
    margin: 32px 0 12px;
  }

  .news-article-body h3 {
    font-size: 16px;
  }

  /* Contact Banner Responsive 480px */
  .contact-banner {
    padding: 50px 0;
  }

  .contact-banner-title {
    font-size: 18px;
  }

  .contact-banner-note {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .contact-banner-btn {
    padding: 18px 24px;
    font-size: 14px;
    gap: 12px;
  }

  .contact-banner-btn-icon {
    width: 36px;
    height: 36px;
  }

  .contact-banner-btn-icon svg {
    width: 16px;
    height: 16px;
  }

  /* News Section Responsive 480px */
  .news-section {
    padding: 50px 0;
  }

  .news-section-header {
    margin-bottom: 24px;
  }

  .news-section-item a {
    padding: 16px 4px;
    gap: 8px;
  }

  .news-section-date {
    font-size: 12px;
  }

  .news-section-category {
    font-size: 10px;
    padding: 3px 8px;
  }

  .news-section-text {
    font-size: 13px;
  }

  .news-section-more {
    margin-top: 24px;
  }

  .news-more-text {
    font-size: 13px;
  }

  .news-more-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  /* News Page Responsive 480px */
  .news-page-header {
    padding: 90px 0 30px;
  }

  .news-page-heading {
    font-size: 26px;
    letter-spacing: 0.1em;
  }

  .news-list-section {
    padding: 40px 0;
  }

  .news-simple-item a {
    padding: 16px 4px;
    gap: 8px;
  }

  .news-simple-date {
    font-size: 12px;
  }

  .news-simple-category {
    font-size: 10px;
    padding: 3px 10px;
  }

  .news-simple-title {
    font-size: 13px;
  }

  .news-pagination {
    margin-top: 32px;
  }

  .news-pagination-item {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ========================================
   Introduction Flow Section
   ======================================== */
.intro-flow {
  position: relative;
  padding: 100px 0;
  background: #f8fafc;
  overflow: visible;
}

.intro-flow .section-watermark {
  z-index: 0;
}

.intro-flow .container {
  position: relative;
  z-index: 1;
}

.intro-flow-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.intro-flow-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.intro-flow-lead p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.intro-flow-lead p + p {
  margin-top: 4px;
}

/* Flow Steps Container */
.intro-flow-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Individual Flow Step */
.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  max-width: 220px;
}

/* Step Icon */
.flow-step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  color: #2563eb;
}

.flow-step-icon svg {
  width: 100%;
  height: 100%;
}

/* Step Number Badge - White circle positioned at top-left of arrow */
.flow-step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2563eb;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  top: -23px;
  left: -16px;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Adjust STEP badge position for steps 02-05 (due to arrow notch) */
.flow-step:nth-child(n+2) .flow-step-number {
  left: -2px;
}

.flow-step-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.flow-step-num {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* Arrow bar wrapper - contains arrow and overlaps with neighbors */
.flow-step-arrow-wrapper {
  width: calc(100% + 12px);
  margin-left: -6px;
  margin-right: -6px;
  margin-top: 10px;
  height: 52px;
  position: relative;
  z-index: 1;
}

/* First step - no left margin overlap */
.flow-step:first-child .flow-step-arrow-wrapper {
  width: calc(100% + 6px);
  margin-left: 0;
  margin-right: -6px;
}

/* Last step - no right margin overlap */
.flow-step:last-child .flow-step-arrow-wrapper {
  width: calc(100% + 6px);
  margin-left: -6px;
  margin-right: 0;
}

/* Arrow bar container */
.flow-step-arrow {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow bar with SVG for precise shape */
.flow-step-arrow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flow-step-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
}

/* Step Description */
.flow-step-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-top: 20px;
  padding: 0 8px;
  text-align: left;
}

/* Hide mobile title on desktop */
.flow-step-title-mobile {
  display: none;
}

/* Group header - hidden on desktop, shown on mobile */
.flow-group-header {
  display: none;
}

/* Mobile step number - hidden on desktop */
.flow-step-number-mobile {
  display: none;
}

/* Timeline Section */
.intro-flow-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.timeline-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* First segment covers STEP 01-03 (3/5 = 60%) */
.timeline-segment-first {
  flex: 3;
}

/* Gap between segments */
.timeline-gap {
  width: 40px;
  flex-shrink: 0;
}

/* Last segment covers STEP 04-05 (2/5 = 40%) */
.timeline-segment-last {
  flex: 2;
}

.timeline-line {
  width: 100%;
  height: 2px;
  background: #333;
  position: relative;
}

/* Parallelogram badge positioned on the line */
.timeline-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-12deg);
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  white-space: nowrap;
}

.timeline-badge span {
  display: block;
  transform: skewX(12deg);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .intro-flow-steps {
    flex-wrap: nowrap;
  }

  .flow-step {
    max-width: 180px;
  }

  .flow-step-title {
    font-size: 12px;
    padding: 0 12px;
  }

  .flow-step-desc {
    font-size: 11px;
    padding: 0 4px;
  }

  .flow-step-number {
    width: 40px;
    height: 40px;
    top: -20px;
    left: -6px;
  }

  .flow-step-num {
    font-size: 16px;
  }

  .flow-step-label {
    font-size: 7px;
  }

  .timeline-gap {
    width: 20px;
  }

  .flow-step-icon {
    width: 48px;
    height: 48px;
  }

  .flow-step-arrow-wrapper {
    height: 46px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .intro-flow {
    padding: 60px 0;
  }

  .intro-flow-lead {
    margin-bottom: 40px;
  }

  .intro-flow-lead p {
    font-size: 14px;
  }

  .intro-flow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 0 20px;
  }

  .flow-step {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
  }

  .flow-step-icon {
    display: none;
  }

  .flow-step-arrow-wrapper {
    display: none;
  }

  /* Hide desktop step number on mobile (it's inside hidden arrow-wrapper) */
  .flow-step-number {
    display: none;
  }

  /* Show mobile step number */
  .flow-step-number-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #fff;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .flow-step-label {
    font-size: 8px;
  }

  .flow-step-num {
    font-size: 18px;
  }

  .flow-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .flow-step-title-mobile {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
  }

  .flow-step-desc {
    margin-top: 0;
    padding: 0;
    font-size: 13px;
  }

  /* Hide desktop timeline on mobile */
  .intro-flow-timeline {
    display: none;
  }

  /* Show group headers on mobile */
  .flow-group-header {
    display: block;
    width: 100%;
    background: #333;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    margin-top: 24px;
    margin-bottom: 4px;
    transform: skewX(-8deg);
    text-align: center;
  }

  .flow-group-header:first-child {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .intro-flow {
    padding: 50px 0;
  }

  .intro-flow-lead p {
    font-size: 13px;
  }

  .flow-step-number-mobile {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .flow-step-num {
    font-size: 16px;
  }

  .flow-step-title-mobile {
    font-size: 15px;
  }

  .flow-step-desc {
    font-size: 12px;
  }

  .timeline-badge {
    font-size: 12px;
    padding: 8px 20px;
  }
}

/* ==========================================
   Contact / Document Request Page
   ========================================== */

/* Contact Page Layout */
.contact-page {
  padding-top: 80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f4fc 0%, #f0f7fc 100%);
}

.contact-page-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
}

/* Left Column - Document Info */
.contact-doc-info {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

.contact-doc-header {
  margin-bottom: 40px;
}

.contact-doc-line {
  width: 60px;
  height: 4px;
  background: #2563eb;
  margin-bottom: 24px;
}

.contact-doc-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.4;
}

.contact-doc-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Features Box */
.contact-doc-features {
  background: #fff;
  border: 2px solid #2563eb;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 58px;
}

.contact-doc-features-title {
  font-size: 16px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 16px;
}

.contact-doc-features-list {
  list-style: disc;
  padding-left: 20px;
}

.contact-doc-features-list li {
  font-size: 15px;
  color: #333;
  line-height: 2;
}

/* Document Preview Slider */
.contact-doc-preview {
  margin-top: 0;
}

.contact-doc-preview-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.contact-doc-preview-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #2563eb;
}

.contact-doc-preview-nav:hover {
  background: #2563eb;
  color: #fff;
}

.contact-doc-preview-images {
  flex: 1;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.contact-doc-preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-doc-preview-image.active {
  opacity: 1;
}

.contact-doc-preview-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Document Mock */
.contact-doc-mock {
  width: 280px;
  height: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.contact-doc-mock-header {
  background: #2563eb;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-doc-mock-logo {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.contact-doc-mock-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-doc-mock-content {
  padding: 16px;
}

.contact-doc-mock-line {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: 8px;
}

.contact-doc-mock-line.short {
  width: 60%;
}

.contact-doc-mock-box {
  width: 100%;
  height: 60px;
  background: #f3f4f6;
  border-radius: 4px;
  margin-top: 12px;
}

.contact-doc-mock-steps {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-top: 20px;
}

.contact-doc-mock-step {
  width: 50px;
  height: 50px;
  background: #e8f4fc;
  border-radius: 50%;
  border: 2px solid #2563eb;
}

.contact-doc-mock-plans {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-top: 10px;
}

.contact-doc-mock-plan {
  width: 60px;
  height: 80px;
  background: #f3f4f6;
  border-radius: 4px;
}

.contact-doc-mock-plan.featured {
  background: #2563eb;
  transform: scale(1.1);
}

.contact-doc-preview-caption {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.contact-doc-preview-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.contact-doc-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-doc-preview-dot.active {
  background: #2563eb;
}

/* Right Column - Form */
.contact-form-wrapper {
  width: 480px;
  background: #fff;
  padding: 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-form-header-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.contact-form-header-accent {
  color: #2563eb;
}

/* Form Styles */
.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-row {
  display: flex;
  gap: 16px;
}

.contact-form-row .contact-form-group {
  flex: 1;
}

.contact-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-form-required {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #ef4444;
  padding: 2px 6px;
  border-radius: 3px;
}

.contact-form-input,
.contact-form-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.contact-form-input::placeholder {
  color: #999;
}

.contact-form-input:focus,
.contact-form-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.contact-form-privacy {
  margin: 24px 0;
  padding: 16px;
  background: #f9fafb;
  border-radius: 6px;
}

.contact-form-privacy p {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

.contact-form-privacy a {
  color: #2563eb;
  text-decoration: underline;
}

.contact-form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-submit:hover {
  background: #1d4ed8;
}

/* ==========================================
   Contact Confirm Page
   ========================================== */

.contact-confirm-page,
.contact-complete-page {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
  background: #f9fafb;
}

/* Progress Steps */
.contact-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.contact-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-progress-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-progress-step.active .contact-progress-number,
.contact-progress-step.completed .contact-progress-number {
  background: #2563eb;
  color: #fff;
}

.contact-progress-label {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.contact-progress-step.active .contact-progress-label,
.contact-progress-step.completed .contact-progress-label {
  color: #2563eb;
}

.contact-progress-line {
  width: 80px;
  height: 2px;
  background: #e5e7eb;
  margin: 0 16px;
  margin-bottom: 24px;
}

.contact-progress-line.completed {
  background: #2563eb;
}

/* Confirm Content */
.contact-confirm-content {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-confirm-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
}

.contact-confirm-subtitle {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* Confirm Table */
.contact-confirm-table {
  border-top: 1px solid #e5e7eb;
}

.contact-confirm-row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}

.contact-confirm-label {
  width: 200px;
  padding: 16px 20px;
  background: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}

.contact-confirm-value {
  flex: 1;
  padding: 16px 20px;
  font-size: 15px;
  color: #333;
}

/* Confirm Actions */
.contact-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.contact-confirm-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-confirm-back:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.contact-confirm-submit {
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-confirm-submit:hover {
  background: #1d4ed8;
}

/* ==========================================
   Contact Complete Page
   ========================================== */

.contact-complete-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-complete-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
}

.contact-complete-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.contact-complete-message {
  font-size: 16px;
  color: #666;
  line-height: 2;
  margin-bottom: 40px;
}

.contact-complete-note {
  background: #f9fafb;
  border-radius: 8px;
  padding: 24px 32px;
  text-align: left;
  margin-bottom: 40px;
}

.contact-complete-note-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.contact-complete-note-list {
  list-style: none;
}

.contact-complete-note-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #666;
  line-height: 2;
}

.contact-complete-note-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
}

.contact-complete-actions {
  margin-bottom: 48px;
}

.contact-complete-contact {
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.contact-complete-contact p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.contact-complete-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #2563eb;
  font-weight: 500;
}

.contact-complete-email:hover {
  text-decoration: underline;
}

/* SP only line break */
.sp-only {
  display: none;
}

/* ==========================================
   Contact Page Responsive
   ========================================== */

@media (max-width: 1024px) {
  .contact-page-inner {
    flex-direction: column;
  }

  .contact-doc-info {
    padding: 40px 30px;
  }

  .contact-doc-title {
    font-size: 26px;
  }

  .contact-form-wrapper {
    width: 100%;
    padding: 30px;
  }

  .contact-doc-preview {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 70px;
  }

  .contact-doc-info {
    padding: 30px 20px;
  }

  .contact-doc-title {
    font-size: 22px;
  }

  .contact-doc-subtitle {
    font-size: 14px;
  }

  .contact-doc-features {
    padding: 20px;
  }

  .contact-doc-features-title {
    font-size: 14px;
  }

  .contact-doc-features-list li {
    font-size: 13px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .contact-form-header-text {
    font-size: 18px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form-label {
    font-size: 13px;
  }

  .contact-form-input,
  .contact-form-select {
    padding: 10px 12px;
    font-size: 14px;
  }

  .contact-form-submit {
    padding: 14px;
    font-size: 15px;
  }

  .contact-doc-mock {
    width: 220px;
    height: 150px;
  }

  .contact-doc-preview-images {
    height: 160px;
  }

  .contact-doc-preview-nav {
    width: 36px;
    height: 36px;
  }

  /* Confirm page responsive */
  .contact-confirm-page,
  .contact-complete-page {
    padding: 100px 20px 60px;
  }

  .contact-progress-line {
    width: 40px;
    margin: 0 8px;
    margin-bottom: 24px;
  }

  .contact-progress-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .contact-progress-label {
    font-size: 11px;
  }

  .contact-confirm-content {
    padding: 24px 20px;
  }

  .contact-confirm-title {
    font-size: 22px;
  }

  .contact-confirm-subtitle {
    font-size: 13px;
  }

  .contact-confirm-row {
    flex-direction: column;
  }

  .contact-confirm-label {
    width: 100%;
    padding: 12px 16px;
  }

  .contact-confirm-value {
    padding: 12px 16px;
  }

  .contact-confirm-actions {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .contact-confirm-back,
  .contact-confirm-submit {
    width: 100%;
    justify-content: center;
  }

  /* Complete page responsive */
  .contact-complete-icon {
    width: 80px;
    height: 80px;
  }

  .contact-complete-icon svg {
    width: 48px;
    height: 48px;
  }

  .contact-complete-title {
    font-size: 24px;
  }

  .contact-complete-message {
    font-size: 14px;
  }

  .contact-complete-note {
    padding: 20px;
  }

  .sp-only {
    display: inline;
  }
}

@media (max-width: 480px) {
  .contact-doc-title {
    font-size: 20px;
  }

  .contact-doc-mock {
    width: 180px;
    height: 120px;
  }

  .contact-doc-preview-images {
    height: 130px;
  }

  .contact-doc-mock-header {
    padding: 8px 12px;
  }

  .contact-doc-mock-logo {
    font-size: 10px;
  }

  .contact-doc-mock-title {
    font-size: 9px;
  }

  .contact-doc-mock-content {
    padding: 10px;
  }
}

/* ==========================================
   Inquiry Page (お問い合わせ) Styles
   ========================================== */

/* Page Header */
.inquiry-page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.inquiry-page-label {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.inquiry-page-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.inquiry-page-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Form Section */
.inquiry-form-section {
  padding: 60px 0 100px;
  background: #f9fafb;
}

.inquiry-form-section .container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
}

/* Form Container */
.inquiry-form-container {
  flex: 1;
  max-width: 700px;
}

.inquiry-form {
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Form Groups */
.inquiry-form-group {
  margin-bottom: 28px;
}

.inquiry-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.inquiry-form-required {
  display: inline-block;
  padding: 2px 8px;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
}

/* Form Row (for name fields) */
.inquiry-form-row {
  display: flex;
  gap: 20px;
}

.inquiry-form-row .inquiry-form-group {
  flex: 1;
}

/* Input & Select */
.inquiry-form-input,
.inquiry-form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-form-input:focus,
.inquiry-form-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.inquiry-form-input::placeholder {
  color: #9ca3af;
}

/* Textarea */
.inquiry-form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  resize: vertical;
  min-height: 160px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.inquiry-form-textarea::placeholder {
  color: #9ca3af;
}

/* Radio Buttons */
.inquiry-form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.inquiry-form-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.inquiry-form-radio input {
  display: none;
}

.inquiry-form-radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.inquiry-form-radio input:checked + .inquiry-form-radio-mark {
  border-color: #2563eb;
}

.inquiry-form-radio input:checked + .inquiry-form-radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
}

.inquiry-form-radio-text {
  font-size: 15px;
  color: #333;
}

/* Privacy Text */
.inquiry-form-privacy {
  margin-bottom: 28px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 6px;
}

.inquiry-form-privacy p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.inquiry-form-privacy a {
  color: #2563eb;
  text-decoration: underline;
}

/* Submit Button */
.inquiry-form-submit {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.inquiry-form-submit:hover {
  background: #1d4ed8;
}

/* Sidebar */
.inquiry-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.inquiry-sidebar-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.inquiry-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.inquiry-sidebar-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.inquiry-sidebar-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2563eb;
  font-weight: 500;
}

.inquiry-sidebar-email:hover {
  text-decoration: underline;
}

.inquiry-sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.inquiry-sidebar-btn:hover {
  background: #dbeafe;
}

/* FAQ in Sidebar */
.inquiry-sidebar-faq {
  list-style: none;
  margin-bottom: 12px;
}

.inquiry-sidebar-faq:last-child {
  margin-bottom: 0;
}

.inquiry-sidebar-faq li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.inquiry-sidebar-faq-q {
  font-weight: 700;
  color: #2563eb;
}

.inquiry-sidebar-faq-a {
  font-weight: 500;
  color: #666;
}

/* Message value in confirm */
.contact-confirm-value-message {
  white-space: pre-wrap;
  line-height: 1.8;
}

/* ==========================================
   Inquiry Page Responsive
   ========================================== */

@media (max-width: 1024px) {
  .inquiry-form-section .container {
    flex-direction: column;
  }

  .inquiry-form-container {
    max-width: 100%;
  }

  .inquiry-sidebar {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .inquiry-sidebar-card {
    flex: 1;
    min-width: 280px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .inquiry-page-header {
    padding: 100px 0 40px;
  }

  .inquiry-page-title {
    font-size: 28px;
  }

  .inquiry-page-subtitle {
    font-size: 14px;
  }

  .inquiry-form-section {
    padding: 40px 0 60px;
  }

  .inquiry-form {
    padding: 28px 20px;
  }

  .inquiry-form-row {
    flex-direction: column;
    gap: 0;
  }

  .inquiry-form-label {
    font-size: 14px;
  }

  .inquiry-form-input,
  .inquiry-form-select,
  .inquiry-form-textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .inquiry-form-radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .inquiry-form-submit {
    padding: 16px;
    font-size: 16px;
  }

  .inquiry-sidebar {
    flex-direction: column;
  }

  .inquiry-sidebar-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .inquiry-page-header {
    padding: 90px 0 30px;
  }

  .inquiry-page-title {
    font-size: 24px;
  }

  .inquiry-form {
    padding: 24px 16px;
  }

  .inquiry-form-group {
    margin-bottom: 24px;
  }

  .inquiry-sidebar-card {
    padding: 20px;
  }
}

/* PC only line break */
.pc-only {
  display: inline;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* ============================================
   フォーム確認モード・完了画面
   ============================================ */

/* 確認モード */
.inquiry-form.is-confirm-mode .inquiry-form-input,
.inquiry-form.is-confirm-mode .inquiry-form-textarea,
.contact-form.is-confirm-mode .contact-form-input,
.contact-form.is-confirm-mode .contact-form-textarea {
  background: #f8f9fa;
  border-color: #e9ecef;
  color: #212529;
  cursor: default;
}

.inquiry-form.is-confirm-mode .inquiry-form-input.is-readonly,
.inquiry-form.is-confirm-mode .inquiry-form-textarea.is-readonly,
.contact-form.is-confirm-mode .contact-form-input.is-readonly,
.contact-form.is-confirm-mode .contact-form-textarea.is-readonly {
  pointer-events: none;
}

/* 確認画面テキスト表示 */
.input-confirm-display,
.textarea-confirm-display,
.select-confirm-display,
.radio-confirm-display {
  display: block;
  padding: 14px 0;
  background: transparent;
  border: none;
  font-size: 15px;
  color: #212529;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}

.textarea-confirm-display {
  white-space: pre-wrap;
}

/* ============================================
   Form Validation Error Styles
   ============================================ */

/* エラー状態の入力フィールド */
.inquiry-form-input.is-invalid,
.inquiry-form-textarea.is-invalid,
.inquiry-form-select.is-invalid,
.contact-form-input.is-invalid,
.contact-form-select.is-invalid {
  border-color: #dc3545;
  background-color: #fff8f8;
}

.inquiry-form-input.is-invalid:focus,
.inquiry-form-textarea.is-invalid:focus,
.inquiry-form-select.is-invalid:focus,
.contact-form-input.is-invalid:focus,
.contact-form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

/* エラーメッセージ */
.validation-error-message {
  display: block;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding-left: 0.25rem;
}

/* radioグループのエラー表示 */
.inquiry-form-radio-group + .validation-error-message {
  margin-top: 0.75rem;
}

/* 確認モード用ボタンコンテナ */
.form-confirm-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.inquiry-form-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #fff;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.inquiry-form-back:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.inquiry-form-submit--confirm {
  flex: 2;
  background: linear-gradient(135deg, #10b981, #059669);
}

.inquiry-form-submit--confirm:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

.inquiry-form-submit--confirm:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* 完了画面 */
.form-complete {
  text-align: center;
  padding: 60px 24px;
}

.form-complete-icon {
  margin-bottom: 24px;
}

.form-complete-icon svg {
  animation: checkmark 0.5s ease-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-complete-title {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}

.form-complete-message {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.form-complete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.form-complete-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
}

/* 資料請求フォーム用調整 */
.contact-form.is-confirm-mode .contact-form-select {
  display: none;
}

.contact-form .select-confirm-display {
  background: #f8f9fa;
}

/* ========================================
   404 Error Page
   ======================================== */
.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.error-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.error-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.error-message {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 640px) {
  .error-page {
    padding: 100px 0 60px;
  }

  .error-code {
    font-size: 80px;
  }

  .error-title {
    font-size: 22px;
  }

  .error-message {
    font-size: 14px;
  }

  .error-actions {
    flex-direction: column;
    gap: 12px;
  }

  .error-actions .btn {
    width: 100%;
  }
}

/* レスポンシブ */
@media (max-width: 640px) {
  .form-confirm-buttons {
    flex-direction: column;
  }

  .inquiry-form-back,
  .inquiry-form-submit--confirm {
    flex: none;
    width: 100%;
  }

  .form-complete {
    padding: 40px 16px;
  }

  .form-complete-title {
    font-size: 20px;
  }
}

/* ========================================
   AI訴求強化: ヒーローセクション新スタイル
   ======================================== */

/* リード文のハイライト */
.hero-lead-highlight {
  color: #2563eb;
  font-weight: 700;
}

/* 90日品質保証テキスト */
.hero-guarantee {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
}

/* AI + エンジニア → MVP フロー図 */
.dev-flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.dev-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dev-flow-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.dev-flow-icon:hover {
  transform: scale(1.05);
}

.dev-flow-icon svg {
  width: 48px;
  height: 48px;
}

.dev-flow-ai .dev-flow-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
}

.dev-flow-engineer .dev-flow-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
}

.dev-flow-mvp .dev-flow-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
}

.dev-flow-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.dev-flow-desc {
  font-size: 12px;
  color: #64748b;
}

.dev-flow-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.dev-flow-arrow svg {
  width: 100%;
  height: 100%;
}

.dev-flow-result {
  position: relative;
}

.dev-flow-result::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 20 20'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* 信頼性バッジ */
.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
}

.trust-badge-icon svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   AI訴求強化: FAQセクション
   ======================================== */

.faq-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  overflow: hidden;
}

.faq-section > .container {
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
  transition: padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
  padding: 16px 24px 24px;
}

.faq-answer-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.faq-answer-inner li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}

.faq-answer-inner li:last-child {
  margin-bottom: 0;
}

.faq-answer-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
}

.faq-answer-inner strong {
  color: #1a1a2e;
}

/* 比較表: rating-neutral (△用) */
.rating-neutral {
  color: #f59e0b;
}

/* ========================================
   レスポンシブ: AI訴求強化
   ======================================== */

@media (max-width: 768px) {
  .dev-flow-visual {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }

  .dev-flow-arrow {
    transform: rotate(90deg);
  }

  .dev-flow-icon {
    width: 64px;
    height: 64px;
  }

  .dev-flow-icon svg {
    width: 36px;
    height: 36px;
  }

  .hero-trust-badges {
    gap: 8px;
  }

  .trust-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-guarantee {
    font-size: 12px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer-inner {
    padding: 12px 16px 16px;
  }

  .faq-answer-inner p {
    font-size: 13px;
  }

  .faq-answer-inner li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .dev-flow-visual {
    padding: 24px 16px;
  }

  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .trust-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* ====================================
   AI訴求強化 - Bold Hero Style
   ==================================== */

/* Hero Bold - Main Container */
.hero-bold {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 120px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
  overflow-x: clip;
  overflow-y: visible;
}

/* Geometric Background */
.hero-bg-geometric {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  transform-origin: center;
}

.geo-line-1 {
  width: 200%;
  height: 1px;
  top: 30%;
  left: -50%;
  transform: rotate(-15deg);
}

.geo-line-2 {
  width: 200%;
  height: 1px;
  top: 50%;
  left: -50%;
  transform: rotate(-15deg);
}

.geo-line-3 {
  width: 200%;
  height: 1px;
  top: 70%;
  left: -50%;
  transform: rotate(-15deg);
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.geo-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.geo-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}

.geo-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Hero Badges Row (Top) */
.hero-badges-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  border-radius: 50%;
  color: #1e3a5f;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.4);
}

.hero-badge-icon svg {
  width: 22px;
  height: 22px;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-badge-number {
  font-size: 26px;
  font-weight: 800;
  color: #ffd700;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-badge-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Hero Split Bold */
.hero-split-bold {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

/* Hero Content (Left) */
.hero-lead-bold {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hero-lead-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-lead-x {
  display: inline-block;
  margin: 0 12px;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title-bold {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title-number {
  display: inline-block;
  font-size: 100px;
  font-weight: 900;
  color: #2563eb;
  background: #fff;
  padding: 0 16px;
  margin-right: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-title-unit {
  font-size: 48px;
  color: #fff;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.hero-desc-bold {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero-desc-bold strong {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  color: #2563eb;
  background: #fff;
  padding: 2px 12px;
  margin-right: 4px;
  border-radius: 6px;
}

.hero-desc-nowrap {
  white-space: nowrap;
}

/* Hero CTA Bold */
.hero-cta-bold {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: #fff;
  color: #2563eb;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.btn-hero-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Feature Tags */
.hero-feature-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature-tag svg {
  color: #93c5fd;
}

/* Hero Dashboard Float (Right Visual) */
.hero-visual-bold {
  position: relative;
  padding: 30px 0 30px 50px;
  margin-right: -100px;
}

.hero-dashboard-float {
  position: relative;
  transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
  transform-style: preserve-3d;
}

.hero-dashboard-large {
  width: 580px;
  min-width: 580px;
}

.hero-dashboard-window {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero-dashboard-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.hero-dashboard-dots {
  display: flex;
  gap: 6px;
}

.hero-dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-dashboard-dots span:nth-child(1) { background: #ef4444; }
.hero-dashboard-dots span:nth-child(2) { background: #fbbf24; }
.hero-dashboard-dots span:nth-child(3) { background: #22c55e; }

.hero-dashboard-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-right: auto;
}

.hero-dashboard-tabs {
  display: flex;
  gap: 4px;
}

.hd-tab {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hd-tab.active {
  background: #3b82f6;
  color: #fff;
}

.hero-dashboard-body {
  padding: 20px;
  background: #f8fafc;
}

/* Mini Stats Row */
.hd-mini-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.hd-mini-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hd-mini-value {
  font-size: 22px;
  font-weight: 800;
  color: #3b82f6;
}

.hd-mini-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

/* Data Table */
.hd-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hd-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 8px;
  padding: 14px 18px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.hd-th {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hd-table-body {
  max-height: 260px;
}

.hd-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 8px;
  padding: 14px 18px;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.hd-table-row:last-child {
  border-bottom: none;
}

.hd-table-row:hover {
  background: #fafbfc;
}

.hd-td-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hd-project-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hd-icon-blue {
  background: #dbeafe;
  color: #3b82f6;
}

.hd-icon-green {
  background: #d1fae5;
  color: #10b981;
}

.hd-icon-purple {
  background: #e9d5ff;
  color: #8b5cf6;
}

.hd-icon-orange {
  background: #fed7aa;
  color: #f97316;
}

.hd-td-name span {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

/* Status Badges */
.hd-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.hd-status-progress {
  background: #dbeafe;
  color: #2563eb;
}

.hd-status-review {
  background: #fef3c7;
  color: #d97706;
}

.hd-status-done {
  background: #d1fae5;
  color: #059669;
}

/* Progress Bar */
.hd-td-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hd-progress-bar {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.hd-progress-fill {
  height: 100%;
  background: #3b82f6;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.hd-fill-green {
  background: #10b981;
}

.hd-fill-done {
  background: #22c55e;
}

.hd-progress-text {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  min-width: 32px;
}

/* Team Avatars */
.hd-avatars {
  display: flex;
  margin-left: -4px;
}

.hd-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-left: -6px;
}

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

.hd-avatar-1 {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.hd-avatar-2 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.hd-avatar-3 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.hd-avatar-more {
  background: #94a3b8;
  font-size: 9px;
}

/* Floating Elements */
.hero-float-element {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  animation: float 3s ease-in-out infinite;
}

.hero-float-ai {
  top: 20px;
  left: -40px;
  color: #3b82f6;
  animation-delay: 0s;
}

.hero-float-check {
  bottom: 40px;
  right: -30px;
  color: #10b981;
  animation-delay: 1.5s;
}

.hero-float-speed {
  bottom: 120px;
  left: -50px;
  color: #f59e0b;
  animation-delay: 0.75s;
}

.hero-float-element svg {
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
  opacity: 0.8;
}

.hero-scroll-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
}

.hero-scroll-arrow {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: border-color 0.3s ease;
}

.hero-scroll-indicator:hover .hero-scroll-arrow {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-arrow svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Responsive - Hero Bold */
@media (max-width: 1024px) {
  .hero-split-bold {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual-bold {
    order: -1;
  }

  .hero-dashboard-float {
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-dashboard-large {
    width: 100%;
    max-width: 500px;
    min-width: auto;
  }

  .hero-visual-bold {
    padding: 20px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-bold {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-bold > .container {
    display: flex;
    flex-direction: column;
  }

  .hero-split-bold {
    display: contents;
  }

  .hero-split-content {
    display: contents;
  }

  .hero-lead-bold {
    order: 1;
    justify-content: center;
    margin-bottom: 16px;
  }

  .hero-title-bold {
    order: 2;
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
  }

  .hero-desc-bold {
    order: 3;
    font-size: 15px;
    text-align: center;
    margin-bottom: 24px;
  }

  .hero-badges-row {
    order: 4;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-visual-bold {
    order: 5;
    padding: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .hero-cta-bold {
    order: 6;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-feature-tags {
    order: 7;
    justify-content: center;
  }

  .hero-scroll-indicator {
    order: 8;
    display: none;
  }

  .hero-title-number {
    font-size: 56px;
  }

  .hero-title-unit {
    font-size: 28px;
  }

  .hero-desc-bold strong {
    font-size: 20px;
  }

  .hero-badge-item {
    padding: 6px 12px;
    gap: 6px;
  }

  .hero-badge-icon {
    width: 28px;
    height: 28px;
  }

  .hero-badge-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero-badge-number {
    font-size: 16px;
  }

  .hero-badge-label {
    font-size: 9px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .btn-hero-primary {
    font-size: 16px;
  }

  .hero-dashboard-float {
    transform: none;
  }

  .hero-float-element {
    display: none;
  }

  .hero-dashboard-large {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }

  .hero-dashboard-tabs {
    display: none;
  }

  .hd-mini-stats {
    gap: 8px;
    margin-bottom: 16px;
  }

  .hd-mini-stat {
    flex: 1;
    padding: 10px 12px;
    flex-direction: column;
    text-align: center;
  }

  .hd-mini-value {
    font-size: 18px;
  }

  .hd-table-header,
  .hd-table-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .hd-th-team,
  .hd-td-team {
    display: none;
  }

  .hd-project-icon {
    width: 28px;
    height: 28px;
  }

  .hd-td-name span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-badges-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .hero-badge-item {
    padding: 4px 8px;
    gap: 4px;
  }

  .hero-badge-icon {
    width: 24px;
    height: 24px;
  }

  .hero-badge-icon svg {
    width: 12px;
    height: 12px;
  }

  .hero-badge-number {
    font-size: 14px;
  }

  .hero-badge-label {
    font-size: 8px;
  }

  .hero-title-bold {
    font-size: 28px;
  }

  .hero-title-number {
    font-size: 44px;
  }

  .hero-title-unit {
    font-size: 24px;
  }

  .hero-feature-tags {
    display: none;
  }

  .hd-mini-stats {
    flex-direction: column;
  }

  .hd-mini-stat {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 10px 16px;
  }

  .hd-table-header {
    display: none;
  }

  .hd-table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 14px;
    position: relative;
  }

  .hd-td-name {
    margin-bottom: 4px;
  }

  .hd-td-status {
    position: absolute;
    top: 12px;
    right: 14px;
  }
}
