@charset "UTF-8";
/* ---------------
  ★共通
--------------- */
html {
  font-size: 62.5%;
}

body {
  display: block;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.8;
  font-weight: 400;
  max-width: 2260px;
  width: 100%;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

/* ============================================
   Merged from reochu.css
   ============================================ */
/* ============================================
   ReOchu - Main Stylesheet
   White × Black × Manga × #4E5760
   ============================================ */
/* --- Google Fonts --- */
/* --- CSS Variables --- */
:root {
  --accent: #4e5760;
  --accent-light: #6b7580;
  --dark: #1a1a1a;
  --white: #ffffff;
  --light-grey: #f5f5f5;
  --mid-grey: #888888;
  --border: #000000;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Bebas Neue", sans-serif;
  --manga-border: 3px solid #000;
  --manga-border-thick: 5px solid #000;
}

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

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

body {
  font-family: var(--font-jp);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

ul,
ol {
  list-style: none;
}

/* --- Utility --- */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-padding {
  padding: 100px 0;
}

/* --- Scroll Animation Base --- */
.anim-item {
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.anim-left {
  opacity: 0;
  -webkit-transform: translateX(-80px);
  transform: translateX(-80px);
  -webkit-transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.anim-right {
  opacity: 0;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  -webkit-transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.anim-scale {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-scale.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.delay-1 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.delay-2 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.delay-3 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.delay-4 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.delay-5 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.delay-6 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

/* ============================================
   LOADING SCREEN - Curtain Wipe
   ============================================ */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: all;
}

.loading-curtain-left,
.loading-curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--dark);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition:
    transform 0.8s cubic-bezier(0.76, 0, 0.24, 1),
    -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2;
}

.loading-curtain-left {
  left: 0;
}

.loading-curtain-right {
  right: 0;
}

.loading-screen.loaded .loading-curtain-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.loading-screen.loaded .loading-curtain-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.loading-screen.loaded {
  pointer-events: none;
}

.loading-screen.fully-hidden {
  visibility: hidden;
}

.loading-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.loading-screen.loaded .loading-center {
  opacity: 0;
}

.loading-logo {
  width: 100px;
  -webkit-animation: loadingPulse 1.2s ease-in-out infinite;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-logo svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.loading-text {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  -webkit-animation: loadingDots 1.5s ease-in-out infinite;
  animation: loadingDots 1.5s ease-in-out infinite;
}

@-webkit-keyframes loadingPulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes loadingPulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    opacity: 1;
  }
}
@-webkit-keyframes loadingDots {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes loadingDots {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
/* Hero White Flash */
.hero-flash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
}

.hero-flash.flash-active {
  -webkit-animation: whiteFlash 0.6s ease-out forwards;
  animation: whiteFlash 0.6s ease-out forwards;
}

@-webkit-keyframes whiteFlash {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes whiteFlash {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  border-bottom: 2px solid var(--border);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 40px;
}

.header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-logo svg,
.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  color: var(--dark);
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

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

.header-nav .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 100px;
  font-weight: 700;
  border: 2px solid var(--accent);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-nav .nav-cta::after {
  display: none;
}

.header-nav .nav-cta:hover {
  background: transparent;
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1050;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

/* ============================================
   HERO SECTION - IMPACT VERSION
   ============================================ */
.hero {
  position: relative;
  padding: 200px 0 140px;
  background: var(--white);
  overflow: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Speed Lines - Enhanced with rotation & pulse */
.hero-speedlines {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 1;
  -webkit-animation: speedlinesRotate 120s linear infinite;
  animation: speedlinesRotate 120s linear infinite;
}

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

@keyframes speedlinesRotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.hero-speedlines::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -webkit-animation: speedlinesPulse 4s ease-in-out infinite;
  animation: speedlinesPulse 4s ease-in-out infinite;
}

@-webkit-keyframes speedlinesPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes speedlinesPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.speedline {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, rgba(78, 87, 96, 0.12)), color-stop(50%, rgba(200, 200, 200, 0.2)), color-stop(80%, rgba(78, 87, 96, 0.12)), to(transparent));
  background: linear-gradient(to bottom, transparent, rgba(78, 87, 96, 0.12) 20%, rgba(200, 200, 200, 0.2) 50%, rgba(78, 87, 96, 0.12) 80%, transparent);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  opacity: 0;
  -webkit-animation: speedlineAppear 1s ease forwards;
  animation: speedlineAppear 1s ease forwards;
}

.speedline.thick {
  width: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, rgba(78, 87, 96, 0.18)), color-stop(50%, rgba(180, 180, 180, 0.3)), color-stop(80%, rgba(78, 87, 96, 0.18)), to(transparent));
  background: linear-gradient(to bottom, transparent, rgba(78, 87, 96, 0.18) 20%, rgba(180, 180, 180, 0.3) 50%, rgba(78, 87, 96, 0.18) 80%, transparent);
}

@-webkit-keyframes speedlineAppear {
  0% {
    opacity: 0;
    height: 0%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}

@keyframes speedlineAppear {
  0% {
    opacity: 0;
    height: 0%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
/* Halftone Pattern - Enhanced */
.hero-halftone {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-image: radial-gradient(circle, #bbb 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  opacity: 0;
  z-index: 1;
  -webkit-animation: halftoneIn 1.5s 1s ease-out forwards;
  animation: halftoneIn 1.5s 1s ease-out forwards;
}

@-webkit-keyframes halftoneIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 0.25;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes halftoneIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 0.25;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hero-halftone.top-right {
  top: 5%;
  right: -60px;
  -webkit-animation:
    halftoneIn 1.5s 1s ease-out forwards,
    floatSlow 8s 2.5s ease-in-out infinite;
  animation:
    halftoneIn 1.5s 1s ease-out forwards,
    floatSlow 8s 2.5s ease-in-out infinite;
}

.hero-halftone.bottom-left {
  bottom: 5%;
  left: -80px;
  animation:
    halftoneIn 1.5s 1.3s ease-out forwards,
    floatSlow 8s 2.8s ease-in-out infinite reverse;
}

@-webkit-keyframes floatSlow {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: translateY(-25px) rotate(5deg) scale(1.03);
    transform: translateY(-25px) rotate(5deg) scale(1.03);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: translateY(-25px) rotate(5deg) scale(1.03);
    transform: translateY(-25px) rotate(5deg) scale(1.03);
  }
}
/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Split Text - Each character animates */
.hero-catch {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 30px;
  overflow: hidden;
}

.hero-catch .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(100%) rotateX(90deg);
  transform: translateY(100%) rotateX(90deg);
  -webkit-animation: charReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation: charReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@-webkit-keyframes charReveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%) rotateX(90deg);
    transform: translateY(100%) rotateX(90deg);
  }
  60% {
    -webkit-transform: translateY(-10%) rotateX(-5deg);
    transform: translateY(-10%) rotateX(-5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0deg);
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes charReveal {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%) rotateX(90deg);
    transform: translateY(100%) rotateX(90deg);
  }
  60% {
    -webkit-transform: translateY(-10%) rotateX(-5deg);
    transform: translateY(-10%) rotateX(-5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0deg);
    transform: translateY(0) rotateX(0deg);
  }
}
/* Hero subtitle with typewriter cursor */
.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 50px;
  opacity: 0;
  min-height: 1.5em;
}

.hero-sub.typing {
  opacity: 1;
}

.hero-sub .cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  -webkit-animation: cursorBlink 0.7s step-end infinite;
  animation: cursorBlink 0.7s step-end infinite;
}

@-webkit-keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* Hero CTA - bounce in */
.hero-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 55px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  border: 3px solid var(--accent);
  cursor: pointer;
  opacity: 0;
  -webkit-transform: scale(0) rotate(-10deg);
  transform: scale(0) rotate(-10deg);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero-cta.cta-visible {
  -webkit-animation: ctaBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation: ctaBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@-webkit-keyframes ctaBounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-10deg);
    transform: scale(0) rotate(-10deg);
  }
  60% {
    -webkit-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
  }
  80% {
    -webkit-transform: scale(0.95) rotate(-1deg);
    transform: scale(0.95) rotate(-1deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes ctaBounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-10deg);
    transform: scale(0) rotate(-10deg);
  }
  60% {
    -webkit-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
  }
  80% {
    -webkit-transform: scale(0.95) rotate(-1deg);
    transform: scale(0.95) rotate(-1deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.hero-cta:hover {
  background: transparent;
  color: var(--accent);
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-box-shadow: 0 8px 30px rgba(78, 87, 96, 0.3);
  box-shadow: 0 8px 30px rgba(78, 87, 96, 0.3);
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hero-cta:hover::before {
  width: 300px;
  height: 300px;
}

.hero-cta .arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.hero-cta:hover .arrow {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}

/* Manga Impact Marks - Bigger & more dynamic */
.manga-impact {
  position: absolute;
  z-index: 2;
  opacity: 0;
}

.manga-impact svg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}

.manga-impact.mark1 {
  top: 18%;
  right: 12%;
}

.manga-impact.mark2 {
  bottom: 22%;
  left: 8%;
}

.manga-impact.mark3 {
  top: 35%;
  left: 18%;
}

.manga-impact.mark4 {
  bottom: 35%;
  right: 8%;
}

.manga-impact.impact-visible {
  -webkit-animation: impactIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation: impactIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@-webkit-keyframes impactIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-30deg);
    transform: scale(0) rotate(-30deg);
  }
  50% {
    -webkit-transform: scale(1.4) rotate(10deg);
    transform: scale(1.4) rotate(10deg);
  }
  75% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}

@keyframes impactIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-30deg);
    transform: scale(0) rotate(-30deg);
  }
  50% {
    -webkit-transform: scale(1.4) rotate(10deg);
    transform: scale(1.4) rotate(10deg);
  }
  75% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}
/* Manga Onomatopoeia floating text */
.manga-sfx {
  position: absolute;
  z-index: 3;
  font-family: var(--font-en);
  font-weight: 900;
  color: rgba(78, 87, 96, 0.06);
  pointer-events: none;
  opacity: 0;
}

.manga-sfx.sfx-visible {
  -webkit-animation: sfxAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation: sfxAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.manga-sfx.sfx1 {
  top: 15%;
  left: 5%;
  font-size: 120px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.manga-sfx.sfx2 {
  bottom: 15%;
  right: 3%;
  font-size: 100px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.manga-sfx.sfx3 {
  top: 60%;
  right: 15%;
  font-size: 80px;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

@-webkit-keyframes sfxAppear {
  0% {
    opacity: 0;
    -webkit-transform: scale(3) rotate(var(--sfx-rotate, -15deg));
    transform: scale(3) rotate(var(--sfx-rotate, -15deg));
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(var(--sfx-rotate, -15deg));
    transform: scale(1) rotate(var(--sfx-rotate, -15deg));
  }
}

@keyframes sfxAppear {
  0% {
    opacity: 0;
    -webkit-transform: scale(3) rotate(var(--sfx-rotate, -15deg));
    transform: scale(3) rotate(var(--sfx-rotate, -15deg));
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(var(--sfx-rotate, -15deg));
    transform: scale(1) rotate(var(--sfx-rotate, -15deg));
  }
}
/* Floating particles */
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-particle.particle-visible {
  -webkit-animation: particleFloat 6s ease-in-out infinite;
  animation: particleFloat 6s ease-in-out infinite;
}

@-webkit-keyframes particleFloat {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0) scale(0);
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.3;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-150px) scale(0);
    transform: translateY(-150px) scale(0);
  }
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0) scale(0);
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.3;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-150px) scale(0);
    transform: translateY(-150px) scale(0);
  }
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  -webkit-animation: heroTextIn 1s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation: heroTextIn 1s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  -webkit-animation: scrollDown 2s ease-in-out infinite;
  animation: scrollDown 2s ease-in-out infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
/* ============================================
   SECTION TITLES
   ============================================ */
.sec-title {
  margin-bottom: 60px;
  text-align: center;
}

.sec-title .en {
  font-family: var(--font-en);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
}

.sec-title .jp {
  font-size: 14px;
  color: var(--mid-grey);
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.sec-services {
  background: var(--light-grey);
  position: relative;
  overflow: hidden;
}

/* Halftone overlay */
.sec-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ddd 0.8px, transparent 0.8px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2) {
  grid-column: span 1;
}

.service-card {
  background: var(--white);
  border: 3px solid var(--border);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

/* Manga border thickness variation */
.service-card:nth-child(odd) {
  border-width: 3px 2px 2px 4px;
}

.service-card:nth-child(even) {
  border-width: 2px 4px 3px 2px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  -webkit-transform: translateY(-8px) rotate(-0.5deg);
  transform: translateY(-8px) rotate(-0.5deg);
  -webkit-box-shadow: 8px 8px 0 var(--border);
  box-shadow: 8px 8px 0 var(--border);
}

.service-card:hover::before {
  opacity: 0.15;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--accent);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.service-card:hover .service-icon {
  -webkit-transform: scale(1.15) rotate(-5deg);
  transform: scale(1.15) rotate(-5deg);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.8;
}

/* ============================================
   STRENGTHS SECTION
   ============================================ */
.sec-strengths {
  background: var(--white);
  position: relative;
}

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

.strength-card {
  background: var(--white);
  border: var(--manga-border-thick);
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 10px 10px 0 var(--accent);
  box-shadow: 10px 10px 0 var(--accent);
}

.strength-num {
  font-family: var(--font-en);
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 10px;
  right: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.strength-card:hover .strength-num {
  opacity: 0.3;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.strength-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--dark);
  position: relative;
  z-index: 2;
}

.strength-subtitle {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.strength-text {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

/* Manga impact frame behind strength card */
.strength-card::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.strength-card:hover::after {
  opacity: 0.3;
  bottom: -10px;
  right: -10px;
}

/* ============================================
   MANGA SECTION
   ============================================ */
.sec-manga {
  background: var(--light-grey);
  position: relative;
  overflow: hidden;
}

.sec-manga::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ccc 0.5px, transparent 0.5px);
  background-size: 12px 12px;
  opacity: 0.25;
  pointer-events: none;
}

.manga-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.manga-image-wrap {
  border: var(--manga-border-thick);
  background: var(--white);
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.manga-image-wrap:hover {
  -webkit-box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: rotate(-0.5deg);
  transform: rotate(-0.5deg);
}

.manga-image-wrap img {
  width: 100%;
  height: auto;
}

.manga-cta {
  text-align: center;
  margin-top: 50px;
}

.manga-cta p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.sec-why {
  background: var(--white);
  position: relative;
}

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

.why-card {
  background: var(--light-grey);
  border: 2px solid var(--border);
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 6px 6px 0 var(--border);
  box-shadow: 6px 6px 0 var(--border);
  background: var(--white);
}

.why-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 16px;
  color: var(--accent);
}

.why-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-title {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-text {
  font-size: 13px;
  color: #666;
  line-height: 1.9;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.sec-about {
  background: var(--light-grey);
  position: relative;
  overflow: hidden;
}

.about-logo-bg {
  position: absolute;
  top: 50%;
  left: -5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.04;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition:
    transform 0.1s linear,
    -webkit-transform 0.1s linear;
}

.about-logo-bg svg {
  width: 100%;
  height: 100%;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  font-size: 15px;
  line-height: 2.2;
  color: #444;
  margin-bottom: 40px;
}

.about-quote {
  background: var(--white);
  border: var(--manga-border-thick);
  padding: 40px;
  position: relative;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--dark);
  text-align: center;
}

/* Speech bubble tail */
.about-quote::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid var(--border);
}

.about-quote::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 17px solid var(--white);
  z-index: 2;
}

.about-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.about-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.about-info-item dt {
  font-weight: 700;
  min-width: 80px;
  color: var(--accent);
  font-size: 14px;
}

.about-info-item dd {
  font-size: 14px;
  color: #555;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.sec-contact {
  background: var(--accent);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Manga impact frame */
.contact-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.contact-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-content p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.contact-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--accent);
  padding: 20px 60px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  border: 3px solid var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-btn:hover {
  background: transparent;
  color: var(--white);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* Speed lines in contact */
.contact-speedlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.contact-speedlines .cline {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: #999;
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 20px;
  opacity: 0.5;
}

.footer-logo svg,
.footer-logo img {
  height: 30px;
  width: auto;
  margin: 0 auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.footer-company {
  font-size: 14px;
  margin-bottom: 5px;
  color: #aaa;
}

.footer-address {
  font-size: 12px;
  color: #777;
  margin-bottom: 30px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-nav a {
  font-size: 13px;
  color: #888;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: #555;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* ============================================
   CTA BUTTON (shared)
   ============================================ */
.btn-manga {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 45px;
  font-size: 15px;
  font-weight: 700;
  border: 3px solid var(--accent);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.btn-manga:hover {
  background: transparent;
  color: var(--accent);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(78, 87, 96, 0.3);
  box-shadow: 0 6px 20px rgba(78, 87, 96, 0.3);
}

.btn-manga .arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.btn-manga:hover .arrow {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

/* ============================================
   PARALLAX ELEMENTS
   ============================================ */
.parallax-dot {
  position: absolute;
  border-radius: 50%;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strengths-grid .strength-card:last-child {
    grid-column: 1/-1;
    max-width: 50%;
    margin: 0 auto;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-inner {
    padding: 12px 20px;
  }
  .hero {
    padding: 150px 0 100px;
    min-height: 90vh;
  }
  .section-padding {
    padding: 70px 0;
  }
  .inner {
    padding: 0 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .strengths-grid .strength-card:last-child {
    max-width: 100%;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-info {
    grid-template-columns: 1fr;
  }
  .sec-title .en {
    font-size: 36px;
  }
  .manga-image-wrap {
    padding: 10px;
  }
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .contact-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero-catch {
    font-size: 28px;
  }
  .hero-cta {
    padding: 14px 35px;
    font-size: 14px;
  }
  .strength-num {
    font-size: 50px;
  }
  .about-quote {
    padding: 25px 20px;
    font-size: 15px;
  }
}
