/* ============================================================
   style.css — AI×プロのPR代行 LP
   Brand colors:
     Dark Navy : #0a1628  (accent / footer / CTA banners)
     Cyan      : #2CCEBD  (key color — unchanged)
     Light bg  : #f4f6f9  (section alternating)
     Gray bg   : #f5f6f8  (existing gray sections)
   Theme: Light / White-based professional PR design
   Fonts: Noto Sans JP + Inter (Google Fonts)
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;

  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: #1a1a2e;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}

@media (min-width: 1024px) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.section-dark {
  background: #f4f6f9;
}
.section-light {
  background: #ffffff;
}
.section-gray {
  background: #f5f6f8;
}

.pc-only {
  display: none;
}
.sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .pc-only {
    display: inline;
  }
  .sp-only {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media (max-width: 600px) {
  .sp-br {
    display: block;
  }
}

/* ============================================================
   SHARED COMPONENTS
============================================================ */

/* Section label pill */
.section-label {
  display: inline-block;
  padding: 4px 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1fa898;
  border: 1px solid rgba(44, 206, 189, 0.5);
  border-radius: 999px;
  background: rgba(44, 206, 189, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #2ccebd, #5dddd0);
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.white-text {
  color: #f4f6f9;
}

/* Glow button */
.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #0a1628;
  border-radius: 12px;
  background: linear-gradient(135deg, #2ccebd, #1fa898);
  box-shadow: 0 4px 20px rgba(44, 206, 189, 0.35);
  font-weight: 700;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 206, 189, 0.5);
}

/* Section header block */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header .section-label {
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.3;
}

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

.section-desc {
  font-size: 18px;
  line-height: 1.8;
}

.section-desc--light {
  color: #4b5563;
}
.section-desc--light-dim {
  color: #6b7280;
}
.section-desc--dark {
  color: #6b7280;
}

/* Fade-up animation */
.fade-up {
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(24px);
  opacity: 0;
}

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

.three-col-grid {
  display: grid;
  align-items: stretch;
  margin-bottom: 3.5rem;

  grid-column-gap: 1.2rem;
  grid-template-columns: 1fr;
  grid-row-gap: 1.2rem;
}

@media (min-width: 768px) {
  .three-col-grid {
    grid-row-gap: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;

  gap: 2rem;
}

/* Logo */
.logo-link {
  flex-shrink: 0;
  text-decoration: none;
}

.logo-text {
  letter-spacing: -0.02em;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 1.58rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .logo-text {
    font-size: 1.88rem;
  }
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  margin-left: auto;

  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  padding: 8px 12px;
  transition: background 0.2s ease;
  color: #1a1a2e;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Desktop CTA */
.header-cta {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 1rem;
}

.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: inline-flex;
  }
}

/* Hamburger button */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 8px;
  color: #1a1a2e;
  border: none;
  background: none;
}

@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.icon-close {
  display: none;
}

.hamburger-btn.open .icon-menu {
  display: none;
}

.hamburger-btn.open .icon-close {
  display: block;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.98);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;

  gap: 0.25rem;
}

.mobile-nav-link {
  padding: 12px 16px;
  transition: background 0.2s ease;
  color: #1a1a2e;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.mobile-cta {
  margin-top: 12px;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  min-height: 100vh;
}

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

  inset: 0;
}

.hero-bg-img {
  display: none;
}

.hero-bg-overlay {
  position: absolute;
  background: radial-gradient(ellipse at 75% 15%, rgba(44, 206, 189, 0.14) 0%, transparent 55%), radial-gradient(ellipse at 15% 85%, rgba(44, 206, 189, 0.07) 0%, transparent 45%), linear-gradient(160deg, #f0fdfc 0%, #ffffff 45%, #f5f7fa 100%);

  inset: 0;
}

.hero-bg-person {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.16;

  inset: 0;
  object-fit: contain;
  object-position: 0 top;
  mix-blend-mode: luminosity;
}

@media (min-width: 768px) {
  .hero-bg-person {
    object-fit: cover;
    object-position: 90% top;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-content > * {
  max-width: 800px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 6px 16px;
  letter-spacing: 0.1em;
  color: #2ccebd;
  border: 1px solid rgba(44, 206, 189, 0.4);
  border-radius: 999px;
  background: rgba(44, 206, 189, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;

  gap: 8px;
  backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
  .hero-badge {
    font-size: 1rem;
  }
}

.hero-badge-star {
  font-size: 10px;
}

/* Title */
.hero-title {
  margin-bottom: 1.5rem;
  white-space: nowrap;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .hero-title {
    white-space: normal;
  }
}

/* Subtitle */
.hero-subtitle {
  margin-bottom: 2.5rem;
  color: #4b5563;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.8;
}

.hero-price {
  color: #2ccebd;
  font-weight: 700;
}

/* Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  padding: 20px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .hero-stats {
    align-items: center;
    flex-direction: row;
    margin: 0 0 2.5rem 0;
  }
}

.hero-stat {
  padding: 4px 24px;
  text-align: center;
}

.hero-stat-value {
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

/* Dividers between stats */
.hero-stat-divider--v {
  display: none;
  align-self: stretch;
  width: 1px;
  margin: 0 4px;
  background: #e5e7eb;
}

.hero-stat-divider--h {
  display: block;
  height: 1px;
  margin: 12px 0;
  background: #e5e7eb;
}

@media (min-width: 640px) {
  .hero-stat-divider--v {
    display: block;
  }
  .hero-stat-divider--h {
    display: none;
  }
}

/* CTA group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;

  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.hero-cta-primary {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  color: #1a1a2e;
  border: 2px solid rgba(10, 22, 40, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-cta-secondary:hover {
  border-color: #1a1a2e;
  background: rgba(10, 22, 40, 0.05);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  z-index: 10;
  bottom: 2rem;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateX(-50%);

  gap: 8px;
}

.scroll-indicator-text {
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 10px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  animation: scrollLine 2s ease-in-out infinite;
  background: linear-gradient(to bottom, rgba(44, 206, 189, 0.6), transparent);
}

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

/* ============================================================
   LOGO MARQUEE SECTION
============================================================ */
.marquee-section {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
  background: #ffffff;
}

.marquee-fade {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.marquee-fade--left {
  left: 0;
}

.marquee-fade--right {
  right: 0;
}

.marquee-label {
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  text-align: center;
}

.marquee-label p {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2ccebd;
  font-size: 12px;
  font-weight: 600;
}

.marquee-overflow {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;

  gap: 2.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 140px;
  height: 60px;
}

.marquee-logo {
  max-width: 100%;
  max-height: 100%;
  transition: filter 0.3s ease;

  object-fit: contain;
}

.marquee-logo:hover {
  filter: none;
}

/* ============================================================
   WHY PR SECTION
============================================================ */
.why-pr-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.why-pr-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 50%;
  background: rgba(44, 206, 189, 0.08);

  filter: blur(80px);
}

/* Dark card (used in Why PR & Features) — now white card */

.dark-card {
  position: relative;
  /* ★ ADDED */
  display: grid;
  overflow: hidden;
  padding: 1.5rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fafffe;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .dark-card {
    padding: 2.25rem;

    grid-row: span 5;
    grid-template-rows: subgrid;
  }
}

.dark-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  transition: opacity 0.3s ease;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #2ccebd, #1fa898);
}

.dark-card-icon-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  /* margin-bottom: 1.5rem; */

  gap: 1rem;
}

.icon-box {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 3px;
  color: #2ccebd;
  border: 1px solid rgba(44, 206, 189, 0.2);
  border-radius: 12px;
  background: rgba(44, 206, 189, 0.12);
}

.dark-card-icon-row .icon-box {
  align-self: center;
}

.card-number {
  margin-bottom: 12px;
  letter-spacing: 0.15em;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.dark-card-title {
  margin-bottom: 4px;
  color: #1a1a2e;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
}

.dark-card-subtitle {
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  color: #2ccebd;
  font-size: 15px;
  font-weight: 600;
}

.dark-card-body {
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.9;
}

.highlight-box {
  padding: 12px 16px;
  border: 1px solid rgba(44, 206, 189, 0.2);
  border-radius: 12px;
  background: rgba(44, 206, 189, 0.1);
}

.highlight-text {
  color: #2ccebd;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

/* Conclusion banner */
.conclusion-banner {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(135deg, #111e33, #162035);
}

@media (min-width: 768px) {
  .conclusion-banner {
    padding: 2.5rem 3rem;
  }
}

.conclusion-banner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(44, 206, 189, 0.08);

  filter: blur(60px);
}

.conclusion-eyebrow {
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.conclusion-title {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.6;
}

.conclusion-sub {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

/* ============================================================
   PROBLEMS SECTION
============================================================ */
.problems-section {
  padding: 6rem 0;
}

/* Light card */
.light-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border: 1px solid #2ccebd;
  border-radius: 16px;
  background: #f5f6f8;
}
@media (min-width: 768px) {
  .light-card {
    padding: 2.25rem;

    grid-row: span 4;
    grid-template-rows: subgrid;
  }
}

.light-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #2ccebd, #1fa898);
}

.light-card-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  padding: 3px;
  color: #1fa898;
  border-radius: 12px;
  background: rgba(44, 206, 189, 0.12);
}

.light-card-number {
  margin-bottom: 12px;
  letter-spacing: 0.15em;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.light-card-title {
  margin-bottom: 12px;
  color: #0a1628;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
}

.light-card-body {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.9;
}

/* Solution banner */
.solution-banner {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a1628, #111e33);
}

@media (min-width: 768px) {
  .solution-banner {
    padding: 3rem;
  }
}

.solution-banner-glow {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 384px;
  height: 384px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(44, 206, 189, 0.1);

  filter: blur(60px);
}

.solution-eyebrow {
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.solution-text {
  margin-bottom: 2rem;
  color: #ffffff;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.7;
}

.solution-strong {
  color: #2ccebd;
}

.solution-cta {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features-section {
  padding: 6rem 0;
}

.feature-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 1.5rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fafffe;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .feature-card {
    padding: 2.25rem;

    grid-row: span 5;
    grid-template-rows: subgrid;
  }
}

.feature-card-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transition: opacity 0.3s ease;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(90deg, #2ccebd, #1fa898);
}

.feature-card-number {
  margin-bottom: 12px;
  letter-spacing: 0.15em;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.feature-card-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  padding: 3px;
  color: #2ccebd;
  border: 1px solid rgba(44, 206, 189, 0.2);
  border-radius: 12px;
  background: rgba(44, 206, 189, 0.12);
}

.feature-card-title {
  margin-bottom: 1rem;
  color: #1a1a2e;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
}

.feature-card-body {
  margin-bottom: 1.75rem;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.9;
}

.feature-highlight {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 16px 20px;
  border: 1px solid rgba(44, 206, 189, 0.2);
  border-radius: 12px;
  background: rgba(44, 206, 189, 0.1);

  gap: 8px;
}

.feature-highlight-label {
  color: #6b7280;
  font-size: 15px;
}

.feature-highlight-value {
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.feature-highlight-unit {
  color: #6b7280;
  font-size: 15px;
}

/* ============================================================
   COMPARISON SECTION
============================================================ */
.comparison-section {
  padding: 6rem 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  overflow: hidden;
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border-radius: 16px;
  background: #ffffff;
}

.comparison-th {
  padding: 20px 24px;
  border-bottom: 2px solid #e5e7eb;
  font-size: 1rem;
  font-weight: 700;
}

.comparison-th--label {
  text-align: left;
  color: #6b7280;
  background: #f5f6f8;
  font-size: 15px;
  font-weight: 600;
}

.comparison-th--ours {
  text-align: center;
  border-bottom-color: #2ccebd;
  background: #0a1628;
}

.comparison-recommended {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  color: #2ccebd;
  font-size: 13px;
  font-weight: 700;
}

.comparison-ours-name {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.comparison-th--other {
  text-align: center;
  color: #0a1628;
  background: #f5f6f8;
}

.comparison-td {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1rem;
}

.comparison-td--label {
  color: #1e293b;
  background: #f5f6f8;
  font-size: 15px;
  font-weight: 600;
}

.comparison-td--ours {
  text-align: center;
  color: #0a1628;
  border-right: 2px solid #2ccebd;
  border-bottom-color: rgba(44, 206, 189, 0.2);
  border-left: 2px solid #2ccebd;
  background: rgba(44, 206, 189, 0.04);
  font-weight: 700;
}

.comparison-td--other {
  text-align: center;
  color: #6b7280;
}

.comparison-row-alt td {
  background-color: #fafafa;
}

.comparison-row-alt .comparison-td--ours {
  background: rgba(44, 206, 189, 0.06);
}

.comparison-row-alt .comparison-td--label {
  background: #f5f6f8;
}

.check-icon {
  color: #1fa898;
  font-size: 18px;
  font-weight: 700;
}

.check-icon--other {
  color: #6b7280;
}

.cross-icon {
  color: #9ca3af;
  font-size: 18px;
}

.triangle-icon {
  color: #f59e0b;
  font-size: 18px;
}

/* ============================================================
   PLANS SECTION
============================================================ */
.plans-section {
  padding: 6rem 0;
}

.plans-grid {
  display: grid;
  max-width: 768px;
  margin-right: auto;
  margin-bottom: 4rem;
  margin-left: auto;

  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .plans-grid {
    align-items: start;

    grid-template-columns: repeat(2, 1fr);
  }
}

.plan-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.plan-card--featured {
  border: 2px solid #2ccebd;
  background: #ffffff;
  box-shadow: 0 4px 30px rgba(44, 206, 189, 0.18);
}

.plan-card--normal {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  color: #0a1628;
  border-radius: 999px;
  background: #2ccebd;
  font-size: 14px;
  font-weight: 700;
}

.plan-header {
  padding: 2rem 1.75rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.plan-header--featured {
  background: rgba(44, 206, 189, 0.05);
}

.plan-label {
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 15px;
}

.plan-name {
  margin-bottom: 1.25rem;
  color: #1a1a2e;
  font-size: 1.5rem;
  font-weight: 900;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;

  gap: 4px;
}

.plan-price {
  letter-spacing: -0.02em;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.plan-unit {
  color: #1a1a2e;
  font-size: 20px;
  font-weight: 700;
}

.plan-per {
  color: #6b7280;
  font-size: 14px;
}

.plan-note {
  color: #9ca3af;
  font-size: 12px;
}

.plan-body {
  padding: 1.5rem 1.75rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;

  gap: 12px;
}

.plan-feature {
  display: flex;
  align-items: center;
  font-size: 1rem;

  gap: 10px;
}

.plan-feature--on {
  color: #1a1a2e;
}
.plan-feature--off {
  color: #9ca3af;
}

.plan-check {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #0a1628;
  border-radius: 50%;
  background: #2ccebd;
  font-size: 11px;
  font-weight: 700;
}

.plan-minus {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #9ca3af;
  border-radius: 50%;
  background: #f0f0f0;
  font-size: 11px;
}

.plan-memo {
  margin-bottom: 1.5rem;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f5f6f8;
}

.plan-memo-title {
  margin-bottom: 4px;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.plan-memo-body {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.plan-cta {
  display: block;
  width: 100%;
  padding: 14px;
  transition: all 0.2s ease;
  text-align: center;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.plan-cta--outline {
  color: #1a1a2e;
  border: 2px solid rgba(10, 22, 40, 0.25);
  background: transparent;
}

.plan-cta--outline:hover {
  border-color: #1a1a2e;
  background: rgba(10, 22, 40, 0.05);
}

/* Options */
.options-section {
  padding-top: 3.5rem;
  border-top: 1px solid #e5e7eb;
}

.options-title {
  margin-bottom: 1.25rem;
  color: #1a1a2e;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
}

.options-desc {
  color: #6b7280;
  font-size: 18px;
}

.options-grid {
  display: grid;

  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-card {
  display: flex;
  padding: 1.75rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fafffe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

  gap: 1.25rem;
}

.option-icon-box {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  border: 1px solid rgba(44, 206, 189, 0.2);
  border-radius: 12px;
  background: rgba(44, 206, 189, 0.12);
}

.option-plus {
  color: #2ccebd;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.option-title {
  margin-bottom: 8px;
  color: #1a1a2e;
  font-size: 1.2rem;
  font-weight: 700;
}

.option-body {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================================
   FLOW SECTION
============================================================ */
.flow-section {
  padding: 6rem 0;
}

.flow-grid {
  display: grid;

  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .flow-grid {
    align-items: start;

    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 3rem;

  gap: 0;
}

@media (min-width: 768px) {
  .flow-step {
    flex-direction: column;
    padding-right: 1rem;
    padding-bottom: 0;
    padding-left: 1rem;
    text-align: center;

    gap: 1rem;
  }
}

/* Connector line (desktop only) */
.flow-connector {
  position: absolute;
  bottom: 14px;
  left: 50%;
  display: block;
  width: 2px;
  height: 12%;
  background: linear-gradient(to bottom, rgba(44, 206, 189, 0.5), rgba(44, 206, 189, 0.2));
}

/* 最後のステップは縦線を非表示 */
.flow-step:last-child .flow-connector {
  display: none;
}

@media (min-width: 768px) {
  .flow-step:not(:last-child) .flow-connector {
    position: absolute;
    top: 36px;
    right: 0;
    bottom: auto;
    left: calc(50% + 45px);
    display: block;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, rgba(44, 206, 189, 0.5), rgba(44, 206, 189, 0.2));
  }

  .flow-step:last-child .flow-connector {
    display: none;
  }
}

.flow-icon-box {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-bottom: 1.25rem;
  padding: 3px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  color: #0a1628;
  /* border: 2px solid #e5e7eb; */
  border-radius: 16px;
  background: #0a1628;
}

.flow-step-label {
  margin-bottom: 8px;
  letter-spacing: 0.15em;
  color: #2ccebd;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.flow-step-title {
  margin-bottom: 8px;
  color: #0a1628;
  font-size: 1.5rem;
  font-weight: 900;
}

.flow-step-body {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 768px;
  margin: 0 auto;

  gap: 12px;
}

.faq-item {
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.faq-item.open {
  border-color: rgba(44, 206, 189, 0.5);
  box-shadow: 0 4px 16px rgba(44, 206, 189, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  transition: background 0.2s ease;
  text-align: left;
  color: #1a1a2e;
  border: none;
  background: none;

  gap: 1rem;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #2ccebd;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 16px 24px 20px;
  color: #6b7280;
  border-top: 1px solid #f0f0f0;
  font-size: 15px;
  line-height: 1.9;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.contact-bg {
  position: absolute;
  z-index: 0;

  inset: 0;
}

.contact-bg-img {
  display: none;
}

.contact-bg-overlay {
  position: absolute;
  background: linear-gradient(135deg, #0a1628 0%, #0d1e35 60%, #112a42 100%);

  inset: 0;
}

.contact-content {
  position: relative;
  z-index: 10;
}

.contact-form-wrap {
  max-width: 768px;
  margin: 0 auto;
}

.contact-form-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 3rem;
  }
}

/* HubSpot form overrides */
.hubspot-form-wrapper .hs-form {
  font-family: "Noto Sans JP", sans-serif !important;
}

.hubspot-form-wrapper .hs-form-field label {
  display: block !important;
  margin-bottom: 6px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.hubspot-form-wrapper .hs-input,
.hubspot-form-wrapper .hs-fieldtype-textarea textarea,
.hubspot-form-wrapper select.hs-input {
  box-sizing: border-box !important;
  width: 100% !important;
  padding: 12px 16px !important;
  transition:
    border-color 0.2s,
    background 0.2s !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.07) !important;
  font-size: 15px !important;
}

.hubspot-form-wrapper .hs-input:focus,
.hubspot-form-wrapper .hs-fieldtype-textarea textarea:focus {
  border-color: #2ccebd !important;
  background: rgba(44, 206, 189, 0.05) !important;
  box-shadow: 0 0 0 2px rgba(44, 206, 189, 0.15) !important;
}

.hubspot-form-wrapper .hs-input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.hubspot-form-wrapper .hs-form-field {
  margin-bottom: 18px !important;
}

.hubspot-form-wrapper .hs-button.primary {
  width: 100% !important;
  padding: 16px !important;
  cursor: pointer !important;
  transition:
    transform 0.25s,
    box-shadow 0.25s !important;
  color: #0a1628 !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #2ccebd, #1fa898) !important;
  box-shadow: 0 4px 20px rgba(44, 206, 189, 0.35) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.hubspot-form-wrapper .hs-button.primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(44, 206, 189, 0.5) !important;
}

.hubspot-form-wrapper .hs-error-msgs {
  margin-top: 4px !important;
  padding: 0 !important;
  list-style: none !important;
  color: #f87171 !important;
  font-size: 12px !important;
}

.hubspot-form-wrapper .submitted-message {
  padding: 24px 0 !important;
  text-align: center !important;
  color: #fff !important;
  font-size: 16px !important;
}

.hubspot-form-wrapper .hs-richtext {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer-bottom {
  padding: 4rem 0 2rem;
  background: #060e1c;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;

  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.footer-tagline {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.footer-company {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.footer-links-group {
  display: flex;

  gap: 3rem;
}

.footer-links-heading {
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
}

.footer-links-list {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.footer-links-list a {
  transition: color 0.2s ease;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.footer-legal-links {
  display: flex;

  gap: 1.5rem;
}

.footer-legal-links a {
  transition: color 0.2s ease;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   HERO ANIMATED SVG BACKGROUND
============================================================ */
.hero-bg-svg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;

  inset: 0;
}

/* All SVG animation elements: use element's own bounding box as origin */
.hero-ring,
.hero-pulse-core,
.hero-node,
.hero-doc,
.hero-dot {
  transform-origin: center;

  transform-box: fill-box;
}

@keyframes hero-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.5;
  }
}

@keyframes hero-node-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

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

@keyframes hero-dot-twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-pulse-core {
  animation: hero-ring-pulse 2.8s ease-in-out infinite 0.2s;
}
.hero-ring--1 {
  animation: hero-ring-pulse 3.2s ease-in-out infinite 0s;
}
.hero-ring--2 {
  animation: hero-ring-pulse 3.2s ease-in-out infinite 0.6s;
}
.hero-ring--3 {
  animation: hero-ring-pulse 3.2s ease-in-out infinite 1.2s;
}
.hero-ring--4 {
  animation: hero-ring-pulse 3.2s ease-in-out infinite 1.8s;
}

.hero-node--1 {
  animation: hero-node-breathe 4s ease-in-out infinite 0s;
}
.hero-node--2 {
  animation: hero-node-breathe 4s ease-in-out infinite 0.8s;
}
.hero-node--3 {
  animation: hero-node-breathe 4s ease-in-out infinite 1.6s;
}
.hero-node--4 {
  animation: hero-node-breathe 4s ease-in-out infinite 0.4s;
}
.hero-node--5 {
  animation: hero-node-breathe 4s ease-in-out infinite 2.4s;
}

.hero-doc--1 {
  animation: hero-doc-float 6s ease-in-out infinite 0s;
}
.hero-doc--2 {
  animation: hero-doc-float 8s ease-in-out infinite 2s;
}

.hero-dot--a {
  animation: hero-dot-twinkle 2.4s ease-in-out infinite 0s;
}
.hero-dot--b {
  animation: hero-dot-twinkle 2.4s ease-in-out infinite 0.8s;
}
.hero-dot--c {
  animation: hero-dot-twinkle 2.4s ease-in-out infinite 1.6s;
}

/* ============================================================
   SECTION ANIMATED BACKGROUNDS
============================================================ */

/* Shared keyframes */
@keyframes blob-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.08);
  }
}

@keyframes blob-float-b {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.06);
  }
}

@keyframes plan-glow-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

/* --- Why PR: animate existing glow + add second orb --- */
@keyframes why-pr-glow-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) translateY(-22px);
    opacity: 1;
  }
}

.why-pr-glow {
  animation: why-pr-glow-float 9s ease-in-out infinite;
}

.why-pr-section::after {
  position: absolute;
  right: 5%;
  bottom: -120px;
  width: 450px;
  height: 450px;
  content: "";
  animation: blob-float-b 12s ease-in-out infinite 3s;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(44, 206, 189, 0.05);

  filter: blur(80px);
}

/* --- Features: floating blobs via pseudo-elements --- */
.features-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.features-section::before {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 520px;
  height: 520px;
  content: "";
  animation: blob-float 11s ease-in-out infinite;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(44, 206, 189, 0.06);

  filter: blur(90px);
}

.features-section::after {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  content: "";
  animation: blob-float-b 13s ease-in-out infinite 2.5s;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(44, 206, 189, 0.05);

  filter: blur(80px);
}

/* --- Plans: centered radial pulse --- */
.plans-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.plans-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  content: "";
  transform: translate(-50%, -50%);
  animation: plan-glow-pulse 9s ease-in-out infinite;
  pointer-events: none;
  background: radial-gradient(circle, rgba(44, 206, 189, 0.05) 0%, transparent 70%);
}

/* --- Contact: animated orbs on dark background --- */
.contact-anim-orbs {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;

  inset: 0;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;

  filter: blur(70px);
}

.contact-orb--1 {
  top: -120px;
  right: 8%;
  width: 420px;
  height: 420px;
  animation: blob-float 11s ease-in-out infinite;
  background: rgba(44, 206, 189, 0.08);
}

.contact-orb--2 {
  bottom: -90px;
  left: 4%;
  width: 320px;
  height: 320px;
  animation: blob-float-b 13s ease-in-out infinite 4s;
  background: rgba(44, 206, 189, 0.06);
}

.contact-orb--3 {
  top: 35%;
  right: 28%;
  width: 260px;
  height: 260px;
  animation: blob-float 8s ease-in-out infinite 2s;
  background: rgba(44, 206, 189, 0.05);
}

/* Ensure contact content stays above animation orbs */
.contact-content {
  position: relative;
  z-index: 10;
}

/* ============================================================
   ACCESSIBILITY
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
