/* ===== INFLU8R GLOBAL STYLES ===== */
/* Brand: Clean white/light gray backgrounds, #4285F4 blue accent, #1a1f36 dark text */
/* Typography: Inter, bold uppercase section labels, large display headings */

:root {
  --blue: #2563EB;
  --blue-dark: #1D4FD8;
  --blue-light: #DBEAFE;
  --blue-bg: #EFF6FF;
  --blue-50: #EFF6FF;
  --dark: #0F172A;
  --dark2: #1E293B;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --gray-border: #E2E8F0;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --pink: #EC4899;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.text-blue { color: var(--blue); }
.text-pink { color: var(--pink); }
.white { color: #fff !important; }

.tag-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tag-dash {
  width: 32px;
  height: 3px;
  background: var(--blue);
  display: block;
}
.tag-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blue);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  text-decoration: none;
  color: var(--dark2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--blue); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.cta-link {
  background: var(--blue);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
}
.cta-link:hover { background: var(--blue-dark); }
.cta-link::after { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
  padding-top: 72px;
}
.hero-bg-kanji {
  position: absolute;
  right: -40px;
  bottom: -20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(200px, 25vw, 400px);
  font-weight: 900;
  color: var(--gray-border);
  opacity: 0.5;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.hero-geo {
  position: absolute;
  border-radius: 6px;
  pointer-events: none;
  z-index: 0;
}
.geo-1 {
  top: 40px;
  right: 60px;
  width: 180px;
  height: 180px;
  background: var(--blue-bg);
  opacity: 0.8;
}
.geo-2 {
  top: 60px;
  right: 30px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--blue-light);
  opacity: 0.6;
}
.geo-3 {
  bottom: 100px;
  left: 60px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gray-border);
  border-radius: 50%;
  opacity: 0.3;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.hero-meta span {
  font-size: 13px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-meta i { color: var(--blue); font-size: 12px; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Hero Card */
.hero-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-inner { position: relative; }
.pulse-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.stat-cluster {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mini-stat {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.mini-stat:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.mini-stat.accent {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.mini-stat.accent .mini-stat-label { color: rgba(255,255,255,0.8); }
.mini-stat-prefix {
  font-size: 1.2rem;
  font-weight: 800;
}
.mini-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.mini-stat-sym {
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 2px;
}
.mini-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--blue);
  border-radius: 4px;
  animation: scroll-bounce 2s ease infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-white { background: var(--bg-white); }
.section-light { background: var(--bg-light); }

.section-header {
  margin-bottom: 60px;
}
.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.section-header-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 400px;
  line-height: 1.7;
}
.section-header-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 8px;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse .col-text { order: 1; }
.two-col.reverse .col-visual { order: 2; }

.check-list { margin-top: 28px; }
.check-list-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--dark2);
}
.check-item i {
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
}

/* Feature List */
.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}
.feature-item strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== PILLAR CARDS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.pillar-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.pillar-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: var(--transition);
}
.pillar-card:hover .pillar-top-bar { opacity: 1; }
.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 20px;
}
.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
}
.pillar-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pillar-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  text-transform: uppercase;
}

/* ===== SERVICE VISUALS ===== */
.service-visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* Incubation Visual */
.sv-incubation {
  background: url('/static/images/incubation.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-frame {
  width: 75%;
  height: 80%;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  position: relative;
}
.sv-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.25;
}
.sv-frame::after {
  content: '\f19d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #fff;
}
.sv-badge-blue {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue);
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.2);
}
.sv-badge-blue strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
}
.sv-badge-blue span {
  font-size: 11px;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* TikTok Visual */
.sv-tiktok {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.sv-phone {
  width: 200px;
  height: 360px;
  background: var(--bg-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 3px solid #333;
}
.sv-phone-screen {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sv-phone-header {
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sv-phone-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 4px;
}
.sv-phone-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
}
.sv-phone-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.sv-bar {
  height: 10px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 5px;
  animation: bar-grow 2s ease-in-out infinite alternate;
}
@keyframes bar-grow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Live Commerce Visual */
.sv-live {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-live-screen {
  width: 80%;
  height: 75%;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  position: relative;
}
.sv-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E53E3E;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.sv-live-viewers {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sv-live-comments {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-comment {
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  width: fit-content;
  animation: comment-slide 3s ease infinite;
}
.sv-comment:nth-child(2) { animation-delay: 1s; }
.sv-comment:nth-child(3) { animation-delay: 2s; }
@keyframes comment-slide {
  0% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* ===== TECH DASHBOARD ===== */
.tech-dashboard {
  background: var(--bg-white);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.tech-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.tech-badge {
  background: var(--dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tech-chart-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.tech-chart {
  width: 100%;
  aspect-ratio: 5/2;
  margin-bottom: 24px;
}
.chart-svg { width: 100%; height: 100%; }
.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 2s ease-out forwards;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
.tech-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tech-metric { text-align: center; }
.tech-metric-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 4px;
}
.tech-metric-value {
  font-size: 1.6rem;
  font-weight: 900;
}

/* ===== GLOBAL PRESENCE ===== */
.global-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.global-card {
  transition: var(--transition);
}
.global-card:hover { transform: translateY(-6px); }
.global-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.global-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gi-la {
  background: url('/static/images/la-city.jpg') center/cover no-repeat;
}
.gi-london {
  background: url('/static/images/london-city.jpg') center/cover no-repeat;
}
.gi-shenzhen {
  background: url('/static/images/shenzhen-city.jpg') center/cover no-repeat;
}
.gi-hanoi {
  background: url('/static/images/hanoi-office.jpg') center/cover no-repeat;
}
.global-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.global-kanji {
  position: absolute;
  top: 16px;
  left: 16px;
  writing-mode: vertical-rl;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 3px;
}
.global-info { padding: 0 4px; }
.global-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}
.global-city {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 4px 0 6px;
}
.global-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}
.global-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== RESULTS ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.result-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.result-card:hover { box-shadow: var(--shadow); }
.result-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.bar-blue { background: var(--blue); }
.bar-dark { background: var(--dark); }
.result-card-blue {
  background: var(--blue);
  border-color: var(--blue);
}
.result-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.result-prefix {
  font-size: 2rem;
  font-weight: 800;
}
.result-sym {
  font-size: 1.8rem;
  font-weight: 700;
}
.result-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 14px;
}
.result-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 3px solid var(--gray-border);
}
.result-card-blue .result-label { color: rgba(255,255,255,0.8); }
.result-card-blue .result-desc { color: rgba(255,255,255,0.85); border-left-color: rgba(255,255,255,0.3); }

/* Testimonial */
.testimonial {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-border);
  position: relative;
  overflow: hidden;
}
.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}
.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  max-width: 900px;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-line {
  width: 40px;
  height: 2px;
  background: var(--gray-border);
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray);
}
.testimonial-kanji {
  position: absolute;
  right: 40px;
  bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: var(--gray-border);
  opacity: 0.5;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ===== CASE STUDIES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.case-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-img {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.ci-beauty { background: url('/static/images/beauty-case.jpg') center/cover no-repeat; }
.ci-retail { background: url('/static/images/retail-case.jpg') center/cover no-repeat; }
.ci-live { background: url('/static/images/live-case.jpg') center/cover no-repeat; }
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.05));
}

.case-body { padding: 24px; }
.case-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}
.case-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.case-stat {
  margin-bottom: 16px;
}
.case-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.case-stat-label {
  font-size: 13px;
  color: var(--gray);
}
.case-body p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== WHY PARTNER ===== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}
.why-left { position: relative; }
.why-bg-kanji {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 140px;
  font-weight: 900;
  color: var(--gray-border);
  line-height: 1;
  margin-top: 24px;
  pointer-events: none;
  opacity: 0.45;
  user-select: none;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--blue-light);
  border-radius: 8px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.why-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.why-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
}
.why-card-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-options {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-option {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.contact-option:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-option h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-option p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 10px;
}
.link-arrow {
  text-decoration: none;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.link-arrow:hover { gap: 10px; }

/* Contact Map */
.contact-map {
  width: 100%;
  aspect-ratio: 5/3;
  position: relative;
}
.map-bg {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  position: relative;
  overflow: hidden;
  /* Simplified world map SVG background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 300'%3E%3Cpath d='M50,100 Q70,70 100,80 L140,90 Q165,95 180,110 L190,130 Q195,150 180,170 L150,190 Q120,200 90,190 L70,170 Q50,140 50,100Z' fill='%23DBEAFE' fill-opacity='0.6'/%3E%3Cpath d='M220,55 Q250,45 275,65 L300,85 Q320,105 325,130 L320,155 Q305,175 280,170 L255,155 Q235,135 230,110 L225,80 Q220,65 220,55Z' fill='%23E2E8F0' fill-opacity='0.7'/%3E%3Cpath d='M340,60 Q370,40 400,65 L420,90 Q440,115 445,145 L440,175 Q425,195 400,185 L375,170 Q355,150 350,125 L345,95 Q340,75 340,60Z' fill='%23DBEAFE' fill-opacity='0.5'/%3E%3Cpath d='M370,170 Q390,165 400,180 L405,200 Q400,215 385,220 L370,215 Q360,205 365,190 Z' fill='%23DBEAFE' fill-opacity='0.5'/%3E%3Cpath d='M250,170 Q270,175 280,195 L285,220 Q282,245 265,255 L245,250 Q225,235 230,210 L240,185 Q245,175 250,170Z' fill='%23E2E8F0' fill-opacity='0.5'/%3E%3Ccircle cx='90' cy='130' r='4' fill='%232563EB'/%3E%3Ccircle cx='260' cy='100' r='4' fill='%232563EB'/%3E%3Ccircle cx='395' cy='120' r='4' fill='%232563EB'/%3E%3Ccircle cx='385' cy='185' r='4' fill='%232563EB'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.map-dot {
  position: absolute;
  z-index: 2;
}
.map-dot span {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.map-dot::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(66,133,244,0.4);
}
.map-pulse {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
  opacity: 0.5;
}
.dot-la { top: 45%; left: 15%; }
.dot-london { top: 35%; left: 47%; }
.dot-shenzhen { top: 50%; left: 80%; }
.dot-hanoi { top: 58%; left: 75%; }
.map-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--gray-border);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-tagline {
  font-size: 13px;
  color: var(--gray-light);
}
.footer-center span, .footer-right span {
  font-size: 13px;
  color: var(--gray-light);
}

/* ===== ABOUT ILLUSTRATION ===== */
.about-illustration {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-circle {
  width: 70%;
  height: 70%;
  border: 2px solid var(--gray-border);
  border-radius: 50%;
  position: relative;
}
.about-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed var(--blue-light);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  animation: float 4s ease-in-out infinite;
}
.fi-1 { top: 5%; left: 50%; animation-delay: 0s; }
.fi-2 { top: 25%; right: 5%; animation-delay: 0.5s; }
.fi-3 { top: 60%; right: 0%; animation-delay: 1s; }
.fi-4 { bottom: 5%; left: 45%; animation-delay: 1.5s; }
.fi-5 { top: 55%; left: 0%; animation-delay: 2s; }
.fi-6 { top: 15%; left: 5%; animation-delay: 2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-badge {
  position: absolute;
  bottom: 10%;
  right: 10%;
  background: var(--blue);
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
}
.about-badge strong { display: block; font-size: 1.5rem; font-weight: 900; }
.about-badge span { font-size: 11px; letter-spacing: 1.5px; opacity: 0.9; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

/* ===== ACTIVE NAV LINK ===== */
.nav-link.active {
  color: var(--blue);
}
.nav-link.active::after {
  width: 100%;
}

/* ===== SECTION KANJI DECORATIONS ===== */
.section-kanji {
  position: absolute;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
  color: var(--dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .global-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  
  .hero-grid,
  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col.reverse .col-text { order: 0; }
  .two-col.reverse .col-visual { order: 1; }
  
  .pillars-grid { grid-template-columns: 1fr; }
  .global-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .why-bg-kanji { font-size: 80px; }
  
  .hero-title { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .section-header-split { flex-direction: column; }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-left { flex-direction: column; }
  
  .testimonial { padding: 28px; }
  .testimonial-kanji { font-size: 60px; }
  
  .hero-bg-kanji { font-size: 120px; right: -20px; }
  .hero-visual { order: -1; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-meta { flex-direction: column; gap: 8px; }
  .btn { width: 100%; justify-content: center; }
  .result-number { font-size: 2.8rem; }
  .global-grid { grid-template-columns: 1fr; }
}
