/* ========================================	
     CLOUD LAB PAGE - SCOPED STYLES	
     All styles scoped under #cloud-lab	
  ======================================== */

#cloud-lab {
  /* Miichisoft Brand - Red Monochrome */
  --primary: #ef3f23;
  --primary-dark: #d63520;
  --primary-light: rgba(240, 65, 38, 0.2);
  --primary-lighter: rgba(240, 65, 38, 0.1);
  --primary-accent: #f04126;

  /* Core Colors */
  --black: #000000;
  --white: #ffffff;
  --dark-bg: #0a0a0a;
  --dark-bg-light: #141414;

  /* Neutrals */
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #888888;
  --bg-white: #ffffff;
  --bg-gray: #fafafa;
  --bg-light: #f5f5f5;
  --border: #e8e8e8;
  --border-light: #f0f0f0;

  /* Gradients */
  --gradient-text: linear-gradient(90deg,
      #1a1a2e 0%,
      #2d2d44 30%,
      #ef3f23 100%);
  --gradient-primary: linear-gradient(135deg, #ef3f23 0%, #d63520 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 8px 32px rgba(239, 63, 35, 0.15);
  --shadow-red-lg: 0 12px 40px rgba(239, 63, 35, 0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-white);
}

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

#cloud-lab .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================	
     HERO SECTION - Dark Style with Animation	
  ======================================== */
#cloud-lab .hero {
  background: var(--dark-bg);
  height: 318px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Wave Animation Canvas Container */
#cloud-lab .hero-wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#cloud-lab #waveCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Gradient Overlay */
#cloud-lab .hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%,
      rgba(239, 63, 35, 0.2) 0%,
      transparent 60%),
    radial-gradient(ellipse at 20% 80%,
      rgba(239, 63, 35, 0.1) 0%,
      transparent 40%),
    radial-gradient(ellipse at 80% 80%,
      rgba(239, 63, 35, 0.1) 0%,
      transparent 40%);
  pointer-events: none;
}

#cloud-lab .hero .container {
  position: relative;
  z-index: 10;
}

#cloud-lab .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

#cloud-lab .hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

#cloud-lab .hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================	
     CLOUD PROVIDERS SECTION	
  ======================================== */
#cloud-lab .providers-section {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid var(--border-light);
}

#cloud-lab .providers-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

#cloud-lab .provider-card {
  background: white;
  border-radius: 20px;
  padding: 32px 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

#cloud-lab .provider-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

#cloud-lab .provider-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

#cloud-lab .provider-card:hover::before {
  transform: scaleX(1);
}

#cloud-lab .provider-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(239, 63, 35, 0.1),
      rgba(239, 63, 35, 0.05));
}

#cloud-lab .provider-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

#cloud-lab .provider-desc {
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================	
     TRUST SIGNALS SECTION	
  ======================================== */
#cloud-lab .trust-section {
  padding: 60px 0;
  background: var(--bg-gray);
}

#cloud-lab .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

#cloud-lab .trust-item {
  text-align: center;
  padding: 24px;
}

#cloud-lab .trust-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 40%, #ef3f23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

#cloud-lab .trust-number span {
  font-size: 24px;
}

#cloud-lab .trust-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

#cloud-lab .trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

#cloud-lab .trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: white;
  border-radius: 14px;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

#cloud-lab .trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(239, 63, 35, 0.2);
}

#cloud-lab .trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg,
      rgba(239, 63, 35, 0.1),
      rgba(239, 63, 35, 0.05));
}

#cloud-lab .trust-badge-text {
  text-align: left;
}

#cloud-lab .trust-badge-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

#cloud-lab .trust-badge-desc {
  font-size: 11px;
  color: var(--text-light);
}

/* ========================================	
     SECTION COMMON STYLES	
  ======================================== */
#cloud-lab .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#cloud-lab .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 63, 35, 0.2);
  box-shadow: var(--shadow-sm);
}

#cloud-lab .section-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 40%, #ef3f23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#cloud-lab .section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================	
     PAIN POINTS SECTION	
  ======================================== */
#cloud-lab .pain-section {
  padding: 100px 0;
  background: white;
}

#cloud-lab .pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#cloud-lab .pain-card {
  background: var(--bg-gray);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

#cloud-lab .pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239, 63, 35, 0.3);
  background: white;
}

#cloud-lab .pain-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,
      rgba(239, 63, 35, 0.15),
      rgba(239, 63, 35, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

#cloud-lab .pain-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

#cloud-lab .pain-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================	
     SERVICES SECTION	
  ======================================== */
#cloud-lab .services-section {
  padding: 100px 0;
  background: var(--bg-gray);
  position: relative;
}

/* Decorative curved element */
#cloud-lab .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at top right,
      rgba(239, 63, 35, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
}

#cloud-lab .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

#cloud-lab .service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

#cloud-lab .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

#cloud-lab .service-card-header {
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
}

#cloud-lab .service-card-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 60%);
}

#cloud-lab .service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  position: relative;
}

#cloud-lab .service-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  position: relative;
}

#cloud-lab .service-card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

#cloud-lab .service-card-header .plus-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

#cloud-lab .service-card-body {
  padding: 28px;
}

#cloud-lab .service-list {
  list-style: none;
}

#cloud-lab .service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

#cloud-lab .service-list li:last-child {
  border-bottom: none;
}

#cloud-lab .service-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(239, 63, 35, 0.1);
  color: var(--primary);
}

#cloud-lab .service-list-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-primary);
}

#cloud-lab .service-list-content p {
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================	
     PROCESS SECTION	
  ======================================== */

/* ========================================	
     CLOUD + AI SECTION	
  ======================================== */
#cloud-lab .cloud-ai-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
      rgba(239, 63, 35, 0.03) 0%,
      rgba(239, 63, 35, 0.08) 100%);
}

#cloud-lab .cloud-ai-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#cloud-lab .cloud-ai-content h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--text-primary);
}

#cloud-lab .cloud-ai-content h2 span {
  color: var(--primary);
}

#cloud-lab .cloud-ai-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
}

#cloud-lab .ai-providers {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

#cloud-lab .ai-provider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

#cloud-lab .ai-provider:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#cloud-lab .ai-provider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

#cloud-lab .ai-provider-dot.bedrock {
  background: #ff9900;
}

#cloud-lab .ai-provider-dot.azure {
  background: #0078d4;
}

#cloud-lab .ai-provider-dot.vertex {
  background: #34a853;
}

#cloud-lab .ai-provider-info {
  text-align: left;
}

#cloud-lab .ai-provider-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

#cloud-lab .ai-provider-desc {
  font-size: 11px;
  color: var(--text-light);
}

#cloud-lab .ai-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

#cloud-lab .ai-link:hover {
  gap: 12px;
}

#cloud-lab .service-flow {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

#cloud-lab .service-flow-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

#cloud-lab .flow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

#cloud-lab .flow-item.active {
  border-color: var(--primary);
  background: rgba(239, 63, 35, 0.03);
}

#cloud-lab .flow-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

#cloud-lab .flow-item-icon.cloud {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}

#cloud-lab .flow-item-icon.ai {
  background: linear-gradient(135deg,
      rgba(239, 63, 35, 0.15),
      rgba(239, 63, 35, 0.08));
}

#cloud-lab .flow-item-icon.cocreate {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

#cloud-lab .flow-item-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

#cloud-lab .flow-item-content p {
  font-size: 13px;
  color: var(--text-light);
}

#cloud-lab .flow-arrow {
  text-align: center;
  padding: 12px 0;
  color: var(--text-light);
  font-size: 20px;
}

@media (max-width: 1024px) {
  #cloud-lab .cloud-ai-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #cloud-lab .ai-providers {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  #cloud-lab .ai-providers {
    flex-direction: column;
  }

  #cloud-lab .cloud-ai-content h2 {
    font-size: 28px;
  }
}

/* ========================================	
     PROCESS SECTION (continued)	
  ======================================== */
#cloud-lab .process-section {
  padding: 100px 0;
  background: white;
}

#cloud-lab .process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

#cloud-lab .process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(239, 63, 35, 0.1),
      rgba(239, 63, 35, 0.3),
      rgba(239, 63, 35, 0.1));
  border-radius: 2px;
}

#cloud-lab .process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

#cloud-lab .process-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

#cloud-lab .process-step:hover .process-number {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-red-lg);
}

#cloud-lab .process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

#cloud-lab .process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

#cloud-lab .process-duration {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(239, 63, 35, 0.08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* ========================================	
     TEAM SECTION	
  ======================================== */
#cloud-lab .team-section {
  padding: 100px 0;
  background: var(--bg-gray);
  position: relative;
}

/* Decorative curved element */
#cloud-lab .team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top left,
      rgba(239, 63, 35, 0.05) 0%,
      transparent 70%);
  pointer-events: none;
}

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

#cloud-lab .team-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

#cloud-lab .team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239, 63, 35, 0.2);
}

#cloud-lab .team-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
}

#cloud-lab .team-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

#cloud-lab .team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

#cloud-lab .team-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

#cloud-lab .team-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
}

#cloud-lab .team-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

#cloud-lab .team-cert {
  padding: 4px 12px;
  background: rgba(239, 63, 35, 0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
}

/* ========================================	
     CASE STUDIES SECTION	
  ======================================== */
#cloud-lab .cases-section {
  padding: 100px 0;
  background: white;
}

#cloud-lab .cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

#cloud-lab .case-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

#cloud-lab .case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

#cloud-lab .case-header {
  padding: 32px;
  background: linear-gradient(135deg,
      rgba(239, 63, 35, 0.08),
      rgba(239, 63, 35, 0.04));
}

#cloud-lab .case-header.ai-case {
  background: linear-gradient(135deg,
      rgba(239, 63, 35, 0.12),
      rgba(239, 63, 35, 0.06));
}

#cloud-lab .case-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

#cloud-lab .case-tag {
  padding: 6px 14px;
  background: white;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

#cloud-lab .case-tag.industry {
  color: var(--text-secondary);
}

#cloud-lab .case-tag.tech {
  color: var(--primary);
  background: rgba(239, 63, 35, 0.1);
}

#cloud-lab .case-tag.ai {
  color: white;
  background: var(--primary);
}

#cloud-lab .case-header h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

#cloud-lab .case-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

#cloud-lab .case-body {
  padding: 32px;
}

#cloud-lab .case-challenge {
  margin-bottom: 24px;
}

#cloud-lab .case-challenge h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#cloud-lab .case-challenge p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

#cloud-lab .case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

#cloud-lab .case-result {
  text-align: center;
}

#cloud-lab .case-result-value {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 40%, #ef3f23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#cloud-lab .case-result-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

#cloud-lab .case-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

#cloud-lab .case-tech-tag {
  padding: 6px 14px;
  background: var(--bg-gray);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================	
     CTA SECTION - Dark Style	
  ======================================== */
#cloud-lab .cta-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

#cloud-lab .cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%,
      rgba(239, 63, 35, 0.15) 0%,
      transparent 50%),
    radial-gradient(ellipse at 70% 50%,
      rgba(239, 63, 35, 0.1) 0%,
      transparent 50%);
}

#cloud-lab .cta-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

#cloud-lab .cta-section h2 {
  font-size: 40px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

#cloud-lab .cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

#cloud-lab .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#cloud-lab .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: white;
  color: var(--dark-bg);
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

#cloud-lab .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

#cloud-lab .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

#cloud-lab .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* ========================================	
     FOOTER	
  ======================================== */
#cloud-lab .footer {
  background: #050505;
  color: white;
  padding: 80px 0 40px;
}

#cloud-lab .footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

#cloud-lab .footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}

#cloud-lab .footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

#cloud-lab .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: var(--transition);
}

#cloud-lab .footer-links a:hover {
  color: var(--primary);
}

#cloud-lab .footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ========================================	
     RESPONSIVE	
  ======================================== */
@media (max-width: 1024px) {
  #cloud-lab .hero h1 {
    font-size: 36px;
  }

  #cloud-lab .providers-grid {
    gap: 24px;
  }

  #cloud-lab .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #cloud-lab .services-grid {
    grid-template-columns: 1fr;
  }

  #cloud-lab .process-timeline {
    flex-direction: column;
    gap: 32px;
  }

  #cloud-lab .process-timeline::before {
    display: none;
  }

  #cloud-lab .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #cloud-lab .cases-grid {
    grid-template-columns: 1fr;
  }

  #cloud-lab .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #cloud-lab .nav {
    display: none;
  }

  #cloud-lab .hero {
    height: auto;
    min-height: 280px;
    padding: 60px 0;
  }

  #cloud-lab .hero h1 {
    font-size: 28px;
  }

  #cloud-lab .providers-grid {
    flex-direction: column;
    align-items: center;
  }

  #cloud-lab .trust-grid {
    grid-template-columns: 1fr;
  }

  #cloud-lab .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  #cloud-lab .pain-grid {
    grid-template-columns: 1fr;
  }

  #cloud-lab .team-grid {
    grid-template-columns: 1fr;
  }

  #cloud-lab .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  #cloud-lab .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #cloud-lab .section-title {
    font-size: 28px;
  }
}

/*  */
/* ========================================
           RESET & BASE
        ======================================== */
#menu-website,
#menu-website *,
#menu-website *::before,
#menu-website *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#menu-website {
  --primary: #ef3f23;
  --primary-dark: #d63920;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

  font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
}

/* ========================================
           HEADER
        ======================================== */
#menu-website .header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 999999;
  box-shadow: 0px 1px 5px 0 black;
  transform: translateY(0);
  transition: all 0.3s ease;
}

#menu-website .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  /* Increased to 90px to touch banner */
}

#menu-website .logo img {
  height: 40px;
  width: auto;
}

/* ========================================
           DESKTOP NAV
        ======================================== */
#menu-website .nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

#menu-website .nav-item {
  position: relative;
}

#menu-website .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

#menu-website .nav-link:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

#menu-website .nav-link.services-link {
  background: var(--primary);
  color: white;
}

#menu-website .nav-link.services-link:hover {
  background: var(--primary-dark);
}

#menu-website .nav-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

#menu-website .nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* ========================================
           MEGA MENU - SERVICES
        ======================================== */
#menu-website .mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
}

#menu-website .nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

#menu-website .mega-menu.services-mega {
  width: 900px;
  left: 0;
  transform: none;
}

#menu-website .services-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
}

/* Left Column - Service Categories */
#menu-website .services-sidebar {
  background: var(--bg-gray);
  padding: 20px;
  border-radius: 16px 0 0 16px;
}

#menu-website .service-tab {
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

#menu-website .service-tab:hover {
  background: var(--bg-white);
}

#menu-website .service-tab.active {
  background: var(--bg-white);
  border-left-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#menu-website .service-tab-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

#menu-website .service-tab.active .service-tab-title {
  color: var(--primary);
}

#menu-website .service-tab-desc {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

#menu-website .badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  background: var(--primary);
  color: white;
}

/* Right Column - Service Details */
#menu-website .services-content {
  padding: 20px;
}

#menu-website .service-panel {
  display: none;
}

#menu-website .service-panel.active {
  display: block;
}

#menu-website .panel-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

#menu-website .panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#menu-website .panel-desc {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 4px;
}

#menu-website .service-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#menu-website .service-item {
  display: block;
  padding: 14px;
  background: var(--bg-gray);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

#menu-website .service-item:hover {
  background: rgba(239, 63, 35, 0.05);
  border-left-color: var(--primary);
}

#menu-website .item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#menu-website .item-desc {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

#menu-website .item-benefit {
  font-size: 12px;
  color: var(--primary);
  margin-top: 6px;
  font-weight: 500;
}

/* Two Column Layout for AI+ */
#menu-website .two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#menu-website .column-section {
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 14px;
}

#menu-website .column-header {
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

#menu-website .column-header.products {
  background: rgba(239, 63, 35, 0.1);
}

#menu-website .column-header.packages {
  background: var(--border);
}

#menu-website .column-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

#menu-website .column-header.products .column-title {
  color: var(--primary);
}

#menu-website .column-section .service-items {
  gap: 8px;
}

#menu-website .column-section .service-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
}

/* Mega Menu Footer */
#menu-website .mega-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-gray);
  border-radius: 0 0 16px 16px;
  text-align: center;
}

#menu-website .mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

#menu-website .mega-cta:hover {
  background: var(--primary-dark);
}

/* ========================================
           SIMPLE DROPDOWN
        ======================================== */
#menu-website .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

#menu-website .nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

#menu-website .dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

#menu-website .dropdown-item:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

/* ========================================
           HEADER RIGHT
        ======================================== */
#menu-website .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#menu-website .contact-btn {
  padding: 10px 20px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

#menu-website .contact-btn:hover {
  background: var(--primary);
  color: white;
}

#menu-website .contact-wrapper {
  position: relative;
}

#menu-website .contact-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: none;
  min-width: 180px;
  border-top: 3px solid var(--primary);
}

#menu-website .contact-wrapper:hover .contact-dropdown {
  opacity: 1;
  visibility: visible;
}

#menu-website .lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

#menu-website .lang-btn:hover {
  background: var(--bg-gray);
}

#menu-website .lang-btn img {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--border);
}

#menu-website .lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  transform: none;
  min-width: 60px;
}

#menu-website .lang-btn:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
}

#menu-website .lang-dropdown .dropdown-item {
  padding: 8px;
  display: flex;
  justify-content: center;
}

/* ========================================
           HAMBURGER
        ======================================== */
#menu-website .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

#menu-website .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

#menu-website .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-website .hamburger.active span:nth-child(2) {
  opacity: 0;
}

#menu-website .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
           MOBILE MENU
        ======================================== */
#menu-website .mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
}

#menu-website .mobile-menu.active {
  transform: translateX(0);
}

#menu-website .mobile-nav-item {
  border-bottom: 1px solid var(--border);
}

#menu-website .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  background: var(--bg-white);
}

#menu-website .mobile-nav-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

#menu-website .mobile-nav-link.active {
  background: var(--primary);
  color: white;
}

#menu-website .mobile-nav-link.active svg {
  transform: rotate(180deg);
}

#menu-website .mobile-submenu {
  display: none;
  background: var(--bg-gray);
}

#menu-website .mobile-submenu.active {
  display: block;
}

/* Mobile Service Category */
#menu-website .mobile-service-cat {
  border-bottom: 1px solid var(--border);
}

#menu-website .mobile-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  background: var(--bg-white);
  gap: 12px;
}

#menu-website .mobile-cat-header.active {
  background: rgba(239, 63, 35, 0.05);
  border-left: 4px solid var(--primary);
}

#menu-website .mobile-cat-info {
  flex: 1;
}

#menu-website .mobile-cat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#menu-website .mobile-cat-header.active .mobile-cat-name {
  color: var(--primary);
}

#menu-website .mobile-cat-desc {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 2px;
}

#menu-website .mobile-cat-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-gray);
  transition: transform 0.3s;
  flex-shrink: 0;
}

#menu-website .mobile-cat-header.active .mobile-cat-arrow {
  transform: rotate(90deg);
  color: var(--primary);
}

/* Mobile Service Items */
#menu-website .mobile-cat-items {
  display: none;
  padding: 12px 16px;
  background: var(--bg-gray);
}

#menu-website .mobile-cat-items.active {
  display: block;
}

#menu-website .mobile-service-link {
  display: block;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: var(--bg-white);
  border-radius: 10px;
  text-decoration: none;
  border-left: 3px solid transparent;
}

#menu-website .mobile-service-link:last-child {
  margin-bottom: 0;
}

#menu-website .mobile-service-link:active {
  border-left-color: var(--primary);
  background: rgba(239, 63, 35, 0.05);
}

#menu-website .mobile-link-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#menu-website .mobile-link-desc {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

#menu-website .mobile-link-benefit {
  font-size: 11px;
  color: var(--primary);
  margin-top: 4px;
  font-weight: 500;
}

/* Mobile Subcategory */
#menu-website .mobile-subcat-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px 6px;
  border-radius: 8px 8px 0 0;
  margin-top: 12px;
}

#menu-website .mobile-subcat-header:first-child {
  margin-top: 0;
}

#menu-website .mobile-subcat-header.products {
  background: rgba(239, 63, 35, 0.1);
  color: var(--primary);
}

#menu-website .mobile-subcat-header.packages {
  background: var(--border);
  color: var(--text-gray);
}

#menu-website .mobile-subcat-items {
  padding: 8px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 8px;
}

#menu-website .mobile-subcat-items.products {
  background: rgba(239, 63, 35, 0.05);
}

#menu-website .mobile-subcat-items.packages {
  background: rgba(107, 114, 128, 0.05);
}

#menu-website .mobile-subcat-items .mobile-service-link {
  margin-bottom: 6px;
}

/* Mobile Simple Dropdown */
#menu-website .mobile-dropdown-item {
  display: block;
  padding: 14px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

#menu-website .mobile-dropdown-item:active {
  background: rgba(239, 63, 35, 0.05);
  color: var(--primary);
}

/* Mobile Footer */
#menu-website .mobile-footer {
  padding: 20px;
  background: var(--bg-gray);
}

#menu-website .mobile-contact-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
}

#menu-website .mobile-lang-switch {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

#menu-website .mobile-lang-switch a {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-white);
  text-decoration: none;
}

#menu-website .mobile-lang-switch a.active {
  border-color: var(--primary);
  background: rgba(239, 63, 35, 0.05);
}

#menu-website .mobile-lang-switch img {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  display: block;
}

/* ========================================
           RESPONSIVE
        ======================================== */

/* Desktop Large: > 1200px */
@media (max-width: 1200px) {
  #menu-website .mega-menu.services-mega {
    width: 800px;
  }

  #menu-website .services-grid {
    grid-template-columns: 240px 1fr;
  }
}

/* Desktop Medium: ≤ 1024px */
@media (max-width: 1024px) {
  #menu-website .container {
    padding: 0 16px;
  }

  #menu-website .nav-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  #menu-website .nav-link.services-link {
    padding: 10px 14px;
  }

  #menu-website .contact-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  #menu-website .mega-menu.services-mega {
    width: 700px;
  }

  #menu-website .services-grid {
    grid-template-columns: 200px 1fr;
  }

  #menu-website .services-sidebar {
    padding: 16px;
  }

  #menu-website .service-tab {
    padding: 10px 12px;
  }

  #menu-website .service-tab-title {
    font-size: 13px;
  }

  #menu-website .service-tab-desc {
    font-size: 11px;
  }

  #menu-website .services-content {
    padding: 16px;
  }

  #menu-website .service-item {
    padding: 10px;
  }

  #menu-website .item-title {
    font-size: 13px;
  }

  #menu-website .item-desc,
  #menu-website .item-benefit {
    font-size: 11px;
  }

  /* Giữ 2 cột cho AI+ Solutions */
  #menu-website .two-columns {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #menu-website .column-section {
    padding: 10px;
  }

  #menu-website .column-header {
    padding: 6px 8px;
    margin-bottom: 8px;
  }

  #menu-website .column-title {
    font-size: 12px;
  }

  #menu-website .column-section .service-item {
    padding: 8px;
  }
}

/* Desktop Small / Tablet: ≤ 768px → Mobile Menu */
@media (max-width: 768px) {

  #menu-website .nav,
  #menu-website .header-right {
    display: none;
  }

  #menu-website .hamburger {
    display: flex;
  }

  #menu-website .mobile-menu {
    display: block;
  }

  #menu-website .container {
    height: 60px;
    padding: 0 16px;
  }

  #menu-website .logo img {
    height: 36px;
  }

  #menu-website .mobile-menu {
    top: 60px;
  }
}

/* Phone: ≤ 480px */
@media (max-width: 480px) {
  #menu-website .container {
    padding: 0 12px;
    height: 56px;
  }

  #menu-website .logo img {
    height: 32px;
  }

  #menu-website .mobile-menu {
    top: 56px;
  }

  #menu-website .mobile-nav-link {
    padding: 14px 16px;
    font-size: 15px;
  }

  #menu-website .mobile-cat-header {
    padding: 12px 16px;
  }

  #menu-website .mobile-cat-name {
    font-size: 13px;
  }

  #menu-website .mobile-cat-desc {
    font-size: 11px;
  }

  #menu-website .mobile-cat-items {
    padding: 10px 12px;
  }

  #menu-website .mobile-service-link {
    padding: 10px 12px;
  }

  #menu-website .mobile-link-title {
    font-size: 13px;
  }

  #menu-website .mobile-dropdown-item {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* ========================================
   CORE LAB PAGE STYLES - Scoped to #core-lab
======================================== */
#core-lab {
  --primary: #EF3F23;
  --primary-dark: #D63520;
  --primary-light: rgba(240, 65, 38, 0.2);
  --primary-lighter: rgba(240, 65, 38, 0.1);
  --primary-40: rgba(240, 65, 38, 0.4);
  --primary-20: rgba(240, 65, 38, 0.2);
  --black: #000000;
  --white: #FFFFFF;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #888888;
  --bg-white: #ffffff;
  --bg-gray: #FAFAFA;
  --bg-dark: #111111;
  --border: #e5e7eb;
  --border-light: rgba(0, 0, 0, 0.08);
  --gradient-text: linear-gradient(135deg, #1a1a1a 0%, #EF3F23 100%);
  --gradient-primary: linear-gradient(135deg, #EF3F23 0%, #F04126 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 8px 30px rgba(239, 63, 35, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-white);
  overflow-x: hidden;
}

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

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

#core-lab .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#core-lab .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SECTION HEADER */
#core-lab .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#core-lab .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: black;
}

#core-lab .section-header p {
  font-size: 16px;
  color: var(--text-secondary);
}

#core-lab .section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* HERO BANNER */
#core-lab .hero-banner {
  position: relative;
  height: 318px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#core-lab .hero-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#core-lab .hero-banner-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at 20% 80%, var(--primary-40) 0%, transparent 25%),
    radial-gradient(circle at 80% 20%, var(--primary-20) 0%, transparent 30%);
  animation: coreLabHeroFloat 20s ease-in-out infinite;
}

@keyframes coreLabHeroFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-1%, 1%) rotate(-1deg);
  }
}

#core-lab .hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(239, 63, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 63, 35, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: coreLabGridMove 30s linear infinite;
}

@keyframes coreLabGridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

#core-lab .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 0.6;
}

#core-lab .hero-wave svg {
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 200px;
}

#core-lab .hero-wave .wave1 {
  animation: coreLabWaveMove1 8s ease-in-out infinite;
}

@keyframes coreLabWaveMove1 {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }
}

#core-lab .hero-particles {
  position: absolute;
  inset: 0;
}

#core-lab .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: coreLabParticleFloat 15s ease-in-out infinite;
}

#core-lab .particle:nth-child(1) {
  left: 10%;
  top: 20%;
}

#core-lab .particle:nth-child(2) {
  left: 20%;
  top: 60%;
  animation-delay: 2s;
}

#core-lab .particle:nth-child(3) {
  left: 30%;
  top: 40%;
  animation-delay: 4s;
}

#core-lab .particle:nth-child(4) {
  left: 50%;
  top: 30%;
  animation-delay: 1s;
}

#core-lab .particle:nth-child(5) {
  left: 60%;
  top: 70%;
  animation-delay: 3s;
}

#core-lab .particle:nth-child(6) {
  left: 75%;
  top: 25%;
  animation-delay: 5s;
}

#core-lab .particle:nth-child(7) {
  left: 85%;
  top: 55%;
  animation-delay: 2.5s;
}

#core-lab .particle:nth-child(8) {
  left: 90%;
  top: 80%;
  animation-delay: 1.5s;
}

@keyframes coreLabParticleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.8;
  }
}

#core-lab .hero-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

#core-lab .hero-banner h1 {
  font-size: 42px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
}

#core-lab .hero-banner h1 span {
  color: var(--primary);
}

#core-lab .hero-banner-meta {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  line-height: 1.8;
}

/* HERO SECTION */
#core-lab .hero {
  padding: 80px 0;
  background: var(--bg-white);
}

#core-lab .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#core-lab .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-lighter);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

#core-lab .hero h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  color: black;
}

#core-lab .hero h2 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#core-lab .hero h2 .sub {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 12px;
}

#core-lab .hero-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 16px;
  background: var(--primary-lighter);
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
}

#core-lab .hero-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
}

#core-lab .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#core-lab .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}

#core-lab .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

#core-lab .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: white;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: var(--transition);
}

#core-lab .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

#core-lab .hero-visual {
  position: relative;
}

#core-lab .hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

#core-lab .hero-image-container img {
  display: block;
  width: 100%;
  height: auto;
}

#core-lab .hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 63, 35, 0.1) 0%, transparent 50%);
}

#core-lab .hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  animation: coreLabFloat 3s ease-in-out infinite;
}

@keyframes coreLabFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

#core-lab .hero-floating-badge.badge-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

#core-lab .hero-floating-badge.badge-2 {
  bottom: 80px;
  left: -30px;
  animation-delay: 0.5s;
}

#core-lab .hero-floating-badge.badge-3 {
  bottom: 20px;
  right: 20px;
  animation-delay: 1s;
}

#core-lab .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

#core-lab .badge-icon.green {
  background: rgba(16, 185, 129, 0.15);
}

#core-lab .badge-icon.blue {
  background: rgba(59, 130, 246, 0.15);
}

#core-lab .badge-icon.orange {
  background: var(--primary-light);
}

#core-lab .badge-text .label {
  display: block;
  font-size: 11px;
  color: var(--text-light);
}

#core-lab .badge-text .value {
  font-size: 14px;
  font-weight: 700;
}

/* PAIN SECTION */
#core-lab .pain-section {
  padding: 100px 0;
  background: var(--bg-gray);
}

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

#core-lab .pain-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

#core-lab .pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

#core-lab .pain-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

#core-lab .pain-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

#core-lab .pain-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* SOLUTION SECTION */
#core-lab .solution-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary-lighter) 0%, var(--bg-white) 100%);
}

#core-lab .solution-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

#core-lab .solution-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: black;
}

#core-lab .solution-intro h2 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#core-lab .solution-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

#core-lab .solution-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#core-lab .solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#core-lab .solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

#core-lab .solution-card:hover::before {
  transform: scaleX(1);
}

#core-lab .solution-card-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  color: white;
  box-shadow: var(--shadow-red);
}

#core-lab .solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#core-lab .solution-card .subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

#core-lab .solution-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* COMPARISON TABLE */
#core-lab .comparison-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#core-lab .comparison-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#core-lab .comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

#core-lab .comparison-table thead {
  background: var(--bg-dark);
  color: white;
}

#core-lab .comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

#core-lab .comparison-table th:first-child {
  width: 30%;
}

#core-lab .comparison-table th.old {
  background: rgba(255, 255, 255, 0.1);
}

#core-lab .comparison-table th.new {
  background: var(--primary);
}

#core-lab .comparison-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

#core-lab .comparison-table tbody tr:hover {
  background: var(--primary-lighter);
}

#core-lab .comparison-table td {
  padding: 20px 24px;
  font-size: 14px;
}

#core-lab .comparison-table td:first-child {
  font-weight: 600;
}

#core-lab .comparison-table td.old {
  color: var(--text-light);
}

#core-lab .comparison-table td.new {
  color: var(--primary);
  font-weight: 500;
  background: var(--primary-lighter);
}

#core-lab .comparison-table td.new::before {
  content: '✓ ';
}

/* WORKFLOW SECTION */
#core-lab .workflow-section {
  padding: 100px 0;
  background: var(--bg-gray);
  position: relative;
  overflow: hidden;
}

#core-lab .workflow-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

#core-lab .workflow-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: black;
}

#core-lab .workflow-content h2 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#core-lab .workflow-content>p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

#core-lab .workflow-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#core-lab .workflow-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

#core-lab .workflow-feature:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

#core-lab .workflow-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

#core-lab .workflow-feature-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

#core-lab .workflow-feature-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

#core-lab .workflow-diagram {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

#core-lab .workflow-diagram-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
}

#core-lab .workflow-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#core-lab .workflow-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--primary-light);
  z-index: 0;
}

#core-lab .workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

#core-lab .workflow-step-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
  box-shadow: var(--shadow-red);
}

#core-lab .workflow-step span {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/* AI SECTION */
#core-lab .ai-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#core-lab .ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--primary-20) 0%, transparent 50%);
}

#core-lab .ai-header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

#core-lab .ai-header .section-label {
  background: rgba(239, 63, 35, 0.3);
  color: white;
}

#core-lab .ai-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

#core-lab .ai-header h2 .highlight {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

#core-lab .ai-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

#core-lab .ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

#core-lab .ai-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

#core-lab .ai-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

#core-lab .ai-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

#core-lab .ai-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

#core-lab .ai-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

#core-lab .ai-security {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

#core-lab .ai-security-icon {
  font-size: 40px;
  flex-shrink: 0;
}

#core-lab .ai-security-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

#core-lab .ai-security-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* TEAM SECTION */
#core-lab .team-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#core-lab .team-diagram {
  max-width: 900px;
  margin: 0 auto;
}

#core-lab .team-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

#core-lab .team-box {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

#core-lab .team-box:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

#core-lab .team-box-header {
  text-align: center;
  margin-bottom: 24px;
}

#core-lab .team-box-header h3 {
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#core-lab .team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

#core-lab .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#core-lab .team-member-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

#core-lab .team-member span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

#core-lab .team-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
}

#core-lab .team-connector-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

#core-lab .team-connector span {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

#core-lab .team-sub-section {
  margin-bottom: 20px;
}

#core-lab .team-sub-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}

#core-lab .team-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

#core-lab .team-highlight {
  text-align: center;
  padding: 24px;
  background: var(--bg-gray);
  border-radius: 16px;
}

#core-lab .team-highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
}

#core-lab .team-highlight h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

#core-lab .team-highlight p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* TARGET SECTION */
#core-lab .target-section {
  padding: 100px 0;
  background: var(--bg-gray);
}

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

#core-lab .target-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

#core-lab .target-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

#core-lab .target-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

#core-lab .target-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#core-lab .target-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* PROOF SECTION */
#core-lab .proof-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--primary-lighter) 100%);
}

#core-lab .proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

#core-lab .proof-stat {
  text-align: center;
}

#core-lab .proof-stat-number {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

#core-lab .proof-stat-number span {
  font-size: 24px;
}

#core-lab .proof-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

#core-lab .proof-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

#core-lab .proof-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

#core-lab .proof-badge-icon {
  font-size: 24px;
}

#core-lab .proof-badge-text h4 {
  font-size: 13px;
  font-weight: 600;
}

#core-lab .proof-badge-text p {
  font-size: 11px;
  color: var(--text-light);
}

/* CASE STUDIES */
#core-lab .cases-section {
  padding: 100px 0;
  background: var(--bg-gray);
}

#core-lab .cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

#core-lab .case-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

#core-lab .case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

#core-lab .case-card-image {
  position: relative;
  height: 200px;
  background: var(--bg-gray);
  overflow: hidden;
}

#core-lab .case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#core-lab .case-card-industry {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

#core-lab .case-card-content {
  padding: 28px;
}

#core-lab .case-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

#core-lab .case-card-logo {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

#core-lab .case-card-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

#core-lab .case-card-info p {
  font-size: 13px;
  color: var(--text-light);
}

#core-lab .case-card-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

#core-lab .case-card-results {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

#core-lab .case-result {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: var(--primary-lighter);
  border-radius: 8px;
}

#core-lab .case-result-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

#core-lab .case-result-label {
  font-size: 11px;
  color: var(--text-secondary);
}

#core-lab .case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

#core-lab .case-tag {
  padding: 4px 10px;
  background: var(--bg-gray);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-secondary);
}

/* TESTIMONIALS */
#core-lab .testimonials-wrapper {
  margin-top: 60px;
}

#core-lab .testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

#core-lab .testimonials-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#core-lab .testimonials-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

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

#core-lab .testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

#core-lab .testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

#core-lab .testimonial-quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

#core-lab .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

#core-lab .testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

#core-lab .core-lab-testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

#core-lab .core-lab-testimonial-info p {
  font-size: 12px;
  color: var(--text-light);
}

/* INDUSTRIES */
#core-lab .industries-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#core-lab .industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

#core-lab .industry-card {
  position: relative;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

#core-lab .industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

#core-lab .industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#core-lab .industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

#core-lab .industry-card span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

/* CTA SECTION */
#core-lab .cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
}

#core-lab .cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

#core-lab .cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#core-lab .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}

#core-lab .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   RESPONSIVE STYLES - Full Breakpoints
======================================== */

/* Large Desktop (1280px) */
@media (max-width: 1280px) {
  #core-lab .container {
    padding: 0 20px;
  }

  #core-lab .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Landscape & Small Desktop (1024px) */
@media (max-width: 1024px) {
  #core-lab .container {
    padding: 0 20px;
  }

  /* Hero */
  #core-lab .hero-grid {
    margin-top: 180px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #core-lab .hero h2 {
    font-size: 32px;
  }

  #core-lab .hero h2 .sub {
    font-size: 18px;
  }

  #core-lab .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  #core-lab .hero-banner h1 {
    font-size: 36px;
  }

  #core-lab .hero-banner-meta {
    font-size: 14px;
  }

  /* Grids */
  #core-lab .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #core-lab .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #core-lab .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #core-lab .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #core-lab .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  #core-lab .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #core-lab .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Workflow */
  #core-lab .workflow-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #core-lab .workflow-diagram {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Team */
  #core-lab .team-grid {
    flex-direction: column;
    gap: 16px;
  }

  #core-lab .team-connector {
    transform: rotate(90deg);
    padding: 20px 0;
  }

  #core-lab .team-box {
    max-width: 100%;
  }

  /* Cases */
  #core-lab .cases-grid {
    grid-template-columns: 1fr;
  }

  /* Sections padding */
  #core-lab .pain-section,
  #core-lab .solution-section,
  #core-lab .comparison-section,
  #core-lab .workflow-section,
  #core-lab .ai-section,
  #core-lab .team-section,
  #core-lab .target-section,
  #core-lab .proof-section,
  #core-lab .cases-section,
  #core-lab .industries-section,
  #core-lab .cta-section {
    padding: 80px 0;
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  #core-lab .container {
    padding: 0 16px;
  }

  /* Typography */
  #core-lab .section-header h2 {
    font-size: 26px;
  }

  #core-lab .section-header p {
    font-size: 14px;
  }

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

  /* Hero Banner */
  #core-lab .hero-banner {
    height: auto;
    min-height: 220px;
    padding: 40px 16px;
  }

  #core-lab .hero-banner h1 {
    font-size: 30px;
  }

  #core-lab .hero-banner-meta {
    font-size: 13px;
  }

  #core-lab .hero-banner-meta br {
    display: none;
  }

  /* Hero Section */
  #core-lab .hero {
    padding: 60px 0;
  }

  #core-lab .hero h2 {
    font-size: 26px;
  }

  #core-lab .hero h2 .sub {
    font-size: 16px;
  }

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

  #core-lab .hero-lead br {
    display: none;
  }

  #core-lab .hero-floating-badge {
    display: none;
  }

  /* Pain Cards */
  #core-lab .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #core-lab .pain-card {
    padding: 24px 20px;
  }

  #core-lab .pain-card-icon {
    font-size: 32px;
  }

  #core-lab .pain-card h4 {
    font-size: 15px;
  }

  #core-lab .pain-card p {
    font-size: 13px;
  }

  /* Solution */
  #core-lab .solution-intro h2 {
    font-size: 26px;
  }

  #core-lab .solution-intro p {
    font-size: 14px;
  }

  #core-lab .solution-intro p br {
    display: none;
  }

  #core-lab .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #core-lab .solution-card {
    padding: 32px 24px;
  }

  #core-lab .solution-card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  #core-lab .solution-card h3 {
    font-size: 18px;
  }

  /* Comparison Table */
  #core-lab .comparison-table {
    min-width: 520px;
  }

  #core-lab .comparison-table th,
  #core-lab .comparison-table td {
    padding: 16px;
    font-size: 13px;
  }

  /* Workflow */
  #core-lab .workflow-content h2 {
    font-size: 24px;
  }

  #core-lab .workflow-content h2 br {
    display: none;
  }

  #core-lab .workflow-content>p {
    font-size: 14px;
  }

  #core-lab .workflow-content>p br {
    display: none;
  }

  #core-lab .workflow-diagram {
    padding: 28px 20px;
  }

  #core-lab .workflow-step-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  #core-lab .workflow-step span {
    font-size: 11px;
  }

  /* AI Section */
  #core-lab .ai-header h2 {
    font-size: 26px;
  }

  #core-lab .ai-header p {
    font-size: 14px;
  }

  #core-lab .ai-header p br {
    display: none;
  }

  #core-lab .ai-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #core-lab .ai-card {
    padding: 28px 24px;
  }

  #core-lab .ai-card-icon {
    font-size: 36px;
  }

  #core-lab .ai-card h4 {
    font-size: 18px;
  }

  #core-lab .ai-card p {
    font-size: 13px;
  }

  #core-lab .ai-security {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  #core-lab .ai-security-content h4 {
    font-size: 15px;
  }

  #core-lab .ai-security-content p {
    font-size: 13px;
  }

  /* Team */
  #core-lab .team-box {
    padding: 24px;
  }

  #core-lab .team-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #core-lab .team-highlight {
    padding: 20px;
  }

  /* Target */
  #core-lab .target-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #core-lab .target-card {
    padding: 24px 20px;
  }

  #core-lab .target-card-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  #core-lab .target-card h3 {
    font-size: 16px;
  }

  #core-lab .target-card p {
    font-size: 13px;
  }

  /* Proof */
  #core-lab .proof-stat-number {
    font-size: 36px;
  }

  #core-lab .proof-stat-number span {
    font-size: 18px;
  }

  #core-lab .proof-stat-label {
    font-size: 12px;
  }

  #core-lab .proof-badges {
    flex-direction: column;
    align-items: center;
  }

  #core-lab .proof-badge {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Cases */
  #core-lab .case-card-image {
    height: 180px;
  }

  #core-lab .case-card-content {
    padding: 20px;
  }

  #core-lab .case-card-info h3 {
    font-size: 16px;
  }

  #core-lab .case-card-description {
    font-size: 13px;
  }

  #core-lab .case-card-results {
    flex-direction: column;
    gap: 10px;
  }

  #core-lab .case-result {
    padding: 10px;
  }

  #core-lab .case-result-value {
    font-size: 18px;
  }

  /* Testimonials */
  #core-lab .testimonials-header h3 {
    font-size: 20px;
  }

  #core-lab .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #core-lab .testimonial-card {
    padding: 24px;
  }

  #core-lab .testimonial-quote {
    font-size: 14px;
  }

  /* Industries */
  #core-lab .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #core-lab .industry-card {
    height: 140px;
  }

  #core-lab .industry-card span {
    font-size: 13px;
  }

  /* CTA */
  #core-lab .cta-section h2 {
    font-size: 28px;
  }

  #core-lab .cta-section p {
    font-size: 14px;
  }

  #core-lab .cta-section p br {
    display: none;
  }

  #core-lab .btn-white {
    padding: 16px 32px;
    font-size: 15px;
  }

  /* Sections padding */
  #core-lab .pain-section,
  #core-lab .solution-section,
  #core-lab .comparison-section,
  #core-lab .workflow-section,
  #core-lab .ai-section,
  #core-lab .team-section,
  #core-lab .target-section,
  #core-lab .proof-section,
  #core-lab .cases-section,
  #core-lab .industries-section,
  #core-lab .cta-section {
    padding: 60px 0;
  }
}

/* Mobile Large (640px) */
@media (max-width: 640px) {
  #core-lab .container {
    padding: 0 16px;
  }

  /* Hero */
  #core-lab .hero {
    padding: 50px 0;
  }

  #core-lab .hero h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  #core-lab .hero h2 .sub {
    font-size: 15px;
    margin-top: 8px;
  }

  #core-lab .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  #core-lab .hero-tagline {
    font-size: 13px;
    padding: 6px 12px;
  }

  #core-lab .hero-lead {
    font-size: 13px;
    margin-bottom: 24px;
  }

  #core-lab .hero-cta {
    flex-direction: column;
  }

  #core-lab .btn-primary,
  #core-lab .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  /* Workflow Steps */
  #core-lab .workflow-steps {
    flex-direction: column;
    gap: 20px;
  }

  #core-lab .workflow-steps::before {
    display: none;
  }

  #core-lab .workflow-step {
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }

  #core-lab .workflow-step-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  #core-lab .workflow-step span {
    text-align: left;
    font-size: 13px;
  }

  /* Section Headers */
  #core-lab .section-header h2 {
    font-size: 22px;
  }

  #core-lab .section-header p {
    font-size: 13px;
  }

  #core-lab .section-label {
    font-size: 11px;
    padding: 5px 12px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  #core-lab .container {
    padding: 0 14px;
  }

  /* Hero Banner */
  #core-lab .hero-banner {
    min-height: 200px;
    padding: 32px 14px;
  }

  #core-lab .hero-banner h1 {
    font-size: 26px;
  }

  #core-lab .hero-banner-meta {
    font-size: 12px;
    line-height: 1.7;
  }

  /* Hero Section */
  #core-lab .hero {
    padding: 40px 0;
  }

  #core-lab .hero h2 {
    font-size: 22px;
  }

  #core-lab .hero h2 .sub {
    font-size: 14px;
  }

  #core-lab .hero-lead {
    font-size: 12px;
    line-height: 1.8;
  }

  /* Cards */
  #core-lab .pain-card {
    padding: 20px 16px;
  }

  #core-lab .pain-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  #core-lab .pain-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #core-lab .pain-card p {
    font-size: 12px;
  }

  #core-lab .solution-card {
    padding: 24px 20px;
  }

  #core-lab .solution-card-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  #core-lab .solution-card h3 {
    font-size: 16px;
  }

  #core-lab .solution-card .subtitle {
    font-size: 11px;
  }

  #core-lab .solution-card p {
    font-size: 12px;
  }

  /* Comparison Table */
  #core-lab .comparison-table {
    min-width: 450px;
  }

  #core-lab .comparison-table th,
  #core-lab .comparison-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  /* Workflow */
  #core-lab .workflow-content h2 {
    font-size: 20px;
  }

  #core-lab .workflow-content>p {
    font-size: 13px;
  }

  #core-lab .workflow-feature {
    padding: 16px;
    gap: 12px;
  }

  #core-lab .workflow-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  #core-lab .workflow-feature-content h4 {
    font-size: 14px;
  }

  #core-lab .workflow-feature-content p {
    font-size: 12px;
  }

  #core-lab .workflow-diagram {
    padding: 20px 16px;
  }

  /* AI Section */
  #core-lab .ai-header h2 {
    font-size: 22px;
  }

  #core-lab .ai-header p {
    font-size: 13px;
  }

  #core-lab .ai-card {
    padding: 24px 20px;
  }

  #core-lab .ai-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }

  #core-lab .ai-card h4 {
    font-size: 16px;
  }

  #core-lab .ai-card p {
    font-size: 12px;
  }

  #core-lab .ai-security {
    padding: 20px;
  }

  #core-lab .ai-security-icon {
    font-size: 32px;
  }

  #core-lab .ai-security-content h4 {
    font-size: 14px;
  }

  #core-lab .ai-security-content p {
    font-size: 12px;
  }

  /* Team */
  #core-lab .team-box {
    padding: 20px;
    min-width: auto;
  }

  #core-lab .team-box-header h3 {
    font-size: 16px;
  }

  #core-lab .team-member-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  #core-lab .team-member span {
    font-size: 11px;
  }

  #core-lab .team-highlight {
    padding: 16px;
  }

  #core-lab .team-highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  #core-lab .team-highlight h4 {
    font-size: 13px;
  }

  #core-lab .team-highlight p {
    font-size: 11px;
  }

  /* Target */
  #core-lab .target-card {
    padding: 20px 16px;
  }

  #core-lab .target-card-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  #core-lab .target-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  #core-lab .target-card p {
    font-size: 12px;
  }

  /* Proof */
  #core-lab .proof-stats {
    gap: 20px;
  }

  #core-lab .proof-stat-number {
    font-size: 32px;
  }

  #core-lab .proof-stat-number span {
    font-size: 16px;
  }

  #core-lab .proof-stat-label {
    font-size: 11px;
  }

  #core-lab .proof-badge {
    padding: 12px 16px;
  }

  #core-lab .proof-badge-icon {
    font-size: 20px;
  }

  #core-lab .proof-badge-text h4 {
    font-size: 12px;
  }

  #core-lab .proof-badge-text p {
    font-size: 10px;
  }

  /* Cases */
  #core-lab .case-card-image {
    height: 160px;
  }

  #core-lab .case-card-content {
    padding: 16px;
  }

  #core-lab .case-card-logo {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  #core-lab .case-card-info h3 {
    font-size: 15px;
  }

  #core-lab .case-card-info p {
    font-size: 12px;
  }

  #core-lab .case-card-description {
    font-size: 12px;
    margin-bottom: 16px;
  }

  #core-lab .case-result {
    padding: 8px;
  }

  #core-lab .case-result-value {
    font-size: 16px;
  }

  #core-lab .case-result-label {
    font-size: 10px;
  }

  #core-lab .case-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Testimonials */
  #core-lab .testimonials-header h3 {
    font-size: 18px;
  }

  #core-lab .testimonials-header p {
    font-size: 12px;
  }

  #core-lab .testimonial-card {
    padding: 20px;
  }

  #core-lab .testimonial-quote {
    font-size: 13px;
    margin-bottom: 16px;
  }

  #core-lab .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  #core-lab .core-lab-testimonial-info h4 {
    font-size: 13px;
  }

  #core-lab .core-lab-testimonial-info p {
    font-size: 11px;
  }

  /* Industries */
  #core-lab .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #core-lab .industry-card {
    height: 120px;
  }

  #core-lab .industry-card span {
    font-size: 12px;
    bottom: 12px;
    left: 12px;
  }

  /* CTA */
  #core-lab .cta-section {
    padding: 50px 0;
  }

  #core-lab .cta-section h2 {
    font-size: 24px;
  }

  #core-lab .cta-section p {
    font-size: 13px;
    margin-bottom: 24px;
  }

  #core-lab .btn-white {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Sections padding */
  #core-lab .pain-section,
  #core-lab .solution-section,
  #core-lab .comparison-section,
  #core-lab .workflow-section,
  #core-lab .ai-section,
  #core-lab .team-section,
  #core-lab .target-section,
  #core-lab .proof-section,
  #core-lab .cases-section,
  #core-lab .industries-section {
    padding: 50px 0;
  }
}

/* Mobile Small (375px) */
@media (max-width: 375px) {
  #core-lab .container {
    padding: 0 12px;
  }

  /* Hero Banner */
  #core-lab .hero-banner {
    min-height: 180px;
    padding: 28px 12px;
  }

  #core-lab .hero-banner h1 {
    font-size: 22px;
  }

  #core-lab .hero-banner-meta {
    font-size: 11px;
  }

  /* Hero Section */
  #core-lab .hero h2 {
    font-size: 20px;
  }

  #core-lab .hero h2 .sub {
    font-size: 13px;
  }

  #core-lab .hero-badge {
    font-size: 11px;
  }

  #core-lab .hero-tagline {
    font-size: 12px;
  }

  #core-lab .hero-lead {
    font-size: 12px;
  }

  #core-lab .btn-primary,
  #core-lab .btn-secondary {
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Section Headers */
  #core-lab .section-header h2 {
    font-size: 20px;
  }

  #core-lab .section-header p {
    font-size: 12px;
  }

  #core-lab .section-label {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Cards - even smaller */
  #core-lab .pain-card h4 {
    font-size: 13px;
  }

  #core-lab .pain-card p {
    font-size: 11px;
  }

  #core-lab .solution-card h3 {
    font-size: 15px;
  }

  #core-lab .solution-card p {
    font-size: 11px;
  }

  #core-lab .ai-card h4 {
    font-size: 15px;
  }

  #core-lab .ai-card p {
    font-size: 11px;
  }

  #core-lab .target-card h3 {
    font-size: 14px;
  }

  #core-lab .target-card p {
    font-size: 11px;
  }

  /* Table */
  #core-lab .comparison-table {
    min-width: 400px;
  }

  #core-lab .comparison-table th,
  #core-lab .comparison-table td {
    padding: 10px 8px;
    font-size: 11px;
  }

  /* Workflow */
  #core-lab .workflow-content h2 {
    font-size: 18px;
  }

  #core-lab .workflow-feature-content h4 {
    font-size: 13px;
  }

  #core-lab .workflow-feature-content p {
    font-size: 11px;
  }

  /* Proof */
  #core-lab .proof-stat-number {
    font-size: 28px;
  }

  #core-lab .proof-stat-number span {
    font-size: 14px;
  }

  #core-lab .proof-stat-label {
    font-size: 10px;
  }

  /* Cases */
  #core-lab .case-card-info h3 {
    font-size: 14px;
  }

  #core-lab .case-card-description {
    font-size: 11px;
  }

  #core-lab .case-result-value {
    font-size: 14px;
  }

  /* Industries */
  #core-lab .industry-card {
    height: 100px;
  }

  #core-lab .industry-card span {
    font-size: 11px;
  }

  /* CTA */
  #core-lab .cta-section h2 {
    font-size: 22px;
  }

  #core-lab .cta-section p {
    font-size: 12px;
  }

  #core-lab .btn-white {
    padding: 12px 24px;
    font-size: 13px;
  }

  /* Sections padding */
  #core-lab .pain-section,
  #core-lab .solution-section,
  #core-lab .comparison-section,
  #core-lab .workflow-section,
  #core-lab .ai-section,
  #core-lab .team-section,
  #core-lab .target-section,
  #core-lab .proof-section,
  #core-lab .cases-section,
  #core-lab .industries-section,
  #core-lab .cta-section {
    padding: 40px 0;
  }
}

/* ========================================
   SCOPED STYLES FOR #genai-poc
   WordPress-Ready with Full Responsive
======================================== */

/* Reset & Base */
#genai-poc,
#genai-poc *,
#genai-poc *::before,
#genai-poc *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

#genai-poc {
  --primary: #EF3F23;
  --primary-dark: #C41E10;
  --primary-light: rgba(240, 65, 38, 0.2);
  --primary-lighter: rgba(240, 65, 38, 0.1);
  --black: #000000;
  --white: #FFFFFF;
  --dark: #1a1a1a;
  --dark-soft: #2d2d2d;
  --gradient-text: linear-gradient(135deg, #1a1a1a 0%, #EF3F23 100%);
  --gradient-primary: linear-gradient(135deg, #EF3F23 0%, #C41E10 100%);
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #777777;
  --bg-white: #ffffff;
  --bg-light: #FAFAFA;
  --bg-soft: #F5F5F5;
  --border: #E8E8E8;
  --border-light: #F0F0F0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--text-primary);
  line-height: 1.8;
  background: var(--bg-white);
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

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

#genai-poc .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#genai-poc h1,
#genai-poc h2,
#genai-poc h3,
#genai-poc h4 {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 700;
  line-height: 1.3;
}

#genai-poc .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

#genai-poc .section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

#genai-poc .section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: black;
}

#genai-poc .section-title .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-light);
  max-width: 700px;
}

/* ========================================
   HERO BANNER
======================================== */
#genai-poc .hero-banner {
  position: relative;
  width: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d2d2d 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

#genai-poc .hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(239, 63, 35, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(239, 63, 35, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

#genai-poc .hero-wave {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(239, 63, 35, 0.03) 2px, rgba(239, 63, 35, 0.03) 4px);
  animation: genaiWaveMove 20s linear infinite;
}

@keyframes genaiWaveMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(50px, 50px) rotate(5deg);
  }
}

#genai-poc .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#genai-poc .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: genaiParticleFloat 8s ease-in-out infinite;
}

#genai-poc .particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

#genai-poc .particle:nth-child(2) {
  left: 20%;
  top: 60%;
  animation-delay: 1s;
}

#genai-poc .particle:nth-child(3) {
  left: 30%;
  top: 30%;
  animation-delay: 2s;
}

#genai-poc .particle:nth-child(4) {
  left: 50%;
  top: 70%;
  animation-delay: 3s;
}

#genai-poc .particle:nth-child(5) {
  left: 70%;
  top: 25%;
  animation-delay: 4s;
}

#genai-poc .particle:nth-child(6) {
  left: 80%;
  top: 55%;
  animation-delay: 5s;
}

#genai-poc .particle:nth-child(7) {
  left: 90%;
  top: 40%;
  animation-delay: 6s;
}

@keyframes genaiParticleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 0.6;
  }
}

#genai-poc .hero-arc {
  position: absolute;
  right: -100px;
  top: -50px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(239, 63, 35, 0.2);
  border-radius: 50%;
  animation: genaiArcPulse 4s ease-in-out infinite;
}

@keyframes genaiArcPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

#genai-poc .hero-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  max-width: 800px;
}

#genai-poc .hero-banner h1 {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#genai-poc .hero-banner-meta {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

#genai-poc .hero-banner-meta strong {
  color: var(--primary);
}

#genai-poc .hero-banner-meta br {
  display: none;
}

/* ========================================
   HERO CONTENT
======================================== */
#genai-poc .hero {
  position: relative;
  padding: 60px 0 80px;
  background: var(--bg-white);
  overflow: hidden;
}

#genai-poc .hero-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
  overflow: hidden;
}

#genai-poc .hero-decoration::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 65, 38, 0.08) 0%, transparent 70%);
}

#genai-poc .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

#genai-poc .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#genai-poc .hero-badge::before {
  content: '🚀';
}

#genai-poc .hero h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 20px;
  color: black;
}

#genai-poc .hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

#genai-poc .hero-description {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

#genai-poc .hero-description br {
  display: none;
}

#genai-poc .hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  flex-wrap: wrap;
  justify-content: center;
}

#genai-poc .hero-stat {
  text-align: center;
  min-width: 80px;
}

#genai-poc .hero-stat-number {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .hero-stat-label {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  color: var(--text-light);
  margin-top: 4px;
}

#genai-poc .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#genai-poc .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

#genai-poc .btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(239, 63, 35, 0.25);
}

#genai-poc .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 63, 35, 0.35);
}

#genai-poc .btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

#genai-poc .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Visual */
#genai-poc .hero-visual {
  position: relative;
}

#genai-poc .hero-visual-main {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

#genai-poc .hero-visual-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 63, 35, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(239, 63, 35, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

#genai-poc .visual-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

#genai-poc .visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#genai-poc .visual-dot.red {
  background: #EF4444;
}

#genai-poc .visual-dot.yellow {
  background: #F59E0B;
}

#genai-poc .visual-dot.green {
  background: #10B981;
}

#genai-poc .visual-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-left: auto;
  display: none;
}

#genai-poc .visual-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 1;
}

#genai-poc .visual-step {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

#genai-poc .visual-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(239, 63, 35, 0.3);
}

#genai-poc .visual-step-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 10px;
}

#genai-poc .visual-step-label {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

#genai-poc .visual-step-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  margin-top: 4px;
}

#genai-poc .visual-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  flex-shrink: 0;
}

#genai-poc .hero-floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
  visibility: hidden;
  opacity: 0;
}

#genai-poc .floating-card {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: genaiFloat 6s ease-in-out infinite;
}

@keyframes genaiFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#genai-poc .floating-card.card-1 {
  top: -15px;
  right: -15px;
  animation-delay: 0s;
}

#genai-poc .floating-card.card-2 {
  bottom: 30px;
  left: -20px;
  animation-delay: 2s;
}

#genai-poc .floating-card.card-3 {
  bottom: -15px;
  right: 30px;
  animation-delay: 4s;
}

#genai-poc .floating-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--primary-lighter);
}

#genai-poc .floating-card-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

#genai-poc .floating-card-sub {
  font-size: 0.65rem;
  color: var(--text-light);
}

/* ========================================
   PAIN POINTS
======================================== */
#genai-poc .pain-points {
  padding: 60px 0;
  background: var(--bg-white);
}

#genai-poc .pain-points .section-header {
  text-align: center;
  margin-bottom: 40px;
}

#genai-poc .pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

#genai-poc .pain-card {
  padding: 24px;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#genai-poc .pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

#genai-poc .pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

#genai-poc .pain-card:hover::before {
  opacity: 1;
}

#genai-poc .pain-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

#genai-poc .pain-card h3 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 10px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .pain-card p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--text-light);
  line-height: 1.7;
}

#genai-poc .pain-stat {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   PHILOSOPHY
======================================== */
#genai-poc .philosophy {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#genai-poc .philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 63, 35, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(239, 63, 35, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

#genai-poc .philosophy-arc {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(239, 63, 35, 0.15);
  border-radius: 50%;
}

#genai-poc .philosophy .container {
  position: relative;
  z-index: 1;
}

#genai-poc .philosophy-header {
  text-align: center;
  margin-bottom: 40px;
}

#genai-poc .philosophy-header .section-label {
  color: rgba(255, 255, 255, 0.7);
}

#genai-poc .philosophy-header .section-label::before {
  background: rgba(255, 255, 255, 0.3);
}

#genai-poc .philosophy-header .section-title {
  color: white;
}

#genai-poc .philosophy-main {
  text-align: center;
  margin-bottom: 40px;
}

#genai-poc .philosophy-tagline {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  color: white;
}

#genai-poc .philosophy-tagline .em {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .philosophy-desc {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

#genai-poc .philosophy-desc br {
  display: none;
}

#genai-poc .philosophy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#genai-poc .philosophy-step {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: var(--transition);
}

#genai-poc .philosophy-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

#genai-poc .philosophy-step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

#genai-poc .philosophy-step h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 6px;
  color: white;
}

#genai-poc .philosophy-step-sub {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 500;
}

#genai-poc .philosophy-step p {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ========================================
   TECHNOLOGY
======================================== */
#genai-poc .technology {
  padding: 60px 0;
  background: var(--bg-light);
  position: relative;
}

#genai-poc .technology .section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

#genai-poc .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

#genai-poc .tech-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#genai-poc .tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

#genai-poc .tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

#genai-poc .tech-card:hover::before {
  opacity: 1;
}

#genai-poc .tech-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

#genai-poc .tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: var(--primary-lighter);
}

#genai-poc .tech-title-area h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 4px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .tech-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

#genai-poc .tech-card>p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

#genai-poc .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#genai-poc .tech-tag {
  padding: 5px 10px;
  background: var(--bg-soft);
  border-radius: 6px;
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  color: var(--text-secondary);
}

/* ========================================
   USE CASES
======================================== */
#genai-poc .use-cases {
  padding: 60px 0;
  background: white;
}

#genai-poc .use-cases .section-header {
  text-align: center;
  margin-bottom: 40px;
}

#genai-poc .usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#genai-poc .usecase-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#genai-poc .usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

#genai-poc .usecase-icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

#genai-poc .usecase-card h3 {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .usecase-card>p {
  font-size: clamp(0.8rem, 1.7vw, 0.9rem);
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}

#genai-poc .usecase-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

#genai-poc .usecase-duration {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--text-secondary);
}

#genai-poc .usecase-effect {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   SERVICE FLOW
======================================== */
#genai-poc .service-flow {
  padding: 60px 0;
  background: var(--bg-light);
}

#genai-poc .service-flow .section-header {
  text-align: center;
  margin-bottom: 40px;
}

#genai-poc .flow-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 40px;
}

#genai-poc .flow-step {
  position: relative;
  z-index: 1;
}

#genai-poc .flow-step-header {
  background: white;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
}

#genai-poc .flow-step:hover .flow-step-header {
  border-color: var(--primary);
}

#genai-poc .flow-step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 10px;
}

#genai-poc .flow-step-title {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 700;
  margin-bottom: 4px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .flow-step-duration {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--primary);
  font-weight: 600;
}

#genai-poc .flow-step-content {
  background: white;
  border-radius: 10px;
  padding: 16px;
}

#genai-poc .flow-step-content ul {
  list-style: none;
}

#genai-poc .flow-step-content li {
  font-size: clamp(0.8rem, 1.7vw, 0.88rem);
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

#genai-poc .flow-step-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Pricing */
#genai-poc .pricing-guide {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

#genai-poc .pricing-guide h3 {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 24px;
  color: var(--text-primary);
}

#genai-poc .pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

#genai-poc .pricing-table th,
#genai-poc .pricing-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: clamp(0.8rem, 1.7vw, 0.95rem);
}

#genai-poc .pricing-table th {
  background: var(--bg-soft);
  font-weight: 600;
}

#genai-poc .pricing-table tr:last-child td {
  border-bottom: none;
}

#genai-poc .pricing-highlight {
  background: var(--primary-lighter);
}

#genai-poc .pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: var(--text-light);
}

/* ========================================
   WHY US
======================================== */
#genai-poc .why-us {
  padding: 60px 0;
  background: white;
}

#genai-poc .why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

#genai-poc .why-us-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 20px;
}

#genai-poc .why-us-content h2 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .why-us-content>p {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-light);
  margin-bottom: 30px;
}

#genai-poc .strength-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

#genai-poc .strength-number {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

#genai-poc .strength-content h4 {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: 3px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .strength-content p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--text-light);
}

#genai-poc .why-us-visual {
  position: relative;
}

#genai-poc .comparison-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  overflow-x: auto;
}

#genai-poc .comparison-card h3 {
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 20px;
  color: var(--text-primary);
}

#genai-poc .comparison-table {
  width: 100%;
  min-width: 350px;
}

#genai-poc .comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

#genai-poc .comparison-row:last-child {
  border-bottom: none;
}

#genai-poc .comparison-row.header {
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--text-secondary);
}

#genai-poc .comparison-cell {
  font-size: clamp(0.8rem, 1.7vw, 0.9rem);
  text-align: center;
}

#genai-poc .comparison-cell:first-child {
  text-align: left;
  font-weight: 500;
}

#genai-poc .comparison-cell.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   CASE STUDIES
======================================== */
#genai-poc .case-studies {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#genai-poc .case-studies::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(239, 63, 35, 0.15);
  border-radius: 50%;
}

#genai-poc .case-studies .section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

#genai-poc .case-studies .section-label {
  color: rgba(255, 255, 255, 0.7);
}

#genai-poc .case-studies .section-label::before {
  background: rgba(255, 255, 255, 0.3);
}

#genai-poc .case-studies .section-title {
  color: white;
}

#genai-poc .case-studies .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

#genai-poc .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

#genai-poc .case-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}

#genai-poc .case-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

#genai-poc .case-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gradient-primary);
  border-radius: 50px;
  font-size: clamp(0.65rem, 1.3vw, 0.75rem);
  font-weight: 600;
  margin-bottom: 14px;
}

#genai-poc .case-card h3 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 10px;
  color: white;
}

#genai-poc .case-industry {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

#genai-poc .case-challenge {
  font-size: clamp(0.8rem, 1.7vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#genai-poc .case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#genai-poc .case-result-item {
  text-align: center;
}

#genai-poc .case-result-value {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#genai-poc .case-result-label {
  font-size: clamp(0.7rem, 1.3vw, 0.8rem);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

#genai-poc .case-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#genai-poc .case-tech-tag {
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FAQ
======================================== */
#genai-poc .faq {
  padding: 60px 0;
  background: white;
}

#genai-poc .faq .section-header {
  text-align: center;
  margin-bottom: 40px;
}

#genai-poc .faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

#genai-poc .faq-item {
  border-bottom: 1px solid var(--border);
}

#genai-poc .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  font-family: 'Noto Sans JP', sans-serif;
}

#genai-poc .faq-question:hover {
  color: var(--primary);
}

#genai-poc .faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

#genai-poc .faq-item.active .faq-icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(45deg);
}

#genai-poc .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#genai-poc .faq-item.active .faq-answer {
  max-height: 400px;
}

#genai-poc .faq-answer-content {
  padding-bottom: 20px;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   CTA
======================================== */
#genai-poc .cta-section {
  padding: 60px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

#genai-poc .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

#genai-poc .cta-arc {
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

#genai-poc .cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

#genai-poc .cta-content h2 {
  color: white;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 14px;
}

#genai-poc .cta-content>p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

#genai-poc .cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

#genai-poc .cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
}

#genai-poc .cta-feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

#genai-poc .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

#genai-poc .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

#genai-poc .cta-btn-primary {
  background: white;
  color: var(--primary);
}

#genai-poc .cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#genai-poc .cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#genai-poc .cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */

/* Desktop Large (1440px+) */
@media (min-width: 1440px) {
  #genai-poc .container {
    max-width: 1280px;
  }

  #genai-poc .hero-floating-cards {
    display: block !important;
  }

  #genai-poc .visual-title {
    display: block;
  }
}

/* Laptop/Desktop (1024px - 1439px) */
@media (max-width: 1439px) {
  #genai-poc .container {
    max-width: 1100px;
  }
}

/* Tablet/Small Laptop (768px - 1023px) */
@media (max-width: 1023px) {
  #genai-poc .container {
    padding: 0 20px;
  }

  #genai-poc .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #genai-poc .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  #genai-poc .hero-content {
    text-align: center;
  }

  #genai-poc .hero-cta {
    justify-content: center;
  }

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

  #genai-poc .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #genai-poc .flow-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  #genai-poc .why-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #genai-poc .case-grid {
    grid-template-columns: 1fr;
  }

  #genai-poc .philosophy-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile Large (425px - 767px) */
@media (max-width: 767px) {
  #genai-poc .container {
    padding: 0 16px;
  }

  #genai-poc .hero-banner {
    padding: 40px 16px;
    min-height: auto;
  }

  #genai-poc .hero-banner-meta br {
    display: none;
  }

  #genai-poc .hero {
    padding: 40px 0 60px;
  }

  /* Fix: Hero stats - center align and proper spacing */
  #genai-poc .hero-stats {
    padding: 20px 16px;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  #genai-poc .hero-stat {
    min-width: 80px;
    flex: 0 0 auto;
    text-align: center;
  }

  #genai-poc .hero-stat-number {
    font-size: 1.3rem;
    white-space: nowrap;
  }

  #genai-poc .hero-stat-label {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* Fix: Buttons - ensure text doesn't get cut */
  #genai-poc .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  #genai-poc .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Fix: Visual flow - stay horizontal but compact */
  #genai-poc .hero-visual-main {
    padding: 16px 12px;
  }

  #genai-poc .visual-flow {
    flex-direction: row;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }

  #genai-poc .visual-step {
    padding: 10px 8px;
    min-width: 70px;
    flex: 0 1 auto;
  }

  #genai-poc .visual-step-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 6px;
  }

  #genai-poc .visual-step-label {
    font-size: 0.65rem;
  }

  #genai-poc .visual-step-sub {
    font-size: 0.55rem;
    display: none;
  }

  #genai-poc .visual-arrow {
    font-size: 0.8rem;
    transform: none;
    flex-shrink: 0;
  }

  /* Completely hide floating cards */
  #genai-poc .hero-floating-cards,
  #genai-poc .floating-card {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  #genai-poc .pain-points,
  #genai-poc .philosophy,
  #genai-poc .technology,
  #genai-poc .use-cases,
  #genai-poc .service-flow,
  #genai-poc .why-us,
  #genai-poc .case-studies,
  #genai-poc .faq,
  #genai-poc .cta-section {
    padding: 40px 0;
  }

  #genai-poc .pain-grid {
    grid-template-columns: 1fr;
  }

  #genai-poc .usecase-grid {
    grid-template-columns: 1fr;
  }

  #genai-poc .flow-timeline {
    grid-template-columns: 1fr;
  }

  #genai-poc .cta-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  #genai-poc .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  #genai-poc .cta-btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  #genai-poc .comparison-card {
    padding: 16px;
  }

  /* Fix: Pricing table - better mobile layout */
  #genai-poc .pricing-guide {
    padding: 20px 12px;
  }

  #genai-poc .pricing-table {
    min-width: auto;
    font-size: 0.85rem;
  }

  #genai-poc .pricing-table th,
  #genai-poc .pricing-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
    vertical-align: top;
  }

  #genai-poc .pricing-table th:first-child,
  #genai-poc .pricing-table td:first-child {
    min-width: 70px;
    white-space: nowrap;
  }

  #genai-poc .pricing-table th:nth-child(2),
  #genai-poc .pricing-table td:nth-child(2) {
    min-width: 60px;
    white-space: nowrap;
  }

  #genai-poc .pricing-table th:nth-child(3),
  #genai-poc .pricing-table td:nth-child(3) {
    min-width: 80px;
    white-space: nowrap;
  }
}

/* Mobile Small (320px - 424px) */
@media (max-width: 424px) {
  #genai-poc .container {
    padding: 0 12px;
  }

  #genai-poc .hero-banner {
    padding: 30px 12px;
  }

  #genai-poc .hero-arc {
    width: 200px;
    height: 200px;
    right: -80px;
    top: -40px;
  }

  #genai-poc .hero-visual-main {
    padding: 12px 8px;
  }

  /* Fix: Visual flow even smaller on very small screens */
  #genai-poc .visual-flow {
    gap: 2px;
  }

  #genai-poc .visual-step {
    padding: 8px 6px;
    min-width: 60px;
  }

  #genai-poc .visual-step-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  #genai-poc .visual-step-label {
    font-size: 0.6rem;
  }

  #genai-poc .visual-arrow {
    font-size: 0.7rem;
  }

  /* Fix: Hero stats on very small screens */
  #genai-poc .hero-stats {
    padding: 16px 12px;
    gap: 16px;
  }

  #genai-poc .hero-stat {
    min-width: 70px;
  }

  #genai-poc .hero-stat-number {
    font-size: 1.1rem;
  }

  #genai-poc .hero-stat-label {
    font-size: 0.7rem;
  }

  #genai-poc .pain-card,
  #genai-poc .tech-card,
  #genai-poc .usecase-card,
  #genai-poc .case-card {
    padding: 20px;
  }

  #genai-poc .philosophy-step {
    padding: 24px 16px;
  }

  #genai-poc .flow-step-header {
    padding: 16px 12px;
  }

  #genai-poc .flow-step-content {
    padding: 14px;
  }

  #genai-poc .faq-question {
    padding: 16px 0;
  }

  #genai-poc .strength-item {
    gap: 12px;
  }

  #genai-poc .strength-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* Fix: Pricing table on very small screens - stack layout */
  #genai-poc .pricing-guide {
    padding: 16px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #genai-poc .pricing-table {
    min-width: 400px;
  }

  #genai-poc .pricing-table th,
  #genai-poc .pricing-table td {
    padding: 8px 6px;
    font-size: 0.75rem;
  }
}

/* Print styles */
@media print {

  #genai-poc .hero-wave,
  #genai-poc .hero-particles,
  #genai-poc .hero-arc,
  #genai-poc .hero-floating-cards,
  #genai-poc .philosophy-arc,
  #genai-poc .cta-arc {
    display: none !important;
  }

  #genai-poc .hero-banner,
  #genai-poc .philosophy,
  #genai-poc .case-studies,
  #genai-poc .cta-section {
    background: #333 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ========================================
   VIETNAM BRIDGE PAGE STYLES
   All styles scoped to #vietnam-bridge
======================================== */
#vietnam-bridge {
  /* CSS Variables */
  --vb-primary: #EF3F23;
  --vb-primary-dark: #D93520;
  --vb-primary-light: rgba(240, 65, 38, 0.2);
  --vb-primary-lighter: rgba(240, 65, 38, 0.1);
  --vb-primary-subtle: rgba(240, 65, 38, 0.05);
  --vb-accent: #F04126;
  --vb-accent-40: rgba(240, 65, 38, 0.4);
  --vb-accent-20: rgba(240, 65, 38, 0.2);
  --vb-accent-10: rgba(240, 65, 38, 0.1);
  --vb-black: #000000;
  --vb-white: #FFFFFF;
  --vb-text-primary: #1a1a1a;
  --vb-text-secondary: #555555;
  --vb-text-light: #888888;
  --vb-bg-white: #ffffff;
  --vb-bg-gray: #f9f9f9;
  --vb-bg-warm: #FFFBFA;
  --vb-bg-dark: #1a1a1a;
  --vb-border: #e8e8e8;
  --vb-gradient-text: linear-gradient(135deg, #1a1a1a 0%, #EF3F23 100%);
  --vb-gradient-primary: linear-gradient(135deg, #EF3F23 0%, #D93520 100%);
  --vb-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --vb-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --vb-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --vb-shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
  --vb-shadow-red: 0 8px 30px rgba(239, 63, 35, 0.25);
  --vb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--vb-bg-white);
  color: var(--vb-text-primary);
  line-height: 1.8;
  overflow-x: hidden;
}

#vietnam-bridge * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Gradient Text */
#vietnam-bridge .gradient-heading {
  background: var(--vb-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative Elements */
#vietnam-bridge .deco-arc {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

#vietnam-bridge .deco-arc::before,
#vietnam-bridge .deco-arc::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

#vietnam-bridge .deco-arc-top-right::before {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  background: rgba(240, 65, 38, 0.06);
}

#vietnam-bridge .deco-arc-top-right::after {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  background: rgba(240, 65, 38, 0.04);
}

#vietnam-bridge .deco-arc-bottom-left::before {
  width: 350px;
  height: 350px;
  bottom: -150px;
  left: -150px;
  background: rgba(240, 65, 38, 0.05);
}

/* ========================================
   DARK HERO BANNER
======================================== */
#vietnam-bridge .hero-banner {
  position: relative;
  height: 318px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#vietnam-bridge .hero-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#vietnam-bridge .wave-container {
  position: absolute;
  width: 200%;
  height: 100%;
  left: -50%;
}

#vietnam-bridge .wave {
  position: absolute;
  width: 100%;
  height: 100%;
}

#vietnam-bridge .wave-1 {
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(239, 63, 35, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(239, 63, 35, 0.1) 0%, transparent 50%);
  animation: vb-wave1 8s ease-in-out infinite;
}

#vietnam-bridge .wave-2 {
  background:
    radial-gradient(ellipse 70% 45% at 60% 70%, rgba(239, 63, 35, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 30% 30%, rgba(239, 63, 35, 0.08) 0%, transparent 50%);
  animation: vb-wave2 10s ease-in-out infinite;
}

#vietnam-bridge .wave-3 {
  background:
    radial-gradient(ellipse 90% 55% at 40% 90%, rgba(239, 63, 35, 0.1) 0%, transparent 50%);
  animation: vb-wave3 12s ease-in-out infinite;
}

#vietnam-bridge .grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(239, 63, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 63, 35, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: vb-gridMove 20s linear infinite;
}

#vietnam-bridge .flow-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#vietnam-bridge .flow-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 63, 35, 0.4), transparent);
  animation: vb-flowLine 4s ease-in-out infinite;
}

#vietnam-bridge .flow-line:nth-child(1) {
  top: 20%;
  width: 30%;
  left: -30%;
  animation-delay: 0s;
}

#vietnam-bridge .flow-line:nth-child(2) {
  top: 50%;
  width: 40%;
  left: -40%;
  animation-delay: 1.5s;
}

#vietnam-bridge .flow-line:nth-child(3) {
  top: 80%;
  width: 25%;
  left: -25%;
  animation-delay: 3s;
}

#vietnam-bridge .particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

#vietnam-bridge .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(239, 63, 35, 0.5);
  border-radius: 50%;
  animation: vb-particleFloat 6s ease-in-out infinite;
}

#vietnam-bridge .particle:nth-child(1) {
  top: 30%;
  left: 10%;
  animation-delay: 0s;
}

#vietnam-bridge .particle:nth-child(2) {
  top: 60%;
  left: 25%;
  animation-delay: 1s;
}

#vietnam-bridge .particle:nth-child(3) {
  top: 20%;
  left: 70%;
  animation-delay: 2s;
}

#vietnam-bridge .particle:nth-child(4) {
  top: 70%;
  left: 85%;
  animation-delay: 3s;
}

#vietnam-bridge .particle:nth-child(5) {
  top: 45%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes vb-wave1 {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(30px) translateY(-20px);
  }
}

@keyframes vb-wave2 {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-40px) translateY(15px);
  }
}

@keyframes vb-wave3 {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(20px) translateY(-10px);
  }
}

@keyframes vb-gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes vb-flowLine {
  0% {
    left: -40%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

@keyframes vb-particleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
  }
}

#vietnam-bridge .hero-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
}

#vietnam-bridge .hero-banner h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--vb-white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

#vietnam-bridge .hero-banner-meta {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.8;
}

/* ========================================
   HERO MAIN SECTION
======================================== */
#vietnam-bridge .vn-bridge-hero {
  position: relative;
  padding: 80px 24px;
  background: var(--vb-bg-warm);
  overflow: hidden;
}

#vietnam-bridge .vn-bridge-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(240, 65, 38, 0.06);
  border-radius: 50%;
}

#vietnam-bridge .vn-bridge-hero::after {
  content: '';
  position: absolute;
  top: 50px;
  right: 50px;
  width: 250px;
  height: 250px;
  background: rgba(240, 65, 38, 0.04);
  border-radius: 50%;
}

#vietnam-bridge .vn-bridge-hero .container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

#vietnam-bridge .hero-content {
  max-width: 600px;
}

#vietnam-bridge .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--vb-accent-10);
  color: var(--vb-primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--vb-accent-20);
}

#vietnam-bridge .hero-badge-icon {
  font-size: 16px;
}

#vietnam-bridge .vn-bridge-hero h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1A1A1A;
}

#vietnam-bridge .vn-bridge-hero h2 .gradient-text {
  background: var(--vb-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#vietnam-bridge .hero-subtitle {
  font-size: 17px;
  color: var(--vb-text-secondary);
  margin-bottom: 32px;
  line-height: 1.9;
}

#vietnam-bridge .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

#vietnam-bridge .btn-primary-vn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--vb-gradient-primary);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--vb-transition);
  box-shadow: var(--vb-shadow-red);
}

#vietnam-bridge .btn-primary-vn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(239, 63, 35, 0.4);
}

#vietnam-bridge .btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--vb-text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid var(--vb-border);
  transition: var(--vb-transition);
}

#vietnam-bridge .btn-secondary-outline:hover {
  border-color: var(--vb-primary);
  color: var(--vb-primary);
}

#vietnam-bridge .hero-stats {
  display: flex;
  gap: 40px;
}

#vietnam-bridge .hero-stat {
  text-align: left;
}

#vietnam-bridge .hero-stat-number {
  font-size: 36px;
  font-weight: 800;
  background: var(--vb-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#vietnam-bridge .hero-stat-label {
  font-size: 13px;
  color: var(--vb-text-light);
  margin-top: 4px;
}

/* Hero Visual */
#vietnam-bridge .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#vietnam-bridge .hero-visual-card {
  background: var(--vb-bg-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--vb-shadow-xl);
  border: 1px solid var(--vb-border);
  position: relative;
}

#vietnam-bridge .hero-visual-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--vb-gradient-primary);
  border-radius: 26px;
  z-index: -1;
  opacity: 0.3;
}

#vietnam-bridge .bot-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 320px;
}

#vietnam-bridge .bot-phase {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--vb-bg-gray);
  border-radius: 16px;
  transition: var(--vb-transition);
}

#vietnam-bridge .bot-phase:hover {
  transform: translateX(8px);
  box-shadow: var(--vb-shadow-md);
  background: var(--vb-bg-white);
}

#vietnam-bridge .bot-phase-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: var(--vb-accent-10);
}

#vietnam-bridge .bot-phase-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--vb-text-primary);
  margin-bottom: 4px;
}

#vietnam-bridge .bot-phase-content p {
  font-size: 12px;
  color: var(--vb-text-secondary);
  margin: 0;
}

#vietnam-bridge .bot-arrow {
  text-align: center;
  color: var(--vb-primary);
  font-size: 20px;
  margin: -8px 0;
}

/* Floating Elements */
#vietnam-bridge .floating-badge {
  position: absolute;
  background: var(--vb-bg-white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--vb-shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  animation: vb-float 6s ease-in-out infinite;
}

#vietnam-bridge .floating-badge.top-right {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}

#vietnam-bridge .floating-badge.bottom-left {
  bottom: -20px;
  left: -40px;
  animation-delay: 3s;
}

@keyframes vb-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#vietnam-bridge .floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--vb-accent-10);
}

/* ========================================
   SECTION COMMON STYLES
======================================== */
#vietnam-bridge .section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

#vietnam-bridge .section-gray {
  background: var(--vb-bg-gray);
}

#vietnam-bridge .section-dark {
  background: var(--vb-bg-dark);
  color: white;
}

#vietnam-bridge .section-warm {
  background: var(--vb-bg-warm);
}

#vietnam-bridge .section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#vietnam-bridge .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#vietnam-bridge .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--vb-accent-10);
  color: var(--vb-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

#vietnam-bridge .section-dark .section-label {
  background: var(--vb-accent-20);
}

#vietnam-bridge .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

#vietnam-bridge .section-title.gradient-heading {
  background: var(--vb-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#vietnam-bridge .section-dark .section-title {
  color: white;
}

#vietnam-bridge .section-subtitle {
  font-size: 16px;
  color: var(--vb-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

#vietnam-bridge .section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   BOT MODEL SECTION
======================================== */
#vietnam-bridge .bot-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#vietnam-bridge .bot-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--vb-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#vietnam-bridge .bot-content p {
  font-size: 15px;
  color: var(--vb-text-secondary);
  margin-bottom: 24px;
}

#vietnam-bridge .bot-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#vietnam-bridge .bot-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--vb-bg-white);
  border-radius: 12px;
  border: 1px solid var(--vb-border);
  transition: var(--vb-transition);
}

#vietnam-bridge .bot-benefit:hover {
  border-color: var(--vb-primary);
  box-shadow: var(--vb-shadow-sm);
}

#vietnam-bridge .bot-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--vb-accent-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

#vietnam-bridge .bot-benefit-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

#vietnam-bridge .bot-benefit-content p {
  font-size: 13px;
  color: var(--vb-text-light);
  margin: 0;
}

#vietnam-bridge .bot-visual {
  position: relative;
}

#vietnam-bridge .bot-diagram {
  background: var(--vb-bg-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--vb-shadow-lg);
  border: 1px solid var(--vb-border);
}

#vietnam-bridge .bot-diagram-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--vb-text-light);
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   PHASES SECTION
======================================== */
#vietnam-bridge .phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#vietnam-bridge .phase-card {
  background: var(--vb-bg-white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--vb-border);
  transition: var(--vb-transition);
  position: relative;
  overflow: hidden;
}

#vietnam-bridge .phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vb-gradient-primary);
  transform: scaleX(0);
  transition: var(--vb-transition);
}

#vietnam-bridge .phase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vb-shadow-lg);
}

#vietnam-bridge .phase-card:hover::before {
  transform: scaleX(1);
}

#vietnam-bridge .phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--vb-gradient-primary);
  color: white;
  box-shadow: var(--vb-shadow-red);
}

#vietnam-bridge .phase-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  background: var(--vb-accent-10);
}

#vietnam-bridge .phase-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

#vietnam-bridge .phase-card .phase-subtitle {
  font-size: 13px;
  color: var(--vb-text-light);
  margin-bottom: 16px;
}

#vietnam-bridge .phase-card p {
  font-size: 14px;
  color: var(--vb-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

#vietnam-bridge .phase-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#vietnam-bridge .phase-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--vb-text-secondary);
}

#vietnam-bridge .phase-item-icon {
  color: var(--vb-primary);
}

/* ========================================
   SERVICES SECTION
======================================== */
#vietnam-bridge .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#vietnam-bridge .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--vb-transition);
}

#vietnam-bridge .service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vb-accent-40);
  transform: translateY(-4px);
}

#vietnam-bridge .service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

#vietnam-bridge .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--vb-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

#vietnam-bridge .service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

#vietnam-bridge .service-card-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

#vietnam-bridge .service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}

#vietnam-bridge .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#vietnam-bridge .service-feature {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   BACKOFFICE SECTION
======================================== */
#vietnam-bridge .backoffice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#vietnam-bridge .backoffice-card {
  background: var(--vb-bg-white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--vb-border);
  transition: var(--vb-transition);
  text-align: center;
}

#vietnam-bridge .backoffice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vb-shadow-lg);
  border-color: var(--vb-primary);
}

#vietnam-bridge .backoffice-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--vb-accent-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

#vietnam-bridge .backoffice-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

#vietnam-bridge .backoffice-card p {
  font-size: 13px;
  color: var(--vb-text-secondary);
  line-height: 1.6;
}

/* ========================================
   PARTNER NETWORK SECTION
======================================== */
#vietnam-bridge .partner-intro {
  margin-bottom: 40px;
}

#vietnam-bridge .partner-intro-card {
  background: var(--vb-accent-10);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-left: 4px solid var(--vb-primary);
}

#vietnam-bridge .partner-intro-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--vb-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

#vietnam-bridge .partner-intro-content p {
  font-size: 15px;
  color: var(--vb-text-secondary);
  line-height: 1.8;
  margin: 0;
}

#vietnam-bridge .partner-intro-content strong {
  color: var(--vb-primary);
}

#vietnam-bridge .partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

#vietnam-bridge .partner-card {
  background: var(--vb-bg-white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--vb-border);
  transition: var(--vb-transition);
  text-align: center;
}

#vietnam-bridge .partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vb-shadow-lg);
  border-color: var(--vb-primary);
}

#vietnam-bridge .partner-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--vb-accent-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

#vietnam-bridge .partner-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vb-text-primary);
}

#vietnam-bridge .partner-card p {
  font-size: 13px;
  color: var(--vb-text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

#vietnam-bridge .partner-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--vb-bg-gray);
  border-radius: 20px;
  font-size: 11px;
  color: var(--vb-text-light);
  font-weight: 500;
}

#vietnam-bridge .partner-note {
  background: linear-gradient(135deg, var(--vb-accent-10) 0%, var(--vb-accent-20) 100%);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--vb-accent-20);
}

#vietnam-bridge .partner-note-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--vb-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

#vietnam-bridge .partner-note p {
  font-size: 14px;
  color: var(--vb-text-secondary);
  line-height: 1.7;
  margin: 0;
}

#vietnam-bridge .partner-note strong {
  color: var(--vb-primary);
}

/* ========================================
   WHY MIICHISOFT SECTION
======================================== */
#vietnam-bridge .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

#vietnam-bridge .why-card {
  background: var(--vb-bg-white);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--vb-border);
  transition: var(--vb-transition);
  text-align: center;
}

#vietnam-bridge .why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vb-shadow-lg);
}

#vietnam-bridge .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--vb-accent-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

#vietnam-bridge .why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

#vietnam-bridge .why-card p {
  font-size: 13px;
  color: var(--vb-text-secondary);
  line-height: 1.6;
}

#vietnam-bridge .why-card a {
  color: var(--vb-primary);
  text-decoration: underline;
}

/* ========================================
   TARGET SECTION
======================================== */
#vietnam-bridge .target-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#vietnam-bridge .target-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#vietnam-bridge .target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#vietnam-bridge .target-item-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vb-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

#vietnam-bridge .target-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

#vietnam-bridge .target-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

#vietnam-bridge .target-visual {
  text-align: center;
}

#vietnam-bridge .target-image {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#vietnam-bridge .target-image-content {
  font-size: 80px;
  margin-bottom: 16px;
}

#vietnam-bridge .target-image h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

#vietnam-bridge .target-image p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   CTA SECTION
======================================== */
#vietnam-bridge .cta-section {
  background: var(--vb-gradient-primary);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#vietnam-bridge .cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

#vietnam-bridge .cta-section .container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#vietnam-bridge .cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

#vietnam-bridge .cta-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

#vietnam-bridge .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#vietnam-bridge .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: white;
  color: var(--vb-primary-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  transition: var(--vb-transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#vietnam-bridge .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#vietnam-bridge .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--vb-transition);
}

#vietnam-bridge .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
======================================== */
@media (max-width: 1024px) {
  #vietnam-bridge .vn-bridge-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  #vietnam-bridge .hero-content {
    max-width: 100%;
  }

  #vietnam-bridge .hero-cta {
    justify-content: center;
  }

  #vietnam-bridge .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  #vietnam-bridge .hero-visual {
    display: flex;
    justify-content: center;
  }

  #vietnam-bridge .hero-visual-card {
    padding: 30px;
    max-width: 400px;
  }

  #vietnam-bridge .floating-badge {
    display: none;
  }

  #vietnam-bridge .bot-intro,
  #vietnam-bridge .target-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #vietnam-bridge .phases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #vietnam-bridge .services-grid {
    grid-template-columns: 1fr;
  }

  #vietnam-bridge .backoffice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #vietnam-bridge .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #vietnam-bridge .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #vietnam-bridge .bot-content {
    text-align: center;
  }

  #vietnam-bridge .bot-benefits {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
======================================== */
@media (max-width: 768px) {

  /* Prevent horizontal scroll */
  #vietnam-bridge {
    overflow-x: hidden;
  }

  #vietnam-bridge .hero-banner {
    height: auto;
    min-height: 200px;
    padding: 30px 16px;
  }

  #vietnam-bridge .hero-banner h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  #vietnam-bridge .hero-banner-meta {
    font-size: 13px;
    line-height: 1.6;
  }

  #vietnam-bridge .vn-bridge-hero {
    padding: 40px 16px;
  }

  #vietnam-bridge .vn-bridge-hero h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  #vietnam-bridge .hero-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  #vietnam-bridge .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  #vietnam-bridge .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  #vietnam-bridge .btn-primary-vn,
  #vietnam-bridge .btn-secondary-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }

  #vietnam-bridge .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  #vietnam-bridge .hero-stat {
    text-align: center;
    min-width: 70px;
  }

  #vietnam-bridge .hero-stat-number {
    font-size: 22px;
  }

  #vietnam-bridge .hero-stat-label {
    font-size: 10px;
  }

  /* Hero BOT Flow - Horizontal Layout */
  #vietnam-bridge .hero-visual-card {
    padding: 16px;
    max-width: 100%;
    width: 100%;
  }

  #vietnam-bridge .bot-flow {
    min-width: auto;
    flex-direction: row;
    gap: 4px;
    align-items: stretch;
    justify-content: center;
  }

  #vietnam-bridge .bot-phase {
    padding: 10px 6px;
    gap: 6px;
    flex-direction: column;
    text-align: center;
    flex: 1;
    min-width: 0;
    max-width: 90px;
  }

  #vietnam-bridge .bot-phase-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin: 0 auto;
    border-radius: 10px;
  }

  #vietnam-bridge .bot-phase-content {
    text-align: center;
  }

  #vietnam-bridge .bot-phase-content h4 {
    font-size: 10px;
    margin-bottom: 2px;
  }

  #vietnam-bridge .bot-phase-content p {
    font-size: 8px;
    line-height: 1.3;
    word-break: keep-all;
  }

  #vietnam-bridge .bot-arrow {
    font-size: 12px;
    margin: 0;
    transform: rotate(-90deg);
    flex-shrink: 0;
    align-self: center;
  }

  /* Sections */
  #vietnam-bridge .section {
    padding: 40px 16px;
  }

  #vietnam-bridge .section-header {
    margin-bottom: 30px;
  }

  #vietnam-bridge .section-title {
    font-size: 20px;
    line-height: 1.4;
  }

  #vietnam-bridge .section-subtitle {
    font-size: 13px;
    line-height: 1.6;
  }

  #vietnam-bridge .section-label {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* BOT Model Section */
  #vietnam-bridge .bot-content h3 {
    font-size: 18px;
  }

  #vietnam-bridge .bot-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  #vietnam-bridge .bot-benefit {
    padding: 12px;
  }

  #vietnam-bridge .bot-benefit-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  #vietnam-bridge .bot-benefit-content h4 {
    font-size: 12px;
  }

  #vietnam-bridge .bot-benefit-content p {
    font-size: 11px;
  }

  /* BOT Diagram - Horizontal Layout */
  #vietnam-bridge .bot-diagram {
    padding: 16px;
  }

  #vietnam-bridge .bot-diagram-title {
    font-size: 11px;
    margin-bottom: 16px;
  }

  #vietnam-bridge .bot-diagram .bot-flow {
    flex-direction: row;
    gap: 4px;
    align-items: stretch;
  }

  #vietnam-bridge .bot-diagram .bot-phase {
    padding: 10px 6px;
    flex-direction: column;
    text-align: center;
    flex: 1;
    max-width: 100px;
  }

  #vietnam-bridge .bot-diagram .bot-phase-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0 auto 6px;
  }

  #vietnam-bridge .bot-diagram .bot-phase-content h4 {
    font-size: 9px;
    margin-bottom: 2px;
  }

  #vietnam-bridge .bot-diagram .bot-phase-content p {
    font-size: 7px;
    line-height: 1.3;
  }

  #vietnam-bridge .bot-diagram .bot-arrow {
    transform: rotate(-90deg);
    font-size: 10px;
    margin: 0;
  }

  /* Phase Cards */
  #vietnam-bridge .phase-card {
    padding: 20px 16px;
  }

  #vietnam-bridge .phase-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  #vietnam-bridge .phase-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 12px;
  }

  #vietnam-bridge .phase-card h3 {
    font-size: 16px;
  }

  #vietnam-bridge .phase-card .phase-subtitle {
    font-size: 11px;
  }

  #vietnam-bridge .phase-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  #vietnam-bridge .phase-item {
    font-size: 11px;
  }

  /* Service Cards */
  #vietnam-bridge .service-card {
    padding: 20px 16px;
  }

  #vietnam-bridge .service-card-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  #vietnam-bridge .service-card h3 {
    font-size: 15px;
  }

  #vietnam-bridge .service-card-subtitle {
    font-size: 11px;
  }

  #vietnam-bridge .service-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  #vietnam-bridge .service-feature {
    font-size: 10px;
    padding: 4px 8px;
  }

  /* Backoffice */
  #vietnam-bridge .backoffice-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #vietnam-bridge .backoffice-card {
    padding: 20px 16px;
  }

  #vietnam-bridge .backoffice-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  #vietnam-bridge .backoffice-card h4 {
    font-size: 14px;
  }

  #vietnam-bridge .backoffice-card p {
    font-size: 11px;
  }

  /* Why Grid */
  #vietnam-bridge .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #vietnam-bridge .why-card {
    padding: 20px 16px;
  }

  #vietnam-bridge .why-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  #vietnam-bridge .why-card h3 {
    font-size: 14px;
  }

  #vietnam-bridge .why-card p {
    font-size: 11px;
  }

  /* Partner Grid */
  #vietnam-bridge .partner-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #vietnam-bridge .partner-card {
    padding: 20px 16px;
  }

  #vietnam-bridge .partner-card-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  #vietnam-bridge .partner-card h4 {
    font-size: 13px;
  }

  #vietnam-bridge .partner-card p {
    font-size: 11px;
  }

  #vietnam-bridge .partner-tag {
    font-size: 9px;
  }

  #vietnam-bridge .partner-intro-card {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }

  #vietnam-bridge .partner-intro-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin: 0 auto;
  }

  #vietnam-bridge .partner-intro-content p {
    font-size: 12px;
  }

  #vietnam-bridge .partner-note {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 10px;
  }

  #vietnam-bridge .partner-note-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin: 0 auto;
  }

  #vietnam-bridge .partner-note p {
    font-size: 12px;
  }

  /* Target Section */
  #vietnam-bridge .target-item {
    padding: 14px;
  }

  #vietnam-bridge .target-item-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  #vietnam-bridge .target-item h4 {
    font-size: 13px;
  }

  #vietnam-bridge .target-item p {
    font-size: 11px;
  }

  #vietnam-bridge .target-image {
    padding: 24px 16px;
  }

  #vietnam-bridge .target-image-content {
    font-size: 40px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  #vietnam-bridge .target-image h4 {
    font-size: 14px;
  }

  #vietnam-bridge .target-image p {
    font-size: 12px;
  }

  /* CTA Section */
  #vietnam-bridge .cta-section {
    padding: 50px 16px;
  }

  #vietnam-bridge .cta-title {
    font-size: 22px;
    line-height: 1.4;
  }

  #vietnam-bridge .cta-subtitle {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  #vietnam-bridge .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  #vietnam-bridge .btn-cta-primary,
  #vietnam-bridge .btn-cta-secondary {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
======================================== */
@media (max-width: 480px) {
  #vietnam-bridge .hero-banner {
    min-height: 180px;
    padding: 24px 12px;
  }

  #vietnam-bridge .hero-banner h1 {
    font-size: 22px;
  }

  #vietnam-bridge .hero-banner-meta {
    font-size: 12px;
  }

  #vietnam-bridge .vn-bridge-hero {
    padding: 30px 12px;
  }

  #vietnam-bridge .vn-bridge-hero h2 {
    font-size: 20px;
  }

  #vietnam-bridge .hero-subtitle {
    font-size: 13px;
  }

  #vietnam-bridge .hero-stats {
    gap: 12px;
  }

  #vietnam-bridge .hero-stat-number {
    font-size: 20px;
  }

  #vietnam-bridge .hero-stat-label {
    font-size: 9px;
  }

  #vietnam-bridge .hero-visual-card {
    padding: 12px;
  }

  #vietnam-bridge .bot-phase {
    padding: 8px 4px;
    max-width: 80px;
  }

  #vietnam-bridge .bot-phase-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  #vietnam-bridge .bot-phase-content h4 {
    font-size: 9px;
  }

  #vietnam-bridge .bot-phase-content p {
    font-size: 7px;
  }

  #vietnam-bridge .bot-arrow {
    font-size: 10px;
  }

  #vietnam-bridge .section {
    padding: 30px 12px;
  }

  #vietnam-bridge .section-title {
    font-size: 18px;
  }

  #vietnam-bridge .section-subtitle {
    font-size: 12px;
  }

  #vietnam-bridge .bot-content h3 {
    font-size: 16px;
  }

  #vietnam-bridge .bot-diagram {
    padding: 12px;
  }

  #vietnam-bridge .bot-diagram .bot-phase {
    padding: 8px 4px;
    max-width: 85px;
  }

  #vietnam-bridge .bot-diagram .bot-phase-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  #vietnam-bridge .bot-diagram .bot-phase-content h4 {
    font-size: 8px;
  }

  #vietnam-bridge .bot-diagram .bot-phase-content p {
    font-size: 6px;
  }

  #vietnam-bridge .phase-card {
    padding: 16px 12px;
  }

  #vietnam-bridge .phase-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  #vietnam-bridge .phase-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  #vietnam-bridge .phase-card h3 {
    font-size: 14px;
  }

  #vietnam-bridge .service-card {
    padding: 16px 12px;
  }

  #vietnam-bridge .backoffice-card,
  #vietnam-bridge .why-card,
  #vietnam-bridge .partner-card {
    padding: 16px 12px;
  }

  #vietnam-bridge .target-image-content {
    font-size: 32px;
  }

  #vietnam-bridge .cta-section {
    padding: 40px 12px;
  }

  #vietnam-bridge .cta-title {
    font-size: 20px;
  }

  #vietnam-bridge .cta-subtitle {
    font-size: 12px;
  }

  #vietnam-bridge .btn-cta-primary,
  #vietnam-bridge .btn-cta-secondary {
    padding: 12px 16px;
    font-size: 12px;
    max-width: 240px;
  }
}

/* ========================================
   RESPONSIVE - VERY SMALL (360px)
======================================== */
@media (max-width: 360px) {
  #vietnam-bridge .hero-banner h1 {
    font-size: 20px;
  }

  #vietnam-bridge .vn-bridge-hero h2 {
    font-size: 18px;
  }

  #vietnam-bridge .hero-stat-number {
    font-size: 18px;
  }

  #vietnam-bridge .section-title {
    font-size: 16px;
  }

  #vietnam-bridge .bot-content h3 {
    font-size: 15px;
  }

  #vietnam-bridge .phase-card h3 {
    font-size: 13px;
  }

  #vietnam-bridge .cta-title {
    font-size: 18px;
  }

  #vietnam-bridge .bot-phase {
    max-width: 70px;
  }

  #vietnam-bridge .bot-phase-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  #vietnam-bridge .bot-phase-content h4 {
    font-size: 8px;
  }

  #vietnam-bridge .bot-phase-content p {
    font-size: 6px;
  }
}

#power-lab {
  /* Miichisoft Brand - Unified Red Theme */
  --brand-primary: #EF3F23;
  --brand-primary-dark: #C42F18;
  --brand-primary-light: rgba(240, 65, 38, 0.2);
  --brand-primary-lighter: rgba(240, 65, 38, 0.1);
  --brand-primary-40: rgba(240, 65, 38, 0.4);
  --brand-primary-20: rgba(240, 65, 38, 0.2);

  /* Gradient */
  --gradient-text: linear-gradient(135deg, #1a1a1a 0%, #EF3F23 100%);
  --gradient-primary: linear-gradient(135deg, #EF3F23 0%, #C42F18 100%);
  --gradient-soft: linear-gradient(135deg, rgba(240, 65, 38, 0.1) 0%, rgba(240, 65, 38, 0.05) 100%);

  /* Neutrals */
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #888888;
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --bg-dark: #1a1a1a;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s ease;

  /* Base styles */
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Scoped reset */
#power-lab,
#power-lab * {
  box-sizing: border-box;
}

#power-lab * {
  margin: 0;
  padding: 0;
}

#power-lab .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradient Text Utility */
#power-lab .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   HEADER WITH MEGA MENU
======================================== */
#power-lab .header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#power-lab .header .container {
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

#power-lab .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

#power-lab .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

#power-lab .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

#power-lab .logo-text span {
  color: var(--brand-primary);
}

#power-lab .logo-tagline {
  font-size: 10px;
  color: var(--brand-primary);
  padding-left: 12px;
  border-left: 1px solid var(--border);
  margin-left: 12px;
  font-weight: 500;
}

#power-lab .nav {
  display: flex;
  align-items: center;
  gap: 0;
}

#power-lab .nav-item {
  position: relative;
}

#power-lab .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 24px 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

#power-lab .nav-link:hover {
  color: var(--brand-primary);
}

#power-lab .nav-link .arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  opacity: 0.5;
}

#power-lab .nav-item:hover .arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* AI共創 - Highlight on hover */
#power-lab .nav-item.ai-kyoso .nav-link {
  padding: 10px 16px;
  border-radius: 8px;
  margin: 0 4px;
}

#power-lab .nav-item.ai-kyoso .nav-link:hover {
  background: var(--gradient-primary);
  color: white;
}

/* ========================================
   MEGA MENUS
======================================== */
#power-lab .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow: hidden;
}

#power-lab .nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#power-lab .mega-menu-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

#power-lab .mega-menu-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

#power-lab .mega-menu-title {
  font-size: 16px;
  font-weight: 700;
}

#power-lab .mega-menu-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

#power-lab .mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 8px;
}

#power-lab .mega-menu-grid.single-col {
  grid-template-columns: 1fr;
}

/* Menu Cards */
#power-lab .menu-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}

#power-lab .menu-card:hover {
  background: var(--bg-gray);
}

#power-lab .menu-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  background: var(--brand-primary-lighter);
}

#power-lab .menu-card-content {
  flex: 1;
}

#power-lab .menu-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

#power-lab .menu-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.5;
}

#power-lab .menu-card-benefit {
  font-size: 11px;
  color: var(--brand-primary);
  margin-top: 6px;
  font-weight: 500;
}

/* AI共創 Mega Menu */
#power-lab .mega-menu.ai-menu {
  width: 520px;
  border: 2px solid var(--brand-primary);
}

#power-lab .mega-menu.ai-menu .mega-menu-header {
  background: var(--gradient-primary);
  color: white;
}

#power-lab .mega-menu.ai-menu .mega-menu-icon {
  background: rgba(255, 255, 255, 0.2);
}

#power-lab .mega-menu.ai-menu .mega-menu-title,
#power-lab .mega-menu.ai-menu .mega-menu-subtitle {
  color: white;
}

/* Growth Lab Mega Menu */
#power-lab .mega-menu.growth-menu {
  width: 640px;
}

#power-lab .mega-menu.growth-menu .mega-menu-header {
  background: var(--brand-primary-lighter);
}

#power-lab .mega-menu.growth-menu .mega-menu-icon {
  background: white;
}

#power-lab .mega-menu.growth-menu .mega-menu-title {
  color: var(--brand-primary);
}

/* Power Lab highlight in menu */
#power-lab .menu-card.power-highlight {
  background: var(--brand-primary-lighter);
  border: 2px solid var(--brand-primary);
}

#power-lab .menu-card.power-highlight:hover {
  background: var(--brand-primary-20);
}

#power-lab .menu-card.power-highlight .menu-card-title {
  color: var(--brand-primary-dark);
}

/* AI+ Products Mega Menu */
#power-lab .mega-menu.product-menu {
  width: 480px;
}

#power-lab .mega-menu.product-menu .mega-menu-header {
  background: var(--brand-primary-lighter);
}

#power-lab .mega-menu.product-menu .mega-menu-icon {
  background: white;
}

#power-lab .mega-menu.product-menu .mega-menu-title {
  color: var(--brand-primary);
}

/* Vietnam Bridge Mega Menu */
#power-lab .mega-menu.bridge-menu {
  width: 480px;
}

#power-lab .mega-menu.bridge-menu .mega-menu-header {
  background: var(--brand-primary-lighter);
}

#power-lab .mega-menu.bridge-menu .mega-menu-icon {
  background: white;
}

#power-lab .mega-menu.bridge-menu .mega-menu-title {
  color: var(--brand-primary);
}

/* Simple Dropdown */
#power-lab .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  min-width: 180px;
  padding: 8px;
}

#power-lab .nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#power-lab .dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: var(--transition);
}

#power-lab .dropdown-item:hover {
  background: var(--bg-gray);
  color: var(--brand-primary);
}

#power-lab .btn-contact {
  padding: 10px 20px;
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 12px;
}

#power-lab .btn-contact:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
}

/* ========================================
   HERO - DARK BANNER STYLE
======================================== */
#power-lab .powerlab-hero-2 {
  position: relative;
  height: 318px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animated Background */
#power-lab .hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#power-lab .hero-wave {
  position: absolute;
  width: 200%;
  height: 100%;
  opacity: 0.15;
}

.hero-wave-1 {
  background:
    radial-gradient(ellipse 100% 100% at 50% 100%, transparent 60%, var(--brand-primary) 61%, transparent 62%),
    radial-gradient(ellipse 80% 80% at 30% 80%, transparent 60%, var(--brand-primary) 61%, transparent 62%),
    radial-gradient(ellipse 90% 90% at 70% 90%, transparent 60%, var(--brand-primary) 61%, transparent 62%);
  animation: waveMove 20s ease-in-out infinite;
}

.hero-wave-2 {
  background:
    radial-gradient(ellipse 120% 120% at 60% 110%, transparent 60%, var(--brand-primary) 61%, transparent 62%),
    radial-gradient(ellipse 100% 100% at 40% 100%, transparent 60%, var(--brand-primary) 61%, transparent 62%);
  animation: waveMove 25s ease-in-out infinite reverse;
  opacity: 0.1;
}

/* Grid Pattern */
#power-lab .hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(239, 63, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 63, 35, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridPulse 8s ease-in-out infinite;
}

/* Floating Particles */
#power-lab .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

#power-lab .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 15s ease-in-out infinite;
}

#power-lab .particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

#power-lab .particle:nth-child(2) {
  left: 20%;
  top: 60%;
  animation-delay: 2s;
}

#power-lab .particle:nth-child(3) {
  left: 30%;
  top: 40%;
  animation-delay: 4s;
}

#power-lab .particle:nth-child(4) {
  left: 50%;
  top: 80%;
  animation-delay: 1s;
}

#power-lab .particle:nth-child(5) {
  left: 60%;
  top: 30%;
  animation-delay: 3s;
}

#power-lab .particle:nth-child(6) {
  left: 70%;
  top: 70%;
  animation-delay: 5s;
}

#power-lab .particle:nth-child(7) {
  left: 80%;
  top: 50%;
  animation-delay: 2.5s;
}

#power-lab .particle:nth-child(8) {
  left: 90%;
  top: 25%;
  animation-delay: 4.5s;
}

/* Curved Lines */
#power-lab .hero-curves {
  position: absolute;
  width: 100%;
  height: 100%;
}

#power-lab .curve {
  position: absolute;
  border: 1px solid;
  border-color: var(--brand-primary);
  border-radius: 50%;
  opacity: 0.1;
}

.curve-1 {
  width: 600px;
  height: 600px;
  left: -200px;
  bottom: -400px;
  animation: curvePulse 10s ease-in-out infinite;
}

.curve-2 {
  width: 800px;
  height: 800px;
  right: -300px;
  top: -500px;
  animation: curvePulse 12s ease-in-out infinite reverse;
}

.curve-3 {
  width: 400px;
  height: 400px;
  left: 30%;
  top: -200px;
  animation: curvePulse 8s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes waveMove {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-25%) translateY(-10px);
  }
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-10px) translateX(-5px);
    opacity: 0.3;
  }

  75% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.4;
  }
}

@keyframes curvePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.15;
  }
}

#power-lab .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

#power-lab .powerlab-hero-2 h1 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* ========================================
   SECONDARY HERO - STORYTELLING
======================================== */
#power-lab .hero-secondary {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--brand-primary-lighter) 100%);
  position: relative;
  overflow: hidden;
}

#power-lab .hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, var(--brand-primary-20) 0%, transparent 50%);
}

#power-lab .hero-secondary .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#power-lab .hero-secondary-content {
  max-width: 560px;
}

#power-lab .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: rgba(240, 65, 38, 0.08);
  border: 1px solid rgba(240, 65, 38, 0.2);
  border-radius: 50px;
}

#power-lab .hero-secondary h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 32px;
  color: var(--text-primary);
}

#power-lab .hero-secondary h2 .highlight {
  background: linear-gradient(135deg, #EF3F23 0%, #C42F18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#power-lab .hero-lead {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 500;
}

#power-lab .hero-message {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 2;
}

#power-lab .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#power-lab .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(239, 63, 35, 0.3);
}

#power-lab .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(239, 63, 35, 0.4);
}

#power-lab .btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: white;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#power-lab .btn-secondary-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* Hero Visual */
#power-lab .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#power-lab .hero-visual-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}

#power-lab .hero-visual-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 26px;
  z-index: -1;
  opacity: 0.3;
}

#power-lab .ms-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#power-lab .ms-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--bg-gray);
  border-radius: 16px;
  transition: var(--transition);
}

#power-lab .ms-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

#power-lab .ms-product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--brand-primary-lighter);
}

#power-lab .ms-product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Floating Elements */
#power-lab .floating-badge {
  position: absolute;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  animation: power-lab-float 6s ease-in-out infinite;
}

#power-lab .floating-badge.top-right {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}

#power-lab .floating-badge.bottom-left {
  bottom: -20px;
  left: -40px;
  animation-delay: 3s;
}

@keyframes power-lab-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#power-lab .floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--brand-primary-lighter);
}

/* ========================================
   PROOF SECTION
======================================== */
#power-lab .proof-section {
  padding: 80px 0;
  background: var(--bg-gray);
}

#power-lab .proof-header {
  text-align: center;
  margin-bottom: 48px;
}

#power-lab .proof-header h2 {
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#power-lab .proof-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 48px;
}

#power-lab .proof-stat {
  text-align: center;
}

#power-lab .proof-stat-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

#power-lab .proof-stat-number span {
  font-size: 28px;
  color: var(--text-secondary);
}

#power-lab .proof-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

#power-lab .proof-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

#power-lab .proof-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

#power-lab .proof-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#power-lab .proof-badge-icon {
  font-size: 28px;
}

#power-lab .proof-badge-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

#power-lab .proof-badge-text p {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ========================================
   SECTION COMMON STYLES
======================================== */
#power-lab .section {
  padding: 100px 24px;
}

#power-lab .section-gray {
  background: var(--bg-gray);
}

#power-lab .section-dark {
  background: var(--bg-dark);
  color: white;
}

#power-lab .section .container {
  max-width: 1200px;
  margin: 0 auto;
}

#power-lab .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#power-lab .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-primary-lighter);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

#power-lab .section-dark .section-label {
  background: rgba(239, 63, 35, 0.2);
}

#power-lab .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#power-lab .section-dark .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #EF3F23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#power-lab .section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

#power-lab .section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   POWER PLATFORM SECTION
======================================== */
#power-lab .platform-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#power-lab .platform-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#power-lab .platform-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

#power-lab .platform-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#power-lab .platform-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#power-lab .platform-feature:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

#power-lab .platform-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

#power-lab .platform-feature-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

#power-lab .platform-feature-content p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

#power-lab .platform-visual {
  position: relative;
}

#power-lab .platform-diagram {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

#power-lab .platform-diagram-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#power-lab .platform-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#power-lab .platform-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

#power-lab .platform-item {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  min-width: 120px;
  background: var(--brand-primary-lighter);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary-20);
}

#power-lab .platform-item.base {
  background: var(--bg-gray);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  flex: 1;
}

#power-lab .platform-connector {
  text-align: center;
  color: var(--brand-primary);
  font-size: 18px;
}

/* ========================================
   CAPABILITIES SECTION
======================================== */
#power-lab .capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

#power-lab .capability-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

#power-lab .capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary-40);
}

#power-lab .capability-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--brand-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

#power-lab .capability-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

#power-lab .capability-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

#power-lab .capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

#power-lab .capability-tag {
  padding: 4px 10px;
  background: var(--brand-primary-lighter);
  border-radius: 6px;
  font-size: 11px;
  color: var(--brand-primary);
  font-weight: 500;
}

/* ========================================
   TEAM SECTION
======================================== */
#power-lab .team-overview {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

#power-lab .team-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #EF3F23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#power-lab .team-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

#power-lab .team-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#power-lab .team-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#power-lab .team-highlight-icon {
  font-size: 24px;
}

#power-lab .team-highlight-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

#power-lab .team-highlight-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

#power-lab .team-structure {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#power-lab .team-structure-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 24px;
}

#power-lab .team-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#power-lab .team-role {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

#power-lab .team-role:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-primary);
}

#power-lab .team-role-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

#power-lab .team-role h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

#power-lab .team-role p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

#power-lab .team-role-count {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 8px;
  background: var(--brand-primary);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

/* Member Showcase */
#power-lab .member-showcase {
  margin-top: 60px;
}

#power-lab .member-showcase-title {
  text-align: center;
  margin-bottom: 32px;
}

#power-lab .member-showcase-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

#power-lab .member-showcase-title p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

#power-lab .member-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
}

#power-lab .member-grid::-webkit-scrollbar {
  height: 6px;
}

#power-lab .member-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

#power-lab .member-grid::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 3px;
}

#power-lab .power-lab-member-card {
  flex: 0 0 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  cursor: pointer;
  scroll-snap-align: start;
}

#power-lab .power-lab-member-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}

#power-lab .member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
}

#power-lab .member-name {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

#power-lab .member-role {
  font-size: 12px;
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 8px;
}

#power-lab .member-exp {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 12px;
}

#power-lab .member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 16px;
}

#power-lab .member-skill {
  padding: 3px 8px;
  background: rgba(239, 63, 35, 0.2);
  border-radius: 4px;
  font-size: 10px;
  color: var(--brand-primary);
}

#power-lab .member-view-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

#power-lab .member-view-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

#power-lab .member-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   CERTIFICATION SECTION
======================================== */
#power-lab .cert-roadmap {
  max-width: 900px;
  margin: 0 auto;
}

#power-lab .cert-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 24px;
  background: var(--brand-primary-lighter);
  border-radius: 16px;
  border: 1px solid var(--brand-primary-20);
}

#power-lab .cert-intro p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

#power-lab .cert-timeline {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
}

#power-lab .cert-item {
  flex: 0 0 200px;
  position: relative;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#power-lab .cert-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary-40);
}

#power-lab .cert-item.active {
  border-color: var(--brand-primary);
}

#power-lab .cert-marker {
  font-size: 28px;
  margin-bottom: 16px;
}

#power-lab .cert-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 12px;
}

#power-lab .cert-badge.preparing {
  background: var(--brand-primary-lighter);
  color: var(--brand-primary);
}

#power-lab .cert-badge.planned {
  background: var(--brand-primary-lighter);
  color: var(--brand-primary);
}

#power-lab .cert-badge.future {
  background: var(--bg-gray);
  color: var(--text-light);
}

#power-lab .cert-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

#power-lab .cert-content p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

#power-lab .cert-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
}

/* ========================================
   PROCESS SECTION
======================================== */
#power-lab .process-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

#power-lab .process-intro h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#power-lab .process-intro p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

#power-lab .process-docs {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

#power-lab .process-docs-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

#power-lab .process-doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#power-lab .process-doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-gray);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

#power-lab .process-doc-icon {
  font-size: 16px;
}

/* Process Steps */
#power-lab .process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#power-lab .process-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#power-lab .process-step:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

#power-lab .process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

#power-lab .process-step-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

#power-lab .process-step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

#power-lab .process-step-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

#power-lab .process-detail-tag {
  padding: 4px 10px;
  background: var(--brand-primary-lighter);
  border-radius: 6px;
  font-size: 11px;
  color: var(--brand-primary);
  font-weight: 500;
}

/* ========================================
   WHY MIICHISOFT SECTION
======================================== */
#power-lab .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#power-lab .why-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

#power-lab .why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary-40);
}

#power-lab .why-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--brand-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

#power-lab .why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

#power-lab .why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   CTA SECTION
======================================== */
#power-lab .cta-section {
  background: var(--gradient-primary);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#power-lab .cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

#power-lab .cta-section .container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#power-lab .cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

#power-lab .cta-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

#power-lab .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#power-lab .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: white;
  color: var(--brand-primary-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#power-lab .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#power-lab .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

#power-lab .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ========================================
   FOOTER
======================================== */
#power-lab .footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 24px 30px;
}

#power-lab .footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

#power-lab .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

#power-lab .footer-brand {
  max-width: 280px;
}

#power-lab .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

#power-lab .footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

#power-lab .footer-logo-text span {
  color: var(--brand-primary);
}

#power-lab .footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

#power-lab .footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--brand-primary);
}

#power-lab .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: var(--transition);
}

#power-lab .footer-links a:hover {
  color: white;
}

#power-lab .footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   MODAL
======================================== */
#power-lab .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

#power-lab .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

#power-lab .modal-content {
  background: var(--bg-white);
  border-radius: 20px;
  max-width: 560px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
}

#power-lab .modal-header {
  background: var(--gradient-primary);
  padding: 32px;
  text-align: center;
  position: relative;
}

#power-lab .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

#power-lab .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

#power-lab .modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0 auto 16px;
}

#power-lab .modal-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

#power-lab .modal-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

#power-lab .modal-body {
  padding: 32px;
}

#power-lab .modal-section {
  margin-bottom: 28px;
}

#power-lab .modal-section:last-child {
  margin-bottom: 0;
}

#power-lab .modal-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

#power-lab .modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#power-lab .modal-info-item {
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 16px;
}

#power-lab .modal-info-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

#power-lab .modal-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

#power-lab .modal-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#power-lab .modal-skill-tag {
  padding: 6px 12px;
  background: var(--brand-primary-lighter);
  border-radius: 8px;
  font-size: 12px;
  color: var(--brand-primary);
  font-weight: 500;
}

#power-lab .modal-project-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#power-lab .modal-project {
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 20px;
}

#power-lab .modal-project-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

#power-lab .modal-project-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

#power-lab .modal-project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#power-lab .modal-project-tech span {
  padding: 3px 8px;
  background: white;
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-light);
  border: 1px solid var(--border);
}

/* ========================================
   RESPONSIVE - COMPLETE
======================================== */

/* Large Desktop - 1440px */
@media (max-width: 1440px) {
  #power-lab .container {
    max-width: 1140px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  #power-lab .container {
    max-width: 960px;
  }

  #power-lab .hero-secondary .container {
    gap: 40px;
  }

  #power-lab .hero-visual-card {
    padding: 30px;
  }

  #power-lab .ms-product {
    padding: 18px;
  }

  #power-lab .floating-badge {
    padding: 10px 14px;
    font-size: 12px;
  }

  #power-lab .floating-badge.top-right {
    top: -10px;
    right: -20px;
  }

  #power-lab .floating-badge.bottom-left {
    bottom: -10px;
    left: -20px;
  }
}

/* Tablet Landscape / Small Laptop - 1024px */
@media (max-width: 1024px) {
  #power-lab .container {
    max-width: 100%;
    padding: 0 24px;
  }

  #power-lab .powerlab-hero-2 h1 {
    font-size: 36px;
  }

  #power-lab .hero-description {
    font-size: 15px;
  }

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

  #power-lab .hero-secondary-content {
    max-width: 100%;
    order: 1;
  }

  #power-lab .hero-secondary h2 {
    font-size: 36px;
  }

  #power-lab .hero-cta {
    justify-content: center;
  }

  /* Hero Visual - Show on tablet with adjusted layout */
  #power-lab .hero-visual {
    order: 2;
    display: flex;
    justify-content: center;
  }

  #power-lab .hero-visual-card {
    max-width: 400px;
    padding: 24px;
  }

  #power-lab .ms-logo-grid {
    gap: 16px;
  }

  #power-lab .ms-product {
    padding: 16px;
  }

  #power-lab .ms-product-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  #power-lab .ms-product-name {
    font-size: 13px;
  }

  #power-lab .floating-badge {
    display: none;
  }

  #power-lab .platform-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #power-lab .platform-content {
    text-align: center;
  }

  #power-lab .platform-features {
    max-width: 500px;
    margin: 0 auto;
  }

  #power-lab .platform-diagram {
    max-width: 500px;
    margin: 0 auto;
  }

  #power-lab .platform-row {
    flex-wrap: wrap;
  }

  #power-lab .platform-item {
    min-width: 100px;
    padding: 10px 16px;
    font-size: 12px;
  }

  #power-lab .team-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #power-lab .team-content {
    text-align: center;
  }

  #power-lab .team-highlights {
    max-width: 500px;
    margin: 0 auto;
  }

  #power-lab .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #power-lab .process-intro {
    text-align: center;
  }

  #power-lab .process-docs {
    max-width: 400px;
    margin: 0 auto;
  }

  #power-lab .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #power-lab .team-roles {
    grid-template-columns: repeat(3, 1fr);
  }

  #power-lab .cert-timeline {
    flex-wrap: wrap;
    justify-content: center;
  }

  #power-lab .cert-item {
    flex: 0 0 calc(50% - 12px);
  }

  #power-lab .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  #power-lab .why-card {
    padding: 28px 20px;
  }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
  #power-lab .container {
    padding: 0 20px;
  }

  #power-lab .powerlab-hero-2 {
    height: auto;
    min-height: 250px;
    padding: 40px 0;
  }

  #power-lab .powerlab-hero-2 h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  #power-lab .hero-description {
    font-size: 14px;
    padding: 0 16px;
  }

  #power-lab .hero-description br {
    display: none;
  }

  #power-lab .hero-secondary {
    padding: 50px 0;
  }

  #power-lab .hero-secondary h2 {
    font-size: 28px;
  }

  #power-lab .hero-secondary h2 br {
    display: none;
  }

  #power-lab .hero-eyebrow {
    font-size: 13px;
    padding: 10px 18px;
    margin-bottom: 24px;
  }

  #power-lab .hero-lead {
    font-size: 17px;
  }

  #power-lab .hero-message {
    font-size: 14px;
  }

  #power-lab .hero-message br {
    display: none;
  }

  /* Hero Visual - Smaller on tablet portrait */
  #power-lab .hero-visual-card {
    max-width: 340px;
    padding: 20px;
  }

  #power-lab .ms-logo-grid {
    gap: 12px;
  }

  #power-lab .ms-product {
    padding: 14px;
    gap: 8px;
  }

  #power-lab .ms-product-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  #power-lab .ms-product-name {
    font-size: 12px;
  }

  #power-lab .btn-primary,
  #power-lab .btn-secondary-outline {
    padding: 14px 24px;
    font-size: 14px;
  }

  #power-lab .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  #power-lab .section {
    padding: 60px 16px;
  }

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

  #power-lab .section-title {
    font-size: 26px;
  }

  #power-lab .section-subtitle {
    font-size: 14px;
  }

  #power-lab .section-subtitle br {
    display: none;
  }

  /* Proof Section */
  #power-lab .proof-section {
    padding: 60px 0;
  }

  #power-lab .proof-header h2 {
    font-size: 24px;
  }

  #power-lab .proof-stats {
    flex-direction: column;
    gap: 24px;
  }

  #power-lab .proof-stat-number {
    font-size: 40px;
  }

  #power-lab .proof-stat-number span {
    font-size: 24px;
  }

  #power-lab .proof-badges {
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }

  #power-lab .proof-badge {
    justify-content: flex-start;
  }

  /* Platform Section */
  #power-lab .platform-content h3 {
    font-size: 24px;
  }

  #power-lab .platform-features {
    max-width: 100%;
  }

  #power-lab .platform-feature {
    text-align: left;
  }

  #power-lab .platform-diagram {
    max-width: 100%;
    padding: 24px 16px;
  }

  #power-lab .platform-row {
    gap: 8px;
  }

  #power-lab .platform-item {
    min-width: 90px;
    padding: 10px 12px;
    font-size: 11px;
  }

  #power-lab .platform-item.base {
    font-size: 11px;
  }

  /* Capabilities */
  #power-lab .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #power-lab .capability-card {
    padding: 24px 20px;
  }

  #power-lab .capability-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  /* Team */
  #power-lab .team-content h3 {
    font-size: 24px;
  }

  #power-lab .team-roles {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #power-lab .team-role {
    padding: 16px 12px;
  }

  #power-lab .team-role h4 {
    font-size: 12px;
  }

  #power-lab .team-role p {
    font-size: 10px;
  }

  #power-lab .member-showcase-title h3 {
    font-size: 20px;
  }

  #power-lab .power-lab-member-card {
    flex: 0 0 200px;
    padding: 20px 16px;
  }

  /* Certification */
  #power-lab .cert-intro {
    padding: 20px 16px;
  }

  #power-lab .cert-intro p {
    font-size: 13px;
  }

  #power-lab .cert-timeline {
    flex-direction: column;
    align-items: stretch;
  }

  #power-lab .cert-item {
    flex: none;
  }

  /* Process */
  #power-lab .process-intro h3 {
    font-size: 24px;
  }

  #power-lab .process-docs {
    max-width: 100%;
  }

  #power-lab .process-step {
    padding: 20px;
    gap: 16px;
  }

  #power-lab .process-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  #power-lab .process-step-content h4 {
    font-size: 15px;
  }

  #power-lab .process-step-content p {
    font-size: 13px;
  }

  /* Why */
  #power-lab .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #power-lab .why-card {
    padding: 28px 24px;
  }

  #power-lab .why-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  #power-lab .why-card h3 {
    font-size: 16px;
  }

  /* CTA */
  #power-lab .cta-section {
    padding: 60px 16px;
  }

  #power-lab .cta-title {
    font-size: 26px;
  }

  #power-lab .cta-subtitle {
    font-size: 14px;
  }

  #power-lab .cta-subtitle br {
    display: none;
  }

  #power-lab .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  #power-lab .btn-cta-primary,
  #power-lab .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 16px 24px;
  }

  /* Modal */
  #power-lab .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  #power-lab .modal-header {
    padding: 24px;
  }

  #power-lab .modal-body {
    padding: 24px;
  }

  #power-lab .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  #power-lab .container {
    padding: 0 16px;
  }

  #power-lab .powerlab-hero-2 {
    min-height: 220px;
    padding: 32px 0;
  }

  #power-lab .powerlab-hero-2 h1 {
    font-size: 24px;
  }

  #power-lab .hero-description {
    font-size: 13px;
  }

  #power-lab .hero-secondary {
    padding: 40px 0;
  }

  #power-lab .hero-secondary h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  #power-lab .hero-eyebrow {
    font-size: 12px;
    padding: 8px 14px;
  }

  #power-lab .hero-lead {
    font-size: 15px;
  }

  #power-lab .hero-message {
    font-size: 13px;
  }

  /* Hero Visual - Mobile */
  #power-lab .hero-visual-card {
    max-width: 300px;
    padding: 16px;
  }

  #power-lab .ms-logo-grid {
    gap: 10px;
  }

  #power-lab .ms-product {
    padding: 12px;
    gap: 6px;
  }

  #power-lab .ms-product-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 10px;
  }

  #power-lab .ms-product-name {
    font-size: 11px;
  }

  #power-lab .btn-primary,
  #power-lab .btn-secondary-outline {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  #power-lab .section {
    padding: 48px 12px;
  }

  #power-lab .section-label {
    font-size: 11px;
    padding: 5px 12px;
  }

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

  #power-lab .section-subtitle {
    font-size: 13px;
  }

  /* Proof */
  #power-lab .proof-section {
    padding: 48px 0;
  }

  #power-lab .proof-header h2 {
    font-size: 22px;
  }

  #power-lab .proof-stat-number {
    font-size: 36px;
  }

  #power-lab .proof-stat-number span {
    font-size: 20px;
  }

  #power-lab .proof-stat-label {
    font-size: 13px;
  }

  #power-lab .proof-badge {
    padding: 12px 16px;
  }

  #power-lab .proof-badge-icon {
    font-size: 24px;
  }

  #power-lab .proof-badge-text h4 {
    font-size: 13px;
  }

  #power-lab .proof-badge-text p {
    font-size: 11px;
  }

  /* Platform */
  #power-lab .platform-content h3 {
    font-size: 20px;
  }

  #power-lab .platform-content p {
    font-size: 14px;
  }

  #power-lab .platform-feature {
    padding: 14px;
  }

  #power-lab .platform-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  #power-lab .platform-feature-content h4 {
    font-size: 13px;
  }

  #power-lab .platform-feature-content p {
    font-size: 12px;
  }

  #power-lab .platform-diagram {
    padding: 20px 12px;
  }

  #power-lab .platform-diagram-title {
    font-size: 12px;
  }

  #power-lab .platform-row {
    gap: 6px;
  }

  #power-lab .platform-item {
    min-width: 80px;
    padding: 8px 10px;
    font-size: 10px;
  }

  /* Capabilities */
  #power-lab .capability-card {
    padding: 20px 16px;
  }

  #power-lab .capability-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  #power-lab .capability-card h3 {
    font-size: 15px;
  }

  #power-lab .capability-card p {
    font-size: 12px;
  }

  #power-lab .capability-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Team */
  #power-lab .team-content h3 {
    font-size: 20px;
  }

  #power-lab .team-content p {
    font-size: 14px;
  }

  #power-lab .team-highlight {
    padding: 14px;
  }

  #power-lab .team-highlight-icon {
    font-size: 20px;
  }

  #power-lab .team-highlight-content h4 {
    font-size: 13px;
  }

  #power-lab .team-highlight-content p {
    font-size: 12px;
  }

  #power-lab .team-structure {
    padding: 24px 16px;
  }

  #power-lab .team-structure-title {
    font-size: 13px;
  }

  #power-lab .team-roles {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #power-lab .team-role {
    padding: 14px 10px;
  }

  #power-lab .team-role-icon {
    font-size: 20px;
  }

  #power-lab .team-role h4 {
    font-size: 11px;
  }

  #power-lab .team-role p {
    font-size: 9px;
  }

  #power-lab .team-role-count {
    font-size: 9px;
    padding: 2px 6px;
  }

  #power-lab .member-showcase-title h3 {
    font-size: 18px;
  }

  #power-lab .member-showcase-title p {
    font-size: 12px;
  }

  #power-lab .power-lab-member-card {
    flex: 0 0 180px;
    padding: 18px 14px;
  }

  #power-lab .member-avatar {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  #power-lab .member-name {
    font-size: 14px;
  }

  #power-lab .member-role {
    font-size: 11px;
  }

  #power-lab .member-exp {
    font-size: 10px;
  }

  #power-lab .member-skill {
    font-size: 9px;
    padding: 2px 6px;
  }

  #power-lab .member-view-btn {
    font-size: 11px;
    padding: 8px;
  }

  /* Certification */
  #power-lab .cert-intro p {
    font-size: 12px;
  }

  #power-lab .cert-item {
    padding: 20px;
  }

  #power-lab .cert-marker {
    font-size: 24px;
  }

  #power-lab .cert-content h4 {
    font-size: 14px;
  }

  #power-lab .cert-content p {
    font-size: 11px;
  }

  #power-lab .cert-date {
    font-size: 11px;
  }

  /* Process */
  #power-lab .process-intro h3 {
    font-size: 20px;
  }

  #power-lab .process-intro p {
    font-size: 14px;
  }

  #power-lab .process-docs-title {
    font-size: 12px;
  }

  #power-lab .process-doc-item {
    font-size: 12px;
    padding: 8px 12px;
  }

  #power-lab .process-step {
    padding: 18px;
    gap: 14px;
  }

  #power-lab .process-step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  #power-lab .process-step-content h4 {
    font-size: 14px;
  }

  #power-lab .process-step-content p {
    font-size: 12px;
  }

  #power-lab .process-detail-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Why */
  #power-lab .why-card {
    padding: 24px 20px;
  }

  #power-lab .why-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  #power-lab .why-card h3 {
    font-size: 15px;
  }

  #power-lab .why-card p {
    font-size: 13px;
  }

  /* CTA */
  #power-lab .cta-section {
    padding: 48px 12px;
  }

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

  #power-lab .cta-subtitle {
    font-size: 13px;
  }

  #power-lab .btn-cta-primary,
  #power-lab .btn-cta-secondary {
    padding: 14px 20px;
    font-size: 14px;
  }

  /* Modal */
  #power-lab .modal-header {
    padding: 20px;
  }

  #power-lab .modal-avatar {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  #power-lab .modal-name {
    font-size: 20px;
  }

  #power-lab .modal-role {
    font-size: 13px;
  }

  #power-lab .modal-body {
    padding: 20px;
  }

  #power-lab .modal-section-title {
    font-size: 13px;
  }

  #power-lab .modal-info-value {
    font-size: 14px;
  }

  #power-lab .modal-skill-tag {
    font-size: 11px;
    padding: 5px 10px;
  }

  #power-lab .modal-project {
    padding: 16px;
  }

  #power-lab .modal-project-title {
    font-size: 13px;
  }

  #power-lab .modal-project-desc {
    font-size: 12px;
  }
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
  #power-lab .powerlab-hero-2 h1 {
    font-size: 22px;
  }

  #power-lab .hero-secondary h2 {
    font-size: 22px;
  }

  #power-lab .hero-visual-card {
    max-width: 280px;
    padding: 14px;
  }

  #power-lab .ms-product {
    padding: 10px;
  }

  #power-lab .ms-product-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  #power-lab .ms-product-name {
    font-size: 10px;
  }

  #power-lab .section-title {
    font-size: 20px;
  }

  #power-lab .platform-item {
    min-width: 70px;
    font-size: 9px;
  }

  #power-lab .team-roles {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  #power-lab .cta-title {
    font-size: 20px;
  }
}

#system-lab {
  /* Primary Brand Colors */
  --primary: #ef3f23;
  --primary-dark: #d93520;
  --primary-light: rgba(240, 65, 38, 0.2);
  --primary-lighter: rgba(240, 65, 38, 0.1);
  --primary-40: rgba(240, 65, 38, 0.4);
  --primary-20: rgba(240, 65, 38, 0.2);

  /* Core Colors */
  --black: #000000;
  --white: #ffffff;

  /* Neutrals */
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #888888;
  --bg-white: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-dark: #0d0d0d;
  --border: #e5e7eb;
  --border-light: #f0f0f0;

  /* Gradients */
  --gradient-text: linear-gradient(135deg, #1a1a1a 0%, #ef3f23 100%);
  --gradient-primary: linear-gradient(135deg, #ef3f23 0%, #d93520 100%);
  --gradient-dark: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 8px 32px rgba(239, 63, 35, 0.2);

  --transition: all 0.3s ease;

  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-white);
}

#system-lab * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#system-lab .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradient Text */
#system-lab .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
     DARK HERO SECTION
  ======================================== */
#system-lab .hero-banner {
  position: relative;
  height: 318px;
  background: var(--gradient-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#system-lab .hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 80%,
      var(--primary-40) 0%,
      transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%,
      var(--primary-20) 0%,
      transparent 50%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

#system-lab .hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(239, 63, 35, 0.05) 1px,
      transparent 1px),
    linear-gradient(90deg, rgba(239, 63, 35, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

#system-lab .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0.3;
}

#system-lab .hero-wave svg {
  width: 100%;
  height: 100%;
}

#system-lab .particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#system-lab .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}

#system-lab .particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

#system-lab .particle:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
  animation-duration: 14s;
}

#system-lab .particle:nth-child(3) {
  left: 40%;
  animation-delay: 4s;
  animation-duration: 11s;
}

#system-lab .particle:nth-child(4) {
  left: 55%;
  animation-delay: 1s;
  animation-duration: 16s;
}

#system-lab .particle:nth-child(5) {
  left: 70%;
  animation-delay: 3s;
  animation-duration: 13s;
}

#system-lab .particle:nth-child(6) {
  left: 85%;
  animation-delay: 5s;
  animation-duration: 15s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(318px) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20px) scale(1.5);
    opacity: 0;
  }
}

#system-lab .hero-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

#system-lab .hero-banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

#system-lab .hero-banner-content .meta {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.8;
  font-weight: 400;
}

/* ========================================
     MAIN HERO CONTENT SECTION
  ======================================== */
#system-lab .system-lab-hero-2 {
  position: relative;
  padding: 80px 0 100px;
  background: var(--bg-white);
  overflow: hidden;
}

#system-lab .system-lab-hero-2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 100% 0%,
      var(--primary-20) 0%,
      transparent 70%);
  pointer-events: none;
}

#system-lab .hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

#system-lab .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-lighter);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
}

#system-lab .system-lab-hero-2 h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: black;
}

#system-lab .system-lab-hero-2 h2 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#system-lab .hero-lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.9;
}

#system-lab .hero-trust-points {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

#system-lab .trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

#system-lab .trust-point-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-lighter);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

#system-lab .trust-point-text {
  font-size: 13px;
  line-height: 1.4;
}

#system-lab .trust-point-text strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
}

#system-lab .hero-cta {
  display: flex;
  gap: 16px;
}

#system-lab .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

#system-lab .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

#system-lab .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--bg-white);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#system-lab .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Visual Card */
#system-lab .hero-visual-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}

#system-lab .hero-visual-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 26px;
  z-index: -1;
  opacity: 0.15;
}

#system-lab .visual-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
}

#system-lab .market-reality {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#system-lab .reality-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-gray);
  border-radius: 12px;
  transition: var(--transition);
}

#system-lab .reality-item:hover {
  background: var(--primary-lighter);
}

#system-lab .reality-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

#system-lab .reality-content {
  flex: 1;
}

#system-lab .reality-content h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

#system-lab .reality-number {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

#system-lab .reality-number span {
  font-size: 14px;
  color: var(--text-secondary);
}

#system-lab .solution-badge {
  margin-top: 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg,
      var(--primary-lighter),
      var(--primary-20));
  border-radius: 12px;
  text-align: center;
}

#system-lab .solution-badge p {
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 500;
}

/* ========================================
     SECTION COMMON STYLES
  ======================================== */
#system-lab .section-header {
  text-align: center;
  margin-bottom: 48px;
}

#system-lab .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-lighter);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

#system-lab .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#system-lab .section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
     WHY FAIL SECTION
  ======================================== */
#system-lab .whyfail-section {
  padding: 80px 0;
  background: var(--bg-white);
}

#system-lab .whyfail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

#system-lab .whyfail-card {
  padding: 28px;
  background: var(--bg-gray);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

#system-lab .whyfail-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

#system-lab .whyfail-rank {
  position: absolute;
  top: -12px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

#system-lab .whyfail-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 8px;
}

#system-lab .whyfail-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

#system-lab .whyfail-source {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================
     OUR APPROACH SECTION
  ======================================== */
#system-lab .approach-section {
  padding: 100px 0;
  background: var(--bg-gray);
  position: relative;
}

#system-lab .approach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 0% 0%,
      var(--primary-20) 0%,
      transparent 70%);
  pointer-events: none;
}

#system-lab .approach-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

#system-lab .approach-intro-highlight {
  font-size: 20px;
  font-weight: 600;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

#system-lab .approach-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
}

#system-lab .approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

#system-lab .approach-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#system-lab .approach-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

#system-lab .approach-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

#system-lab .approach-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

#system-lab .approach-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

#system-lab .approach-comparison {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

#system-lab .comparison-item {
  padding: 4px 10px;
  border-radius: 6px;
}

#system-lab .comparison-item.old {
  background: #f1f1f1;
  color: var(--text-light);
  text-decoration: line-through;
}

#system-lab .comparison-item.new {
  background: var(--primary-lighter);
  color: var(--primary);
  font-weight: 600;
}

#system-lab .comparison-arrow {
  color: var(--text-light);
}

/* Success Rate Comparison */
#system-lab .success-comparison {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
}

#system-lab .success-comparison h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

#system-lab .success-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

#system-lab .success-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

#system-lab .success-bar-label {
  width: 140px;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

#system-lab .success-bar-track {
  flex: 1;
  height: 36px;
  background: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
}

#system-lab .success-bar-fill {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 12px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  border-radius: 8px;
}

#system-lab .success-bar-fill.traditional {
  width: 26%;
  background: var(--text-light);
}

#system-lab .success-bar-fill.partnership {
  width: 42%;
  background: var(--gradient-primary);
}

#system-lab .success-source {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================
     SUCCESS FRAMEWORK SECTION
  ======================================== */
#system-lab .framework-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#system-lab .framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#system-lab .framework-card {
  background: var(--bg-gray);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

#system-lab .framework-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

#system-lab .framework-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

#system-lab .framework-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-lighter);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 12px auto 16px;
}

#system-lab .framework-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

#system-lab .framework-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

#system-lab .framework-highlight {
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--primary-lighter);
  border-radius: 8px;
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 500;
}

/* ========================================
     MIICHISOFT SECTION
  ======================================== */
#system-lab .miichisoft-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#system-lab .miichisoft-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 20% 80%,
      var(--primary-40) 0%,
      transparent 50%),
    radial-gradient(ellipse 50% 30% at 80% 20%,
      var(--primary-20) 0%,
      transparent 50%);
  pointer-events: none;
}

#system-lab .miichisoft-section .container {
  position: relative;
  z-index: 1;
}

#system-lab .miichisoft-section .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

#system-lab .miichisoft-section .section-title {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#system-lab .miichisoft-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#system-lab .miichisoft-story {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

#system-lab .miichisoft-story p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

#system-lab .miichisoft-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

#system-lab .miichisoft-stat {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

#system-lab .miichisoft-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-40);
}

#system-lab .miichisoft-stat-number {
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

#system-lab .miichisoft-stat-number span {
  font-size: 20px;
}

#system-lab .miichisoft-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

#system-lab .miichisoft-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

#system-lab .miichisoft-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#system-lab .miichisoft-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-40);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

#system-lab .miichisoft-badge-text h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

#system-lab .miichisoft-badge-text p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
     WHY US SECTION
  ======================================== */
#system-lab .why-section {
  padding: 100px 0;
  background: var(--bg-gray);
}

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

#system-lab .why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#system-lab .why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

#system-lab .why-card-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-lighter);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

#system-lab .why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

#system-lab .why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
     PROCESS SECTION
  ======================================== */
#system-lab .process-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#system-lab .process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

#system-lab .process-flow::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-lighter),
      var(--primary),
      var(--primary-lighter));
  z-index: 0;
}

#system-lab .process-step {
  background: var(--bg-gray);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#system-lab .process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  background: var(--bg-white);
}

#system-lab .process-step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
}

#system-lab .process-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

#system-lab .process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

#system-lab .process-highlight {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--primary-lighter);
  border-radius: 8px;
  font-size: 12px;
  color: var(--primary-dark);
}

/* ========================================
     COVERAGE SECTION
  ======================================== */
#system-lab .coverage-section {
  padding: 100px 0;
  background: var(--bg-gray);
}

#system-lab .coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

#system-lab .coverage-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#system-lab .coverage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#system-lab .coverage-card:hover::before {
  transform: scaleX(1);
}

#system-lab .coverage-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

#system-lab .coverage-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-lighter);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

#system-lab .coverage-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

#system-lab .coverage-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

#system-lab .coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#system-lab .coverage-tag {
  padding: 6px 12px;
  background: var(--bg-gray);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================
     INDUSTRIES SECTION
  ======================================== */
#system-lab .industries-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#system-lab .industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#system-lab .industry-card {
  position: relative;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

#system-lab .industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#system-lab .industry-card:hover img {
  transform: scale(1.1);
}

#system-lab .industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

#system-lab .industry-card span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  z-index: 2;
}

/* ========================================
     CASE STUDIES SECTION
  ======================================== */
#system-lab .cases-section {
  padding: 100px 0;
  background: var(--bg-gray);
}

#system-lab .cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

#system-lab .case-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

#system-lab .case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

#system-lab .case-header {
  padding: 24px 28px;
  background: var(--primary-lighter);
  border-bottom: 1px solid var(--border);
}

#system-lab .case-industry {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 10px;
}

#system-lab .case-header h3 {
  font-size: 18px;
  font-weight: 700;
}

#system-lab .case-body {
  padding: 28px;
}

#system-lab .case-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

#system-lab .case-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#system-lab .case-result {
  padding: 16px;
  background: var(--bg-gray);
  border-radius: 12px;
  text-align: center;
}

#system-lab .case-result-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

#system-lab .case-result-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ========================================
     CTA SECTION
  ======================================== */
#system-lab .cta-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#system-lab .cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 40%),
    radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 40%);
  pointer-events: none;
}

#system-lab .cta-section .container {
  position: relative;
  z-index: 1;
}

#system-lab .cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

#system-lab .cta-section p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

#system-lab .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

#system-lab .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}

#system-lab .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

#system-lab .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

#system-lab .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ========================================
     RESPONSIVE
  ======================================== */
@media (max-width: 1024px) {
  #system-lab .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #system-lab .hero-right {
    order: -1;
  }

  #system-lab .approach-grid,
  #system-lab .whyfail-grid,
  #system-lab .coverage-grid,
  #system-lab .industries-grid {
    grid-template-columns: 1fr;
  }

  #system-lab .process-flow,
  #system-lab .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #system-lab .process-flow::before {
    display: none;
  }

  #system-lab .why-grid,
  #system-lab .miichisoft-stats,
  #system-lab .miichisoft-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #system-lab .hero-banner-content h1 {
    font-size: 32px;
  }

  #system-lab .system-lab-hero-2 h2 {
    font-size: 28px;
  }

  #system-lab .section-title {
    font-size: 26px;
  }

  #system-lab .hero-trust-points {
    flex-direction: column;
    gap: 16px;
  }

  #system-lab .process-flow,
  #system-lab .framework-grid,
  #system-lab .why-grid,
  #system-lab .cases-grid,
  #system-lab .miichisoft-stats,
  #system-lab .miichisoft-badges {
    grid-template-columns: 1fr;
  }

  #system-lab .hero-cta,
  #system-lab .cta-buttons {
    flex-direction: column;
  }

  #system-lab .success-bar-item {
    flex-direction: column;
    align-items: stretch;
  }

  #system-lab .success-bar-label {
    width: 100%;
    margin-bottom: 8px;
  }
}

#dify-support {
  /* Miichisoft Brand - Clean Red Theme */
  --primary: #EF3F23;
  --primary-dark: #C41E10;
  --primary-light: rgba(240, 65, 38, 0.2);
  --primary-lighter: rgba(240, 65, 38, 0.1);
  --primary-glow: rgba(240, 65, 38, 0.4);

  /* Core Colors */
  --black: #000000;
  --dark: #1a1a1a;
  --dark-secondary: #0d0d0d;
  --text: #1a1a1a;
  --text-light: #666666;
  --text-secondary: #555555;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --border: #e5e5e5;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #EF3F23 0%, #C41E10 100%);
  --gradient-text: linear-gradient(135deg, #2d2d2d 0%, #EF3F23 60%, #FF5A3D 100%);
  --gradient-text-reverse: linear-gradient(135deg, #FF5A3D 0%, #EF3F23 40%, #2d2d2d 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  --gradient-hero: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 60px rgba(239, 63, 35, 0.15);
  --shadow-red: 0 4px 20px rgba(239, 63, 35, 0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#dify-support * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scoped to avoid global effect */
#dify-support {
  scroll-behavior: smooth;
}

#dify-support {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

#dify-support .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography - Gradient Headings */
#dify-support h1,
#dify-support h2,
#dify-support h3,
#dify-support h4 {
  font-weight: 700;
  line-height: 1.3;
}

#dify-support .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: black;
}

#dify-support .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 4rem;
}

/* Gradient Text Highlight */
#dify-support .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#dify-support .highlight-reverse {
  background: var(--gradient-text-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   BUTTONS
======================================== */
#dify-support .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
}

#dify-support .btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

#dify-support .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 63, 35, 0.3);
}

#dify-support .btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

#dify-support .btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTION - DARK BANNER
======================================== */
#dify-support .hero-banner {
  width: 100%;
  height: 318px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated Background Elements */
#dify-support .hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(239, 63, 35, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(239, 63, 35, 0.1) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* Animated Wave Lines */
#dify-support .hero-wave {
  position: absolute;
  width: 200%;
  height: 100%;
  left: -50%;
  top: 0;
  pointer-events: none;
}

#dify-support .hero-wave-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(239, 63, 35, 0.3) 25%,
      rgba(239, 63, 35, 0.5) 50%,
      rgba(239, 63, 35, 0.3) 75%,
      transparent 100%);
  animation: waveLine 15s linear infinite;
}

#dify-support .hero-wave-line:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

#dify-support .hero-wave-line:nth-child(2) {
  top: 35%;
  animation-delay: -3s;
  opacity: 0.7;
}

#dify-support .hero-wave-line:nth-child(3) {
  top: 50%;
  animation-delay: -6s;
  opacity: 0.5;
}

#dify-support .hero-wave-line:nth-child(4) {
  top: 65%;
  animation-delay: -9s;
  opacity: 0.7;
}

#dify-support .hero-wave-line:nth-child(5) {
  top: 80%;
  animation-delay: -12s;
}

@keyframes waveLine {
  0% {
    transform: translateX(-25%) scaleY(1);
  }

  50% {
    transform: translateX(0%) scaleY(1.5);
  }

  100% {
    transform: translateX(25%) scaleY(1);
  }
}

/* Floating Particles */
#dify-support .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#dify-support .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 20s linear infinite;
}

#dify-support .particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

#dify-support .particle:nth-child(2) {
  left: 20%;
  animation-delay: -4s;
}

#dify-support .particle:nth-child(3) {
  left: 30%;
  animation-delay: -8s;
}

#dify-support .particle:nth-child(4) {
  left: 50%;
  animation-delay: -2s;
}

#dify-support .particle:nth-child(5) {
  left: 60%;
  animation-delay: -6s;
}

#dify-support .particle:nth-child(6) {
  left: 70%;
  animation-delay: -10s;
}

#dify-support .particle:nth-child(7) {
  left: 80%;
  animation-delay: -14s;
}

#dify-support .particle:nth-child(8) {
  left: 90%;
  animation-delay: -18s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100%) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100%) translateX(50px);
    opacity: 0;
  }
}

/* Floating badges - hide on tablet and mobile */
@media (max-width: 991px) {
  #dify-support .floating-badge {
    display: none !important;
  }
}

/* Ensure floating badges don't overlap text */
#dify-support .floating-badge {
  z-index: 2;
  pointer-events: none;
}

/* Grid Pattern Overlay */
#dify-support .hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(239, 63, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 63, 35, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

#dify-support .hero-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

#dify-support .hero-banner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

#dify-support .hero-banner-meta {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   HERO CONTENT SECTION
======================================== */
#dify-support .dify-hero-2 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Decorative Element - Top Right Arc */
#dify-support .dify-hero-2::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 65, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative Element - Bottom Left Arc */
#dify-support .dify-hero-2::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(315deg, rgba(240, 65, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

#dify-support .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

#dify-support .hero-text {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#dify-support .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-red);
}

#dify-support .hero-badge::before {
  content: '';
  font-size: 0.85rem;
}

#dify-support .dify-hero-2 h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 24px;
  line-height: 1.45;
  color: black;
}

.dify-hero-2 h2 .headline-line {
  display: block;
  white-space: nowrap;
}



.dify-hero-2 p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 540px;
}

#dify-support .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#dify-support .hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

#dify-support .hero-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  margin-bottom: 20px;
}

#dify-support .hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 24px 24px 0 0;
}

#dify-support .hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

#dify-support .hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

#dify-support .hero-card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

#dify-support .hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

#dify-support .workflow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

#dify-support .workflow-item:hover {
  background: var(--primary-lighter);
  border-color: var(--primary-light);
  transform: translateX(4px);
}

#dify-support .workflow-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

#dify-support .workflow-text {
  flex: 1;
}

#dify-support .workflow-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

#dify-support .workflow-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

#dify-support .workflow-arrow {
  color: var(--primary);
  font-size: 1.2rem;
}

#dify-support .floating-badge {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
  border: 1px solid var(--border);
}

#dify-support .floating-badge-1 {
  top: -15px;
  left: 20px;
  animation-delay: 0s;
}

#dify-support .floating-badge-2 {
  bottom: -15px;
  right: 20px;
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#dify-support .badge-icon {
  font-size: 1.2rem;
}

/* Statistics Footnote */
#dify-support .stats-footnote {
  background: var(--gray-50);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.stats-footnote p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.stats-footnote a {
  color: var(--primary);
  text-decoration: none;
}

.stats-footnote a:hover {
  text-decoration: underline;
}

/* Pain Points Section */
#dify-support .pain-points {
  padding: 120px 0;
  background: white;
  position: relative;
}

/* Decorative Arc Element */
#dify-support .pain-points::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(240, 65, 38, 0.05) 0%, transparent 70%);
  border-radius: 0 0 100% 0;
}

#dify-support .pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}

#dify-support .pain-card {
  padding: 32px;
  background: var(--gray-50);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#dify-support .pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#dify-support .pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

#dify-support .pain-card:hover::before {
  transform: scaleX(1);
}

#dify-support .pain-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-lighter);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#dify-support .pain-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Why Dify Section - Dark */
#dify-support .why-dify {
  padding: 120px 0;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

#dify-support .why-dify::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 63, 35, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(239, 63, 35, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated Grid Lines */
#dify-support .why-dify::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(239, 63, 35, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 63, 35, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

#dify-support .why-dify .section-title {
  color: white;
}

#dify-support .why-dify .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#dify-support .dify-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

#dify-support .dify-feature {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#dify-support .dify-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-4px);
}

#dify-support .dify-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

#dify-support .dify-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: white;
}

.dify-feature p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Quick Demo Section */
#dify-support .quick-demo {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

/* Decorative Arc */
#dify-support .quick-demo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(225deg, rgba(240, 65, 38, 0.05) 0%, transparent 70%);
  border-radius: 100% 0 0 0;
}

#dify-support .demo-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-height: 480px;
}

/* Demo List - Left Side */
#dify-support .demo-list {
  background: var(--gray-50);
  padding: 8px;
  overflow-y: auto;
  max-height: 520px;
}

#dify-support .demo-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  margin-bottom: 4px;
}

#dify-support .demo-list-item:hover {
  background: white;
}

.demo-list-item.active {
  background: white;
  border: 2px solid var(--primary) !important;
  box-shadow: var(--shadow-sm);
}

/* Keep text black in active state */
.demo-list-item.active .demo-list-title,
.demo-list-item.active .demo-list-desc,
.demo-list-item.active .demo-list-category {
  color: inherit;
}

#dify-support .demo-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: var(--primary-lighter);
}

#dify-support .demo-list-content {
  flex: 1;
  min-width: 0;
}

#dify-support .demo-list-category {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: var(--primary-lighter);
  color: var(--primary);
}

#dify-support .demo-list-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}

#dify-support .demo-list-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Video Player - Right Side */
#dify-support .demo-player {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

#dify-support .demo-player-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.demo-player-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#dify-support .demo-player-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

#dify-support .demo-player-placeholder:hover {
  background: rgba(255, 255, 255, 0.05);
}

#dify-support .demo-player-placeholder .play-btn {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(239, 63, 35, 0.5);
  transition: transform 0.3s ease;
}

#dify-support .demo-player-placeholder:hover #dify-support .play-btn {
  transform: scale(1.1);
}

.demo-player-placeholder span {
  font-size: 14px;
  opacity: 0.8;
}

#dify-support .demo-player-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.demo-player-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

#dify-support .demo-player-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#dify-support .demo-player-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

#dify-support .demo-player-tag::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* Why Miichisoft Section */
#dify-support .why-us {
  padding: 120px 0;
  background: white;
  position: relative;
}

/* Decorative Element */
#dify-support .why-us::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 65, 38, 0.06) 0%, transparent 70%);
  transform: translateY(-50%);
}

#dify-support .why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#dify-support .why-us-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 24px;
  color: black;
}

.why-us-content>p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

#dify-support .strength-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

#dify-support .strength-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

#dify-support .strength-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.strength-content p {
  font-size: 0.95rem;
  color: var(--text-light);
}

#dify-support .why-us-visual {
  position: relative;
}

#dify-support .stats-card {
  background: var(--gray-50);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--gray-200);
}

#dify-support .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

#dify-support .stat-item {
  text-align: center;
}

#dify-support .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

#dify-support .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Services Section */
#dify-support .services {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
}

#dify-support .services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

#dify-support .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
}

#dify-support .service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#dify-support .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#dify-support .service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

#dify-support .service-card:hover::before {
  opacity: 1;
}

#dify-support .service-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-badge.popular {
  background: var(--gradient-primary);
  color: white;
}

#dify-support .service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card>p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

#dify-support .service-features {
  list-style: none;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
}

#dify-support .service-price {
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

#dify-support .price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

#dify-support .price-unit {
  font-size: 0.9rem;
  color: var(--text-light);
}

#dify-support .price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: auto;
}

#dify-support .service-disclaimer {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Version Comparison Section */
#dify-support .version-compare {
  padding: 100px 0;
  background: white;
  position: relative;
}

#dify-support .version-compare::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

#dify-support .version-compare .section-title {
  margin-bottom: 16px;
}

#dify-support .version-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

#dify-support .version-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

#dify-support .version-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#dify-support .version-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.version-card.enterprise {
  border-color: var(--primary);
}

.version-card.enterprise::before {
  content: 'おすすめ';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-primary);
  color: white;
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

#dify-support .version-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

#dify-support .version-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

#dify-support .version-card.opensource .version-icon {
  background: var(--gray-100);
}

#dify-support .version-card.enterprise .version-icon {
  background: var(--gradient-primary);
}

#dify-support .version-title h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.version-title span {
  font-size: 0.85rem;
  color: var(--text-light);
}

#dify-support .version-features {
  list-style: none;
}

.version-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.version-features li:last-child {
  border-bottom: none;
}

.version-features li::before {
  content: '✔';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

#dify-support .version-target {
  margin-top: 24px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.version-target strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

#dify-support .version-cta {
  text-align: center;
  padding: 32px;
  background: var(--primary-lighter);
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--primary-light);
}

.version-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text);
}

.version-cta strong {
  color: var(--primary);
}

/* Enterprise Features Grid */
#dify-support .enterprise-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

#dify-support .enterprise-feature-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

#dify-support .enterprise-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

#dify-support .enterprise-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

#dify-support .enterprise-feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.enterprise-feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Process Section */
#dify-support .process {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
}

#dify-support .process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

#dify-support .process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

#dify-support .process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: var(--gray-200);
}

#dify-support .process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

#dify-support .step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

#dify-support .process-step:hover #dify-support .step-icon {
  background: var(--gradient-primary);
  border-color: var(--primary-dark);
  transform: scale(1.1);
}

#dify-support .process-step:hover .step-icon span {
  filter: brightness(0) invert(1);
}

#dify-support .step-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

#dify-support .process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 160px;
  margin: 0 auto;
}

/* FAQ Section */
#dify-support .faq {
  padding: 120px 0;
  background: white;
}

#dify-support .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

#dify-support .faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

#dify-support .faq-item:hover {
  border-color: var(--primary);
}

#dify-support .faq-question {
  padding: 24px 28px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

#dify-support .faq-question:hover {
  background: var(--gray-50);
}

#dify-support .faq-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

#dify-support .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

#dify-support .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#dify-support .faq-item.active .faq-answer {
  max-height: 500px;
}

#dify-support .faq-answer-content {
  padding: 0 28px 24px;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section - Dark */
#dify-support .cta {
  padding: 120px 0;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

#dify-support .cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(239, 63, 35, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(239, 63, 35, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated Wave Lines for CTA */
#dify-support .cta-wave {
  position: absolute;
  width: 200%;
  height: 100%;
  left: -50%;
  top: 0;
  pointer-events: none;
}

#dify-support .cta-wave-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(239, 63, 35, 0.2) 25%,
      rgba(239, 63, 35, 0.4) 50%,
      rgba(239, 63, 35, 0.2) 75%,
      transparent 100%);
  animation: waveLine 15s linear infinite;
}

#dify-support .cta-wave-line:nth-child(1) {
  top: 30%;
  animation-delay: 0s;
}

#dify-support .cta-wave-line:nth-child(2) {
  top: 70%;
  animation-delay: -7s;
}

#dify-support .cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

#dify-support .cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

#dify-support .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

#dify-support .cta .btn-primary {
  background: white;
  color: var(--primary);
}

#dify-support .cta .btn-primary:hover {
  background: var(--gray-100);
}

#dify-support .cta .btn-outline {
  border-color: white;
  color: white;
}

#dify-support .cta .btn-outline:hover {
  background: white;
  color: var(--primary);
}




/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
======================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  #dify-support .container {
    max-width: 1320px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  #dify-support .container {
    max-width: 1140px;
  }

  #dify-support .demo-container {
    grid-template-columns: 340px 1fr;
  }
}

/* Tablet Landscape / Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  #dify-support .container {
    max-width: 960px;
    padding: 0 20px;
  }

  #dify-support .section-title {
    font-size: 2rem;
  }

  #dify-support .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #dify-support .hero-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.85rem;
    text-align: center;
  }

  #dify-support .hero-text {
    text-align: center;
  }

  #dify-support .hero-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #dify-support .hero-buttons {
    justify-content: center;
  }

  #dify-support .dify-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #dify-support .dify-feature {
    padding: 28px;
  }

  #dify-support .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #dify-support .why-us-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  #dify-support .demo-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  #dify-support .demo-list {
    max-height: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
  }

  #dify-support .demo-list-item {
    margin-bottom: 0;
    padding: 12px;
  }

  #dify-support .demo-list-desc {
    display: none;
  }

  #dify-support .demo-player {
    padding: 20px;
  }

  #dify-support .version-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #dify-support .version-card {
    padding: 32px;
  }

  #dify-support .enterprise-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #dify-support .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #dify-support .service-card {
    padding: 28px;
  }

  #dify-support .process-timeline {
    flex-direction: column;
    gap: 32px;
  }

  #dify-support .process-timeline::before {
    display: none;
  }

  #dify-support .process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
  }

  #dify-support .process-step .step-icon {
    margin: 0;
    flex-shrink: 0;
  }

  #dify-support .process-step p {
    max-width: none;
    margin: 0;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
  #dify-support .container {
    max-width: 720px;
    padding: 0 16px;
  }

  #dify-support .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  #dify-support .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  /* Hero Banner */
  #dify-support .hero-banner {
    height: 280px;
    padding: 0 16px;
  }

  #dify-support .hero-banner h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  #dify-support .hero-banner-meta {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  #dify-support .hero-banner-meta br {
    display: none;
  }

  /* Hero Content */
  #dify-support .dify-hero-2 {
    padding: 60px 0;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.6rem;
  }

  #dify-support .dify-hero-2 p {
    font-size: 1rem;
  }

  #dify-support .hero-card {
    padding: 24px;
  }

  #dify-support .floating-badge {
    display: none;
  }

  /* Pain Points */
  #dify-support .pain-points {
    padding: 80px 0;
  }

  #dify-support .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #dify-support .pain-card {
    padding: 24px;
  }

  #dify-support .pain-card h3 {
    font-size: 1.05rem;
  }

  #dify-support .pain-card p {
    font-size: 0.9rem;
  }

  #dify-support .pain-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  /* Why Dify */
  #dify-support .why-dify {
    padding: 80px 0;
  }

  #dify-support .dify-feature {
    padding: 24px;
  }

  #dify-support .dify-feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  #dify-support .dify-feature h3 {
    font-size: 1.15rem;
  }

  #dify-support .dify-feature p {
    font-size: 0.9rem;
  }

  /* Demo Section */
  #dify-support .quick-demo {
    padding: 80px 0;
  }

  #dify-support .demo-list {
    grid-template-columns: repeat(2, 1fr);
  }

  #dify-support .demo-list-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  #dify-support .demo-list-title {
    font-size: 13px;
  }

  #dify-support .demo-player-info h3 {
    font-size: 1.1rem;
  }

  #dify-support .demo-player-info p {
    font-size: 0.9rem;
  }

  /* Why Us */
  #dify-support .why-us {
    padding: 80px 0;
  }

  #dify-support .why-us-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }

  #dify-support .why-us-content>p {
    text-align: center;
  }

  #dify-support .strength-item {
    margin-bottom: 24px;
  }

  #dify-support .strength-number {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  #dify-support .strength-content h4 {
    font-size: 1rem;
  }

  #dify-support .strength-content p {
    font-size: 0.9rem;
  }

  #dify-support .stats-card {
    padding: 32px;
  }

  #dify-support .stat-value {
    font-size: 2rem;
  }

  /* Services */
  #dify-support .services {
    padding: 80px 0;
  }

  #dify-support .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #dify-support .service-card {
    padding: 24px;
  }

  #dify-support .service-card h3 {
    font-size: 1.2rem;
  }

  #dify-support .service-features li {
    font-size: 0.9rem;
  }

  #dify-support .price-value {
    font-size: 1.75rem;
  }

  /* Version Compare */
  #dify-support .version-compare {
    padding: 80px 0;
  }

  #dify-support .version-intro {
    font-size: 0.95rem;
  }

  #dify-support .version-card {
    padding: 28px;
  }

  #dify-support .version-title h3 {
    font-size: 1.15rem;
  }

  #dify-support .version-features li {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  #dify-support .enterprise-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #dify-support .enterprise-feature-card {
    padding: 20px;
  }

  #dify-support .enterprise-feature-card h4 {
    font-size: 1rem;
  }

  #dify-support .enterprise-feature-card p {
    font-size: 0.85rem;
  }

  #dify-support .version-cta {
    padding: 24px;
  }

  #dify-support .version-cta p {
    font-size: 1rem;
  }

  /* Process */
  #dify-support .process {
    padding: 80px 0;
  }

  #dify-support .step-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  #dify-support .process-step h4 {
    font-size: 1rem;
  }

  #dify-support .process-step p {
    font-size: 0.85rem;
  }

  /* FAQ */
  #dify-support .faq {
    padding: 80px 0;
  }

  #dify-support .faq-question {
    padding: 20px;
    font-size: 0.95rem;
  }

  #dify-support .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }

  /* CTA */
  #dify-support .cta {
    padding: 80px 0;
  }

  #dify-support .cta h2 {
    font-size: 1.75rem;
  }

  #dify-support .cta p {
    font-size: 1rem;
  }
}

/* Mobile Landscape / Large Mobile (576px - 767px) */
@media (max-width: 767px) {
  #dify-support .container {
    max-width: 540px;
    padding: 0 16px;
  }

  #dify-support .section-title {
    font-size: 1.5rem;
  }

  #dify-support .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  /* Demo Section - Mobile Layout */
  #dify-support .demo-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
  }

  /* Video player shows FIRST on mobile */
  #dify-support .demo-player {
    order: 1;
    padding: 16px;
  }

  /* Demo list shows BELOW video on mobile */
  #dify-support .demo-list {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    max-height: none;
    overflow-y: visible;
  }

  #dify-support .demo-list-item {
    padding: 10px;
    gap: 8px;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #dify-support .demo-list-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }

  #dify-support .demo-list-category {
    font-size: 8px;
    padding: 2px 6px;
    margin-bottom: 4px;
  }

  #dify-support .demo-list-title {
    font-size: 11px;
    line-height: 1.3;
  }

  #dify-support .demo-list-desc {
    display: none;
  }

  #dify-support .demo-player-video {
    border-radius: 12px;
    padding-top: 56.25%;
    margin-bottom: 16px;
  }

  #dify-support .demo-player-placeholder .play-btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  #dify-support .demo-player-placeholder span {
    font-size: 12px;
  }

  #dify-support .demo-player-info {
    text-align: center;
  }

  #dify-support .demo-player-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  #dify-support .demo-player-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  #dify-support .demo-player-tags {
    justify-content: center;
  }

  #dify-support .demo-player-tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Buttons */
  #dify-support .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }

  #dify-support .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Hero Banner */
  #dify-support .hero-banner {
    height: 240px;
  }

  #dify-support .hero-banner h1 {
    font-size: 1.35rem;
    padding: 0 8px;
  }

  #dify-support .hero-banner-meta {
    font-size: 0.85rem;
    padding: 0 8px;
  }

  /* Hero Content */
  #dify-support .dify-hero-2 {
    padding: 50px 0;
  }

  #dify-support .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.4rem;
  }

  #dify-support .dify-hero-2 p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  #dify-support .hero-card {
    padding: 20px;
  }

  #dify-support .hero-card-header {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  #dify-support .hero-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  #dify-support .workflow-item {
    padding: 12px;
    gap: 12px;
  }

  #dify-support .workflow-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  #dify-support .workflow-title {
    font-size: 0.85rem;
  }

  #dify-support .workflow-desc {
    font-size: 0.75rem;
  }

  /* Stats Footnote */
  #dify-support .stats-footnote p {
    font-size: 0.7rem;
    padding: 0 8px;
  }

  /* Pain Points */
  #dify-support .pain-points {
    padding: 60px 0;
  }

  #dify-support .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #dify-support .pain-card {
    padding: 20px;
  }

  #dify-support .pain-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  #dify-support .pain-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  #dify-support .pain-card p {
    font-size: 0.85rem;
  }

  /* Why Dify */
  #dify-support .why-dify {
    padding: 60px 0;
  }

  #dify-support .dify-feature {
    padding: 20px;
  }

  #dify-support .dify-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  #dify-support .dify-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  #dify-support .dify-feature p {
    font-size: 0.85rem;
  }

  /* Demo */
  #dify-support .quick-demo {
    padding: 60px 0;
  }

  #dify-support .demo-container {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }

  /* Video player shows FIRST on mobile */
  #dify-support .demo-player {
    order: 1;
    padding: 16px;
  }

  /* Mobile: Horizontal scrollable demo list - shows AFTER video */
  #dify-support .demo-list {
    order: 2;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 12px;
    max-height: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #dify-support .demo-list::-webkit-scrollbar {
    display: none;
  }

  #dify-support .demo-list-item {
    flex: 0 0 auto;
    width: 140px;
    min-width: 140px;
    padding: 12px;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  #dify-support .demo-list-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 4px;
  }

  #dify-support .demo-list-content {
    width: 100%;
  }

  #dify-support .demo-list-category {
    font-size: 9px;
    padding: 2px 6px;
    margin-bottom: 4px;
  }

  #dify-support .demo-list-title {
    font-size: 11px;
    line-height: 1.3;
  }

  #dify-support .demo-list-desc {
    display: none;
  }

  /* Video Player Mobile */
  #dify-support .demo-player-video {
    border-radius: 12px;
    margin-bottom: 16px;
  }

  #dify-support .demo-player-placeholder .play-btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  #dify-support .demo-player-placeholder span {
    font-size: 11px;
  }

  #dify-support .demo-player-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  #dify-support .demo-player-info p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  #dify-support .demo-player-tags {
    gap: 6px;
  }

  #dify-support .demo-player-tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  #dify-support .demo-list-category {
    font-size: 9px;
  }

  #dify-support .demo-list-title {
    font-size: 12px;
  }

  #dify-support .demo-player {
    padding: 16px;
  }

  #dify-support .demo-player-video {
    border-radius: 12px;
  }

  #dify-support .demo-player-placeholder .play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  #dify-support .demo-player-info h3 {
    font-size: 1rem;
  }

  #dify-support .demo-player-info p {
    font-size: 0.85rem;
  }

  #dify-support .demo-player-tag {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* Why Us */
  #dify-support .why-us {
    padding: 60px 0;
  }

  #dify-support .why-us-content h2 {
    font-size: 1.5rem;
  }

  #dify-support .why-us-content>p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  #dify-support .strength-item {
    gap: 16px;
    margin-bottom: 20px;
  }

  #dify-support .strength-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
  }

  #dify-support .strength-content h4 {
    font-size: 0.95rem;
  }

  #dify-support .strength-content p {
    font-size: 0.85rem;
  }

  #dify-support .stats-card {
    padding: 24px;
    border-radius: 16px;
  }

  #dify-support .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #dify-support .stat-value {
    font-size: 1.75rem;
  }

  #dify-support .stat-label {
    font-size: 0.8rem;
  }

  /* Services */
  #dify-support .services {
    padding: 60px 0;
  }

  #dify-support .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #dify-support .service-card {
    padding: 20px;
    border-radius: 16px;
  }

  #dify-support .service-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  #dify-support .service-card h3 {
    font-size: 1.1rem;
  }

  #dify-support .service-card>p {
    font-size: 0.85rem;
  }

  #dify-support .service-features {
    margin-bottom: 20px;
  }

  #dify-support .service-features li {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  #dify-support .service-price {
    padding-top: 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  #dify-support .price-value {
    font-size: 1.5rem;
  }

  #dify-support .price-note {
    margin-left: 0;
    width: 100%;
  }

  #dify-support .service-disclaimer {
    padding: 16px;
    font-size: 0.8rem;
  }

  /* Version Compare */
  #dify-support .version-compare {
    padding: 60px 0;
  }

  #dify-support .version-intro {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  #dify-support .version-intro br {
    display: none;
  }

  #dify-support .version-card {
    padding: 20px;
    border-radius: 16px;
  }

  #dify-support .version-card.enterprise::before {
    font-size: 0.65rem;
    padding: 3px 32px;
    top: 16px;
    right: -32px;
  }

  #dify-support .version-header {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  #dify-support .version-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  #dify-support .version-title h3 {
    font-size: 1.1rem;
  }

  #dify-support .version-title span {
    font-size: 0.8rem;
  }

  #dify-support .version-features li {
    font-size: 0.85rem;
    padding: 8px 0;
    gap: 8px;
  }

  #dify-support .version-target {
    padding: 12px;
    font-size: 0.85rem;
  }

  #dify-support .enterprise-feature-card {
    padding: 16px;
    border-radius: 12px;
  }

  #dify-support .enterprise-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  #dify-support .enterprise-feature-card h4 {
    font-size: 0.95rem;
  }

  #dify-support .enterprise-feature-card p {
    font-size: 0.8rem;
  }

  #dify-support .version-cta {
    padding: 20px;
    border-radius: 12px;
  }

  #dify-support .version-cta p {
    font-size: 0.9rem;
  }

  /* Process */
  #dify-support .process {
    padding: 60px 0;
  }

  #dify-support .process-step {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  #dify-support .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    border-width: 3px;
  }

  #dify-support .step-number {
    font-size: 0.75rem;
  }

  #dify-support .process-step h4 {
    font-size: 0.95rem;
  }

  #dify-support .process-step p {
    font-size: 0.8rem;
  }

  /* FAQ */
  #dify-support .faq {
    padding: 60px 0;
  }

  #dify-support .faq-item {
    border-radius: 12px;
    margin-bottom: 12px;
  }

  #dify-support .faq-question {
    padding: 16px;
    font-size: 0.9rem;
  }

  #dify-support .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  #dify-support .faq-answer-content {
    padding: 0 16px 16px;
    font-size: 0.85rem;
  }

  /* CTA */
  #dify-support .cta {
    padding: 60px 0;
  }

  #dify-support .cta h2 {
    font-size: 1.5rem;
  }

  #dify-support .cta p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  #dify-support .cta p br {
    display: none;
  }

  #dify-support .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  #dify-support .container {
    padding: 0 12px;
  }

  #dify-support .section-title {
    font-size: 1.35rem;
  }

  #dify-support .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  /* Hero Banner */
  #dify-support .hero-banner {
    height: 200px;
  }

  #dify-support .hero-banner h1 {
    font-size: 1.15rem;
  }

  #dify-support .hero-banner-meta {
    font-size: 0.8rem;
  }

  /* Hero */
  #dify-support .dify-hero-2 {
    padding: 40px 0;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.25rem;
  }

  #dify-support .dify-hero-2 p {
    font-size: 0.9rem;
  }

  #dify-support .hero-card {
    padding: 16px;
    border-radius: 16px;
  }

  #dify-support .workflow-item {
    padding: 10px;
  }

  #dify-support .workflow-icon {
    width: 32px;
    height: 32px;
  }

  #dify-support .workflow-title {
    font-size: 0.8rem;
  }

  #dify-support .workflow-desc {
    font-size: 0.7rem;
  }

  #dify-support .workflow-arrow {
    font-size: 1rem;
  }

  /* Pain Points */
  #dify-support .pain-points {
    padding: 50px 0;
  }

  #dify-support .pain-card {
    padding: 16px;
    border-radius: 14px;
  }

  #dify-support .pain-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  #dify-support .pain-card h3 {
    font-size: 0.95rem;
  }

  #dify-support .pain-card p {
    font-size: 0.8rem;
  }

  /* Why Dify */
  #dify-support .why-dify {
    padding: 50px 0;
  }

  #dify-support .dify-feature {
    padding: 16px;
    border-radius: 14px;
  }

  #dify-support .dify-feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  #dify-support .dify-feature h3 {
    font-size: 1rem;
  }

  #dify-support .dify-feature p {
    font-size: 0.8rem;
  }

  /* Demo - Horizontal scrollable on small mobile */
  #dify-support .quick-demo {
    padding: 50px 0;
  }

  #dify-support .demo-container {
    min-height: auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
  }

  #dify-support .demo-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 10px;
    max-height: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    order: 2;
  }

  #dify-support .demo-list::-webkit-scrollbar {
    display: none;
  }

  #dify-support .demo-list-item {
    flex: 0 0 auto;
    width: 120px;
    min-width: 120px;
    padding: 10px;
    gap: 6px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  #dify-support .demo-list-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 4px;
  }

  #dify-support .demo-list-category {
    font-size: 8px;
    padding: 2px 5px;
  }

  #dify-support .demo-list-title {
    font-size: 10px;
    line-height: 1.3;
  }

  #dify-support .demo-list-desc {
    display: none;
  }

  #dify-support .demo-player {
    padding: 12px;
    order: 1;
  }

  #dify-support .demo-player-video {
    border-radius: 10px;
    padding-top: 56.25%;
    margin-bottom: 12px;
  }

  #dify-support .demo-player-placeholder .play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 10px;
  }

  #dify-support .demo-player-placeholder span {
    font-size: 11px;
  }

  #dify-support .demo-player-info {
    text-align: center;
  }

  #dify-support .demo-player-info h3 {
    font-size: 0.95rem;
  }

  #dify-support .demo-player-info p {
    font-size: 0.8rem;
  }

  #dify-support .demo-player-tags {
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
  }

  #dify-support .demo-player-tag {
    font-size: 9px;
    padding: 3px 8px;
  }

  /* Why Us */
  #dify-support .why-us {
    padding: 50px 0;
  }

  #dify-support .why-us-content h2 {
    font-size: 1.35rem;
  }

  #dify-support .stats-card {
    padding: 20px;
  }

  #dify-support .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  #dify-support .stat-value {
    font-size: 1.5rem;
  }

  #dify-support .stat-label {
    font-size: 0.75rem;
  }

  /* Services */
  #dify-support .services {
    padding: 50px 0;
  }

  #dify-support .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #dify-support .service-card {
    padding: 16px;
    border-radius: 14px;
  }

  #dify-support .service-card h3 {
    font-size: 1rem;
  }

  #dify-support .service-features li {
    font-size: 0.8rem;
  }

  #dify-support .price-value {
    font-size: 1.35rem;
  }

  /* Version Compare */
  #dify-support .version-compare {
    padding: 50px 0;
  }

  #dify-support .version-intro {
    font-size: 0.85rem;
  }

  #dify-support .version-card {
    padding: 16px;
    border-radius: 14px;
  }

  #dify-support .version-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  #dify-support .version-title h3 {
    font-size: 1rem;
  }

  #dify-support .version-features li {
    font-size: 0.8rem;
  }

  #dify-support .version-target {
    font-size: 0.8rem;
  }

  #dify-support .enterprise-feature-card {
    padding: 14px;
  }

  #dify-support .enterprise-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  #dify-support .enterprise-feature-card h4 {
    font-size: 0.9rem;
  }

  #dify-support .enterprise-feature-card p {
    font-size: 0.75rem;
  }

  #dify-support .version-cta p {
    font-size: 0.85rem;
  }

  /* Process */
  #dify-support .process {
    padding: 50px 0;
  }

  #dify-support .process-timeline {
    gap: 24px;
  }

  #dify-support .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  #dify-support .step-number {
    font-size: 0.7rem;
  }

  #dify-support .process-step h4 {
    font-size: 0.9rem;
  }

  #dify-support .process-step p {
    font-size: 0.75rem;
  }

  /* FAQ */
  #dify-support .faq {
    padding: 50px 0;
  }

  #dify-support .faq-question {
    padding: 14px;
    font-size: 0.85rem;
  }

  #dify-support .faq-icon {
    width: 22px;
    height: 22px;
  }

  #dify-support .faq-answer-content {
    padding: 0 14px 14px;
    font-size: 0.8rem;
  }

  /* CTA */
  #dify-support .cta {
    padding: 50px 0;
  }

  #dify-support .cta h2 {
    font-size: 1.35rem;
  }

  #dify-support .cta p {
    font-size: 0.85rem;
  }
}

/* Extra small devices (less than 400px) */
@media (max-width: 400px) {
  #dify-support .hero-banner {
    height: 180px;
  }

  #dify-support .hero-banner h1 {
    font-size: 1.05rem;
  }

  #dify-support .hero-banner-meta {
    font-size: 0.75rem;
  }

  #dify-support .section-title {
    font-size: 1.2rem;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.15rem;
  }

  #dify-support .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  #dify-support .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #dify-support .stat-value {
    font-size: 1.5rem;
  }

  #dify-support .stat-label {
    font-size: 0.7rem;
  }

  /* Demo Section - Very Small Screens - Horizontal Scroll */
  #dify-support .demo-container {
    min-height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }

  /* Video player shows FIRST */
  #dify-support .demo-player {
    order: 1;
    padding: 10px;
  }

  /* Demo list shows AFTER video */
  #dify-support .demo-list {
    order: 2;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding: 8px;
    max-height: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #dify-support .demo-list::-webkit-scrollbar {
    display: none;
  }

  #dify-support .demo-list-item {
    flex: 0 0 auto;
    width: 100px;
    min-width: 100px;
    padding: 8px;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
  }

  #dify-support .demo-list-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  #dify-support .demo-list-category {
    font-size: 7px;
    padding: 1px 4px;
  }

  #dify-support .demo-list-title {
    font-size: 9px;
    line-height: 1.2;
  }

  #dify-support .demo-player-video {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  #dify-support .demo-player-placeholder .play-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
    margin-bottom: 8px;
  }

  #dify-support .demo-player-placeholder span {
    font-size: 10px;
  }

  #dify-support .demo-player-info h3 {
    font-size: 0.9rem;
  }

  #dify-support .demo-player-info p {
    font-size: 0.75rem;
  }

  #dify-support .demo-player-tag {
    font-size: 8px;
    padding: 2px 6px;
  }

  /* Services */
  #dify-support .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #dify-support .service-card {
    padding: 16px;
  }

  #dify-support .service-card h3 {
    font-size: 0.95rem;
  }

  #dify-support .service-card>p {
    font-size: 0.8rem;
  }

  #dify-support .service-features li {
    font-size: 0.75rem;
  }

  #dify-support .price-value {
    font-size: 1.25rem;
  }

  /* Version Compare */
  #dify-support .version-card {
    padding: 14px;
  }

  #dify-support .version-title h3 {
    font-size: 0.95rem;
  }

  #dify-support .version-features li {
    font-size: 0.75rem;
    padding: 6px 0;
  }

  #dify-support .version-target {
    font-size: 0.75rem;
    padding: 10px;
  }

  /* Enterprise Features */
  #dify-support .enterprise-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #dify-support .enterprise-feature-card {
    padding: 12px;
  }

  #dify-support .enterprise-feature-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  #dify-support .enterprise-feature-card h4 {
    font-size: 0.85rem;
  }

  #dify-support .enterprise-feature-card p {
    font-size: 0.7rem;
  }

  /* Process */
  #dify-support .process-timeline {
    gap: 20px;
  }

  #dify-support .step-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  #dify-support .step-number {
    font-size: 0.65rem;
  }

  #dify-support .process-step h4 {
    font-size: 0.85rem;
  }

  #dify-support .process-step p {
    font-size: 0.7rem;
  }

  /* FAQ */
  #dify-support .faq-question {
    padding: 12px;
    font-size: 0.8rem;
  }

  #dify-support .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
  }

  #dify-support .faq-answer-content {
    padding: 0 12px 12px;
    font-size: 0.75rem;
  }

  /* CTA */
  #dify-support .cta h2 {
    font-size: 1.2rem;
  }

  #dify-support .cta p {
    font-size: 0.8rem;
  }

  /* Pain Points */
  #dify-support .pain-grid {
    gap: 12px;
  }

  #dify-support .pain-card {
    padding: 14px;
  }

  #dify-support .pain-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  #dify-support .pain-card h3 {
    font-size: 0.9rem;
  }

  #dify-support .pain-card p {
    font-size: 0.75rem;
  }

  /* Why Dify */
  #dify-support .dify-features {
    gap: 16px;
  }

  #dify-support .dify-feature {
    padding: 14px;
  }

  #dify-support .dify-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  #dify-support .dify-feature h3 {
    font-size: 0.95rem;
  }

  #dify-support .dify-feature p {
    font-size: 0.75rem;
  }

  /* Demo */
  #dify-support .demo-list {
    max-height: 200px;
  }

  #dify-support .demo-list-item {
    padding: 8px;
  }

  #dify-support .demo-list-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  #dify-support .demo-list-category {
    font-size: 8px;
  }

  #dify-support .demo-list-title {
    font-size: 11px;
  }

  #dify-support .demo-player {
    padding: 10px;
  }

  #dify-support .demo-player-placeholder .play-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  #dify-support .demo-player-info h3 {
    font-size: 0.9rem;
  }

  #dify-support .demo-player-info p {
    font-size: 0.75rem;
  }

  #dify-support .demo-player-tag {
    font-size: 9px;
    padding: 2px 6px;
  }

  /* Why Us */
  #dify-support .why-us-content h2 {
    font-size: 1.2rem;
  }

  #dify-support .strength-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  #dify-support .strength-content h4 {
    font-size: 0.9rem;
  }

  #dify-support .strength-content p {
    font-size: 0.75rem;
  }

  /* Hero Card Workflow */
  #dify-support .workflow-visual {
    gap: 6px;
  }

  #dify-support .workflow-item {
    padding: 8px;
    gap: 8px;
  }

  #dify-support .workflow-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  #dify-support .workflow-title {
    font-size: 0.7rem;
  }

  #dify-support .workflow-desc {
    font-size: 0.6rem;
  }

  #dify-support .workflow-arrow {
    font-size: 0.8rem;
  }
}

/* ========================================
   ENHANCED RESPONSIVE FIXES FOR WORDPRESS
======================================== */

/* Base mobile-first improvements */
#dify-support * {
  box-sizing: border-box;
}

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

/* Prevent horizontal scroll */
#dify-support {
  overflow-x: hidden;
}

/* Better table/card handling on mobile */
#dify-support .services-grid,
#dify-support .pain-grid,
#dify-support .dify-features,
#dify-support .enterprise-features,
#dify-support .version-grid,
#dify-support .stats-grid {
  width: 100%;
}

/* Tablet Portrait (768px - 991px) - Additional fixes */
@media (max-width: 991px) and (min-width: 768px) {
  #dify-support .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #dify-support .enterprise-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #dify-support .version-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #dify-support .version-card {
    max-width: 100%;
  }
}

/* Mobile Landscape / Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  #dify-support .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  #dify-support .section-subtitle {
    font-size: 0.95rem;
  }

  #dify-support .services-grid {
    grid-template-columns: 1fr;
  }

  #dify-support .service-card {
    max-width: 100%;
  }

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

/* iPhone SE and very small screens (up to 375px) */
@media (max-width: 375px) {
  #dify-support .container {
    padding: 0 10px;
  }

  #dify-support .section-title {
    font-size: 1.1rem;
  }

  #dify-support .hero-banner h1 {
    font-size: 0.95rem;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.1rem;
  }

  #dify-support .dify-hero-2 p {
    font-size: 0.85rem;
  }

  #dify-support .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  #dify-support .stats-grid {
    gap: 12px;
  }

  #dify-support .stat-value {
    font-size: 1.25rem;
  }

  #dify-support .faq-question {
    font-size: 0.85rem;
    padding: 14px;
  }

  #dify-support .cta h2 {
    font-size: 1.2rem;
  }

  #dify-support .service-card,
  #dify-support .pain-card,
  #dify-support .version-card {
    padding: 14px;
  }

  #dify-support .service-card h3,
  #dify-support .pain-card h3 {
    font-size: 0.95rem;
  }

  #dify-support .service-features li,
  #dify-support .version-features li {
    font-size: 0.75rem;
  }

  #dify-support .price-value {
    font-size: 1.15rem;
  }
}

/* WordPress specific fixes */
#dify-support .entry-content,
#dify-support .post-content {
  max-width: 100%;
  padding: 0;
}

/* Ensure proper display in WordPress themes */
#dify-support section {
  width: 100%;
  max-width: 100vw;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
======================================== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  #dify-support .container {
    max-width: 1320px;
  }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  #dify-support .container {
    max-width: 1140px;
  }

  #dify-support .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
  #dify-support .container {
    max-width: 960px;
    padding: 0 24px;
  }

  #dify-support .section-title {
    font-size: 2rem;
  }

  #dify-support .hero-content {
    gap: 40px;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.75rem;
  }

  #dify-support .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #dify-support .enterprise-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #dify-support .version-grid {
    gap: 24px;
  }

  #dify-support .version-card {
    padding: 32px;
  }

  #dify-support .process-timeline {
    gap: 16px;
  }

  #dify-support .process-step {
    min-width: auto;
  }

  #dify-support .step-icon {
    width: 64px;
    height: 64px;
  }
}

/* Tablet Portrait - Version Grid Stack */
@media (max-width: 991px) {
  #dify-support .version-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  #dify-support .version-card {
    padding: 28px;
  }

  #dify-support .process-timeline {
    flex-direction: column;
    gap: 32px;
  }

  #dify-support .process-timeline::before {
    display: none;
  }

  #dify-support .process-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    max-width: 100%;
  }

  #dify-support .step-icon {
    flex-shrink: 0;
  }

  #dify-support .process-step-content {
    text-align: left;
  }
}

/* Mobile Devices - Better Scaling */
@media (max-width: 767px) {

  /* Base Typography */
  #dify-support .section-title {
    font-size: 1.4rem;
    line-height: 1.35;
    word-break: keep-all;
  }

  #dify-support .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Hero Section */
  #dify-support .hero-banner {
    min-height: 200px;
    padding: 40px 0;
  }

  #dify-support .hero-banner h1 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  #dify-support .hero-banner-meta {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  #dify-support .hero-banner-meta br {
    display: none;
  }

  #dify-support .hero-content {
    flex-direction: column;
    gap: 32px;
  }

  #dify-support .hero-text {
    text-align: center;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  #dify-support .dify-hero-2 h2 br {
    display: none;
  }

  #dify-support .dify-hero-2 p {
    font-size: 0.9rem;
  }

  /* Cards and Grids */
  #dify-support .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #dify-support .pain-card {
    padding: 20px;
  }

  #dify-support .pain-card h3 {
    font-size: 1rem;
  }

  #dify-support .pain-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  #dify-support .dify-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #dify-support .dify-feature {
    padding: 20px;
  }

  #dify-support .dify-feature h3 {
    font-size: 1.05rem;
  }

  #dify-support .dify-feature p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Services Section */
  #dify-support .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #dify-support .service-card {
    padding: 20px;
  }

  #dify-support .service-card h3 {
    font-size: 1.1rem;
  }

  #dify-support .service-card>p {
    font-size: 0.85rem;
  }

  #dify-support .service-features li {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  #dify-support .price-value {
    font-size: 1.4rem;
  }

  #dify-support .price-note {
    font-size: 0.75rem;
  }

  /* Version Comparison */
  #dify-support .version-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #dify-support .version-card {
    padding: 24px;
  }

  #dify-support .version-intro {
    font-size: 0.9rem;
  }

  #dify-support .version-intro br {
    display: none;
  }

  #dify-support .version-header {
    flex-wrap: wrap;
  }

  #dify-support .version-title h3 {
    font-size: 1.1rem;
  }

  #dify-support .version-features li {
    font-size: 0.85rem;
    padding: 10px 0;
  }

  #dify-support .version-target {
    font-size: 0.85rem;
    padding: 14px;
  }

  /* Enterprise Features */
  #dify-support .enterprise-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #dify-support .enterprise-feature-card {
    padding: 20px;
  }

  #dify-support .enterprise-feature-card h4 {
    font-size: 1rem;
  }

  #dify-support .enterprise-feature-card p {
    font-size: 0.85rem;
  }

  /* Process Timeline */
  #dify-support .process-timeline {
    flex-direction: column;
    gap: 24px;
  }

  #dify-support .process-step {
    flex-direction: column;
    text-align: center;
  }

  #dify-support .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  #dify-support .process-step h4 {
    font-size: 1rem;
  }

  #dify-support .process-step p {
    font-size: 0.85rem;
  }

  /* FAQ */
  #dify-support .faq-question {
    font-size: 0.9rem;
    padding: 18px;
  }

  #dify-support .faq-answer-content {
    font-size: 0.85rem;
    padding: 0 18px 18px;
  }

  /* CTA */
  #dify-support .cta h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  #dify-support .cta h2 br {
    display: none;
  }

  #dify-support .cta p {
    font-size: 0.9rem;
  }

  /* Stats */
  #dify-support .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #dify-support .stat-value {
    font-size: 1.6rem;
  }

  #dify-support .stat-label {
    font-size: 0.75rem;
  }

  /* Floating Badges */
  #dify-support .floating-badge {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  #dify-support .floating-badge-1 {
    top: -8px;
    right: 5px;
  }

  #dify-support .floating-badge-2 {
    bottom: -8px;
    left: 5px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  #dify-support .container {
    padding: 0 16px;
  }

  #dify-support .section-title {
    font-size: 1.25rem;
  }

  #dify-support .hero-banner h1 {
    font-size: 1.1rem;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.2rem;
  }

  #dify-support .dify-hero-2 p {
    font-size: 0.85rem;
  }

  #dify-support .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  #dify-support .pain-card,
  #dify-support .dify-feature,
  #dify-support .service-card,
  #dify-support .version-card,
  #dify-support .enterprise-feature-card {
    padding: 18px;
  }

  #dify-support .stats-grid {
    gap: 12px;
  }

  #dify-support .stat-value {
    font-size: 1.5rem;
  }

  #dify-support .stat-label {
    font-size: 0.7rem;
  }

  #dify-support .version-cta {
    padding: 20px;
  }

  #dify-support .version-cta p {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile (375px and below - iPhone SE) */
@media (max-width: 375px) {
  #dify-support .container {
    padding: 0 12px;
  }

  #dify-support .section-title {
    font-size: 1.15rem;
  }

  #dify-support .section-subtitle {
    font-size: 0.85rem;
  }

  #dify-support .hero-banner {
    min-height: 180px;
    padding: 32px 0;
  }

  #dify-support .hero-banner h1 {
    font-size: 1rem;
  }

  #dify-support .hero-banner-meta {
    font-size: 0.75rem;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1.1rem;
  }

  #dify-support .dify-hero-2 p {
    font-size: 0.8rem;
  }

  #dify-support .hero-card {
    padding: 16px;
  }

  #dify-support .hero-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  #dify-support .hero-card-title {
    font-size: 0.85rem;
  }

  #dify-support .workflow-item {
    padding: 10px;
    gap: 10px;
  }

  #dify-support .workflow-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  #dify-support .workflow-title {
    font-size: 0.75rem;
  }

  #dify-support .workflow-desc {
    font-size: 0.65rem;
  }

  #dify-support .pain-card,
  #dify-support .dify-feature,
  #dify-support .service-card,
  #dify-support .version-card,
  #dify-support .enterprise-feature-card {
    padding: 16px;
  }

  #dify-support .pain-icon,
  #dify-support .dify-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  #dify-support .pain-card h3,
  #dify-support .dify-feature h3 {
    font-size: 0.95rem;
  }

  #dify-support .pain-card p,
  #dify-support .dify-feature p {
    font-size: 0.8rem;
  }

  #dify-support .service-card h3 {
    font-size: 1rem;
  }

  #dify-support .service-features li {
    font-size: 0.8rem;
  }

  #dify-support .price-value {
    font-size: 1.25rem;
  }

  #dify-support .version-title h3 {
    font-size: 1rem;
  }

  #dify-support .version-features li {
    font-size: 0.8rem;
  }

  #dify-support .enterprise-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  #dify-support .enterprise-feature-card h4 {
    font-size: 0.9rem;
  }

  #dify-support .enterprise-feature-card p {
    font-size: 0.75rem;
  }

  #dify-support .step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  #dify-support .process-step h4 {
    font-size: 0.9rem;
  }

  #dify-support .process-step p {
    font-size: 0.75rem;
  }

  #dify-support .faq-question {
    font-size: 0.85rem;
    padding: 14px;
  }

  #dify-support .faq-answer-content {
    font-size: 0.8rem;
    padding: 0 14px 14px;
  }

  #dify-support .cta h2 {
    font-size: 1.2rem;
  }

  #dify-support .cta p {
    font-size: 0.85rem;
  }

  #dify-support .stat-value {
    font-size: 1.35rem;
  }

  #dify-support .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* Ultra Small Mobile (320px and below) */
@media (max-width: 320px) {
  #dify-support .container {
    padding: 0 10px;
  }

  #dify-support .section-title {
    font-size: 1.05rem;
  }

  #dify-support .section-subtitle {
    font-size: 0.8rem;
  }

  #dify-support .hero-banner h1 {
    font-size: 0.95rem;
  }

  #dify-support .dify-hero-2 h2 {
    font-size: 1rem;
  }

  #dify-support .dify-hero-2 p {
    font-size: 0.75rem;
  }

  #dify-support .pain-card,
  #dify-support .dify-feature,
  #dify-support .service-card,
  #dify-support .version-card,
  #dify-support .enterprise-feature-card {
    padding: 14px;
  }

  #dify-support .pain-card h3,
  #dify-support .dify-feature h3,
  #dify-support .service-card h3 {
    font-size: 0.9rem;
  }

  #dify-support .pain-card p,
  #dify-support .dify-feature p,
  #dify-support .service-card>p {
    font-size: 0.75rem;
  }

  #dify-support .stat-value {
    font-size: 1.2rem;
  }

  #dify-support .stat-label {
    font-size: 0.65rem;
  }

  #dify-support .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  #dify-support .floating-badge {
    display: none;
  }
}

/* Print Styles */
@media print {

  #dify-support .hero-wave,
  #dify-support .hero-particles,
  #dify-support .floating-badge,
  #dify-support .cta-wave {
    display: none !important;
  }

  #dify-support .hero-banner,
  #dify-support .cta {
    background: #f5f5f5 !important;
  }

  #dify-support * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}

#meet-ai {
  --primary: #FF1384;
  --primary-dark: #D91070;
  --primary-light: #FFE5F1;
  --primary-lighter: #FFF5FA;
  --primary-gradient: linear-gradient(135deg, #FF1384 0%, #FF5FA2 100%);
  --primary-glow: rgba(255, 19, 132, 0.25);
  --accent: #FF1384;
  --accent-light: #FFE5F1;
  --dark: #1A1A1A;
  --dark-soft: #2D2D2D;
  --gray-900: #1F1F1F;
  --gray-800: #2E2E2E;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #6B6B6B;
  --gray-400: #8A8A8A;
  --gray-300: #B0B0B0;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --text-primary: #1A1A1A;
  --text-secondary: #404040;
  --text-light: #6B6B6B;
  --bg-white: #FFFFFF;
  --bg-light: #FAFAFA;
  --border: #E5E5E5;
  --success: #22C55E;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-pink: 0 8px 30px rgba(255, 19, 132, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#meet-ai * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#meet-ai {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.8;
  background: var(--bg-white);
  scroll-behavior: smooth;
}

#meet-ai .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
#meet-ai .meet-ai-hero-2 {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--bg-white) 100%);
}

#meet-ai .meet-ai-hero-2 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#meet-ai .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-lighter);
  border: 1px solid var(--primary);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 28px;
}

#meet-ai .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

#meet-ai .hero-title .highlight {
  color: var(--primary);
}

#meet-ai .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.9;
}

#meet-ai .keyword-highlights {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

#meet-ai .keyword-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
}

#meet-ai .keyword-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

#meet-ai .keyword-item svg {
  width: 18px;
  height: 18px;
}

#meet-ai .hero-buttons {
  display: flex;
  gap: 16px;
}

#meet-ai .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

#meet-ai .btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-pink);
}

#meet-ai .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

#meet-ai .btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--gray-300);
}

#meet-ai .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

#meet-ai .hero-visual {
  position: relative;
}

#meet-ai .hero-video-wrapper {
  position: relative;
}

#meet-ai .hero-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  aspect-ratio: 16/9;
  background: var(--gray-100);
}

#meet-ai .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#meet-ai .hero-video-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* Time Saving Section */
#meet-ai .time-saving-section {
  padding: 60px 0;
  background: var(--dark);
}

#meet-ai .time-context-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 28px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

#meet-ai .time-context-box svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

#meet-ai .time-context-box span {
  color: white;
  font-size: 15px;
  font-weight: 500;
}

#meet-ai .time-saving-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

#meet-ai .time-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 48px;
  text-align: center;
  color: white;
  transition: var(--transition);
}

#meet-ai .time-card.old {}

#meet-ai .time-card.new {
  background: rgba(255, 19, 132, 0.1);
  border-color: var(--primary);
}

#meet-ai .time-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 8px;
}

#meet-ai .time-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

#meet-ai .time-card.new .time-value {
  color: var(--primary);
}

#meet-ai .time-note {
  font-size: 14px;
  opacity: 0.8;
}

#meet-ai .time-arrow {
  color: white;
  opacity: 0.5;
}

#meet-ai .time-arrow svg {
  width: 32px;
  height: 32px;
}

#meet-ai .time-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-pink);
}

/* Section Common */
#meet-ai .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

#meet-ai .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

#meet-ai .section-label-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-lighter);
  border: 1px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#meet-ai .section-label-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

#meet-ai .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: black;
}

#meet-ai .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Value Props Section */
#meet-ai .value-section {
  padding: 100px 0;
  background: var(--dark);
  color: white;
}

#meet-ai .value-section .section-label {
  color: var(--primary);
}

#meet-ai .value-section .section-label-icon {
  background: rgba(255, 19, 132, 0.15);
  border-color: var(--primary);
}

#meet-ai .value-section .section-label-icon svg {
  color: var(--primary);
}

#meet-ai .value-section .section-title {
  color: white;
}

#meet-ai .value-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#meet-ai .value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

#meet-ai .value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#meet-ai .value-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-5px);
}

#meet-ai .value-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

#meet-ai .value-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

#meet-ai .value-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

#meet-ai .value-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

#meet-ai .value-benefits {
  list-style: none;
}

#meet-ai .value-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#meet-ai .value-benefits li:last-child {
  border-bottom: none;
}

#meet-ai .value-benefits li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

#meet-ai .value-benefits li .benefit-text {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

#meet-ai .value-benefits li strong {
  color: white;
  min-width: 140px;
  flex-shrink: 0;
}

#meet-ai .value-benefits li .benefit-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Use Cases Section */
#meet-ai .usecases-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#meet-ai .usecase-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

#meet-ai .usecase-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

#meet-ai .usecase-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

#meet-ai .usecase-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

#meet-ai .usecase-tag.offline {
  background: var(--gray-100);
  color: var(--gray-600);
}

#meet-ai .usecase-tag.both {
  background: var(--primary-lighter);
  color: var(--primary);
}

#meet-ai .usecase-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

#meet-ai .usecase-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

#meet-ai .usecase-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

#meet-ai .usecase-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Video Section */
#meet-ai .video-section {
  padding: 100px 0;
  background: var(--gray-50);
}

#meet-ai .video-container {
  max-width: 900px;
  margin: 0 auto;
}

#meet-ai .video-wrapper {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}

#meet-ai .video-inner {
  background: var(--dark);
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

#meet-ai .video-play-btn {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-pink);
}

#meet-ai .video-play-btn:hover {
  transform: scale(1.1);
}

#meet-ai .video-play-btn svg {
  width: 40px;
  height: 40px;
  color: white;
  margin-left: 4px;
}

#meet-ai .video-text {
  position: absolute;
  bottom: 30px;
  background: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

/* Feature Demos Section */
#meet-ai .feature-demos-section {
  padding: 100px 0;
  background: var(--gray-50);
}

#meet-ai .feature-demos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

#meet-ai .feature-demo-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

#meet-ai .feature-demo-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

#meet-ai .feature-demo-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  z-index: 10;
}

#meet-ai .feature-demo-video {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark);
  overflow: hidden;
}

#meet-ai .feature-demo-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#meet-ai .feature-demo-content {
  padding: 24px;
}

#meet-ai .feature-demo-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

#meet-ai .feature-demo-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Trial Signup Modal */
#meet-ai .video-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#meet-ai .video-modal.active {
  display: flex;
}

#meet-ai .video-modal.subtle {
  background: rgba(26, 26, 26, 0.2);
  backdrop-filter: blur(2px);
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
}

#meet-ai .video-modal.subtle .modal-content {
  max-width: 360px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  border: 2px solid var(--primary);
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#meet-ai .modal-content {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
}

#meet-ai .modal-header {
  background: var(--primary);
  padding: 32px;
  text-align: center;
  color: white;
  position: relative;
}

#meet-ai .modal-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

#meet-ai .modal-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

#meet-ai .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

#meet-ai .modal-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

#meet-ai .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#meet-ai .modal-body {
  padding: 32px;
}

#meet-ai .form-group {
  margin-bottom: 20px;
}

#meet-ai .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

#meet-ai .form-label span {
  color: #EF4444;
}

#meet-ai .form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

#meet-ai .form-input:focus {
  outline: none;
  border-color: var(--primary);
}

#meet-ai .form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

#meet-ai .form-submit:hover {
  background: var(--primary-dark);
}

#meet-ai .form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Functions Section */
#meet-ai .functions-section {
  padding: 100px 0;
  background: var(--gray-50);
}

#meet-ai .functions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

#meet-ai .function-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#meet-ai .function-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

#meet-ai .function-card.featured {
  border-color: var(--primary);
  background: var(--primary-lighter);
}

#meet-ai .function-card.featured::before {
  content: 'Core';
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

#meet-ai .function-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#meet-ai .function-card.featured .function-icon {
  background: white;
}

#meet-ai .function-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

#meet-ai .function-card.featured .function-icon svg {
  color: var(--primary);
}

#meet-ai .function-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-light);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

#meet-ai .function-card.featured .function-number {
  color: rgba(255, 19, 132, 0.3);
}

#meet-ai .function-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

#meet-ai .function-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Workflow Section */
#meet-ai .workflow-section {
  padding: 100px 0;
  background: var(--bg-white);
}

#meet-ai .workflow-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

#meet-ai .workflow-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  border-radius: 2px;
}

#meet-ai .workflow-steps.five-steps .workflow-step {
  flex: 0 0 18%;
}

/* Workflow Comparison */
#meet-ai .workflow-comparison {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

#meet-ai .comparison-card {
  flex: 1;
  max-width: 380px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

#meet-ai .comparison-card.traditional {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

#meet-ai .comparison-card.meetai {
  background: var(--primary-lighter);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

#meet-ai .comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

#meet-ai .comparison-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#meet-ai .comparison-card.traditional .comparison-icon {
  background: var(--gray-200);
}

#meet-ai .comparison-card.traditional .comparison-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
}

#meet-ai .comparison-card.meetai .comparison-icon {
  background: white;
}

#meet-ai .comparison-card.meetai .comparison-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

#meet-ai .comparison-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#meet-ai .comparison-time {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

#meet-ai .comparison-time .time-number {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

#meet-ai .comparison-card.traditional .time-number {
  color: var(--gray-500);
}

#meet-ai .comparison-card.meetai .time-number {
  color: var(--primary);
}

#meet-ai .comparison-time .time-unit {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
}

#meet-ai .comparison-note {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

#meet-ai .comparison-list {
  list-style: none;
}

#meet-ai .comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#meet-ai .comparison-list li:last-child {
  border-bottom: none;
}

#meet-ai .comparison-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

#meet-ai .comparison-card.traditional .comparison-list li svg {
  color: var(--gray-400);
}

#meet-ai .comparison-card.meetai .comparison-list li svg {
  color: var(--primary);
}

#meet-ai .comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

#meet-ai .comparison-arrow svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

#meet-ai .workflow-steps-wrapper {
  margin-top: 20px;
}

#meet-ai .workflow-steps-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
}

#meet-ai .workflow-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

#meet-ai .step-icon {
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-pink);
  position: relative;
}

#meet-ai .step-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

#meet-ai .step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

#meet-ai .step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

#meet-ai .step-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Deployment Section */
#meet-ai .deployment-section {
  padding: 100px 0;
  background: var(--gray-50);
}

#meet-ai .deployment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 50px auto 0;
}

#meet-ai .deployment-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

#meet-ai .deployment-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

#meet-ai .deployment-card.recommended {
  border-color: var(--primary);
  position: relative;
}

#meet-ai .deployment-card.recommended::before {
  content: 'Phổ biến';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

#meet-ai .deployment-card.recommended.recommended-ja::before {
  content: '人気';
}

#meet-ai .deployment-card.recommended.recommended-en::before {
  content: 'Popular';
}

#meet-ai .deployment-header {
  text-align: center;
  margin-bottom: 24px;
}

#meet-ai .deployment-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

#meet-ai .deployment-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

#meet-ai .deployment-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

#meet-ai .deployment-desc {
  font-size: 0.95rem;
  color: var(--text-light);
}

#meet-ai .deployment-features {
  list-style: none;
  margin-top: 24px;
}

#meet-ai .deployment-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-100);
}

#meet-ai .deployment-features li:last-child {
  border-bottom: none;
}

#meet-ai .deployment-features li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Timeline Section */
#meet-ai .timeline-section {
  padding: 80px 0;
  background: var(--bg-white);
}

#meet-ai .timeline-header {
  text-align: center;
  margin-bottom: 50px;
}

#meet-ai .timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

#meet-ai .timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
}

#meet-ai .timeline-road {
  position: relative;
  padding: 40px 0;
}

#meet-ai .timeline-path {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-light) 100%);
  border-radius: 4px;
  transform: translateY(-50%);
}

#meet-ai .timeline-path::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, white 0px, white 20px, transparent 20px, transparent 40px);
  transform: translateY(-50%);
}

#meet-ai .timeline-milestones {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

#meet-ai .timeline-milestone {
  flex: 1;
  text-align: center;
}

#meet-ai .milestone-marker {
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

#meet-ai .milestone-marker:hover {
  transform: scale(1.1);
  background: var(--primary);
}

#meet-ai .milestone-marker:hover svg {
  color: white;
}

#meet-ai .milestone-marker svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: var(--transition);
}

#meet-ai .milestone-number {
  position: absolute;
  top: -12px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

#meet-ai .milestone-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

#meet-ai .milestone-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* FAQ Section */
#meet-ai .faq-section {
  padding: 100px 0;
  background: var(--gray-50);
}

#meet-ai .meet-ai-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

#meet-ai .faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: white;
}

#meet-ai .faq-item.active {
  border-color: var(--primary);
}

#meet-ai .faq-question {
  width: 100%;
  padding: 24px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  gap: 16px;
}

#meet-ai button.faq-question {
  color: black;
}

#meet-ai .faq-text {
  flex: 1;
}

#meet-ai .faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary-lighter);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

#meet-ai .faq-item.active .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

#meet-ai .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

#meet-ai .faq-item.active .faq-answer {
  max-height: 300px;
}

#meet-ai .faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
#meet-ai .cta-section {
  padding: 100px 0;
  background: var(--dark);
}

#meet-ai .cta-content {
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

#meet-ai .cta-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

#meet-ai .cta-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

#meet-ai .cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

#meet-ai .cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

#meet-ai .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

#meet-ai .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

#meet-ai .cta-btn-primary {
  background: var(--primary);
  color: white;
}

#meet-ai .cta-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

#meet-ai .cta-btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#meet-ai .cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  #meet-ai .meet-ai-hero-2 .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #meet-ai .hero-visual {
    order: -1;
  }

  #meet-ai .hero-content {
    text-align: center;
  }

  #meet-ai .hero-badge {
    justify-content: center;
  }

  #meet-ai .keyword-highlights {
    justify-content: center;
  }

  #meet-ai .hero-buttons {
    justify-content: center;
  }

  #meet-ai .time-saving-content {
    gap: 24px;
  }

  #meet-ai .time-context-box {
    padding: 10px 20px;
  }

  #meet-ai .time-context-box span {
    font-size: 14px;
  }

  #meet-ai .time-card {
    padding: 24px 32px;
  }

  #meet-ai .time-value {
    font-size: 2.5rem;
  }

  #meet-ai .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #meet-ai .value-card {
    padding: 28px;
  }

  #meet-ai .usecase-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #meet-ai .functions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #meet-ai .function-card.featured {
    padding-top: 52px;
  }

  #meet-ai .function-card.featured::before {
    top: 14px;
    left: 14px;
  }

  #meet-ai .function-number {
    font-size: 40px;
    top: 16px;
    right: 20px;
  }

  #meet-ai .feature-demos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  #meet-ai .deployment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #meet-ai .timeline-milestone {
    padding: 16px;
  }

  #meet-ai .milestone-marker {
    width: 56px;
    height: 56px;
  }

  #meet-ai .milestone-marker svg {
    width: 24px;
    height: 24px;
  }

  #meet-ai .milestone-title {
    font-size: 0.95rem;
  }

  #meet-ai .milestone-desc {
    font-size: 0.8rem;
  }

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

@media (max-width: 768px) {
  #meet-ai .container {
    padding: 0 16px;
  }

  /* Hero */
  #meet-ai .meet-ai-hero-2 {
    padding: 60px 0 60px;
  }

  #meet-ai .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  #meet-ai .hero-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  #meet-ai .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  #meet-ai .keyword-highlights {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }

  #meet-ai .keyword-item {
    font-size: 13px;
    padding: 10px 16px;
    justify-content: center;
  }

  #meet-ai .keyword-item svg {
    width: 16px;
    height: 16px;
  }

  #meet-ai .btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  #meet-ai .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  #meet-ai .hero-image-container {
    border-radius: 12px;
  }

  #meet-ai .hero-video-badge {
    font-size: 12px;
    padding: 8px 16px;
    bottom: -12px;
  }

  /* Time Saving */
  #meet-ai .time-saving-section {
    padding: 50px 0 70px;
  }

  #meet-ai .time-saving-content {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 30px;
  }

  #meet-ai .time-context-box {
    margin-bottom: 20px;
    padding: 10px 16px;
  }

  #meet-ai .time-context-box svg {
    width: 18px;
    height: 18px;
  }

  #meet-ai .time-context-box span {
    font-size: 13px;
  }

  #meet-ai .time-card {
    width: 100%;
    max-width: 300px;
    padding: 24px;
  }

  #meet-ai .time-label {
    font-size: 11px;
  }

  #meet-ai .time-value {
    font-size: 2.25rem;
  }

  #meet-ai .time-note {
    font-size: 13px;
  }

  #meet-ai .time-arrow {
    transform: rotate(90deg);
  }

  #meet-ai .time-arrow svg {
    width: 24px;
    height: 24px;
  }

  #meet-ai .time-badge {
    bottom: 0;
    font-size: 13px;
    padding: 10px 24px;
  }

  /* Sections Common */
  #meet-ai .section-header {
    margin-bottom: 32px;
    padding: 0 8px;
  }

  #meet-ai .section-label {
    font-size: 11px;
    gap: 8px;
  }

  #meet-ai .section-label-icon {
    width: 32px;
    height: 32px;
  }

  #meet-ai .section-label-icon svg {
    width: 16px;
    height: 16px;
  }

  #meet-ai .section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  #meet-ai .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Value Props */
  #meet-ai .value-section {
    padding: 60px 0;
  }

  #meet-ai .value-grid {
    gap: 16px;
    margin-top: 32px;
  }

  #meet-ai .value-card {
    padding: 24px;
    border-radius: 12px;
  }

  #meet-ai .value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 10px;
  }

  #meet-ai .value-icon svg {
    width: 26px;
    height: 26px;
  }

  #meet-ai .value-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  #meet-ai .value-desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  #meet-ai .value-benefits li {
    font-size: 13px;
    padding: 10px 0;
    gap: 10px;
    line-height: 1.5;
  }

  #meet-ai .value-benefits li svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  #meet-ai .value-benefits li strong {
    font-size: 13px;
  }

  /* Use Cases */
  #meet-ai .usecases-section {
    padding: 60px 0;
  }

  #meet-ai .usecase-cards {
    margin-top: 32px;
  }

  #meet-ai .usecase-card {
    padding: 24px;
    border-radius: 12px;
  }

  #meet-ai .usecase-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  #meet-ai .usecase-icon svg {
    width: 28px;
    height: 28px;
  }

  #meet-ai .usecase-title {
    font-size: 1.05rem;
  }

  #meet-ai .usecase-desc {
    font-size: 0.9rem;
  }

  #meet-ai .usecase-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  /* Functions */
  #meet-ai .functions-section {
    padding: 60px 0;
  }

  #meet-ai .functions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  #meet-ai .function-card {
    padding: 20px;
    border-radius: 12px;
  }

  #meet-ai .function-card.featured {
    padding-top: 50px;
  }

  #meet-ai .function-card.featured::before {
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 3px 10px;
  }

  #meet-ai .function-icon {
    width: 48px;
    height: 48px;
  }

  #meet-ai .function-icon svg {
    width: 24px;
    height: 24px;
  }

  #meet-ai .function-number {
    font-size: 11px;
    top: 12px;
    right: 16px;
  }

  #meet-ai .function-title {
    font-size: 1rem;
  }

  #meet-ai .function-desc {
    font-size: 0.875rem;
  }

  /* Feature Demos */
  #meet-ai .feature-demos-section {
    padding: 60px 0;
  }

  #meet-ai .feature-demos-grid {
    margin-top: 32px;
    gap: 16px;
  }

  #meet-ai .feature-demo-card {
    border-radius: 12px;
  }

  #meet-ai .feature-demo-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
    top: 12px;
    left: 12px;
  }

  #meet-ai .feature-demo-content {
    padding: 16px;
  }

  #meet-ai .feature-demo-title {
    font-size: 1rem;
  }

  #meet-ai .feature-demo-desc {
    font-size: 0.875rem;
  }

  /* Deployment */
  #meet-ai .deployment-section {
    padding: 60px 0;
  }

  #meet-ai .deployment-grid {
    margin-top: 32px;
  }

  #meet-ai .deployment-card {
    padding: 24px;
    border-radius: 12px;
  }

  #meet-ai .deployment-card.recommended::before {
    font-size: 11px;
    padding: 5px 16px;
  }

  #meet-ai .deployment-icon {
    width: 56px;
    height: 56px;
  }

  #meet-ai .deployment-icon svg {
    width: 26px;
    height: 26px;
  }

  #meet-ai .deployment-title {
    font-size: 1.1rem;
  }

  #meet-ai .deployment-desc {
    font-size: 0.9rem;
  }

  #meet-ai .deployment-features li {
    font-size: 13px;
    padding: 10px 0;
  }

  #meet-ai .deployment-features li svg {
    width: 18px;
    height: 18px;
  }

  /* Timeline */
  #meet-ai .timeline-section {
    padding: 60px 0;
  }

  #meet-ai .timeline-header {
    margin-bottom: 32px;
  }

  #meet-ai .timeline-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
    gap: 10px;
  }

  #meet-ai .timeline-badge svg {
    width: 20px;
    height: 20px;
  }

  #meet-ai .timeline-title {
    font-size: 1.25rem;
  }

  #meet-ai .timeline-road {
    padding: 20px 0;
  }

  #meet-ai .timeline-path {
    display: none;
  }

  #meet-ai .timeline-milestones {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  #meet-ai .timeline-milestone {
    flex: none;
    width: 100%;
    max-width: 320px;
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
  }

  #meet-ai .milestone-marker {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  #meet-ai .milestone-marker svg {
    width: 24px;
    height: 24px;
  }

  #meet-ai .milestone-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: -10px;
    right: -6px;
  }

  #meet-ai .milestone-title {
    font-size: 1rem;
  }

  #meet-ai .milestone-desc {
    font-size: 0.85rem;
  }

  /* FAQ */
  #meet-ai .faq-section {
    padding: 60px 0;
  }

  #meet-ai .faq-question {
    padding: 18px;
    font-size: 0.95rem;
    gap: 12px;
  }

  #meet-ai .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 18px;
  }

  #meet-ai .faq-answer-content {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }

  /* CTA */
  #meet-ai .cta-section {
    padding: 60px 0;
  }

  #meet-ai .cta-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  #meet-ai .cta-icon svg {
    width: 32px;
    height: 32px;
  }

  #meet-ai .cta-title {
    font-size: 1.5rem;
  }

  #meet-ai .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  #meet-ai .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  #meet-ai .cta-btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  /* Modal */
  #meet-ai .modal-content {
    border-radius: 12px;
  }

  #meet-ai .modal-header {
    padding: 24px;
  }

  #meet-ai .modal-icon {
    width: 56px;
    height: 56px;
  }

  #meet-ai .modal-icon svg {
    width: 28px;
    height: 28px;
  }

  #meet-ai .modal-title {
    font-size: 1.25rem;
  }

  #meet-ai .modal-subtitle {
    font-size: 0.9rem;
  }

  #meet-ai .modal-body {
    padding: 20px;
  }

  #meet-ai .form-label {
    font-size: 13px;
  }

  #meet-ai .form-input {
    padding: 12px;
    font-size: 14px;
  }

  #meet-ai .form-submit {
    padding: 14px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #meet-ai .container {
    padding: 0 12px;
    max-width: 100%;
  }

  /* Hero */
  #meet-ai .meet-ai-hero-2 {
    padding: 90px 0 50px;
  }

  #meet-ai .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  #meet-ai .hero-badge svg {
    width: 14px;
    height: 14px;
  }

  #meet-ai .hero-title {
    font-size: 1.5rem;
  }

  #meet-ai .hero-subtitle {
    font-size: 0.875rem;
  }

  #meet-ai .keyword-item {
    font-size: 12px;
    padding: 8px 14px;
  }

  #meet-ai .keyword-item svg {
    width: 14px;
    height: 14px;
  }

  /* Time Saving */
  #meet-ai .time-card {
    max-width: 280px;
    padding: 20px;
  }

  #meet-ai .time-value {
    font-size: 2rem;
  }

  #meet-ai .time-badge {
    font-size: 12px;
    padding: 8px 20px;
  }

  /* Sections */
  #meet-ai .section-title {
    font-size: 1.35rem;
  }

  #meet-ai .section-subtitle {
    font-size: 0.875rem;
  }

  /* Value Props */
  #meet-ai .value-card {
    padding: 20px;
  }

  #meet-ai .value-icon {
    width: 48px;
    height: 48px;
  }

  #meet-ai .value-icon svg {
    width: 22px;
    height: 22px;
  }

  #meet-ai .value-title {
    font-size: 1.05rem;
  }

  #meet-ai .value-desc {
    font-size: 0.85rem;
  }

  #meet-ai .value-benefits li {
    font-size: 12px;
    padding: 8px 0;
  }

  #meet-ai .value-benefits li svg {
    width: 14px;
    height: 14px;
  }

  #meet-ai .value-benefits li .benefit-text {
    flex-direction: column;
    gap: 2px;
  }

  #meet-ai .value-benefits li strong {
    min-width: auto;
  }

  /* Functions */
  #meet-ai .function-card.featured {
    padding-top: 45px;
  }

  #meet-ai .function-card.featured::before {
    font-size: 9px;
    padding: 2px 8px;
  }

  #meet-ai .function-number {
    font-size: 28px;
  }

  /* Timeline */
  #meet-ai .timeline-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  #meet-ai .timeline-title {
    font-size: 1.15rem;
  }

  #meet-ai .timeline-milestone {
    max-width: 100%;
    padding: 16px;
  }

  #meet-ai .milestone-marker {
    width: 52px;
    height: 52px;
  }

  #meet-ai .milestone-marker svg {
    width: 22px;
    height: 22px;
  }

  #meet-ai .milestone-title {
    font-size: 0.9rem;
  }

  #meet-ai .milestone-desc {
    font-size: 0.75rem;
  }

  /* CTA */
  #meet-ai .cta-title {
    font-size: 1.35rem;
  }

  #meet-ai .cta-subtitle {
    font-size: 0.875rem;
  }

  /* FAQ */
  #meet-ai .faq-section {
    padding: 50px 0;
  }

  #meet-ai .faq-question {
    padding: 16px;
    font-size: 0.9rem;
    gap: 10px;
    white-space: normal;
  }

  #meet-ai .faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 16px;
  }

  #meet-ai .faq-answer-content {
    padding: 0 16px 16px;
    font-size: 0.85rem;
  }

  #meet-ai .faq-item.active .faq-answer {
    max-height: 400px;
  }
}

@media (max-width: 375px) {
  #meet-ai .hero-title {
    font-size: 1.35rem;
  }

  #meet-ai .hero-subtitle {
    font-size: 0.8rem;
  }

  #meet-ai .time-value {
    font-size: 1.75rem;
  }

  #meet-ai .section-title {
    font-size: 1.25rem;
  }

  #meet-ai .value-title {
    font-size: 1rem;
  }

  #meet-ai .cta-title {
    font-size: 1.25rem;
  }
}