/* ============================================
   JINZAINESIA Service LP - v3 (LivCo-style)
   ============================================ */

:root {
  --navy: #1a1a2e;
  --navy-mid: #16213e;
  --navy-light: #0f3460;
  --accent: #c1272d;
  --accent-dark: #a01f24;
  --accent-light: #fdeaea;
  --accent-bg: rgba(193,39,45,0.06);
  --green: #2e8b57;
  --green-light: #e8f5ee;
  --gold: #d4a843;
  --line-green: #06c755;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --warm-bg: #faf8f5;
  --gray-50: #f9fafb;
  --gray-100: #f0f1f3;
  --gray-200: #e2e4e8;
  --gray-300: #cfd2d8;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Poppins', sans-serif;
  --max-w: 1280px;
  --max-w-lg: 1360px;
  --header-h: 70px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }
body {
  font-family: var(--font-ja);
  color: var(--gray-800);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 36px; }
.container--lg { max-width: var(--max-w-lg); }
.text-center { text-align: center; }

/* --- Section --- */
.sec { padding: 90px 0; }
.sec--gray { background: var(--off-white); }
.sec--warm { background: var(--warm-bg); }
.sec--navy { background: var(--navy); color: var(--white); }
.sec--accent-bg { background: var(--accent-bg); }

.sec__label {
  display: block;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-light);
  text-align: center;
  margin-bottom: 10px;
}
.sec--navy .sec__label { color: rgba(255,255,255,0.4); }

.sec__heading { text-align: center; margin-bottom: 52px; }

.sec__title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.sec--navy .sec__title { color: var(--white); }

.sec__title-accent { color: var(--accent); } /* red kept for key emphasis words only */

.sec__title-bar {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.sec__sub {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.9;
}
.sec--navy .sec__sub { color: rgba(255,255,255,0.55); }

/* --- Wave Separator --- */
.wave-sep {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: 50px;
}
.wave-sep--flip svg { transform: rotate(180deg); }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w-lg); margin: 0 auto; padding: 0 28px;
}
.header__logo-text {
  font-size: 1.25rem; font-weight: 800; color: var(--navy);
  font-family: var(--font-en); letter-spacing: -0.01em;
}
.header__logo-img {
  height: 38px; width: auto; display: block;
}
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  font-size: 0.82rem; font-weight: 500; color: var(--gray-600);
  transition: color 0.2s; white-space: nowrap;
}
.header__nav a:hover { color: var(--navy); }
.header__cta-btn {
  background: var(--accent); color: var(--white) !important;
  padding: 9px 22px; border-radius: 6px; font-size: 0.82rem; font-weight: 700;
  transition: all 0.2s var(--ease);
}
.header__cta-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.header__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1100;
}
.header__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  transition: all 0.3s var(--ease); border-radius: 2px;
}
.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 36px; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s var(--ease); border: none; white-space: nowrap;
  font-family: var(--font-ja);
}
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(193,39,45,0.2); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn--line { background: var(--line-green); color: var(--white); }
.btn--line:hover { background: #05a847; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6,199,85,0.2); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--sm { padding: 11px 24px; font-size: 0.85rem; }
.btn--lg { padding: 18px 44px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: calc(var(--header-h) + 50px) 0 0;
}
.hero__bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #e63946 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 58% 1fr; gap: 36px; align-items: center;
  padding-bottom: 40px;
}
.hero__content { max-width: 640px; }
.hero__lead {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
  margin-bottom: 16px; line-height: 1.5;
}
.hero__flag { font-size: 1.3rem; }
.hero__catch-large {
  font-size: 2.25rem; font-weight: 900; line-height: 1.45;
  color: var(--navy); margin-bottom: 14px;
}
.hero__sub {
  font-size: 1.25rem; font-weight: 700; color: var(--accent);
  margin-bottom: 28px; letter-spacing: 0.08em;
}

/* Hero Stats Badges */
.hero__badges {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero__badge {
  display: flex; flex-direction: column; align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  min-width: 140px;
  box-shadow: var(--shadow);
}
.hero__badge-label {
  font-size: 0.72rem; font-weight: 600; color: var(--gray-500); margin-bottom: 2px;
}
.hero__badge-number {
  font-family: var(--font-en); font-size: 1.8rem; font-weight: 800;
  color: var(--accent); line-height: 1.2;
}
.hero__badge-number span {
  font-size: 0.75rem; font-weight: 700; color: var(--navy); font-family: var(--font-ja);
}
.hero__badge-note {
  font-size: 0.7rem; color: var(--gray-500); font-weight: 500;
}

/* Hero Gallery */
.hero__gallery {
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 2;
}
.hero__gallery-main {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 3px solid rgba(255,255,255,0.8);
}
.hero__gallery-main img {
  width: 100%; height: 320px; object-fit: cover; display: block;
}
.hero__gallery-sub {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero__gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255,255,255,0.8);
}
.hero__gallery-item img {
  width: 100%; height: 200px; object-fit: cover; object-position: center; display: block;
}
.hero__gallery-item:first-child img {
  object-position: 50% 30%;
}
.hero__gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 20px 12px 8px; text-align: center;
  letter-spacing: 0.04em;
}

/* Hero CTA Row (LivCo-style) */
.hero__cta-row {
  position: relative; z-index: 2;
  display: flex; gap: 16px;
  padding: 36px 0 40px;
  max-width: 720px;
}
.hero__cta-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 40px;
  border-radius: 60px;
  font-size: 1.15rem; font-weight: 700;
  font-family: var(--font-ja);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  flex: 1;
  text-decoration: none;
  white-space: nowrap;
}
.hero__cta-btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(193,39,45,0.25);
}
.hero__cta-btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(193,39,45,0.35);
}
.hero__cta-btn--outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-300);
}
.hero__cta-btn--outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero__cta-badge {
  background: var(--white);
  color: var(--accent);
  font-size: 0.75rem; font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}
.hero__cta-badge--dark {
  background: var(--navy);
  color: var(--white);
}
.hero__cta-text {
  flex: 1;
}
.hero__cta-btn svg {
  flex-shrink: 0;
}

/* Social proof bar */
.hero__proof {
  position: relative; z-index: 2;
  background: var(--navy);
  padding: 28px 0;
}
.hero__proof-text {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}
.hero__proof-text span {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}
.hero__proof-text strong {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  vertical-align: middle;
}

/* ===== PAIN POINTS ===== */
.pain-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.pain-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gray-300);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 0.95rem; font-weight: 500; color: var(--gray-700);
  transition: all 0.25s var(--ease);
}
.pain-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.pain-item__x {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
}
.pain-item__x svg { width: 12px; height: 12px; color: var(--gray-400); }

/* ===== STRENGTHS ===== */
.strength-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 72px;
}
.strength-block:nth-child(even) { direction: rtl; }
.strength-block:nth-child(even) > * { direction: ltr; }
.strength-block:last-child { margin-bottom: 0; }

.strength-block__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 0.85rem;
}
.strength-block__img img { width: 100%; height: 100%; object-fit: cover; }

.strength-block__body {}
.strength-block__num {
  font-family: var(--font-en); font-size: 0.72rem; font-weight: 700;
  color: var(--navy-light); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.strength-block__title {
  font-size: 1.35rem; font-weight: 800; color: var(--navy);
  line-height: 1.55; margin-bottom: 16px;
}
.strength-block__desc {
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.95;
}

/* ===== WHY INDONESIA ===== */
.why-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.why-stat {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 16px; text-align: center;
  transition: all 0.25s var(--ease);
}
.why-stat:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-stat__num {
  font-family: var(--font-en); font-size: 2rem; font-weight: 800;
  color: var(--navy); line-height: 1.1;
}
.why-stat__num span { font-size: 0.85rem; color: var(--gray-500); }
.why-stat__label {
  font-size: 0.78rem; color: var(--gray-500); margin-top: 8px; line-height: 1.5;
}

/* --- Team intro --- */
.team-intro {
  text-align: center; margin-bottom: 48px;
}
.team-intro__lead {
  font-size: 1.05rem; color: var(--gray-700); line-height: 2;
}
.team-intro__highlight {
  background: linear-gradient(transparent 60%, rgba(193,39,45,0.15) 60%);
  font-weight: 700; color: var(--navy); padding: 0 4px;
}

/* --- Team cards grid --- */
.team-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
  overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.team-card__photo {
  width: 100%; aspect-ratio: 1 / 1; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-card__photo-placeholder {
  font-size: 0.75rem; color: var(--gray-400); text-align: center; padding: 16px;
}
.team-card__body {
  padding: 24px;
}
.team-card__dept {
  font-size: 0.75rem; color: var(--accent); font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.team-card__name {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  margin-bottom: 12px; line-height: 1.4;
}
.team-card__name span {
  font-size: 1rem; margin-left: 4px;
}
.team-card__desc {
  font-size: 0.82rem; color: var(--gray-500); line-height: 1.8;
}

/* ===== SERVICES (Phase cards) ===== */
.phase-flow {
  display: flex; gap: 0; align-items: stretch; position: relative;
}
.phase-flow__arrow {
  display: flex; align-items: center; padding: 0 4px; color: var(--gray-300);
}
.phase-flow__arrow svg { width: 24px; height: 24px; }
.phase-card {
  flex: 1; background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  text-align: center; transition: all 0.3s var(--ease);
}
.phase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.phase-card__badge {
  display: inline-block; font-family: var(--font-en); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 14px;
}
.phase-card:nth-child(1) .phase-card__badge { background: var(--accent-light); color: var(--accent); }
.phase-card:nth-child(3) .phase-card__badge { background: #e8f5ee; color: var(--green); }
.phase-card:nth-child(5) .phase-card__badge { background: #fef3c7; color: #b45309; }
.phase-card__title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.phase-card__list { text-align: left; }
.phase-card__list li {
  font-size: 0.84rem; color: var(--gray-600); padding: 7px 0; padding-left: 16px;
  position: relative; line-height: 1.6; border-bottom: 1px solid var(--gray-50);
}
.phase-card__list li:last-child { border-bottom: none; }
.phase-card__list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 1px; background: var(--gray-300);
}

/* ===== INDUSTRIES ===== */
.ind-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.ind-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; transition: all 0.3s var(--ease);
}
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ind-card__name { font-size: 1.15rem; font-weight: 800; }
.ind-card__en { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 4px; font-family: var(--font-en); }

.tag-group { text-align: center; margin-bottom: 20px; }
.tag-group__title {
  font-size: 0.75rem; font-weight: 600; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tag {
  padding: 5px 14px; border-radius: 5px; font-size: 0.8rem; font-weight: 500;
}
.tag--light { background: var(--gray-100); color: var(--gray-700); }
.tag--dark { background: var(--navy); color: var(--white); }

/* ===== FLOW ===== */
/* Flow heading pill */
.flow-heading {
  text-align: center; margin-bottom: 28px;
}
.flow-heading__title {
  display: inline-block; background: var(--white);
  padding: 18px 48px; border-radius: 60px;
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  box-shadow: var(--shadow);
}
.flow-desc {
  text-align: center; font-size: 0.95rem; color: var(--gray-600);
  line-height: 2; margin-bottom: 48px;
}
/* Flow steps horizontal */
.flow-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 80px auto 1fr;
  align-items: stretch; gap: 0;
  margin-bottom: 32px;
}
.flow-step {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 12px 18px;
  text-align: center; position: relative;
}
.flow-step__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 800;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(193,39,45,0.25);
}
.flow-step__badge--strong {
  background: var(--navy); width: 38px; height: 38px;
  box-shadow: 0 2px 8px rgba(26,26,46,0.3);
}
.flow-step__title {
  font-size: 0.82rem; font-weight: 800; color: var(--navy);
  margin-bottom: 8px;
}
.flow-step__desc {
  font-size: 0.7rem; color: var(--gray-500); line-height: 1.7;
  text-align: left;
}
.flow-step__arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.6rem; flex-shrink: 0;
  padding: 0 2px;
}
/* Highlight step (入社) */
.flow-step--highlight {
  background: var(--accent); border-color: var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.flow-step--highlight .flow-step__title {
  color: #fff; margin-bottom: 0;
}
.flow-step__icon-svg {
  margin-bottom: 6px;
}
/* Education steps */
.flow-step--edu {
  border-color: var(--navy); border-width: 2.5px;
  background: rgba(26,26,46,0.03);
}
/* Timeline bars */
.flow-timeline-bar {
  display: flex; gap: 8px; margin: 0 auto;
}
.flow-timeline-bar__item {
  text-align: center; padding: 12px 0;
  border-radius: 8px; font-size: 1rem; font-weight: 800; color: var(--white);
}
.flow-timeline-bar__item--short {
  flex: 3; background: var(--accent);
}
.flow-timeline-bar__item--long {
  flex: 4; background: var(--navy);
}

/* ===== CASES ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card__video {
  position: relative; padding-top: 56.25%; background: var(--navy);
}
.case-card__video-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.play-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.play-icon svg { width: 16px; height: 16px; color: var(--white); margin-left: 2px; }
.case-card__video-ph span { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.case-card__body { padding: 22px; }
.case-card__company { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.case-card__tag {
  display: inline-block; background: var(--gray-100); color: var(--gray-500);
  padding: 2px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 500; margin-bottom: 10px;
}
.case-card__desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.8; }

/* ===== RESOURCES ===== */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.res-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all 0.3s var(--ease); position: relative;
}
.res-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.res-card--soon { opacity: 0.5; pointer-events: none; }
.res-card__badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: var(--white); padding: 3px 10px;
  border-radius: 4px; font-size: 0.65rem; font-weight: 700; z-index: 2;
}
.res-card__thumb {
  height: 130px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.res-card__thumb-text {
  color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 600;
  text-align: center; line-height: 1.5;
}
.res-card__body { padding: 18px; }
.res-card__title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.5; }

/* ===== PRICING (Comparison Table) ===== */
.pricing-table-wrap {
  overflow-x: auto; margin-bottom: 36px;
}
.pricing-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
  min-width: 600px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--gray-200);
}
.pricing-table thead th {
  background: var(--navy); color: var(--white); font-weight: 700; font-size: 0.82rem;
}
.pricing-table thead th:first-child { border-radius: 8px 0 0 0; }
.pricing-table thead th:last-child { border-radius: 0 8px 0 0; }
.pricing-table thead th.highlight { background: var(--navy-light); }
.pricing-table tbody td { background: var(--white); color: var(--gray-700); }
.pricing-table tbody td.highlight {
  background: var(--accent-light); color: var(--navy); font-weight: 700;
}
.pricing-table tbody tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.pricing-table tbody tr:last-child td:last-child { border-radius: 0 0 8px 0; }
.pricing-table tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--navy);
  background: var(--gray-50);
}

.pricing-note { text-align: center; color: var(--gray-500); font-size: 0.88rem; margin-bottom: 20px; }

/* ===== FAQ ===== */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden; transition: all 0.25s var(--ease);
}
.faq-item.active { border-color: var(--navy-light); box-shadow: var(--shadow); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left;
  font-size: 0.92rem; font-weight: 600; color: var(--navy); font-family: var(--font-ja); line-height: 1.6;
}
.faq-item__icon {
  flex-shrink: 0; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.faq-item__icon svg { width: 14px; height: 14px; color: var(--gray-400); transition: color 0.3s; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item.active .faq-item__icon svg { color: var(--navy); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item__a-inner {
  padding: 0 22px 18px; font-size: 0.88rem; color: var(--gray-500); line-height: 1.9;
}

/* ===== CONTACT V2 ===== */
.contact-v2 {
  background: var(--white); padding: 100px 0 80px; position: relative;
}
/* Evidence strip */
.contact-v2__evidence {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 56px; padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-200);
}
.evidence-item {
  text-align: center;
}
.evidence-item__number {
  display: block; font-family: var(--font-en); font-size: 2.4rem;
  font-weight: 800; color: var(--navy); line-height: 1.2;
}
.evidence-item__number span {
  font-size: 1rem; font-weight: 700; color: var(--gray-600);
  font-family: var(--font-ja);
}
.evidence-item__label {
  display: block; font-size: 0.82rem; color: var(--gray-500);
  margin-top: 6px; font-weight: 500;
}
/* Main CTA area */
.contact-v2__main {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.contact-v2__title {
  font-size: 1.8rem; font-weight: 800; color: var(--navy);
  line-height: 1.5; margin-bottom: 16px;
}
.contact-v2__desc {
  font-size: 0.95rem; color: var(--gray-500);
  line-height: 1.9; margin-bottom: 28px;
}
.contact-v2__checks {
  display: flex; flex-direction: column; gap: 12px;
  list-style: none;
}
.contact-v2__checks li {
  font-size: 0.9rem; color: var(--gray-700); padding-left: 28px;
  position: relative; line-height: 1.6;
}
.contact-v2__checks li::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232e8b57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
/* Action buttons */
.contact-v2__actions {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-v2__btn {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: var(--radius-lg); font-size: 1rem;
  text-decoration: none; transition: all 0.25s var(--ease); cursor: pointer;
}
.contact-v2__btn-main {
  display: block; font-weight: 700; font-size: 1rem;
}
.contact-v2__btn-sub {
  display: block; font-size: 0.78rem; opacity: 0.7; margin-top: 2px; font-weight: 400;
}
.contact-v2__btn--line {
  background: var(--line-green); color: #fff;
  box-shadow: 0 4px 16px rgba(6,199,85,0.25);
}
.contact-v2__btn--line:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(6,199,85,0.3); }
.contact-v2__btn--dl {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(193,39,45,0.2);
}
.contact-v2__btn--dl:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(193,39,45,0.25); }
.contact-v2__btn--mail {
  background: var(--white); color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.contact-v2__btn--mail:hover { transform: translateY(-3px); border-color: var(--gray-300); box-shadow: var(--shadow-md); }

/* ===== FOOTER ===== */
.footer { background: var(--gray-50); color: var(--gray-600); padding: 56px 0 24px; border-top: 1px solid var(--gray-200); }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 32px;
}
.footer__logo { margin-bottom: 14px; }
.footer__info { font-size: 0.8rem; line-height: 2; color: var(--gray-500); }
.footer__licenses { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.footer__license-tag {
  font-size: 0.7rem; color: var(--gray-500); background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 4px; padding: 3px 10px;
  font-weight: 500;
}
.footer__nav-title {
  font-size: 0.72rem; font-weight: 700; color: var(--navy); margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 7px; }
.footer__nav-list a { font-size: 0.8rem; color: var(--gray-500); transition: color 0.2s; }
.footer__nav-list a:hover { color: var(--navy); }
.footer__bottom {
  border-top: 1px solid var(--gray-200); padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--gray-400);
}
.footer__bottom a { color: var(--gray-400); }
.footer__bottom a:hover { color: var(--navy); }

/* ===== QUALITY SECTION ===== */
.quality {
  background: #fbf8f4;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.quality__heading {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
}
.quality__heading-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 44px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.quality__heading-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--white);
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.04));
}
.quality__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  text-align: center;
}
.quality__title-accent {
  color: var(--accent);
}
.quality__heading-deco {
  position: absolute;
  right: 10%;
  top: -10px;
}
.quality__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.quality__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.quality__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.quality__video {
  position: relative;
  padding-top: 56.25%;
  background: var(--navy);
}
.quality__video-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.quality__label {
  position: absolute;
  bottom: -14px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(193,39,45,0.2);
  z-index: 2;
}
.quality__card-body {
  padding: 28px 20px 22px;
}
.quality__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quality__list li {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.quality__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--accent);
}
.quality__bottom {
  position: relative;
}
.quality__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26,26,46,0.03) 0%, rgba(15,52,96,0.04) 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.quality__bottom-inner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,39,45,0.04) 0%, transparent 70%);
}
.quality__bottom-text {
  position: relative;
  z-index: 1;
}
.quality__bottom-sub {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.quality__bottom-main {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}
.quality__bottom-main span {
  color: var(--accent);
}
.quality__bottom-deco {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ===== LOGO SCROLL BAND ===== */
.logo-band {
  background: var(--white);
  padding: 40px 0;
  overflow: hidden;
}
.logo-band__title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logo-band__track-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-band__track-wrap:last-child { margin-bottom: 0; }
.logo-band__track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.logo-band__track--left {
  animation: logoScrollLeft 30s linear infinite;
}
.logo-band__track--right {
  animation: logoScrollRight 30s linear infinite;
}
@keyframes logoScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes logoScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.logo-band__item {
  flex-shrink: 0;
  padding: 12px 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s var(--ease);
}
.logo-band__item:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--navy);
  border-color: var(--gray-200);
}

/* ===== COMPARISON TABLE (LivCo-style) ===== */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 36px;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.85rem;
  min-width: 800px;
  line-height: 1.7;
}
.compare-table th,
.compare-table td {
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  vertical-align: middle;
}
/* Corner cell */
.compare-table__corner {
  background: var(--white);
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  width: 130px;
}
/* Our column header */
.compare-table__ours {
  background: var(--accent);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 28px 20px;
  width: 26%;
  border-color: var(--accent);
  border-top: 4px solid var(--accent);
  position: relative;
}
.compare-table__ours-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
  opacity: 0.9;
  line-height: 1.6;
}
/* Competitor headers */
.compare-table__other {
  background: var(--gray-100);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-en);
  width: 18%;
  padding: 28px 16px;
  border-top: 4px solid var(--gray-300);
}
/* Row label (left column) */
.compare-table__label {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  text-align: center;
  white-space: nowrap;
  border-left: 2px solid var(--gray-200);
}
/* Our column cells - highlighted with accent background */
.compare-table__ours-cell {
  background: #fff8f0;
  color: var(--navy);
  font-weight: 500;
  border-left: 3px solid var(--accent) !important;
  border-right: 3px solid var(--accent) !important;
}
/* Big price number in our column */
.compare-table__big-price {
  font-family: var(--font-en);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  display: inline-block;
}
.compare-table__big-price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-ja);
}
/* Regular price in competitor columns */
.compare-table__price {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  display: inline-block;
}
.compare-table__price span {
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-ja);
}
/* Badge pill */
.compare-table__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}
/* Last row bottom border for our column */
.compare-table tbody tr:last-child .compare-table__ours-cell {
  border-bottom: 3px solid var(--accent) !important;
}
/* Competitor cells */
.compare-table tbody td:not(.compare-table__label):not(.compare-table__ours-cell) {
  color: var(--gray-600);
  font-size: 0.84rem;
  background: var(--white);
}

/* ===== LINE QR WIDGET ===== */
.line-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.line-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.line-widget__trigger {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--line-green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(6,199,85,0.3);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}
.line-widget__trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(6,199,85,0.4);
}
.line-widget__card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  padding: 20px;
  text-align: center;
  width: 240px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s var(--ease);
  transform-origin: bottom right;
}
.line-widget__card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.line-widget__close {
  position: absolute;
  top: -10px; right: -10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  box-shadow: var(--shadow);
}
.line-widget__close:hover { background: var(--gray-50); }
.line-widget__close svg { width: 12px; height: 12px; color: var(--gray-500); }
.line-widget__badge {
  display: inline-block;
  background: var(--line-green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.line-widget__heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.line-widget__qr {
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  padding: 8px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
}
.line-widget__qr img {
  width: 150px; height: 150px;
  border-radius: 4px;
}
.line-widget__qr svg {
  border-radius: 4px;
}
.line-widget__cta-btn {
  display: block;
  background: var(--line-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s var(--ease);
}
.line-widget__cta-btn:hover {
  background: #05a847;
  transform: translateY(-1px);
}

/* ===== LINE BANNER ===== */
.line-banner {
  background: linear-gradient(135deg, #2dd36f 0%, var(--line-green) 100%);
  padding: 40px 0;
}
.line-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.line-banner__content { flex: 1; }
.line-banner__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.line-banner__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.line-banner__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}
.line-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  color: var(--line-green);
  padding: 14px 36px;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}
.line-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.line-banner__qr {
  flex-shrink: 0;
}
.line-banner__qr img,
.line-banner__qr svg {
  width: 120px; height: 120px;
  border-radius: 12px;
  background: var(--white);
  padding: 8px;
}

/* ===== RESOURCES PAGE ===== */
.resources-page { padding-top: var(--header-h); }
.resources-hero {
  text-align: center; padding: 56px 0 36px; background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}
.resources-hero__title { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.resources-hero__subtitle { font-size: 0.92rem; color: var(--gray-500); }
.resources-filter { display: flex; justify-content: center; gap: 8px; padding: 32px 0; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border: 1px solid var(--gray-200); border-radius: 5px;
  background: var(--white); font-size: 0.82rem; cursor: pointer;
  transition: all 0.2s var(--ease); font-family: var(--font-ja); font-weight: 500; color: var(--gray-600);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.resources-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 72px;
}

/* DL Modal */
.dl-modal {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px); z-index: 2000; align-items: center; justify-content: center; padding: 24px;
}
.dl-modal.active { display: flex; }
.dl-modal__content {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  max-width: 420px; width: 100%; position: relative; box-shadow: var(--shadow-lg);
}
.dl-modal__close {
  position: absolute; top: 14px; right: 14px; background: none; border: none;
  font-size: 1.3rem; cursor: pointer; color: var(--gray-400);
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border-radius: 5px; transition: all 0.2s;
}
.dl-modal__close:hover { background: var(--gray-100); color: var(--gray-600); }
.dl-modal__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dl-modal__desc { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 20px; }
.dl-modal__form { display: flex; flex-direction: column; gap: 10px; }
.dl-modal__input {
  padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: 6px;
  font-size: 0.88rem; font-family: var(--font-ja); outline: none; transition: border-color 0.2s;
}
.dl-modal__input:focus { border-color: var(--navy-light); }

/* ===== ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__nav {
    display: none; position: fixed; top: 0; right: 0; width: 260px; height: 100vh;
    background: var(--white); flex-direction: column; padding: 80px 28px 40px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.06); gap: 18px; align-items: flex-start;
    border-left: 1px solid var(--gray-100);
  }
  .header__nav.active { display: flex; }
  .header__hamburger { display: flex; }
  .hero__bg-accent { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__lead { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__cta-row { flex-direction: column; max-width: 400px; margin: 0 auto; }
  .hero__gallery { max-width: 400px; margin: 0 auto; }
  .strength-block { grid-template-columns: 1fr; gap: 28px; }
  .strength-block:nth-child(even) { direction: ltr; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .phase-flow { flex-direction: column; gap: 16px; }
  .phase-flow__arrow { transform: rotate(90deg); justify-content: center; }
  .cases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .quality__cards { grid-template-columns: repeat(2, 1fr); }
  .compare-table { min-width: 700px; }
  .team-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .team-card__body { padding: 18px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .sec { padding: 56px 0; }
  .sec__title { font-size: 1.3rem; }
  .sec__heading { margin-bottom: 32px; }

  /* Hero */
  .hero { padding-top: calc(var(--header-h) + 20px); }
  .hero__inner { padding-bottom: 20px; gap: 20px; }
  .hero__catch-large { font-size: 1.45rem; }
  .hero__lead { font-size: 0.88rem; }
  .hero__sub { font-size: 0.9rem; margin-bottom: 20px; }
  .hero__badges { gap: 8px; }
  .hero__badge { min-width: 100px; padding: 8px 10px; }
  .hero__badge-label { font-size: 0.6rem; }
  .hero__badge-number { font-size: 1.2rem; }
  .hero__badge-note { font-size: 0.55rem; }
  .hero__cta-row { flex-direction: column; max-width: 100%; margin: 0 auto; padding: 20px 0 24px; }
  .hero__cta-btn { padding: 16px 20px; font-size: 0.88rem; }
  .hero__gallery { max-width: 100%; }
  .hero__gallery-main img { height: 200px; }
  .hero__gallery-sub { gap: 8px; }
  .hero__gallery-item img { height: 120px; }

  /* Flow section */
  .flow-heading__title { font-size: 1.1rem; padding: 14px 28px; }
  .flow-desc { font-size: 0.82rem; margin-bottom: 32px; }
  .flow-desc br { display: none; }
  .flow-steps {
    display: flex; flex-direction: column; gap: 0;
  }
  .flow-step {
    flex: none; min-width: auto; padding: 20px 16px 16px;
  }
  .flow-step__desc { text-align: center; }
  .flow-step__arrow {
    transform: rotate(90deg); padding: 6px 0;
  }
  .flow-step--highlight { padding: 16px; }
  .flow-timeline-bar { flex-direction: column; gap: 8px; }
  .flow-timeline-bar__item { font-size: 0.9rem; padding: 10px; }

  /* Comparison table */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 600px; }
  .compare-table__big-price { font-size: 1.4rem; }
  .compare-table__price { font-size: 1rem; }

  /* Team */
  .team-cards { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .team-intro__lead { font-size: 0.9rem; }
  .team-intro__lead br { display: none; }

  /* Contact */
  .contact-v2 { padding: 56px 0 48px; }
  .contact-v2__evidence { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; padding-bottom: 40px; }
  .evidence-item__number { font-size: 1.8rem; }
  .contact-v2__main { grid-template-columns: 1fr; gap: 32px; }
  .contact-v2__title { font-size: 1.3rem; }
  .contact-v2__title br { display: none; }
  .contact-v2__desc { font-size: 0.88rem; }
  .contact-v2__desc br { display: none; }
  .contact-v2__btn { padding: 16px 20px; }
  .contact-v2__btn-main { font-size: 0.9rem; }

  /* Quality */
  .quality { padding: 56px 0; }
  .quality__cards { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto 36px; }
  .quality__heading-deco { display: none; }
  .quality__heading-card { padding: 18px 24px; }
  .quality__title { font-size: 1.15rem; }
  .quality__bottom-inner { flex-direction: column; text-align: center; padding: 24px 18px; gap: 16px; }
  .quality__bottom-main { font-size: 1.15rem; }
  .quality__bottom-deco svg { width: 80px; height: 80px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* LINE widget */
  .line-widget { bottom: 10px; right: 10px; display: flex; }
  .line-widget__trigger { width: 44px; height: 44px; }
  .line-widget__trigger svg { width: 20px; height: 20px; }
  .line-widget__card { width: 180px; padding: 14px; }
  .line-widget__qr img { width: 100px; height: 100px; }
  .line-widget__qr svg { width: 100px !important; height: 100px !important; }
  .line-widget__heading { font-size: 0.72rem; }
  .line-widget__cta-btn { font-size: 0.72rem; padding: 7px 14px; }

  /* LINE banner */
  .line-banner__inner { flex-direction: column; text-align: center; gap: 20px; }
  .line-banner__qr { display: none; }
  .line-banner__title { font-size: 1.1rem; }

  /* Resources */
  .resources-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; padding-bottom: 48px; }

  /* Other */
  .ind-main { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto 24px; }
  .res-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto 24px; }
  .strength-block { gap: 20px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero__catch-large { font-size: 1.3rem; }
  .sec__title { font-size: 1.15rem; }
  .hero__badges { flex-direction: column; align-items: center; }
  .hero__badge { min-width: 200px; }
  .evidence-item__number { font-size: 1.5rem; }
  .flow-heading__title { font-size: 0.95rem; padding: 12px 20px; }
}
