/* ===================================
   ISC - Influencer Support Community
   Official Website Styles
   =================================== */

/* ===== Variables ===== */
:root {
  /* Colors */
  --primary: #ffd700;
  --primary-dark: #c9a66b;
  --primary-light: #ffe44d;
  --accent: #ff6b35;
  
  --bg-dark: #0f0f1a;
  --bg-darker: #0a0a12;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.5);
  
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.2);
  
  --gradient-gold: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-bg: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  /* Typography */
  --font-main: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  
  /* Animation */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ===== Fixed Video Background ===== */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 26, 0.6) 0%,
    rgba(15, 15, 26, 0.65) 50%,
    rgba(15, 15, 26, 0.7) 100%
  );
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

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

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--text);
  border-color: var(--border);
}

.lang-btn.active {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(255, 215, 0, 0.1);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.mobile-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  background: var(--bg-card);
  color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px 60px;
  background: transparent;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.03) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 107, 53, 0.03) 50%, transparent 60%);
  animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(0%, 0%); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 30%);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(255, 215, 0, 0.4) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 107, 53, 0.3) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 60px 60px;
  background-position: 0 0, 40px 40px, 20px 20px;
  animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(-15px) translateX(10px) rotate(1deg); }
  66% { transform: translateY(-5px) translateX(-5px) rotate(-1deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

.hero-mascot {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-mascot-img {
  max-width: 350px;
  height: auto;
  animation: mascotFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  background: rgba(15, 15, 26, 0.3);
  backdrop-filter: blur(8px);
  padding: 2.5rem 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Logo Main */
.hero-logo-main {
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero-logo-img {
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
}

@media (max-width: 768px) {
  .hero-logo-img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-logo-img {
    max-width: 220px;
  }
}

.hero-title {
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s backwards;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

/* Hero Main Copy Block */
.hero-main-copy {
  background: rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 12px 12px 0;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-headline .highlight-gold {
  font-size: 1.6rem;
}

.hero-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.sp-hide {
  display: inline;
}

@media (max-width: 768px) {
  .sp-hide {
    display: none;
  }
  
  .hero-headline {
    font-size: 1.2rem;
  }
  
  .hero-headline .highlight-gold {
    font-size: 1.35rem;
  }
  
  .hero-subtext {
    font-size: 0.9rem;
  }
  
  .hero-main-copy {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.05rem;
  }
  
  .hero-headline .highlight-gold {
    font-size: 1.15rem;
  }
  
  .hero-subtext {
    font-size: 0.85rem;
  }
  
  .hero-main-copy {
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
  color: var(--primary);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Hero Benefits List */
.hero-benefits {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-benefits li i {
  color: #4ade80;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Hero Trust Badge */
.hero-trust {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-trust i {
  color: #4ade80;
}

/* Glowing CTA Button */
.btn-glow {
  animation: btnGlow 2s ease-in-out infinite;
  position: relative;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: var(--gradient-gold);
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.6); }
}

.highlight-gold {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

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

.hero-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-visual {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 1;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

.hero-character {
  max-height: 400px;
  width: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
  z-index: 10;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-dim);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--text-dim);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== Section Styles ===== */
.section {
  padding: var(--section-padding);
  position: relative;
  background: rgba(15, 15, 26, 0.3);
}

.section-dark {
  background: rgba(10, 10, 18, 0.5);
}

/* ===== Results Section (like consultation-section) ===== */
.results-section {
  background-color: #080812;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 100px 0;
  position: relative;
}

.results-section .section-title {
  color: #fff;
}

.results-section .section-badge {
  color: var(--primary);
}

.results-section .section-subtitle {
  color: var(--text-muted);
}

.results-section .stat-card {
  background: #0c121e;
  border: 1px solid rgba(255, 215, 0, 0.12);
}

.results-section .stat-card-featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, #0c121e 100%);
  border: 1px solid rgba(255, 215, 0, 0.25);
}

/* ===== Clients Section (取引実績) - Bright gold theme ===== */
.clients-section {
  background-color: rgba(255, 215, 0, 0.8);
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 10px 10px;
  padding: 100px 0 120px;
  position: relative;
  overflow: visible;
}

/* ===== About Section - New Design ===== */
.about-section {
  background-color: rgba(15, 15, 26, 0.8);
  padding: 100px 0;
  position: relative;
}

.about-intro {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text);
}

/* About Stats Grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.about-stat-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

/* Inline count-up numbers in lead text */
.inline-count {
  font-size: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.about-stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.about-stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Why Choose Section */
.why-choose {
  margin-top: 2rem;
}

.why-choose-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.why-choose-badge {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.why-choose-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.why-choose-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .about-stat-number {
    font-size: 2.5rem;
  }
}

.clients-section .section-title {
  color: #1a1a2e;
}

.clients-section .section-badge {
  color: #8B6914;
  background: rgba(0, 0, 0, 0.08);
}

.clients-section .section-subtitle {
  color: #4a4a5a;
}

/* Category titles for clients */
.clients-section .clients-category-title {
  color: #1a1a2e;
}

.clients-section .clients-category-badge {
  background: rgba(0, 0, 0, 0.1);
  color: #5a4a10;
}

.clients-section .clients-category-subtitle {
  color: #4a4a5a;
}

/* Logo cards - transparent float on gold background */
.clients-section .logo-card {
  background: transparent;
  border: none;
  padding: 8px;
  transition: transform 0.3s ease;
}

.clients-section .logo-card img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-section .logo-card:hover {
  transform: translateY(-5px);
}

.clients-section .logo-card:hover img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transform: scale(1.06);
}

/* Remove old section-gradient styles */
.section-gradient {
  position: relative;
  overflow: hidden;
  background: rgba(15, 15, 26, 0.8);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-title-light {
  color: var(--text);
}

.section-badge {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* ===== About Section ===== */
.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-lead {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-lead strong {
  color: var(--primary);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
}

.about-feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  max-height: 300px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.2));
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--bg-dark);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--text);
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.service-features li {
  color: var(--text-dim);
  font-size: 0.85rem;
  padding-left: 1rem;
  position: relative;
}

.service-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===== Stats Section ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Partners Section ===== */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.partner-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 1.5rem 2.5rem;
  transition: var(--transition);
}

.partner-logo:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.partner-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.events-section {
  margin-top: 4rem;
}

.events-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.events-grid-large {
  grid-template-columns: repeat(4, 1fr);
}

.event-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.section-mascot {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.floating-mascot {
  max-width: 400px;
  animation: floatMascot 6s ease-in-out infinite;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.event-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.event-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.event-name {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Consultation Section (nanodes style) ===== */
.consultation-section {
  background-color: rgba(255, 215, 0, 0.8);
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 8px 8px;
  padding: 60px 0 0;
  position: relative;
  overflow: visible;
}

.consultation-wrapper {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 2rem;
  position: relative;
}

.consultation-wrapper.consultation-centered {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.consultation-centered .consultation-content {
  max-width: 700px;
}

.consultation-centered .consultation-underline {
  margin-left: auto;
  margin-right: auto;
}

.consultation-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.consultation-content {
  flex: 1;
  padding-bottom: 40px;
}

/* Team in Consultation (yellow background) */
.team-in-consultation {
  padding: 60px 0 80px;
}

.consultation-team-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.consultation-team-badge {
  background: #1a1a2e;
  color: #ffd700;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.consultation-team-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(26, 26, 46, 0.75);
  margin-bottom: 3rem;
}

.team-grid-yellow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.team-card-yellow {
  background: rgba(26, 26, 46, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(26, 26, 46, 0.1);
  display: flex;
  flex-direction: column;
}

.team-card-yellow:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.15);
}

.team-avatar-yellow {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.1), rgba(26, 26, 46, 0.05));
}

.team-avatar-yellow .team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Per-member face alignment */

/* Ratte* (基準) */
.team-avatar-ratte .team-image {
  transform-origin: center 100%;
}

/* ゆいま〜る */
.team-avatar-yuimaru .team-image {
  transform: scale(1.1);
  transform-origin: center 30%;
}

/* NAO: unchanged */
.team-avatar-nao .team-image {
  object-position: center 20%;
}

/* チビクロ */
.team-avatar-chibikuro .team-image {
  transform-origin: center 58%;
}

/* 萌奈 */
.team-avatar-mona .team-image {
  transform: scale(1.15);
  transform-origin: center 0%;
}

/* Hover states */
.team-card-yellow:hover .team-avatar-ratte .team-image {
  transform: scale(1.05);
}
.team-card-yellow:hover .team-avatar-yuimaru .team-image {
  transform: scale(1.15);
}
.team-card-yellow:hover .team-avatar-nao .team-image {
  transform: scale(1.05);
}
.team-card-yellow:hover .team-avatar-chibikuro .team-image {
  transform: scale(1.05);
}
.team-card-yellow:hover .team-avatar-mona .team-image {
  transform: scale(1.20);
}

.team-info-yellow {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-role-yellow {
  display: inline-block;
  background: #1a1a2e;
  color: #ffd700;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.team-name-yellow {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.team-desc-yellow {
  font-size: 0.85rem;
  color: rgba(26, 26, 46, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  min-height: 85px;
}

.team-social-yellow {
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid rgba(26, 26, 46, 0.15);
  padding-top: 1rem;
  margin-top: auto;
}

.team-social-yellow a {
  width: 36px;
  height: 36px;
  background: #1a1a2e;
  color: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.team-social-yellow a:hover {
  background: #ffd700;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
  transform: translateY(-3px);
}

.consultation-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.highlight-isc {
  color: #1a1a2e;
  position: relative;
}

.consultation-underline {
  width: 100%;
  max-width: 500px;
  height: 8px;
  background: #1a1a2e;
  margin: 1.5rem 0 2rem;
}

.consultation-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.consultation-text {
  font-size: 1rem;
  color: rgba(26, 26, 46, 0.85);
  line-height: 2;
}

.pc-only {
  display: inline;
}

@media (max-width: 1200px) {
  .team-grid-yellow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .consultation-title {
    font-size: 2.2rem;
  }
  
  .team-grid-yellow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .consultation-section {
    padding: 40px 0 0;
    overflow: hidden;
  }
  
  .consultation-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    align-items: center;
  }
  
  .consultation-content {
    padding-bottom: 20px;
  }
  
  .consultation-title {
    font-size: 1.6rem;
  }
  
  .consultation-underline {
    margin: 1rem auto 1.5rem;
  }
  
  .consultation-lead {
    font-size: 1.05rem;
  }
  
  .consultation-text {
    font-size: 0.9rem;
  }
  
  .pc-only {
    display: none;
  }
  
  .team-in-consultation {
    padding: 40px 0 60px;
  }
  
  .consultation-team-title {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .team-grid-yellow {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team-info-yellow {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .consultation-section {
    padding: 40px 0 30px;
  }
  
  .consultation-mascot {
    max-width: 160px;
  }
  
  .consultation-title {
    font-size: 1.35rem;
  }
  
  .consultation-underline {
    height: 5px;
  }
  
  .consultation-lead {
    font-size: 0.95rem;
  }
  
  .team-in-consultation {
    padding: 30px 0 50px;
  }
  
  .consultation-team-title {
    font-size: 1.4rem;
  }
  
  .consultation-team-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .team-info-yellow {
    padding: 1rem;
  }
  
  .team-name-yellow {
    font-size: 1rem;
  }
  
  .team-desc-yellow {
    font-size: 0.8rem;
  }
}

/* ===== CTA Section ===== */
.section-cta {
  background: var(--gradient-gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-content {
  flex: 1;
}

.cta-text-box {
  background: rgba(15, 15, 26, 0.85);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cta-highlight {
  color: var(--primary);
  font-size: 2.2rem;
}

.cta-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--bg-dark);
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline {
  border-color: var(--bg-dark);
  color: var(--bg-dark);
}

.cta-buttons .btn-outline:hover {
  background: var(--bg-dark);
  color: var(--primary);
}

.cta-character {
  flex-shrink: 0;
}

.cta-mascot {
  max-height: 250px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

/* ===== Contact Section ===== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.contact-card:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Services Mascot ===== */
.services-mascot-left,
.services-mascot-right {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.services-mascot-left {
  left: -80px;
  top: 150px;
}

.services-mascot-right {
  right: -80px;
  bottom: 100px;
}

.service-mascot-img {
  max-width: 350px;
  height: auto;
  border-radius: 50px;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 90%);
}

#services {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .services-mascot-left,
  .services-mascot-right {
    display: none;
  }
}

/* ===== FAQ Section ===== */
.faq-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-mascot {
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}

.faq-mascot-img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
  animation: faqFloat 4s ease-in-out infinite;
}

@keyframes faqFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.faq-list {
  flex: 1;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-q-mark,
.faq-a-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-q-mark {
  background: var(--primary);
  color: var(--bg-dark);
}

.faq-a-mark {
  background: rgba(255, 215, 0, 0.2);
  color: var(--primary);
}

.faq-question h3 {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.faq-toggle {
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 1.5rem 0;
  padding-left: calc(1.5rem + 36px + 1rem);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding-bottom 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-mascot {
    position: static;
  }
  
  .faq-mascot-img {
    max-width: 160px;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding-left: 1rem;
  }
}

/* ===== Contact Section Gold Background ===== */
.section-contact-gold {
  background-color: rgba(255, 215, 0, 0.8);
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 8px 8px;
}

.section-title-dark {
  color: #1a1a2e;
}

.section-badge-dark {
  background: #1a1a2e;
  color: #ffd700;
}

.section-subtitle-dark {
  color: rgba(26, 26, 46, 0.75);
}

.contact-card-gold {
  background: rgba(26, 26, 46, 0.08);
  border: 2px solid rgba(26, 26, 46, 0.15);
}

.contact-card-gold:hover {
  background: rgba(26, 26, 46, 0.15);
  border-color: #1a1a2e;
  transform: translateY(-8px);
}

.contact-card-gold .contact-icon {
  background: #1a1a2e;
  color: #ffd700;
}

.contact-card-gold h3 {
  color: #1a1a2e;
}

.contact-card-gold p {
  color: rgba(26, 26, 46, 0.7);
}

.contact-card-gold .contact-link {
  color: #1a1a2e;
}

/* ===== Contact Section with Mascot ===== */
.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-mascot {
  flex-shrink: 0;
  position: relative;
}

.contact-mascot-img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.25));
  border-radius: 50px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 85%);
}

.contact-speech-bubble {
  position: absolute;
  top: 0;
  right: -20px;
  background: var(--bg-dark);
  color: var(--primary);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  animation: bubbleBounce 2s ease-in-out infinite;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  border: 10px solid transparent;
  border-top-color: var(--bg-dark);
  border-bottom: 0;
}

@keyframes bubbleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.contact-wrapper .contact-methods {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
}

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-mascot-img {
    max-width: 200px;
  }
  
  .contact-speech-bubble {
    right: 0;
    left: auto;
    transform: none;
    top: -30px;
  }
  
  .contact-speech-bubble::after {
    left: auto;
    right: 30px;
  }
  
  .contact-wrapper .contact-methods {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ===== Fixed Chibi Ratte ===== */
.fixed-chibi {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
}

.fixed-chibi-img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: chibiFloat 3s ease-in-out infinite;
}

@keyframes chibiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(2deg); }
  75% { transform: translateY(-5px) rotate(-2deg); }
}

.fixed-chibi:hover .fixed-chibi-img {
  animation: chibiBounce 0.5s ease infinite;
  filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.5));
}

@keyframes chibiBounce {
  0%, 100% { transform: translateY(0) scale(1.1); }
  50% { transform: translateY(-10px) scale(1.15); }
}

.chibi-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  margin-bottom: 10px;
}

.chibi-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 30px;
  border: 8px solid transparent;
  border-top-color: var(--primary);
  border-bottom: 0;
}

/* Always show tooltip */
.chibi-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-chibi:hover .chibi-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fixed-chibi {
    bottom: 20px;
    right: 10px;
  }
  
  .fixed-chibi-img {
    width: 60px;
  }
  
  .chibi-tooltip {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-darker);
  padding: 50px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===== Back to Top ===== */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: var(--bg-dark);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-wheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-features {
    align-items: center;
  }
  
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .events-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .event-card-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .hero-mascot {
    display: none;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .section-cta .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .lang-switch {
    margin-left: auto;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 80px 15px 50px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 500px;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .hero-stat-number {
    font-size: 1.8rem;
  }
  
  .hero-benefits li {
    font-size: 0.9rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .stat-desc {
    font-size: 0.75rem;
  }
  
  .events-grid,
  .events-grid-large {
    grid-template-columns: 1fr;
  }
  
  .event-card-featured {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .partners-logos {
    gap: 1rem;
  }
  
  .partner-logo {
    padding: 1rem 1.5rem;
  }
  
  .partner-name {
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-mascot {
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-content {
    padding: 1.5rem 1.25rem;
    margin: 0 0.5rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-benefits {
    margin: 1rem 0 1.5rem;
  }
  
  .hero-benefits li {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .hero-stat-number {
    font-size: 1.6rem;
  }
  
  .hero-stat-label {
    font-size: 0.75rem;
  }
  
  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-trust {
    font-size: 0.8rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}
/* ===== Clients Ticker ===== */
.clients-ticker {
  background: var(--bg-darker);
  padding: 25px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 120s linear infinite;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  padding: 0 1.5rem;
  align-items: center;
}

.ticker-item {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* Logo-based ticker items */
.ticker-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.ticker-logo:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.ticker-logo img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Highlight Text ===== */
.highlight-gold {
  color: var(--primary);
  font-weight: 700;
}

.plus {
  font-size: 0.7em;
  vertical-align: super;
}

/* ===== Stats Grid Large ===== */
.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* stat-card-featured - same as regular stat-card with gold accent */
.stat-card-featured .stat-number {
  color: var(--primary);
}

/* ===== Trading Volume Section ===== */
.trading-volume-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.subsection-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.volume-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.volume-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.volume-exchange {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.volume-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
}

.volume-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.volume-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px;
}

/* ===== Services Large Cards ===== */
.service-card-large {
  grid-column: span 1;
  position: relative;
}

.service-highlight {
  margin-top: 1.5rem;
}

.highlight-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ===== Results Grid ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* Featured result card with logo */
.result-card-featured {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.result-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.result-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.result-genre {
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(255, 215, 0, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.result-views {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}

.result-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.result-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== YouTube Videos Grid ===== */
.youtube-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.youtube-video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.youtube-video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
}

.youtube-video-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.youtube-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.youtube-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.youtube-video-card:hover .youtube-thumbnail img {
  transform: scale(1.05);
}

.youtube-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 12px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.youtube-video-card:hover .youtube-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff0000;
}

.youtube-play-overlay i {
  font-size: 2rem;
  color: #fff;
}

/* Remove youtube-video-info styles - no longer used */
.youtube-video-info {
  display: none;
}

.youtube-video-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.youtube-video-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.youtube-channel-link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.youtube-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #1a1a2e;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.youtube-channel-btn:hover {
  transform: translateY(-3px);
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.youtube-channel-btn i {
  font-size: 1.25rem;
  color: #ff0000;
  transition: color 0.3s ease;
}

.youtube-channel-btn:hover i {
  color: white;
}

/* YouTube Loading */
.youtube-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.youtube-loading i {
  font-size: 2rem;
  color: var(--primary);
}

.youtube-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .youtube-videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .youtube-video-title {
    font-size: 0.85rem;
  }
  
  .youtube-channel-btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .youtube-videos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ===== Clients Tier ===== */
.clients-tier {
  margin-bottom: 3rem;
}

.tier-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.tier-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.tier-1 {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: var(--bg-dark);
}

.tier-2 {
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
  color: var(--bg-dark);
}

.tier-project {
  background: linear-gradient(135deg, #7b68ee, #9370db);
  color: white;
}

.tier-media {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: white;
}

.client-card-media {
  border-color: rgba(0, 188, 212, 0.3);
}

/* ===== Clients Logo Grid (Premium Style) ===== */
.clients-category-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin: 2rem 0 0.25rem;
  color: #333;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.clients-category-title::before,
.clients-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
}

.clients-category-title:first-of-type {
  margin-top: 1rem;
}

.clients-category-badge {
  display: inline;
  font-size: 0.75rem;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.clients-category-subtitle {
  display: none;
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  padding: 0.75rem 0 2.5rem;
}

.logo-card {
  background: linear-gradient(145deg, #5a5a7a 0%, #3a3a5a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: left 0.4s ease;
}

.logo-card:hover::before {
  left: 100%;
}

.logo-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(255, 215, 0, 0.1);
}

.logo-card img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: brightness(1.5) contrast(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
  transition: all 0.3s ease;
}

.logo-card:hover img {
  filter: brightness(1.8) contrast(1.3) drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .clients-category-title {
    font-size: 1.4rem;
    margin: 2.5rem 0 0.5rem;
  }
  
  .clients-category-badge {
    font-size: 0.75rem;
  }
  
  .clients-logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    padding: 1rem 0 1.5rem;
  }
  
  .logo-card {
    padding: 0.6rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .clients-category-title {
    font-size: 1.2rem;
    margin: 2rem 0 0.5rem;
  }
  
  .clients-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.75rem 0 1.25rem;
  }
  
  .logo-card {
    padding: 0.4rem;
    border-radius: 8px;
  }
  
  .logo-card:hover {
    transform: translateY(-3px);
  }
}

/* Keep old styles for backward compatibility */
.client-logo-icon {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.clients-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.client-card-small {
  padding: 1rem 0.75rem;
}

.client-card-project {
  border-color: rgba(123, 104, 238, 0.3);
}

.client-card-project:hover {
  border-color: #7b68ee;
}

.client-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.client-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.client-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.client-name-small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.client-logo-small {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.client-text-logo {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.client-card-small .client-logo-text {
  font-size: 0.9rem;
}

.client-detail {
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* ===== Events Grid Updated ===== */
.event-date {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* ===== Team Section ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar-placeholder {
  font-size: 3rem;
  color: var(--bg-dark);
}

.team-role {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-social {
  margin-top: 1rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card-hover);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* ===== CTA Stats ===== */
.cta-stats {
  display: flex;
  justify-content: flex-start;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 15, 26, 0.6);
  border-radius: 12px;
}

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

.cta-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}

.cta-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Footer Stats ===== */
.footer-stats {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ===== Responsive Updates ===== */
@media (max-width: 1024px) {
  .stats-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card-featured {
    grid-column: span 2;
    transform: scale(1);
  }
  
  .volume-cards {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ticker-content {
    gap: 2rem;
  }
  
  .ticker-item {
    font-size: 0.85rem;
  }
  
  .stats-grid-large {
    grid-template-columns: 1fr;
  }
  
  .stat-card-featured {
    grid-column: span 1;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clients-grid-small {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .cta-text-box {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-highlight {
    font-size: 1.7rem;
  }
  
  .cta-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .volume-amount {
    font-size: 1.4rem;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .cta-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-text-box {
    padding: 1.25rem;
  }
  
  .cta-title {
    font-size: 1.25rem;
  }
  
  .cta-highlight {
    font-size: 1.4rem;
  }
}

/* ===== Clients Accordion (Mobile) ===== */
.clients-hidden {
  display: none;
  margin-top: 1rem;
}

.clients-hidden.show {
  display: grid;
}

.clients-toggle-btn {
  display: none;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--primary);
  border-radius: 10px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.clients-toggle-btn:hover {
  background: rgba(255, 215, 0, 0.2);
}

.clients-toggle-btn .toggle-icon,
.events-toggle-btn .toggle-icon {
  transition: transform 0.3s ease;
}

.clients-toggle-btn.active .toggle-icon,
.events-toggle-btn.active .toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .clients-toggle-btn,
  .events-toggle-btn {
    display: flex;
  }
}

/* ===== Events Accordion (Mobile) ===== */
.events-hidden {
  display: grid;
  margin-top: 1.5rem;
}

.events-toggle-btn {
  display: none;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--primary);
  border-radius: 10px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.events-toggle-btn:hover {
  background: rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
  .events-hidden {
    display: none !important;
  }
  
  .events-hidden.show {
    display: grid !important;
  }
  
  .events-preview {
    grid-template-columns: 1fr;
  }
  
  .events-preview .event-card:nth-child(n+4) {
    display: none;
  }
  
  .events-preview.show-all .event-card:nth-child(n+4) {
    display: block;
  }
}

/* ===== Mobile Header CTA Button ===== */
.mobile-cta-btn {
  display: none;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .mobile-cta-btn {
    display: block;
  }
  
  /* Stats card compact */
  .stat-card {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  
  .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .stat-content {
    flex: 1;
  }
  
  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
  }
  
  .stat-desc {
    font-size: 0.7rem;
    display: none;
  }
}

/* ===================================
   Advanced Interactive Effects
   =================================== */

/* 1. Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

/* 2. Gold Particles */
#gold-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gold-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffd700 0%, #c9a66b 50%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 15s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50vh) translateX(20px) scale(1.2);
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(-20px) scale(0.8);
    opacity: 0;
  }
}

/* 3. Number Count-up Animation */
.count-up {
  display: inline-block;
  transition: transform 0.3s ease;
}

.count-up.counting {
  transform: scale(1.1);
}

/* 4. Client Logo Hover Glow */
.ticker-logo {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(30%) brightness(0.9);
}

.ticker-logo:hover {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.ticker-logo img {
  transition: all 0.4s ease;
}

.ticker-logo:hover img {
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

/* 5. Section Heading Gold Line Animation */
.section-header h2,
.consultation-title,
.consultation-team-title {
  position: relative;
  display: inline-block;
}

.gold-underline {
  position: relative;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-gold);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.gold-underline.is-visible::after {
  width: 100%;
}

/* 6. Service Card Enhanced Hover (No Flip) */
.service-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
  border-color: var(--primary);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.service-icon {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 7. Enhanced Button Glow */
.btn-glow {
  animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 5px 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
  }
}

/* Slide-in animation for sections */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Stats card enhanced hover */
.stat-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  border-color: var(--primary);
}

.stat-card:hover .stat-number {
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Team card hover enhancement */
.team-card-yellow {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card-yellow:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.team-card-yellow:hover .team-avatar-yellow img {
  transform: scale(1.15);
}

/* Override hover for members with custom scale */
.team-card-yellow:hover .team-avatar-yuimaru img {
  transform: scale(1.15);
}
.team-card-yellow:hover .team-avatar-chibikuro img {
  transform: scale(1.15);
}
.team-card-yellow:hover .team-avatar-mona img {
  transform: scale(1.2);
}

.team-avatar-yellow img {
  transition: transform 0.4s ease;
}

/* Mobile adjustments for effects */
@media (max-width: 768px) {
  .gold-particle {
    width: 3px;
    height: 3px;
  }
}

/* ===== Marquee Infinite Scroll ===== */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 0.75rem 0 2rem;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.marquee-left {
  animation: marqueeScrollLeft 40s linear infinite;
}

.marquee-right {
  animation: marqueeScrollRight 60s linear infinite;
}

.marquee-wrap-small .marquee-left {
  animation-duration: 20s;
}

@keyframes marqueeScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-track .logo-card {
  flex-shrink: 0;
  width: 160px;
  animation: none;
}

@media (max-width: 768px) {
  .marquee-track .logo-card {
    width: 120px;
  }
}

/* ===== Team Card Hover Glow ===== */
.team-card-yellow {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-card-yellow:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 32px rgba(26, 26, 46, 0.12),
    0 0 24px rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.25);
}

.team-card-yellow:hover .team-name-yellow {
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

/* ===== FAQ Smooth Accordion (overrides consolidated above) ===== */
.faq-toggle {
  transition: transform 0.3s ease, color 0.3s ease;
}
