/* ===========================
   HAKUSO - Style Sheet
   Full design with shapes & animations
   =========================== */

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

:root {
  --primary: #6C3CE1;
  --primary-hover: #5a2ec0;
  --secondary: #00C9A7;
  --neutral: #C4C8CC;
  --dark: #1A1A2E;
  --dark-gray: #2D2D44;
  --light-gray: #f4f5f7;
  --white: #FFFFFF;
  --accent-warm: #FF6B35;
  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'Space Grotesk', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --windowHeight: 100vh;
}

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

[id] {
  scroll-margin-top: 64px;
}

body {
  font-family: var(--font-ja);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  opacity: 0.7;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

/* ===========================
   LOADING OVERLAY
   =========================== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-logo-img {
  height: 50px;
  width: auto;
}

.loading-bar {
  width: 120px;
  height: 2px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-inner {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  animation: loadingProgress 1.2s ease-out forwards;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes loadingProgress {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  opacity: 1;
}

/* --- Accessibility: Focus States --- */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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

/* ===========================
   GLOBAL DECORATIVE SHAPES
   =========================== */
.global-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.global-shape {
  position: absolute;
  opacity: 0;
  animation: globalShapeFadeIn 2s ease-out forwards;
}

.global-shape-1 {
  width: 1100px;
  height: 1100px;
  top: -200px;
  left: -350px;
  animation-delay: 0.5s;
}

.global-shape-2 {
  width: 700px;
  height: 700px;
  top: 40%;
  right: -250px;
  animation-delay: 1s;
}

.global-shape-3 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: 10%;
  animation-delay: 1.5s;
}

.global-shape-4 {
  width: 350px;
  height: 350px;
  top: 60%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes globalShapeFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Logo Image --- */
.logo-img {
  height: 38px;
  width: auto;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--ease-out-expo), box-shadow var(--transition);
}

.header.hide {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 48px;
  gap: 14px;
}

.header-logo {
  flex-shrink: 0;
}

.header-top-links {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 12px;
  font-weight: 500;
  margin-right: auto;
}

.header-top-links a {
  position: relative;
  padding: 4px 0;
}

.header-top-links > :not(:first-child)::before {
  content: '\30FB';
  color: var(--neutral);
  margin: 0 10px;
  font-size: 12px;
}

.header-top-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.header-top-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.header-top-links a:hover::after {
  width: 100%;
}

.header-trust-badge {
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.header-trust-badge i {
  font-size: 11px;
}

.util-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
}

.util-cta:hover {
  background: var(--primary-hover, #5a2ec0);
  color: #fff !important;
  opacity: 1;
  transform: translateY(-1px);
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
}

.util-link {
  padding: 4px 8px;
  border-radius: 4px;
  border: none;
  font-size: 11px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #555;
}

.util-link i {
  font-size: 12px;
}

.util-link:hover {
  opacity: 1;
  color: var(--primary);
}

/* Search button */
.header-search {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  transition: all var(--transition);
  background: var(--light-gray);
}

.header-search:hover {
  background: var(--dark);
  color: var(--white);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,26,46,0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out-expo);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  overflow-y: auto;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; max-width: 720px; padding: 0 24px 60px; }
.search-overlay-close {
  position: absolute; top: 28px; right: 32px;
  font-size: 40px; color: rgba(255,255,255,0.6); cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.search-overlay-close:hover { color: #fff; }
.search-box {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 20px 24px;
  transition: border-color 0.3s;
}
.search-box:focus-within { border-color: var(--primary); }
.search-box i { color: rgba(255,255,255,0.4); font-size: 20px; flex-shrink: 0; }
.search-box input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 18px; color: #fff; font-family: inherit;
}
.search-box input::placeholder { color: rgba(255,255,255,0.35); }
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.search-tag {
  padding: 6px 14px; border-radius: 20px; font-size: 13px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  cursor: pointer; transition: all 0.2s; border: 1px solid transparent;
}
.search-tag:hover, .search-tag.active {
  background: rgba(108,60,225,0.25); color: #fff;
  border-color: rgba(108,60,225,0.4);
}
.search-results { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.search-results-count { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 4px; padding-left: 4px; grid-column: 1 / -1; }
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s var(--ease-out-expo);
  cursor: pointer; text-decoration: none;
}
.search-result-item:hover {
  background: rgba(108,60,225,0.15);
  border-color: rgba(108,60,225,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,60,225,0.15);
}
.search-result-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; font-weight: 700;
}
.search-result-body { flex: 1; min-width: 0; }
.search-result-top { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.search-result-name { font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-industry {
  font-size: 10px; padding: 2px 8px; border-radius: 20px;
  color: rgba(255,255,255,0.9); white-space: nowrap; font-weight: 600;
}
.search-result-industry[data-ind="医療"] { background: rgba(34,197,94,0.35); }
.search-result-industry[data-ind="介護"] { background: rgba(34,197,94,0.25); }
.search-result-industry[data-ind="飲食"] { background: rgba(249,115,22,0.35); }
.search-result-industry[data-ind="不動産"] { background: rgba(59,130,246,0.35); }
.search-result-industry[data-ind="ファッション"] { background: rgba(236,72,153,0.35); }
.search-result-industry[data-ind="IT"] { background: rgba(99,102,241,0.35); }
.search-result-industry[data-ind="美容"] { background: rgba(244,114,182,0.35); }
.search-result-industry[data-ind="建設"] { background: rgba(161,161,170,0.35); }
.search-result-industry[data-ind="教育"] { background: rgba(250,204,21,0.3); }
.search-result-industry[data-ind="イベント"] { background: rgba(168,85,247,0.35); }
.search-result-industry[data-ind="旅行"] { background: rgba(6,182,212,0.35); }
.search-result-industry[data-ind="スポーツ"],
.search-result-industry[data-ind="フィットネス"] { background: rgba(239,68,68,0.3); }
.search-result-industry[data-ind="ウェディング"] { background: rgba(251,191,36,0.3); }
.search-result-industry[data-ind="NPO"] { background: rgba(34,197,94,0.25); }
.search-result-industry[data-ind="デザイン"],
.search-result-industry[data-ind="コンサル"] { background: rgba(108,60,225,0.3); }
.search-result-industry[data-ind="ツール"] { background: rgba(0,201,167,0.3); }
.search-result-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-arrow { color: rgba(255,255,255,0.2); font-size: 14px; flex-shrink: 0; transition: all 0.25s; }
.search-result-item:hover .search-result-arrow { color: var(--secondary); transform: translateX(3px); }
.search-no-results { text-align: center; padding: 48px 20px; color: rgba(255,255,255,0.4); font-size: 15px; grid-column: 1 / -1; }
@media (max-width: 768px) {
  .search-overlay { padding-top: 60px; }
  .search-box { padding: 16px 18px; }
  .search-box input { font-size: 16px; }
  .search-overlay-close { top: 16px; right: 20px; font-size: 32px; }
  .search-results { grid-template-columns: 1fr; }
  .search-result-item { padding: 14px 14px; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 12px 7px;
  z-index: 1100;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 1px;
}

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

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

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

/* Main Navigation */
.main-nav {
  background: var(--white);
  border-top: 1px solid #eee;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-trigger {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
  box-sizing: border-box;
}

a.nav-trigger {
  text-decoration: none;
  color: inherit;
}

.nav-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 3px 3px 0 0;
}

.nav-item:hover .nav-trigger,
.nav-item.active .nav-trigger {
  color: var(--primary);
}

.nav-item:hover .nav-trigger::after,
.nav-item.active .nav-trigger::after {
  width: 60%;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  min-width: 600px;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out-expo);
  z-index: 999;
}

.nav-item:hover .mega-menu,
.nav-item.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 30px;
}

.mega-col-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  padding-bottom: 6px;
  margin-bottom: 2px;
  border-bottom: 2px solid var(--primary);
}
.mega-col a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: #555;
  position: relative;
  transition: all var(--transition);
}

.mega-col a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.mega-col a:hover {
  color: var(--primary);
  opacity: 1;
  padding-left: 8px;
}

.mega-col a:hover::before {
  opacity: 1;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-content {
  padding: 20px 25px 40px;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-nav-header .logo-img {
  height: 45px;
}

.mobile-close {
  font-size: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.mobile-close:hover {
  background: var(--light-gray);
}

.mobile-nav-section {
  border-bottom: 1px solid #eee;
}

.mobile-nav-direct {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid #eee;
  transition: color var(--transition);
}
.mobile-nav-direct:hover { color: var(--primary); }

.mobile-nav-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
}

.mobile-nav-trigger i {
  font-size: 12px;
  transition: transform var(--transition);
}

.mobile-nav-trigger.active i {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s ease;
  padding: 0 0 0 16px;
}

.mobile-sub-menu.active {
  max-height: 600px;
  padding: 0 0 16px 16px;
}

.mobile-sub-menu a {
  display: flex;
  padding: 10px 0;
  font-size: 13px;
  color: #666;
  min-height: 44px;
  align-items: center;
}

.mobile-nav-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.mobile-nav-utility a {
  padding: 8px 16px;
  border: 1px solid var(--neutral);
  border-radius: 20px;
  font-size: 12px;
}

.mobile-nav-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mobile-nav-lang a {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  background: var(--light-gray);
}

.mobile-nav-lang a.active {
  background: var(--dark);
  color: var(--white);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a1a12;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 26, 18, 0.3) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0) 60%,
    rgba(10, 26, 18, 0.5) 100%
  );
  z-index: 1;
}

/* Hero CSS-generated background (forest green atmospheric) */
.hero-bg-generated {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a1a12 0%, #102e1c 25%, #1a4a2e 50%, #0d2818 75%, #0a1a12 100%);
  animation: heroImgZoom 20s ease-in-out infinite alternate;
}

.hero-bg-generated::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(34,120,80,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(180,220,190,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(100,180,130,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(200,230,210,0.06) 0%, transparent 35%);
  animation: heroMeshShift 20s ease-in-out infinite alternate;
}

.hero-bg-generated::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180,220,190,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,220,190,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

@keyframes heroMeshShift {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(2deg); }
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroImgZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Hero Gradient Overlay */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(34,120,80,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 40%, rgba(180,220,190,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 90%, rgba(10,26,18,0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Decorative Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
}

.hero-shape-ring-1 {
  width: 900px;
  height: 900px;
  top: -15%;
  left: -15%;
  opacity: 0;
  transform: scale(0.8);
  animation: heroShapeEnter 1.5s var(--ease-out-expo) 0.2s forwards, heroRingRotate 80s linear 1.7s infinite, heroRingFloat 10s ease-in-out 1.7s infinite;
}

.hero-shape-ring-2 {
  width: 550px;
  height: 550px;
  bottom: -10%;
  right: -5%;
  opacity: 0;
  transform: scale(0.8);
  animation: heroShapeEnter 1.5s var(--ease-out-expo) 0.5s forwards, heroRingRotateReverse 60s linear 2.0s infinite, heroRingFloat2 12s ease-in-out 2.0s infinite;
}

.hero-shape-ring-3 {
  width: 400px;
  height: 400px;
  top: 15%;
  right: 20%;
  opacity: 0;
  transform: scale(0.8);
  animation: heroShapeEnter 1.5s var(--ease-out-expo) 0.8s forwards, heroRingRotate 70s linear 2.3s infinite, heroRingFloat3 14s ease-in-out 2.3s infinite;
}

.hero-shape-ring-4 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 8%;
  opacity: 0;
  transform: scale(0.8);
  animation: heroShapeEnter 1.5s var(--ease-out-expo) 1.1s forwards, heroRingRotateReverse 65s linear 2.6s infinite;
}

@keyframes heroShapeEnter {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroRingRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroRingRotateReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes heroRingFloat {
  0%, 100% { top: -15%; left: -10%; }
  50% { top: -12%; left: -8%; }
}

@keyframes heroRingFloat2 {
  0%, 100% { bottom: -10%; right: -5%; }
  50% { bottom: -7%; right: -3%; }
}

@keyframes heroRingFloat3 {
  0%, 100% { top: 20%; right: 15%; }
  50% { top: 22%; right: 17%; }
}

/* Hero Floating Dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: heroDotFloat 6s ease-in-out infinite;
}

.hero-dot-1 {
  width: 6px;
  height: 6px;
  background: rgba(34, 120, 80, 0.6);
  top: 25%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.hero-dot-2 {
  width: 4px;
  height: 4px;
  background: rgba(180, 220, 190, 0.5);
  top: 35%;
  right: 20%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.hero-dot-3 {
  width: 8px;
  height: 8px;
  background: rgba(200, 230, 210, 0.3);
  bottom: 30%;
  left: 25%;
  animation-delay: 2s;
  animation-duration: 9s;
}

.hero-dot-4 {
  width: 5px;
  height: 5px;
  background: rgba(100, 180, 130, 0.4);
  top: 60%;
  right: 30%;
  animation-delay: 0.5s;
  animation-duration: 6s;
}

.hero-dot-5 {
  width: 3px;
  height: 3px;
  background: rgba(34, 120, 80, 0.4);
  top: 15%;
  right: 40%;
  animation-delay: 3s;
  animation-duration: 10s;
}

.hero-dot-6 {
  width: 7px;
  height: 7px;
  background: rgba(180, 220, 190, 0.3);
  bottom: 20%;
  right: 10%;
  animation-delay: 1.5s;
  animation-duration: 8s;
}

.hero-dot-7 {
  width: 5px;
  height: 5px;
  background: rgba(200, 230, 210, 0.5);
  top: 45%;
  left: 10%;
  animation-delay: 2s;
  animation-duration: 9s;
}

.hero-dot-8 {
  width: 4px;
  height: 4px;
  background: rgba(34, 120, 80, 0.35);
  bottom: 40%;
  left: 35%;
  animation-delay: 3.5s;
  animation-duration: 7s;
}

@keyframes heroDotFloat {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }
  20% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(1);
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }
}

/* Hero two-column layout container */
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  padding: 0 5%;
  gap: 40px;
  z-index: 5;
}

.hero-content {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 1 520px;
  min-width: 0;
}

/* 3D Elephant statue (right side) */
.hero-statue {
  position: relative;
  flex: 0 1 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* === Decorative frame around the statue === */
.hero-statue-frame {
  position: absolute;
  inset: 4% 4%;
  z-index: 4;
  pointer-events: none;
  animation: heroStatueEnter 1.5s var(--ease-out-expo) 0.7s both;
}

/* Corner brackets — L-shaped accents at each corner */
.frame-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(180,220,190,0.5);
  border-style: solid;
  border-width: 0;
  transition: border-color 0.4s ease;
}
.frame-tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 4px; }
.frame-tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 4px; }
.frame-bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 4px; }
.frame-br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 4px; }

/* Connecting lines between corners — dashed for elegance */
.frame-line {
  position: absolute;
  background: none;
}
.frame-line-top {
  top: 0; left: 36px; right: 36px; height: 0;
  border-top: 1px dashed rgba(180,220,190,0.18);
}
.frame-line-bottom {
  bottom: 0; left: 36px; right: 36px; height: 0;
  border-top: 1px dashed rgba(180,220,190,0.18);
}
.frame-line-left {
  left: 0; top: 36px; bottom: 36px; width: 0;
  border-left: 1px dashed rgba(180,220,190,0.18);
}
.frame-line-right {
  right: 0; top: 36px; bottom: 36px; width: 0;
  border-left: 1px dashed rgba(180,220,190,0.18);
}

/* Accent ring — thin rotating border behind the elephant */
.frame-accent-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(100,180,130,0.15);
  animation: frameRingSpin 30s linear infinite;
}
.frame-accent-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(180,220,190,0.6);
  box-shadow: 0 0 10px rgba(180,220,190,0.4);
  transform: translateX(-50%);
}
.frame-accent-ring::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(34,120,80,0.6);
  box-shadow: 0 0 8px rgba(34,120,80,0.3);
  transform: translateX(-50%);
}

@keyframes frameRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- Float wrapper: handles the up/down bob so it won't conflict with JS 3D tilt --- */
.hero-statue-float-wrap {
  position: relative;
  z-index: 2;
  animation: heroStatueEnter 1.5s var(--ease-out-expo) 0.5s both;
}

/* --- Image: blend-mode removes dark bg, mask softens edges --- */
.hero-statue-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  filter: hue-rotate(160deg) saturate(0.5) brightness(1.2) contrast(1.1) drop-shadow(0 10px 40px rgba(34,120,80,0.3));
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 50% 48%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 85% at 50% 48%, #000 50%, transparent 100%);
  display: block;
}

/* --- Layered glow: deep green aura behind statue --- */
.hero-statue-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

/* Inner bright glow */
.hero-statue-glow::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  background: radial-gradient(ellipse, rgba(100,180,130,0.2) 0%, rgba(34,120,80,0.08) 50%, transparent 80%);
  border-radius: 50%;
  animation: heroStatuePulse 4s ease-in-out infinite alternate;
}

/* Outer ambient ring */
.hero-statue-glow::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse, transparent 40%, rgba(34,120,80,0.06) 60%, transparent 80%);
  border: 1px solid rgba(180,220,190,0.06);
  animation: heroRingExpand 6s ease-in-out infinite alternate;
}

/* --- Animated orbiting particles around statue (CSS only) --- */
.hero-statue::before,
.hero-statue::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

/* Orbiting dot 1 */
.hero-statue::before {
  width: 8px;
  height: 8px;
  background: rgba(180,220,190,0.6);
  box-shadow: 0 0 12px rgba(180,220,190,0.4), 0 0 24px rgba(180,220,190,0.15);
  top: 50%;
  left: 50%;
  animation: heroOrbit1 8s linear infinite;
}

/* Orbiting dot 2 */
.hero-statue::after {
  width: 5px;
  height: 5px;
  background: rgba(34,120,80,0.7);
  box-shadow: 0 0 10px rgba(34,120,80,0.3), 0 0 20px rgba(34,120,80,0.1);
  top: 50%;
  left: 50%;
  animation: heroOrbit2 12s linear infinite reverse;
}

/* --- Floor reflection (subtle mirror) --- */
.hero-statue-float-wrap + .hero-statue-glow + .hero-statue-reflection {
  display: block;
}

@keyframes heroStatueEnter {
  from { opacity: 0; transform: translateY(40px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroStatuePulse {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.08); }
}

@keyframes heroRingExpand {
  0% { transform: scale(0.92); opacity: 0.3; }
  100% { transform: scale(1.05); opacity: 0.7; }
}

/* --- Floor reflection under statue --- */
.hero-statue-reflection {
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 80%;
  height: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 70%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.hero-statue-reflection-img {
  width: 100%;
  height: auto;
  transform: scaleY(-1);
  filter: hue-rotate(160deg) saturate(0.3) brightness(1.0) contrast(1.1) blur(4px);
  mix-blend-mode: screen;
}

/* Orbit around center of statue */
@keyframes heroOrbit1 {
  0%   { transform: translate(-50%,-50%) rotate(0deg)   translateX(160px) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg) translateX(160px) rotate(-360deg); }
}

@keyframes heroOrbit2 {
  0%   { transform: translate(-50%,-50%) rotate(0deg)   translateX(200px) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg) translateX(200px) rotate(-360deg); }
}

/* Smaller orbits for tablets */
@keyframes heroOrbit1sm {
  0%   { transform: translate(-50%,-50%) rotate(0deg)   translateX(120px) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes heroOrbit2sm {
  0%   { transform: translate(-50%,-50%) rotate(0deg)   translateX(150px) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg) translateX(150px) rotate(-360deg); }
}

.hero-title-group {
  opacity: 0;
  animation: heroTitleIn 1.2s var(--ease-out-expo) 0.3s forwards;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Hero label (small tag above title) */
.hero-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(180,220,190,0.8);
  padding: 6px 16px;
  border: 1px solid rgba(180,220,190,0.25);
  border-radius: 100px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: heroDateIn 0.8s var(--ease-out-expo) 0.2s forwards;
}

/* Hero CTA buttons */
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  opacity: 0;
  animation: heroDateIn 1s var(--ease-out-expo) 1.5s forwards;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #227850, #1a5c3c);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(34,120,80,0.3);
}
.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,120,80,0.45);
  background: linear-gradient(135deg, #2a8d5e, #1e6b44);
}
.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 500;
  color: rgba(200,230,210,0.9);
  border: 1px solid rgba(180,220,190,0.3);
  border-radius: 8px;
  text-decoration: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.hero-cta-outline:hover {
  border-color: rgba(180,220,190,0.6);
  background: rgba(180,220,190,0.08);
  transform: translateY(-2px);
}

/* Hero sidebar (left vertical bar, inspired by Artoo) */
.hero-sidebar {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: heroDateIn 1s var(--ease-out-expo) 1.8s forwards;
}
.hero-sidebar-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(180,220,190,0.3), transparent);
}
.hero-sidebar-social {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-sidebar-social a {
  color: rgba(200,230,210,0.6);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hero-sidebar-social a:hover {
  color: rgba(200,230,210,1);
  transform: scale(1.15);
}

/* Hero bottom info bar (inspired by Artoo) */
.hero-bottom-bar {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 36px;
  background: rgba(10,26,18,0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(180,220,190,0.1);
  border-radius: 12px;
  opacity: 0;
  animation: heroDateIn 1s var(--ease-out-expo) 2s forwards;
}
.hero-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 0 28px;
}
.hero-bottom-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(180,220,190,0.5);
  text-transform: uppercase;
}
.hero-bottom-value {
  font-family: var(--font-ja);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.hero-bottom-divider {
  width: 1px;
  height: 36px;
  background: rgba(180,220,190,0.15);
  flex-shrink: 0;
}

.hero-title-img {
  width: clamp(250px, 40vw, 500px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.hero-date-img {
  width: clamp(200px, 35vw, 450px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
  opacity: 0;
  animation: heroDateIn 1s var(--ease-out-expo) 0.8s forwards;
}

/* Hero text-based title (for studio site) */
.hero-title-text {
  font-family: var(--font-en);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle-text {
  font-family: var(--font-en);
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  color: rgba(180,220,190,0.7);
  letter-spacing: 0.2em;
  line-height: 1;
  opacity: 0;
  animation: heroDateIn 1s var(--ease-out-expo) 0.8s forwards;
}

.hero-tagline {
  font-family: var(--font-ja);
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 8px;
  opacity: 0;
  animation: heroDateIn 1s var(--ease-out-expo) 1.2s forwards;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 40px;
  left: auto;
  transform: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroScrollIn 0.8s ease-out 2.2s forwards;
}

.scroll-svg {
  width: 12px;
  height: auto;
  opacity: 0.9;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(180,220,190,0.7), rgba(180,220,190,0));
  animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0.6;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

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

/* ===========================
   KV BANNERS
   =========================== */
.kv-banners {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding: 0 30px;
}

.kv-banners-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kv-banner-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.kv-banner-item:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.kv-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.kv-banner-item:hover .kv-banner-img {
  transform: scale(1.03);
}

/* KV Banner CSS Cards (photo + overlay + text) */
.kv-banner-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.kv-banner-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.kv-banner-item:hover .kv-banner-card-bg {
  transform: scale(1.06);
}

.kv-banner-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.15) 100%);
  transition: background 0.4s ease;
}

.kv-banner-item:hover .kv-banner-card-overlay {
  background: linear-gradient(to top, rgba(108,60,225,0.7) 0%, rgba(108,60,225,0.15) 100%);
}

.kv-banner-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.kv-banner-card-title {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.kv-banner-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* News card CSS gradient thumbnails */
.news-card-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-card-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
  pointer-events: none;
}
.news-card-gradient::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,255,255,0.04) 25%, transparent 50%);
  animation: shimmer 8s linear infinite;
  pointer-events: none;
}
@keyframes shimmer { to { transform: rotate(360deg); } }

.news-card-gradient svg {
  width: 32px;
  height: 32px;
  opacity: 0.4;
}

.news-card-gradient:nth-child(1) { background: linear-gradient(135deg, #6C3CE1, #00C9A7); }

.news-carousel .news-card:nth-child(7n+1) .news-card-gradient { background: linear-gradient(135deg, #6C3CE1, #00C9A7); }
.news-carousel .news-card:nth-child(7n+2) .news-card-gradient { background: linear-gradient(135deg, #00C9A7, #FF6B35); }
.news-carousel .news-card:nth-child(7n+3) .news-card-gradient { background: linear-gradient(135deg, #2D2D44, #6C3CE1); }
.news-carousel .news-card:nth-child(7n+4) .news-card-gradient { background: linear-gradient(135deg, #FF6B35, #6C3CE1); }
.news-carousel .news-card:nth-child(7n+5) .news-card-gradient { background: linear-gradient(135deg, #1A1A2E, #00C9A7); }
.news-carousel .news-card:nth-child(7n+6) .news-card-gradient { background: linear-gradient(135deg, #6C3CE1, #2D2D44); }
.news-carousel .news-card:nth-child(7n+7) .news-card-gradient { background: linear-gradient(135deg, #00C9A7, #1A1A2E); }

/* Inline SVG logo */
.logo-svg {
  height: 38px;
  width: auto;
  display: block;
}

.logo-svg-footer {
  height: 44px;
  width: auto;
  display: block;
  color: var(--white);
}

/* Scroll text (CSS-only replacement for SVG) */
.scroll-text {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(180,220,190,0.7);
  writing-mode: vertical-lr;
}

/* Philosophy banner (CSS gradient block) */
.philosophy-banner {
  width: 100%;
  padding: 60px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1A1A2E 0%, #6C3CE1 50%, #00C9A7 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.philosophy-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.philosophy-title {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.philosophy-text {
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.85;
  max-width: 600px;
  position: relative;
}

/* ===========================
   SECTION COMMON
   =========================== */
.section-topics,
.section-press {
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-press {
  background: linear-gradient(180deg, #fff 0%, #f5f3ff 30%, #f0fdfa 70%, #fff 100%);
}

.section-topics {
  padding-top: 90px;
  background: linear-gradient(180deg, #fff 0%, #faf8ff 50%, #fff 100%);
}

/* ===========================
   SECTION DECORATIVE SHAPES
   =========================== */
.section-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.deco-shape {
  position: absolute;
  will-change: transform;
}

/* Topics decorations */
.deco-topics-circle-1 {
  width: 800px;
  height: 800px;
  left: -300px;
  top: -100px;
  animation: decoFloat1 20s ease-in-out infinite;
}

.deco-topics-circle-2 {
  width: 600px;
  height: 600px;
  right: -200px;
  top: 20%;
  animation: decoFloat2 25s ease-in-out infinite;
}

.deco-topics-circle-3 {
  width: 400px;
  height: 400px;
  left: 20%;
  bottom: -150px;
  animation: decoFloat3 18s ease-in-out infinite;
}

/* Press decorations */
.deco-press-circle-1 {
  width: 700px;
  height: 700px;
  right: -250px;
  top: -50px;
  animation: decoFloat2 22s ease-in-out infinite;
}

.deco-press-circle-2 {
  width: 500px;
  height: 500px;
  left: -200px;
  bottom: -100px;
  animation: decoFloat1 18s ease-in-out infinite;
}

/* Links decorations */
.deco-links-circle-1 {
  width: 900px;
  height: 900px;
  left: -400px;
  top: -200px;
  animation: decoFloat3 24s ease-in-out infinite;
}

.deco-links-circle-2 {
  width: 400px;
  height: 400px;
  right: -100px;
  bottom: -50px;
  animation: decoFloat1 16s ease-in-out infinite;
}

/* Floating accent dots */
.deco-dot {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.deco-dot-red-1 {
  width: 10px;
  height: 10px;
  background: var(--primary);
  opacity: 0.12;
  top: 15%;
  right: 10%;
  animation: decoDotFloat 8s ease-in-out infinite;
}

.deco-dot-blue-1 {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  opacity: 0.1;
  bottom: 25%;
  left: 8%;
  animation: decoDotFloat 10s ease-in-out infinite 1s;
}

.deco-dot-gray-1 {
  width: 14px;
  height: 14px;
  background: var(--neutral);
  opacity: 0.15;
  top: 50%;
  right: 20%;
  animation: decoDotFloat 12s ease-in-out infinite 2s;
}

.deco-dot-red-2 {
  width: 12px;
  height: 12px;
  background: var(--primary);
  opacity: 0.1;
  top: 20%;
  left: 12%;
  animation: decoDotFloat 9s ease-in-out infinite 0.5s;
}

.deco-dot-blue-2 {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  opacity: 0.12;
  bottom: 15%;
  right: 15%;
  animation: decoDotFloat 7s ease-in-out infinite 1.5s;
}

.deco-dot-gray-2 {
  width: 16px;
  height: 16px;
  background: var(--neutral);
  opacity: 0.12;
  top: 30%;
  left: 5%;
  animation: decoDotFloat 11s ease-in-out infinite;
}

.deco-dot-red-3 {
  width: 8px;
  height: 8px;
  background: var(--primary);
  opacity: 0.08;
  bottom: 10%;
  right: 25%;
  animation: decoDotFloat 8s ease-in-out infinite 3s;
}

@keyframes decoFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -10px) rotate(2deg); }
  50% { transform: translate(-5px, 15px) rotate(-1deg); }
  75% { transform: translate(10px, 5px) rotate(1deg); }
}

@keyframes decoFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-12px, 8px) rotate(-2deg); }
  66% { transform: translate(8px, -12px) rotate(1.5deg); }
}

@keyframes decoFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -8px); }
}

@keyframes decoDotFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: inherit;
  }
  50% {
    transform: translateY(-12px) scale(1.2);
  }
}

/* Section Header */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-en {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1;
  position: relative;
}

.title-en::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width 0.8s var(--ease-out-expo);
}

.section-header.animated .title-en::after,
.section-header-left.animated .title-en::after {
  width: 60px;
}

.title-ja {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.section-header-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.section-link:hover {
  opacity: 1;
  gap: 10px;
}

.section-link i {
  font-size: 10px;
  transition: transform var(--transition);
}

.section-link:hover i {
  transform: translateX(3px);
}

/* ===========================
   NEWS CARD CAROUSEL (Horizontal Scrolling)
   =========================== */
.news-carousel-wrap {
  position: relative;
  z-index: 1;
}

/* Full-width carousel (breaks out of container) */
.news-carousel-wrap.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}

.news-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0 20px;
}

/* Full-width carousel has edge padding so first/last cards have gutter */
.full-width .news-carousel {
  padding-left: 40px;
  padding-right: 60px;
  gap: 28px;
}

/* Cloned cards for infinite loop should be visible immediately */
.news-carousel .news-card.is-clone {
  opacity: 1 !important;
  transform: none !important;
}

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

.news-carousel .news-card {
  flex: 0 0 240px;
  min-width: 240px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  border: none;
}

/* Bigger cards in full-width carousels */
.full-width .news-carousel .news-card {
  flex: 0 0 360px;
  min-width: 360px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-carousel .news-card:hover {
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.news-carousel .news-card-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

/* Taller images in full-width */
.full-width .news-carousel .news-card-thumb {
  height: 220px;
}

.news-carousel .news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.news-carousel .news-card:hover .news-card-thumb img {
  transform: scale(1.08);
}

.news-carousel .news-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.full-width .news-carousel .news-card-body {
  padding: 20px 24px 24px;
  gap: 10px;
}

.news-carousel .news-card .news-date {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.full-width .news-carousel .news-card .news-date {
  font-size: 14px;
}

.news-carousel .news-card .news-cat {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 3px;
  background: var(--primary);
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.03em;
  display: inline-block;
  width: fit-content;
}

.full-width .news-carousel .news-card .news-cat {
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 4px;
}

.news-carousel .news-card .news-cat.cat-press {
  background: var(--secondary);
}

.news-carousel .news-card .news-title {
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.full-width .news-carousel .news-card .news-title {
  font-size: 15px;
  line-height: 1.7;
}

.news-carousel .news-card:hover .news-title {
  color: var(--primary);
}

.news-carousel .news-card-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
}

.full-width .news-carousel .news-card-img {
  height: 220px;
}

.news-carousel .news-card-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 3px;
  background: var(--primary);
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.03em;
  display: inline-block;
  width: fit-content;
}

.full-width .news-carousel .news-card-tag {
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 4px;
}

.full-width .news-carousel .news-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.full-width .news-carousel .news-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

.news-carousel .news-card-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.news-carousel .news-card:hover .news-card-title {
  color: var(--primary);
}

.news-carousel .news-card-text {
  font-size: 11px;
  line-height: 1.5;
  color: #737373;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Carousel navigation arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  z-index: 5;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.carousel-nav:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-prev {
  left: -20px;
}

.carousel-nav-next {
  right: -20px;
}

.full-width .carousel-nav-next {
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.full-width .carousel-nav-prev {
  left: 20px;
  width: 48px;
  height: 48px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Section header with left layout (header + buttons stacked left) */
.section-header-left {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.section-header-left .section-title-block {
  flex-shrink: 0;
  min-width: 200px;
}

.section-header-left .section-header-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.section-header-left .news-carousel-wrap {
  flex: 1;
  min-width: 0;
}

/* Legacy news list (kept for fallback) */
.news-list {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 15px;
  border-bottom: 1px solid #e5e5e5;
  transition: all var(--transition);
  position: relative;
}

.news-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.news-item:hover {
  opacity: 1;
  padding-left: 20px;
  background-color: rgba(108, 60, 225, 0.03);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}

.news-date {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.02em;
}

.news-cat {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 3px;
  background: var(--primary);
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.news-cat.cat-press {
  background: var(--secondary);
}

.news-title {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
  flex: 1;
  transition: color var(--transition);
}

.news-item:hover .news-title {
  color: var(--primary);
}

/* ===========================
   LINKS SECTION
   =========================== */
.section-links-area {
  padding: 60px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.links-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  position: relative;
  z-index: 1;
}

.link-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dark);
  transition: color var(--transition);
  white-space: nowrap;
  padding: 4px 0;
}

.link-inline-item:hover {
  opacity: 1;
  color: var(--primary);
}

.link-inline-item i {
  font-size: 10px;
  color: var(--secondary);
}

.link-logo {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
}

/* ===========================
   BANNER SECTION (CYCLE + BIE)
   =========================== */
.section-banners {
  padding: 60px 0;
  background: var(--light-gray);
}

.banner-item-wrap {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 12px;
}

.banner-full-img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.6s var(--ease-out-expo);
}

.banner-item-wrap a:hover {
  opacity: 1;
}

.banner-item-wrap a:hover .banner-full-img {
  transform: scale(1.02);
}

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

.bie-logo {
  flex-shrink: 0;
}

.bie-img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 10px;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.bie-logo a:hover .bie-img {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.bie-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.bie-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.bie-link:hover {
  opacity: 1;
  color: var(--primary);
  gap: 10px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: linear-gradient(160deg, #143d28 0%, #1a5035 50%, #1f6040 100%);
  color: var(--white);
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}

.footer .footer-inner {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.footer.visible .footer-inner {
  opacity: 1;
  transform: translateY(0);
}

.footer .footer-deco-circle {
  transform: scale(0.7);
  transition: transform 1.2s var(--ease-out-expo);
}

.footer.visible .footer-deco-circle {
  transform: scale(1);
}

/* Footer decorative shapes - large colored circles */
.footer-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.footer-deco-circle {
  position: absolute;
  border-radius: 50%;
}

/* Large bright green glow circle - right side */
.footer-deco-circle-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(60, 180, 120, 0.5) 0%, rgba(60, 180, 120, 0.2) 60%, transparent 80%);
  top: -150px;
  right: -180px;
  animation: footerFloat1 8s ease-in-out infinite;
}

/* Deep teal-green circle - left bottom */
.footer-deco-circle-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(20, 80, 55, 0.8) 0%, rgba(20, 80, 55, 0.3) 60%, transparent 80%);
  bottom: -150px;
  left: -120px;
  animation: footerFloat2 10s ease-in-out infinite;
}

/* Medium mint-green circle - bottom center-right */
.footer-deco-circle-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(120, 200, 150, 0.4) 0%, rgba(120, 200, 150, 0.12) 60%, transparent 80%);
  bottom: -100px;
  right: 15%;
  animation: footerFloat3 7s ease-in-out infinite;
}

/* Small bright accent circle - mid-left */
.footer-deco-circle-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(200, 235, 210, 0.35) 0%, rgba(200, 235, 210, 0.08) 60%, transparent 80%);
  top: 35%;
  left: 15%;
  animation: footerFloat4 9s ease-in-out infinite;
}

/* Footer deco circle floating animations */
@keyframes footerFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.05); }
}
@keyframes footerFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -20px) scale(1.03); }
}
@keyframes footerFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10px, -15px) scale(1.06); }
}
@keyframes footerFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, 10px) scale(1.04); }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Footer page-top (scroll up) button area */
.footer-pagetop {
  text-align: right;
  padding: 0 30px 20px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(200, 235, 210, 0.3);
  position: relative;
  z-index: 1;
}

.footer-logo-img {
  height: 44px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-logo-link {
  display: inline-block;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 235, 210, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.4s var(--ease-out-expo);
}

.social-icon:hover {
  opacity: 1;
  background: rgba(180, 220, 190, 0.9);
  color: #0a1a12;
  border-color: rgba(180, 220, 190, 0.9);
  transform: translateY(-3px);
}

/* Footer Main Nav - 6 columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.footer-nav-col h3 {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.footer-nav-col .footer-nav-col-ja {
  font-family: var(--font-ja);
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 14px;
  display: block;
}

.footer-nav-col h3::after {
  display: none;
}

.footer-nav-col a {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  padding: 3px 0;
  transition: all var(--transition);
  line-height: 1.5;
}

.footer-nav-col a:hover {
  opacity: 1;
  color: rgba(180, 220, 190, 1);
  padding-left: 5px;
}

/* Footer nav column staggered reveal */
.footer.visible .footer-nav-col {
  animation: footerColReveal 0.6s var(--ease-out-expo) both;
}
.footer.visible .footer-nav-col:nth-child(1) { animation-delay: 0.1s; }
.footer.visible .footer-nav-col:nth-child(2) { animation-delay: 0.18s; }
.footer.visible .footer-nav-col:nth-child(3) { animation-delay: 0.26s; }
.footer.visible .footer-nav-col:nth-child(4) { animation-delay: 0.34s; }
.footer.visible .footer-nav-col:nth-child(5) { animation-delay: 0.42s; }
.footer.visible .footer-nav-col:nth-child(6) { animation-delay: 0.5s; }

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

/* Footer contract section */
.footer-nav-contract {
  padding: 20px 0;
  border-top: 1px solid rgba(200, 235, 210, 0.3);
  position: relative;
  z-index: 1;
}

.footer-nav-contract .footer-nav-col h3 {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
}

.footer-contract-links {
  display: flex;
  gap: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 235, 210, 0.3);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.footer-bottom-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom-left a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-left a:hover {
  opacity: 1;
  color: var(--white);
}

.copyright {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-en);
  letter-spacing: 0.02em;
  padding: 10px 0 20px;
  position: relative;
  z-index: 1;
}

/* ===========================
   PAGE TOP BUTTON
   =========================== */
.page-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark-gray);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 60, 225, 0.35);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

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

@media (max-width: 1280px) {
  .header-top-links {
    display: none;
  }

  .nav-trigger {
    padding: 14px 16px;
    font-size: 13px;
  }

  .mega-menu {
    min-width: 500px;
  }

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

  .links-inline {
    gap: 8px 16px;
  }

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

@media (max-width: 1024px) {
  .header-utility {
    display: none;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    position: relative;
    height: 50px;
  }

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

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

  .footer-contract-links {
    flex-direction: column;
    gap: 0;
  }

  .links-inline {
    gap: 6px 14px;
  }

  .global-shapes {
    display: none;
  }

  .hero-layout {
    padding: 0 4%;
    gap: 24px;
  }
  .hero-content {
    flex: 0 1 440px;
  }
  .hero-statue {
    flex: 0 1 440px;
  }
  .hero-statue-img {
    max-width: 440px;
  }
  .hero-statue-frame { inset: 6% 6%; }
  .frame-corner { width: 28px; height: 28px; }
  .frame-line-top, .frame-line-bottom { left: 28px; right: 28px; }
  .frame-line-left, .frame-line-right { top: 28px; bottom: 28px; }
  .hero-statue::before { animation-name: heroOrbit1sm; }
  .hero-statue::after  { animation-name: heroOrbit2sm; }
  .hero-sidebar {
    left: 24px;
  }
  .hero-bottom-bar {
    padding: 14px 24px;
  }
  .hero-bottom-item {
    padding: 0 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
    padding-bottom: 20px;
  }

  .hero-layout {
    flex-direction: column;
    padding: 100px 24px 20px;
    gap: 20px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    flex: none;
    width: 100%;
  }

  .hero-title-group {
    align-items: center;
  }

  .hero-tagline br { display: none; }

  /* HAKUSO title with small elephant icon next to it */
  .hero-title-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .hero-title-text::after {
    content: '';
    display: inline-block;
    width: 55px;
    height: 55px;
    background: url(../images/hero-statue.jpg) center / contain no-repeat;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Hide full elephant on mobile */
  .hero-statue {
    display: none !important;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-cta-btn,
  .hero-cta-outline {
    justify-content: center;
    width: 100%;
  }

  .hero-sidebar { display: none; }
  .hero-scroll { display: none; }

  /* Bottom bar below CTA buttons */
  .hero-content { order: 1; }
  .hero-bottom-bar { order: 2; }

  .hero-bottom-bar {
    position: static;
    transform: none;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    flex-direction: row;
    justify-content: center;
    padding: 14px 16px;
    gap: 0;
    border-radius: 12px;
    z-index: 2;
  }
  .hero-bottom-item {
    padding: 6px 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    flex: 1 1 0;
    min-width: 0;
  }
  .hero-bottom-value {
    white-space: normal;
    font-size: 11px;
    line-height: 1.4;
  }
  .hero-bottom-divider {
    width: 1px;
    height: 28px;
  }

  .hero-title-img {
    width: clamp(200px, 60vw, 350px);
  }

  .hero-date-img {
    width: clamp(180px, 55vw, 320px);
  }

  .hero-shape-ring-1 {
    width: 500px;
    height: 500px;
  }

  .hero-shape-ring-2 {
    width: 350px;
    height: 350px;
  }

  .hero-shape-ring-3 {
    display: none;
  }

  .kv-banners {
    padding: 0 15px;
    margin-top: -40px;
  }

  .kv-banners-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kv-banner-item {
    border-radius: 12px;
  }

  .section-topics,
  .section-press {
    padding: 50px 0;
  }

  .container {
    padding: 0 15px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
  }

  .title-en {
    font-size: 28px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }

  .section-topics {
    padding-top: 60px;
  }

  .news-meta {
    min-width: auto;
  }

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

  .news-carousel .news-card {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .full-width .news-carousel .news-card {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .news-carousel .news-card-thumb {
    height: 100px;
  }

  .full-width .news-carousel .news-card-thumb,
  .full-width .news-carousel .news-card-img {
    height: 170px;
  }

  .full-width .news-carousel {
    padding-left: 20px;
    padding-right: 40px;
  }

  .carousel-nav {
    display: none;
  }

  .section-header-left {
    flex-direction: column;
    gap: 15px;
  }

  .section-header-left .section-header-links {
    flex-direction: row;
  }

  .footer-deco-circle-1 {
    width: 450px;
    height: 450px;
    right: -180px;
  }

  .footer-deco-circle-2 {
    width: 350px;
    height: 350px;
  }

  .footer-deco-circle-3 {
    width: 250px;
    height: 250px;
  }

  .footer-deco-circle-4 {
    width: 150px;
    height: 150px;
  }

  .links-inline {
    gap: 6px 12px;
  }

  .link-inline-item {
    font-size: 12px;
  }

  .section-links-area {
    padding: 40px 0;
  }

  .section-banners {
    padding: 40px 0;
  }

  .bie-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .bie-img {
    width: 120px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-contract-links {
    flex-direction: column;
    gap: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  /* Simplify deco shapes on mobile */
  .deco-topics-circle-1,
  .deco-press-circle-1,
  .deco-links-circle-1 {
    width: 400px;
    height: 400px;
  }

  .deco-topics-circle-2,
  .deco-topics-circle-3,
  .deco-press-circle-2,
  .deco-links-circle-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-layout {
    padding-top: 90px;
  }

  /* Smaller elephant icon at 480px */
  .hero-title-text::after {
    width: 42px;
    height: 42px;
  }

  .hero-bottom-bar {
    width: calc(100% - 32px);
    max-width: 340px;
    padding: 12px 14px;
    gap: 0;
  }
  .hero-bottom-item {
    padding: 5px 8px;
  }
  .hero-bottom-value { font-size: 10px; }
  .hero-bottom-label { font-size: 8px; }

  .hero-title-img {
    width: 70vw;
  }

  .hero-date-img {
    width: 65vw;
  }

  .hero-shape-ring-1 {
    width: 300px;
    height: 300px;
  }

  .hero-shape-ring-2 {
    width: 200px;
    height: 200px;
  }

  .hero-dot {
    display: none;
  }

  .link-inline-item {
    font-size: 11px;
  }

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

  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .deco-dot {
    display: none;
  }
}

/* ===========================
   CTA BAND - Shared across all pages
   =========================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108,60,225,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(0,201,167,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.cta-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.cta-flow-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 28px;
  min-width: 160px;
}
.cta-flow-num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--secondary);
  display: block;
  margin-bottom: 8px;
}
.cta-flow-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.cta-flow-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}
.cta-promises {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.promise-item i { color: var(--secondary); font-size: 14px; }
.cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 9999px;
  background: #fff;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
.cta-main-btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 201, 167, 0.4);
}
@media (max-width: 768px) {
  .cta-title { font-size: 24px; }
  .cta-flow { flex-direction: column; gap: 12px; }
  .cta-flow-arrow { transform: rotate(90deg); }
  .cta-flow-step { min-width: auto; width: 100%; max-width: 280px; }
  .cta-promises { flex-direction: column; gap: 12px; align-items: center; }
}
@media (max-width: 480px) {
  .cta-section { padding: 50px 0; }
  .cta-title { font-size: 20px; }
  .cta-subtitle { font-size: 13px; margin-bottom: 28px; }
  .cta-main-btn { font-size: 15px; padding: 16px 36px; }
  .cta-flow-step { padding: 16px 20px; }
}

/* ===========================
   Floating CTA - Shared across all pages
   =========================== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(108,60,225,0.4);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(108,60,225,0.5);
}
.floating-cta i { font-size: 16px; }
@media (max-width: 768px) {
  .floating-cta { bottom: 20px; right: 20px; padding: 14px 22px; font-size: 14px; }
  .floating-cta span { display: none; }
}

/* ===========================
   CHATBOT WIDGET
   =========================== */
.chatbot-trigger {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(108,60,225,0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(108,60,225,0.5);
}
.chatbot-trigger .chatbot-icon-close { display: none; }
.chatbot-trigger.is-open .chatbot-icon-chat { display: none; }
.chatbot-trigger.is-open .chatbot-icon-close { display: block; }

/* Notification dot */
.chatbot-trigger::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid #fff;
  animation: chatbot-pulse 2s ease infinite;
}
.chatbot-trigger.is-open::after { display: none; }
@keyframes chatbot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Chat window */
.chatbot-window {
  position: fixed;
  bottom: 170px;
  right: 30px;
  z-index: 9500;
  width: 360px;
  height: 480px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
.chatbot-window.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  flex-shrink: 0;
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.chatbot-header-info { flex: 1; }
.chatbot-header-name {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
}
.chatbot-header-status {
  font-size: 11px;
  opacity: 0.8;
}
.chatbot-header-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px;
}
.chatbot-header-close:hover { opacity: 1; }

/* Messages area */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.1) transparent;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 4px; }

/* Message bubbles */
.chatbot-msg {
  max-width: 85%;
  animation: chatbot-msg-in 0.3s var(--ease-out-expo);
}
@keyframes chatbot-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chatbot-msg-bot { align-self: flex-start; }
.chatbot-msg-user { align-self: flex-end; }
.chatbot-msg-bubble {
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.7;
}
.chatbot-msg-bot .chatbot-msg-bubble {
  background: #f3f4f6;
  color: var(--dark);
  border-bottom-left-radius: 4px;
}
.chatbot-msg-user .chatbot-msg-bubble {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chatbot-msg-time {
  font-size: 10px;
  color: #aaa;
  margin-top: 4px;
  font-family: var(--font-en);
}
.chatbot-msg-user .chatbot-msg-time { text-align: right; }

/* Typing indicator */
.chatbot-typing .chatbot-msg-bubble {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}
.chatbot-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbb;
  animation: chatbot-typing 1.4s ease infinite;
}
.chatbot-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatbot-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick questions */
.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
  flex-shrink: 0;
}
.chatbot-quick-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 16px;
  border: 1px solid rgba(108,60,225,0.15);
  background: rgba(108,60,225,0.04);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.chatbot-quick-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Input area */
.chatbot-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.chatbot-input input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: var(--font-ja);
  outline: none;
  transition: border-color 0.2s;
}
.chatbot-input input:focus { border-color: var(--primary); }
.chatbot-input button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.chatbot-input button:hover { background: var(--primary-hover); }

/* Developer log panel */
.chatbot-log-panel {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
}
.chatbot-log-panel.is-open { display: flex; }
.chatbot-log-inner {
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chatbot-log-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.chatbot-log-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.chatbot-log-actions {
  display: flex;
  gap: 8px;
}
.chatbot-log-actions button {
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.chatbot-log-actions button:hover { background: #f3f4f6; }
.chatbot-log-actions .log-btn-danger { color: #ef4444; border-color: #fca5a5; }
.chatbot-log-actions .log-btn-danger:hover { background: #fef2f2; }
.chatbot-log-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.chatbot-log-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.chatbot-log-body th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid #eee;
  font-weight: 600;
  color: #666;
  position: sticky;
  top: 0;
  background: #fff;
}
.chatbot-log-body td {
  padding: 10px 12px;
  border-bottom: 1px solid #f3f4f6;
  color: var(--dark);
}
.chatbot-log-body tr:hover td { background: #faf5ff; }
.chatbot-log-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 600;
}
.chatbot-log-tag-match { background: rgba(108,60,225,0.08); color: var(--primary); }
.chatbot-log-tag-miss { background: rgba(239,68,68,0.08); color: #ef4444; }
.chatbot-log-empty {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .chatbot-trigger { bottom: 80px; right: 16px; width: 50px; height: 50px; font-size: 20px; }
  .chatbot-window {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .chatbot-window.is-open { border-radius: 0; }
}
@media (max-width: 480px) {
  .chatbot-trigger { width: 46px; height: 46px; font-size: 18px; }
}
