:root {
  --navy-950: #0a1626;
  --navy-900: #0f1f38;
  --navy-800: #16324f;
  --navy-700: #1e3c63;
  --navy-600: #2b5282;
  --navy-100: #edf3fa;
  --navy-50: #f5f8fc;
  --orange-500: #f5811f;
  --orange-600: #e06c10;
  --orange-400: #ff9d47;
  --orange-100: #fff4ea;
  --orange-glow: rgba(245, 129, 31, 0.35);
  --accent-blue: #2563eb;
  --accent-teal: #0d9488;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f8fafc;
  --white: #ffffff;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(16, 35, 61, 0.08), 0 2px 6px -1px rgba(16, 35, 61, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(16, 35, 61, 0.12), 0 4px 12px -2px rgba(16, 35, 61, 0.05);
  --shadow-xl: 0 24px 48px -12px rgba(16, 35, 61, 0.16), 0 8px 18px -4px rgba(16, 35, 61, 0.08);
  --shadow-btn: 0 10px 24px -6px rgba(245, 129, 31, 0.45);
  --shadow-laptop: 0 28px 56px -12px rgba(16, 35, 61, 0.32), 0 12px 24px -8px rgba(16, 35, 61, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* FAX/AI等の英数字の途中で改行しない */
  word-break: keep-all;
  /* break-wordはmin-content算出時に縮まないため、flex/gridの子要素が
     枠からはみ出す原因になる。anywhereなら必要な時だけ縮められる */
  overflow-wrap: anywhere;
}

/* 見出しは行の長さが揃うように改行位置をバランス調整する */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  letter-spacing: -0.015em;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 16px;
  }
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

@media (max-width: 640px) {
  .btn {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 1.4;
  }
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn__icon {
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

.btn__sub {
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.92;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff8e2e 0%, var(--orange-500) 50%, var(--orange-600) 100%);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn--primary:hover::after {
  transform: translateX(100%);
}

.btn--primary:hover {
  box-shadow: 0 14px 28px -6px rgba(245, 129, 31, 0.58);
}

.btn--outline {
  background: var(--white);
  color: var(--navy-800);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  border-color: var(--navy-700);
  background: var(--navy-50);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
  font-weight: 800;
  box-shadow: 0 14px 32px -8px rgba(245, 129, 31, 0.5);
}

@media (max-width: 640px) {
  .btn--lg {
    padding: 14px 18px;
    font-size: 0.9375rem;
    width: 100%;
  }
}

/* --- ヘッダー --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background-color 0.2s, box-shadow 0.2s;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 74px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.site-header__brand:hover {
  opacity: 0.85;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: auto;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.site-header__link {
  position: relative;
  padding: 8px 0;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header__link:hover,
.site-header__link.is-active {
  color: var(--navy-900);
}

.site-header__link.is-active::after {
  transform: scaleX(1);
}

.site-header__menu-btn {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.site-header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 760px) {
  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  .site-header__menu-btn {
    display: flex;
  }
}

/* --- ドロワーメニュー(モバイル) --- */
.site-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.site-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: min(80vw, 320px);
  display: flex;
  flex-direction: column;
  padding: 20px 24px 32px;
  background: var(--white);
  box-shadow: -16px 0 40px rgba(15, 23, 42, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-drawer.is-open {
  transform: translateX(0);
}

.site-drawer__close {
  align-self: flex-end;
  margin: 0 -8px 12px 0;
  padding: 8px;
  border: none;
  background: none;
  color: var(--gray-600);
  font-size: 1.875rem;
  line-height: 1;
  cursor: pointer;
}

.site-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-drawer__nav a {
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-drawer__nav a:hover,
.site-drawer__nav a.is-active {
  background: var(--navy-50);
  color: var(--orange-600);
}

.site-drawer__cta {
  margin-top: 24px;
  width: 100%;
}

/* --- モバイル固定CTAバー --- */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 760px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  }

  .mobile-cta-bar .btn {
    width: 100%;
    justify-content: center;
  }

  body.has-mobile-cta-bar {
    padding-bottom: 84px;
  }

  body.is-drawer-open {
    overflow: hidden;
  }
}

/* --- ヒーローセクション --- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #edf3fa 0%, #f6f8fb 65%, var(--white) 100%);
  padding: 52px 0 88px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(37, 99, 235, 0.12), transparent 48%),
    radial-gradient(circle at 82% 20%, rgba(245, 129, 31, 0.14), transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(15, 31, 56, 0.05), transparent 50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  overflow: visible;
}

.hero__copy {
  max-width: 460px;
  z-index: 2;
  position: relative;
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 32px 0 56px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__copy {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
  }
}

.hero__eyebrow-wrap {
  margin-bottom: 20px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid rgba(245, 129, 31, 0.28);
  box-shadow: 0 2px 8px rgba(245, 129, 31, 0.12);
  color: var(--navy-800);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 0 rgba(245, 129, 31, 0.7);
  animation: hero-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 129, 31, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(245, 129, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 129, 31, 0);
  }
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 mark {
  background: linear-gradient(120deg, #ff8e2e, var(--orange-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 24px;
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffbf7 0%, #fff4ea 100%);
  border: 1px solid rgba(245, 129, 31, 0.3);
  box-shadow: 0 4px 16px -2px rgba(245, 129, 31, 0.12);
  margin-bottom: 28px;
  max-width: 100%;
  box-sizing: border-box;
}

.hero__stat-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  line-height: 1.2;
  margin-bottom: 2px;
  white-space: nowrap;
}

.hero__stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero__stat-unit {
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: 2px;
}

.hero__stat-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 129, 31, 0.16);
  color: var(--orange-600);
  flex-shrink: 0;
}

.hero__stat-col--highlight .hero__stat-label {
  color: var(--orange-600);
}

.hero__stat-col--highlight .hero__stat-val {
  color: var(--orange-600);
}

@media (max-width: 640px) {
  .hero__stats {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
    gap: 8px;
  }

  .hero__stat-col {
    flex: 1;
  }

  .hero__stat-col:last-child {
    text-align: right;
    align-items: flex-end;
  }

  .hero__stat-val {
    font-size: 1.25rem;
  }

  .hero__stat-label {
    font-size: 0.6875rem;
  }

  .hero__stat-arrow {
    width: 24px;
    height: 24px;
  }
}

.hero__actions {
  margin-bottom: 28px;
  max-width: 100%;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  border-top: 1px solid rgba(203, 213, 225, 0.6);
  padding-top: 20px;
}

@media (max-width: 960px) {
  .hero__trust {
    justify-content: center;
  }
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
}

.hero__trust-item svg {
  color: var(--orange-500);
  flex-shrink: 0;
}

/* ラップトップモックアップ */
.hero__art {
  position: relative;
  z-index: 1;
  width: clamp(820px, 58vw, 1160px);
  max-width: none;
  min-width: 740px;
}

@media (max-width: 960px) {
  .hero__art {
    width: 100%;
    min-width: 0;
    max-width: 580px;
    margin: 0 auto;
  }
}

.hero__art::after {
  content: '';
  position: absolute;
  inset: 5% -25% -15% 5%;
  z-index: -1;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(245, 129, 31, 0.28) 0%, rgba(37, 99, 235, 0.16) 45%, transparent 70%);
  filter: blur(56px);
  pointer-events: none;
}

.laptop {
  position: relative;
  filter: drop-shadow(0 32px 64px rgba(15, 31, 56, 0.24)) drop-shadow(0 12px 28px rgba(15, 31, 56, 0.12));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.laptop:hover {
  transform: translateY(-4px) scale(1.008);
  filter: drop-shadow(0 40px 76px rgba(15, 31, 56, 0.28)) drop-shadow(0 16px 36px rgba(15, 31, 56, 0.14));
}

.laptop__screen {
  position: relative;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  border-radius: 20px;
  padding: 10px 10px 14px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.4);
}

@media (max-width: 960px) {
  .laptop__screen {
    border-radius: 14px;
    padding: 7px 7px 10px;
  }
}

.laptop__cam {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0f172a;
  box-shadow: inset 0 0 2px #000, 0 0 1px rgba(255, 255, 255, 0.3);
}

.laptop__display {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.laptop__display img {
  display: block;
  width: 100%;
  height: auto;
}

.zoom-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.zoom-badge--right {
  left: auto;
  right: 14px;
}

.laptop__base {
  position: relative;
  height: 14px;
  margin: 0 -4%;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 32px -8px rgba(15, 31, 56, 0.45);
}

@media (max-width: 640px) {
  .laptop__base {
    margin: 0;
    height: 11px;
    border-radius: 0 0 12px 12px;
  }
}

.laptop__base::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 14%;
  height: 6px;
  background: #94a3b8;
  border-radius: 0 0 6px 6px;
}

/* --- セクション共通 --- */
.section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section--alt {
  background: var(--navy-50);
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  color: var(--orange-500);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: #fff4ea;
  border-radius: var(--radius-full);
}

.section__head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  color: var(--navy-950);
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.35;
}

.section__head p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0;
}

/* --- カードグリッド --- */
.grid {
  display: grid;
  gap: 24px;
}

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

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

@media (max-width: 900px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-100), var(--navy-50));
  color: var(--navy-700);
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  color: var(--navy-950);
  margin: 0 0 12px;
  font-weight: 800;
}

.card p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* --- 仕組み (Structure Flow) --- */
.structure-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.structure-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
}

.structure-card:hover {
  border-color: rgba(245, 129, 31, 0.4);
  box-shadow: var(--shadow-lg);
}

.structure-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--navy-100);
  color: var(--navy-700);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}

.structure-card__icon--accent {
  background: #fff4ea;
  color: var(--orange-600);
}

.structure-card .card__num {
  display: inline-block;
  background: transparent;
  width: auto;
  height: auto;
  color: var(--navy-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.structure-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-400);
  padding: 0 4px;
}

@media (max-width: 900px) {
  .structure-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .structure-flow__arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* --- 画像+テキストの交互レイアウト (Feature Row) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 80px;
}

.feature-row__media-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-row__media-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-row__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.feature-row__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-100), var(--navy-50));
  border: 1px solid var(--gray-200);
  color: var(--navy-700);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.feature-row__body h3 {
  font-size: 1.625rem;
  color: var(--navy-950);
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.35;
}

.feature-row__body p {
  color: var(--gray-600);
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-row__points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row__points li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9375rem;
  color: var(--navy-900);
  font-weight: 600;
}

.feature-row__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: 800;
}

@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row__media {
    order: -1;
  }
}

/* --- 全幅バナー画像 --- */
.banner {
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 31, 56, 0.25) 0%, rgba(15, 31, 56, 0.5) 100%);
  pointer-events: none;
}

.banner img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

/* --- 導入フロー --- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: flow;
  position: relative;
  margin-top: 48px;
}

.flow::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.flow__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow__step::before {
  counter-increment: flow;
  content: counter(flow);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: var(--white);
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 4px 14px -2px rgba(245, 129, 31, 0.45);
}

.flow__step h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy-950);
  font-weight: 800;
  white-space: nowrap;
}

.flow__step p {
  margin: 8px 0 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.flow__note {
  margin-top: 56px;
  padding: 24px 32px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
}

.flow__note-badge {
  display: inline-flex;
  align-items: center;
  background: var(--navy-700);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.flow__note p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow::before {
    display: none;
  }

  .flow__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding-bottom: 32px;
  }

  .flow__step:last-child {
    padding-bottom: 0;
  }

  .flow__step::before {
    margin: 0;
    flex-shrink: 0;
  }

  .flow__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 21px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
  }

  .flow__step__body {
    min-width: 0;
    padding-top: 8px;
  }

  .flow__note {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --- 実績スタッツ (Result) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  text-align: center;
  padding: 40px 32px;
}

.stat-card--featured {
  border-color: var(--orange-400);
  background: linear-gradient(180deg, #fffbf7 0%, var(--white) 100%);
  box-shadow: var(--shadow-md);
}

.stat-card__metric {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.stat-card__num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card--featured .stat-card__num {
  color: var(--orange-600);
}

.stat-card__text {
  line-height: 1.5;
  font-size: 2rem;
}

.stat-card__unit {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy-800);
}

.stat-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--navy-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* --- 変化カード (Change) --- */
.change-card {
  padding: 36px 32px;
}

.change-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff4ea;
  color: var(--orange-600);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

/* --- 料金プラン (Pricing) --- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 48px;
}

@media (max-width: 960px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan--featured {
  border: 2px solid var(--orange-500);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  background: linear-gradient(180deg, #fffcf9 0%, var(--white) 100%);
}

.plan--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px -12px rgba(245, 129, 31, 0.28);
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px -2px rgba(245, 129, 31, 0.5);
  white-space: nowrap;
}

.plan__header {
  margin-bottom: 20px;
}

.plan__target {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--navy-100);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.plan h3 {
  margin: 0 0 6px;
  font-size: 1.625rem;
  color: var(--navy-950);
  font-weight: 800;
}

.plan__tagline {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

.plan__price-wrap {
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  color: var(--navy-950);
}

.plan__price strong {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan__price span {
  color: var(--gray-600);
  font-size: 0.9375rem;
  font-weight: 600;
}

.plan__price em {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
}

.plan__setup {
  color: var(--gray-500);
  font-size: 0.8125rem;
  margin: 6px 0 0;
}

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan__features li {
  display: flex;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--navy-900);
  line-height: 1.5;
}

.plan__features .mark {
  color: var(--orange-500);
  font-weight: 800;
  flex-shrink: 0;
}

.plan__btn {
  width: 100%;
}

/* --- 料金比較表 --- */
.compare-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gray-200);
  transition: background-color 0.15s ease;
}

.compare-table tbody tr:hover td {
  background-color: #f8fafc;
}

.compare-table thead th {
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 800;
  background: var(--navy-50);
  padding: 18px 20px;
}

.compare-table td:first-child,
.compare-table thead th:first-child {
  text-align: left;
  color: var(--navy-900);
  font-weight: 700;
}

.compare-table th.is-featured,
.compare-table td.is-featured {
  background: #fffaf4;
  border-left: 2px solid rgba(245, 129, 31, 0.2);
  border-right: 2px solid rgba(245, 129, 31, 0.2);
}

.compare-table tbody tr:hover td.is-featured {
  background: #fff4ea;
}

.compare-table thead th.is-featured {
  color: var(--orange-600);
  border-top: 3px solid var(--orange-500);
}

.compare-table__group th {
  text-align: left;
  background: var(--navy-100);
  color: var(--navy-800);
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 12px 20px;
  letter-spacing: 0.04em;
}

.compare-table .mark {
  color: var(--orange-500);
  font-weight: 800;
  font-size: 1.125rem;
}

.compare-table .is-muted {
  color: var(--gray-400);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  border-color: rgba(245, 129, 31, 0.45);
  box-shadow: 0 8px 24px -4px rgba(15, 31, 56, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--navy-950);
  font-size: 1.0625rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__q {
  flex: 1;
}

.faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-700);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-item__toggle {
  transform: rotate(180deg);
  background: #fff4ea;
  color: var(--orange-600);
}

.faq-item__answer {
  padding: 0 0 24px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.faq-item__answer p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.8;
  word-break: break-word;
}

/* --- CTA帯 --- */
.section--cta {
  padding: 40px 0 96px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0a1626 0%, #10233d 50%, #173252 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 68px 48px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 768px) {
  .section--cta {
    padding: 24px 0 64px;
  }

  .cta-band {
    padding: 40px 18px;
    border-radius: var(--radius-lg);
  }

  .cta-band h2 {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    margin-bottom: 12px;
  }

  .cta-band p {
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.65;
  }

  .cta-band .btn--lg {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-size: 0.9375rem;
  }
}

.cta-band__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 580px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 129, 31, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  margin: 0 0 16px;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.cta-band p {
  position: relative;
  margin: 0 auto 32px;
  color: #cbd5e1;
  font-size: 1.0625rem;
  max-width: 620px;
  line-height: 1.8;
}

.cta-band__actions {
  position: relative;
  max-width: 100%;
}

.cta-band__micro {
  position: relative;
  display: block;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 18px;
}

/* --- フッター --- */
.site-footer {
  border-top: 1px solid var(--gray-200);
  padding: 56px 0 36px;
  background: var(--navy-50);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.site-footer__brand p {
  margin: 12px 0 0;
  color: var(--gray-600);
  font-size: 0.875rem;
  max-width: 340px;
  line-height: 1.7;
}

.site-footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-600);
}

.site-footer__nav a {
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover {
  color: var(--navy-900);
}

.site-footer__copyright {
  width: 100%;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.8125rem;
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

/* --- ページヘッダー(機能/料金/FAQ共通) --- */
.page-head {
  text-align: center;
  padding: 68px 24px 20px;
  background: linear-gradient(180deg, var(--navy-50) 0%, var(--white) 100%);
}

.page-head__eyebrow {
  display: inline-block;
  color: var(--orange-500);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 14px;
  background: #fff4ea;
  border-radius: var(--radius-full);
}

.page-head h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  color: var(--navy-950);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-head p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.page-head + .section {
  padding-top: 40px;
}

/* --- お問い合わせレイアウト (Contact 2-Column) --- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-layout > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-info {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info__card {
  background: linear-gradient(155deg, #10233d 0%, #183354 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 768px) {
  .contact-info__card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }
}

.contact-info__card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 28px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 18px;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 129, 31, 0.2);
  color: var(--orange-400);
  flex-shrink: 0;
}

.contact-info__list strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info__list p {
  margin: 0;
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.6;
}

.contact-info__security {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.contact-info__security h4 {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-info__security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-info__security-badges span {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }
}

.contact-form__field {
  margin-bottom: 22px;
}

.contact-form__field > label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.contact-form__required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  font-size: 0.6875rem;
  font-weight: 700;
  vertical-align: middle;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(245, 129, 31, 0.18);
}

.contact-form__error {
  color: #dc2626;
  font-size: 0.8125rem;
  margin: 6px 0 0;
  font-weight: 600;
}

.contact-form__submit {
  width: 100%;
  margin-top: 12px;
}

.contact-form__note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-align: center;
  margin: 12px 0 0;
}

.contact-form__recaptcha-notice {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin: 8px 0 0;
}

/* バッジを隠す代わりに.contact-form__recaptcha-noticeで規約上必須の表記をしている */
.grecaptcha-badge {
  visibility: hidden;
}

.plan-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

.plan-select__option {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-600);
  cursor: pointer;
  background: var(--white);
  box-sizing: border-box;
  max-width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

@media (max-width: 640px) {
  .plan-select {
    flex-direction: column;
  }

  .plan-select__option {
    width: 100%;
    white-space: normal;
    word-break: break-word;
    justify-content: flex-start;
    line-height: 1.4;
  }
}

.plan-select__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.plan-select__option:hover {
  border-color: #cbd5e1;
  background: var(--navy-50);
}

.plan-select__option:has(input:checked) {
  border-color: var(--orange-500);
  background: #fff8f0;
  color: var(--orange-600);
  font-weight: 700;
  box-shadow: 0 0 0 1px var(--orange-500);
}

.contact-thanks {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0 96px;
}

.contact-thanks h1 {
  color: var(--navy-950);
  font-size: 2rem;
  margin: 0 0 16px;
  font-weight: 800;
}

.contact-thanks p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin: 0 0 36px;
}

/* --- 画像の拡大表示 (Lightbox) --- */
.js-zoomable {
  cursor: zoom-in;
  transition: opacity 0.15s ease, transform 0.2s ease;
}

.js-zoomable:hover {
  opacity: 0.94;
}

.lightbox {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 92vw;
  max-height: 92vh;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(10, 22, 38, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__img {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.625rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}

.lightbox__close:hover {
  transform: scale(1.08);
  background: #f8fafc;
}

