/* === FROM common.pc.css === */

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.wf-active #load {
	display: none;
}

:root {
	--primary-color: #2563eb;
	--primary-hover: #1d4ed8;
	--text-main: #1e293b;
	--text-sub: #64748b;
	--radius-sm: 8px;

  --primary: #2563eb;       /* Core Blue */
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  
  --text-main: #0f172a;     /* Dark Slate */
  --text-sub: #475569;      /* Adjusted for better readability */
  --text-light: #94a3b8;
  
  --bg-body: #f8fafc;       /* Very Light Blue/Gray Background */
  --bg-card: #ffffff;
  
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --container: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

body {
	min-width: 1300px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	word-break: keep-all;
	color: var(--text-main);
}

* {
	outline: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-collapse: collapse;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
	font-style: normal;
	list-style: none;
}

.sp {
	display: none;
}

.find {
	cursor: pointer;
	transition: .4s;
}

.clearfix:after {
	display: block;
	content: '';
	clear: both;
	height: 1px;
	overflow: hidden;
}

img {
	vertical-align: top;
	max-width: 100%;
}

/* ---------------------------------------------------------
	CSS Document form
--------------------------------------------------------- */

input, textarea, select, button {
	outline: 0;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
	font-size: 14px;
	color: var(--text-main);
}

select.invalid,
input.invalid,
textarea.invalid {
	box-shadow: 0 0 3px 0 #f00;
}

button,
input[type='button'],
input[type='submit'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .4s;
}

input[type='checkbox'],
input[type='radio'] {
	vertical-align: top;
	width: 22px;
	height: 22px;
	margin-right: 5px;
}

::-webkit-input-placeholder {
	color: #c8c8c8;
}

::-moz-placeholder {
	opacity: 1;
	color: #c8c8c8;
}

:-ms-input-placeholder {
	color: #c8c8c8;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
	overflow: hidden;
	padding-top: 120px;
}

.container {
	width: var(--container);
	margin: 0 auto;
}

.target {
	margin-top: -130px;
	padding-top: 130px;
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#sp_header,
#kalDrawer {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document header > pc_header
--------------------------------------------------------- */

#pc_header {
	height: 44px;
	overflow: hidden;
	background: var(--text-main);
	font-weight: 400;
	line-height: 46px;
	color: #e5e7eb;
}

#pc_header .pc_header-inner {
	display: flex;
	justify-content: space-between;
	width: var(--container);
	margin: 0 auto;
}

#pc_header .pc_header-exchange {
	display: flex;
}

#pc_header .pc_header-exchange li {
	margin-right: 9px;
	padding-right: 11px;
	font-size: 11px;
	position: relative;
}

#pc_header .pc_header-exchange li:not(:last-of-type):after {
	content: '';
	width: 1px;
	height: 12px;
	background: var(--text-light);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 0;
}

#pc_header .pc_header-exchange a {
	text-decoration: none;
	color: #e5e7eb;
	opacity: 0.85;
	transition: opacity .2s;
}

#pc_header .pc_header-exchange a:hover {
	text-decoration: underline;
	opacity: 1;
}

#pc_header .pc_header-exchange .this a {
	font-weight: 600;
	color: #fff;
	opacity: 1;
}

#pc_header .pc_header-nav {
	display: flex;
}

#pc_header .pc_header-nav li {
	margin-left: 15px;
	font-size: 13px;
}

#pc_header .pc_header-nav a {
	color: #fff;
	opacity: 0.8;
	transition: opacity .2s;
}

#pc_header .pc_header-nav a:hover {
	opacity: 1;
}

#pc_header .pc_header-nav .this a {
	font-weight: 600;
	color: #93c5fd;
	opacity: 1;
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	min-width: var(--container);
	width: 100%;
	height: 70px;
	border-bottom: solid 1px #d2d8e5;
	background: #fff;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 99;
}

#navi .navi-inner {
	display: flex;
	justify-content: space-between;
	width: var(--container);
	margin: 0 auto;
}

#navi .navi-brand a {
	display: flex;
	padding-top: 9px;
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
	color: #5f6f8f;
}

#navi .navi-brand img {
	height: 45px;
}

#navi .navi-brand_sub {
	margin-left: 20px;
	line-height: 50px;
}

#navi .navi-menu {
	display: flex;
	align-items: center;
}

#navi .menu {
	display: flex;
	align-items: center;
}

#navi .menu li {
	margin-left: 30px;
}

#navi .nav-link {
	display: block;
	background: transparent;
	font-size: 15px;
	font-weight: 600;
	line-height: 70px;
	color: var(--text-main);
	position: relative;
	transition: color .2s;
}
#navi .nav-link:hover { color: var(--primary); }
#navi .nav-link.active { color: var(--primary); }
#navi .nav-link.active::after { content:''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--primary); border-radius: 3px 3px 0 0; }

#navi .buy {
	display: block;
	height: 36px;
	padding: 0 20px;
	border-radius: 36px;
	background: var(--text-main);
	font-weight: 700;
	font-size: 14px;
	line-height: 36px;
	color: #fff; 
	transition: var(--transition);
	position: relative;
}

#navi .buy:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); color: #fff; }
#navi .buy.active { background: var(--primary); transform: translateY(0); box-shadow: none; color: #fff; }
#navi .buy.active::after { content:''; position: absolute; bottom: -17px; left: 0; width: 100%; height: 3px; background: var(--primary); border-radius: 3px 3px 0 0; }

#navi .util-box {
	display: none;
}

#navi .util-box.active {
	display: block;
}

#navi .header-cart-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 30px;
	margin-left: 15px;
	padding-top: 2px;
	border-radius: 4px;
	background: transparent;
	font-size: 18px;
	color: var(--text-main);
	transition: color 0.2s;
	position: relative;
}

#navi .header-cart-btn:hover {
	color: var(--primary);
}

#navi .header-cart-count {
	min-width: 16px;
	padding: 2px 5px;
	border-radius: 10px;
	background: #dc2626;
	text-align: center;
	font-weight: 700;
	font-size: 10px;
	color: #fff;
	position: absolute;
	top: -2px;
	right: -4px;
}

/* ---------------------------------------------------------
	CSS Document header > navi_software
--------------------------------------------------------- */

.mega {
	display: none;
	width: 100%;
	position: absolute;
	top: 70px;
	left: 0;
	z-index: 99;
}

.menu>li:hover .mega, .menu>li.open .mega { display: block; }
.mega-panel {
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
  padding: 40px 0;
}
.mega-grid { display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 40px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
/* === NEW MEGA MENU STYLES === */

/* Design 1: headline pills + clean grid */
.mega-style-1 .mega-headline-row {
  display: flex;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto 16px;
  padding: 0 24px;
}
.mega-headline-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-sub);
  font-size: 12px;
}
.mega-headline-pill.is-primary {
  background: var(--primary);
  color: #fff;
}
.mega-style-1-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px 0;
}
.mega-style-1-grid > div {
  border-right: 1px solid var(--border);
  padding-right: 16px;
  margin-right: 16px;
}
.mega-style-1-grid > div:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

/* Design 2: horizontal bands with chips */
.mega-style-2 {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-band {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-band-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.mega-band-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}
.mega-band-desc {
  font-size: 11px;
  color: var(--text-light);
}
.mega-band-body {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mega-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text-sub);
  text-decoration: none;
}
.mega-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #eff6ff;
}

/* Design 3: product tiles grid */
.mega-style-3 {
	width: var(--container);
	margin: 0 auto;
}
.mega-tile-flex {
	display: flex;
	justify-content: space-between;
}
.mega-tag-legend {
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}
.mega-tag-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text-sub);
}
.mega-tag-pill.is-support { border-color: #e2e8f0; }
.mega-tag-pill.is-normal { border-color: #bfdbfe; }
.mega-tag-pill.is-plugin { border-color: #4338ca; }
.mega-tag-pill.is-forensic { border-color: #fbbf24; }

.mega-tile-grid {
	display: flex;
	align-items: center;
}
.mega-tile-icon {
	margin-right: 12px;
}
.mega-tile-icon img {
	height: 36px;
}
.mega-col {
	width: 305px;
}
.mega-col-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.mega-tile-support-icon {
	margin-bottom: 8px;
	flex-shrink: 0;
}
.mega-tile-support-icon img {
	height: 26px;
}
.mega-tile-support-text .mega-tile-title {
	margin-bottom: 4px;
}

.mega-tile {
	display: flex;
	align-items: center;
	height: 90px;
	background: #ffffff;
	border-radius: 12px;
	margin-top: 10px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	transition: var(--transition);
}
.mega-tile:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  transform: translateY(-1px);
}
.mega-tile-tag {
  font-size: 10px;
  margin-bottom: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  display: inline-block;
  background: #f9fafb;
  color: var(--text-light);
}
.mega-tile-tag.is-normal { background: #eff6ff; color: #1d4ed8; }
.mega-tile-tag.is-plugin { background: #eef2ff; color: #4338ca; }
.mega-tile-tag.is-forensic { background: #fef3c7; color: #b45309; }
.mega-tile-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}
.mega-tile-desc {
	font-size: 11px;
	letter-spacing: 0.05em;
	color: var(--text-light);
}

.mega-col-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-light); margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 8px;
}
.mega-quick-item {
  display: flex; align-items: center; gap: 12px; padding: 12px; margin-bottom: 8px;
  background: var(--bg-body); border-radius: 12px; transition: var(--transition);
}
.mega-quick-item:hover { background: var(--primary-light); }
.mega-quick-item-icon { font-size: 20px; }
.mega-quick-item-title { font-size: 14px; font-weight: 700; color: var(--text-main); display: block;}
.mega-quick-item-desc { font-size: 12px; color: var(--text-sub); display: block; margin-top: 2px; }

.mega-link { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: var(--text-main); transition: var(--transition); }
.mega-link:hover { transform: translateX(4px); }
.mega-link:hover .mega-link-title { color: var(--primary); }
.mega-link-icon { color: var(--primary); font-size: 18px; width: 24px; display: flex; justify-content: center; margin-top: 2px; }
.mega-link-text { display: flex; flex-direction: column; }
.mega-link-title { font-size: 14px; font-weight: 600; }
.mega-link-desc { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	height: 250px;
	overflow: hidden;
	background: #000 no-repeat center;
	font-size: 0;
	line-height: 244px;
	color: #fff;
}

@media only screen and (min-width: 1921px) {
	#visual {
		background-size: 100% auto;
	}
}

#visual .container {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

#visual .h1 {
	font-weight: 800;
	font-size: 55px;
}

#visual .h1 + p {
	margin-top: 20px;
	font-size: 17px;
	line-height: 1.8;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	height: 32px;
	overflow: hidden;
	border-bottom: solid 1px #d2d8e5;
	font-size: 12px;
	color: var(--text-light);
}

#bread ol {
	display: flex;
	align-items: center;
	width: var(--container);
	height: 32px;
	margin: 0 auto;
}

#bread li:first-of-type a {
	display: inline-block;
	vertical-align: 0;
	height: 20px;
	padding: 0 1em;
	border-radius: 20px;
	background: #e5e7eb;
	font-weight: 500;
	line-height: 20px;
	color: var(--text-sub);
	transition: .2s;
}

#bread li:first-of-type a:hover {
	background: var(--primary-light);
	color: var(--primary);
}

#bread li:not(:last-of-type):after {
	content: '/';
	margin: 0 0.5em;
}

#bread li a {
	color: var(--text-light);
}

/* ---------------------------------------------------------
	CSS Document anchor
--------------------------------------------------------- */

#anchor {
	margin-bottom: 40px;
	text-align: center;
	font-size: 0;
}

#anchor li {
	display: inline-block;
	vertical-align: top;
	width: 20%;
}

#anchor li:not(:last-of-type) {
	border-right: solid 1px #c4c6c7;
}

#anchor li div,
#anchor li a {
	display: block;
	height: 60px;
	background: #aaadaf;
	text-decoration: none;
	font-size: 16px;
	line-height: 60px;
	color: #fff;
}

#anchor li.this div,
#anchor li.this a {
	background: #0b89da;
	position: relative;
	z-index: 0;
}

#anchor li.this div:after,
#anchor li.this a:after {
	content: '';
	width: 0;
	height: 0;
	border: solid 10px transparent;
	border-top: solid 12px #0b89da;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	bottom: -22px;
}

	CSS Document cart-backdrop
--------------------------------------------------------- */

.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-backdrop.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 400px; max-width: 90vw;
  background: #fff; z-index: 2001; transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cd-header { padding: 16px 20px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.cd-header h3 { font-size: 18px; font-weight: 800; color: var(--color-primary); margin: 0; display: flex; align-items: center; gap: 8px; }
.cd-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; padding: 4px; transition: color 0.2s; }
.cd-close:hover { color: #333; }

.cd-body { flex: 1; overflow-y: auto; padding: 20px; background: #fafafa; }
.empty-cart-msg { text-align: center; color: #999; font-size: 14px; margin-top: 60px; }

.cd-item { 
  background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 16px; margin-bottom: 12px;
  position: relative; transition: all 0.2s; 
}
.cd-item:hover { border-color: #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.cd-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.cd-name { font-size: 14px; font-weight: 700; color: #333; line-height: 1.4; padding-right: 20px; }
.cd-del { position: absolute; top: 12px; right: 12px; color: #ccc; cursor: pointer; font-size: 14px; }
.cd-del:hover { color: #ff5555; }
.cd-opt { font-size: 12px; color: #777; margin-bottom: 12px; background: #f8f9fa; display: inline-block; padding: 2px 6px; border-radius: 4px; }
.cd-action-row { display: flex; align-items: center; justify-content: space-between; }
.cd-qty-ctrl { display: flex; align-items: center; border: 1px solid #eee; border-radius: 4px; overflow: hidden; height: 32px; background: #fff; }
.cd-qty-btn { width: 28px; height: 100%; display: flex; align-items: center; justify-content: center; background: #fdfdfd; cursor: pointer; font-size: 11px; color: #555; }
.cd-qty-btn:hover { background: #eee; }
.cd-qty-val { width: 34px; text-align: center; font-size: 13px; font-weight: 600; border: none; outline: none; background: transparent; pointer-events: none; }
.cd-price { font-size: 15px; font-weight: 700; color: var(--color-primary); }

.cd-footer { padding: 20px; border-top: 1px solid #eee; background: #fff; }
.cd-sum-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: #666; }
.cd-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 2px solid #333; font-weight: 800; font-size: 18px; color: var(--color-primary); }
.cd-checkout-btn { 
  display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 20px; 
  height: 50px; background: #172554; color: #fff; font-weight: 700; border-radius: 6px; 
  font-size: 16px; border: none; cursor: pointer; transition: background 0.2s;
}
.cd-checkout-btn:hover { background: #1e3a8a; }

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(135deg, #1251A3, #0F4C81);
	box-shadow: 0 4px 12px rgba(18, 81, 163, 0.35);
	text-align: center;
	font-size: 18px;
	line-height: 42px;
	color: #fff;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 9;
	cursor: pointer;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

#pagetop:hover {
	background: linear-gradient(135deg, #0e449a, #0A3A63);
	box-shadow: 0 6px 18px rgba(18, 81, 163, 0.45);
	transform: translateY(-3px);
}

/* ---------------------------------------------------------
	CSS Document modal
--------------------------------------------------------- */

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17, 24, 39, 0.4); /* ??? ???? */
      backdrop-filter: blur(4px); /* ?? ?? ?? */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 100;
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }
    .modal-backdrop.active {
      display: flex;
      opacity: 1;
    }

    .modal {
      width: 100%;
      max-width: 520px;
      background: #ffffff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
      position: relative;
      transform: scale(0.95) translateY(10px);
      transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .modal-backdrop.active .modal {
      transform: scale(1) translateY(0);
    }

    /* ?? ?? */
    .btn-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      border-radius: 50%;
      color: #9ca3af;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: bold;
      transition: background 0.2s;
    }
    .btn-close:hover {
      background: #f3f4f6;
      color: #4b5563;
    }

    /* ?? ?? */
    .modal-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* ??? ??? ?? (Soft Tint) */
    .modal-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    
    .icon-success {
      background: #d1fae5;
      color: #059669;
      /* Checkmark ?? */
      font-weight: bold;
    }
    .icon-error {
      background: #fee2e2;
      color: #dc2626;
      font-weight: 800;
    }
    .icon-info {
      background: #eff6ff;
      color: #2563eb;
    }

    .modal-title {
      font-size: 16px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
      line-height: 1.4;
      padding-top: 2px;
    }
    .modal-sub {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.4;
    }

    .divider {
      height: 1px;
      background: #f3f4f6;
      margin: 0 -24px 16px; /* ?? ?? ?? */
    }

    .modal-body {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .modal-body strong {
      color: #111827;
      font-weight: 600;
    }

    /* ?? ??? */
    .hint {
      margin-top: 12px;
      font-size: 12px;
      color: #9ca3af;
      padding-left: 2px;
    }

    /* ?? ?? */
    .modal-body code {
      display: block;
      font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      background: #1e293b; /* Dark Mode Code Block */
      color: #e2e8f0;
      padding: 12px;
      border-radius: 8px;
      margin: 8px 0;
      word-break: break-all;
    }
    
    /* ?? ?? ?? */
    .code-row {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-top: 8px;
      background: #f3f4f6;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }
    .code-row code {
      background: transparent;
      color: #1f2937;
      border: none;
      margin: 0;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .btn-copy {
      background: #ffffff;
      border: none;
      border-left: 1px solid #e5e7eb;
      padding: 0 16px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-dark);
      transition: background 0.2s;
    }
    .btn-copy:hover {
      background: #eff6ff;
    }

    /* ?? ?? (?? ??) */
    .modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 10px; /* ?? ?? ?? */
    }

    /* =========================================
       NEW MODAL ACTION BUTTONS STYLES
       ========================================= */
    .btn-modal-action {
      border-radius: 10px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s ease;
      border: 1px solid transparent;
    }
    .btn-modal-action:active {
      transform: scale(0.98);
    }

    /* Secondary Action (e.g., Close, Cancel) */
    .btn-modal-secondary {
      background: #ffffff;
      border-color: #e5e7eb;
      color: #374151;
    }
    .btn-modal-secondary:hover {
      background: #f9fafb;
      border-color: #d1d5db;
    }

    /* Primary Action (e.g., Confirm, OK, Go to Main) */
    .btn-modal-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    }
    .btn-modal-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    }
    
    /* ?? ?? ??? ?? (?? ?? ????) */
    .modal-footer .btn {
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 13px;
    }


/* === FROM common.sp.css === */

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.wf-active #load {
	display: none;
}

:root {

	--text-light: #94a3b8;
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

body {
	word-break: keep-all;
	color: var(--text-main);
}

* {
	outline: 0;
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
	font-style: normal;
	list-style: none;
}

.pc {
	display: none;
}

img {
	vertical-align: top;
	max-width: 100%;
	border: 0;
}

/* ---------------------------------------------------------
	CSS Document form
--------------------------------------------------------- */

input, textarea, select, button {
	outline: 0;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
}

button,
input[type='button'],
input[type='submit'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .4s;
}

input[type='checkbox'],
input[type='radio'] {
	vertical-align: top;
	width: 22px;
	height: 22px;
	margin-right: 5px;
}

::-webkit-input-placeholder {
	color: #c8c8c8;
}

::-moz-placeholder {
	opacity: 1;
	color: #c8c8c8;
}

:-ms-input-placeholder {
	color: #c8c8c8;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

main {
	overflow: hidden;
	padding-top: 0px;
}

.target {
	margin-top: -70px;
	padding-top: 70px;
}

#pc_header,
#navi {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document sp_header
--------------------------------------------------------- */

#sp_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 5vw 0 4vw;
	border-bottom: solid 1px #e9ecef;
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

#sp_header .sp_header-logo {
	width: 110px;
	padding-bottom: 5px;
}

#sp_header .sp_header-logo img {
	height: 40px;
}

#sp_header .sp_header-controls {
	display: flex;
	align-items: center;
}

#sp_header .util-box {
	display: none;
}

#sp_header .util-box.active {
	display: block;
}

#sp_header .header-cart-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 30px;
	margin-right: 2vw;
	padding-top: 5px;
	border-radius: 4px;
	background: transparent;
	font-size: 18px;
	color: var(--text-main);
	transition: color 0.2s;
	position: relative;
}

#sp_header .header-cart-count {
	min-width: 14px;
	padding: 2px 3px;
	border-radius: 10px;
	background: #dc2626;
	text-align: center;
	font-weight: 700;
	font-size: 8px;
	color: #fff;
	position: absolute;
	top: -1px;
	right: -1px;
}

#sp_header .sp_header-my a {
	margin-right: 10px;
	padding: 7px 0;
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
}

#sp_header .sp_header-logout {
	margin-right: 10px;
}

#sp_header .sp_header-logout a {
	display: inline-block;
	vertical-align: top;
	padding: 7px 10px;
	border-radius: 99px;
	background: #e5e7eb;
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
}

#sp_header .sp_header-login {
	margin-right: 15px;
	margin-left: 5px;
}

#sp_header .sp_header-login a {
	display: inline-block;
	vertical-align: top;
	padding: 8px 16px;
	border-radius: 10px;
	background: #1e3a8a;
	font-weight: 600;
	font-size: 13px;
	color: #fff;
}

#sp_header .m-menuBtn {
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 6px;
}

#sp_header .m-menuBtn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #0f172a;
}

#sp_header .m-menuBtn span:nth-child(2) {
	width: 18px;
}

.kal-drawer {
	display: flex;
	flex-direction: column;
	background: #fff;
	position: fixed;
	inset: 0;
	z-index: 200;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.kal-top-area {
	background: #1e3a8a;
	color: #fff;
	padding-bottom: 24px;
}

.kal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5vw;
}

.kal-header-h2 {
	font-size: 5vw;
	margin: 0;
	font-weight: 700;
}

.kal-close {
	padding: 4px;
	border: 0;
	background: none;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
}

.kal-user-status {
	padding: 0 5vw;
}

.guest-view .user-msg {
	margin-bottom: 16px;
	font-weight: 500;
	font-size: 3.5vw;
	opacity: 0.9;
}

.guest-view .btn-group {
	display: flex;
	justify-content: space-between;
}

.guest-view .btn-group div {
	width: 48%;
}

.guest-view .btn-group a {
	display: block;
	border-radius: 6px;
	background: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 3.5vw;
	line-height: 10vw;
	color: #1e3a8a;
}

.guest-view .btn-group .btn-group-agreement a {
	border: solid 1px rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* member-view */
.member-view .user-info {
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 4vw;
}
.member-view .user-info b {
	font-weight: 700;
	font-size: 5vw;
}

.member-quick-menu {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; /* ??? ???? ?? */
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15);
}
.quick-link {
  color: #fff; text-decoration: none; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px; opacity: 0.9;
  background: rgba(255,255,255,0.1); padding: 10px 12px; border-radius: 8px; transition: all 0.2s;
}
.quick-link:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.quick-link i { font-size: 16px; }
.quick-link.danger { color: #ffc9c9; background: rgba(255, 173, 173, 0.1); }
.quick-link.danger:hover { background: rgba(255, 173, 173, 0.2); }
.quick-link::before { content: none; } /* ?? ? ?? */

/* ---------------------------------------------------------
	CSS Document sp_header > sp_navi
--------------------------------------------------------- */

/* 2. SPLIT BODY */
.kal-body {
	flex: 1;
	display: flex;
	overflow: hidden;
}
/* [Left] Tabs */
.kal-tabs {
	width: 100px;
	
	background: #f3f4f6;
	overflow-y: auto;
	flex-shrink: 0;
	padding-bottom: 20px;
	border-right: 1px solid #eee;
}

.kal-tab {
	padding: 16px 10px;
	font-size: 13px;
	color: #777;
	text-align: left;
	font-weight: 500;
	border-bottom: 1px solid #e5e7eb;
	cursor: pointer;
	word-break: keep-all;
	line-height: 1.35;
}

.kal-tab.active {
	
	background: #fff;
	color: #00256c;
	font-weight: 800;
	
	position: relative;
	border-right: none;
	margin-right: -1px;
	z-index: 2;
}

.kal-tab.active::after {
	
	content:'';
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	width:4px;
	background: #0064de;
	
}

/* [Right] Panels */
.kal-panels {
	flex: 1;
	overflow-y: auto;
	background: #fff;
	padding: 20px 16px;
}

.kal-panel {
	display: none;
	padding-bottom: 40px;
}

.kal-panel.active {
	display: block;
	animation: fadeIn 0.3s;
}
/* ?? ?? ? ??? */
.menu-group {
	margin-bottom: 26px;
}

.group-title {
	font-size: 14px;
	font-weight: 800;
	color: #00256c;
	margin-bottom: 10px;
	display: block;
	border-bottom: 2px solid #00256c;
	padding-bottom: 6px;
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 13px;
	color: #333;
	text-decoration: none;
}

.menu-item span {
	color: #999;
	font-size: 11px;
}

/* == ??? ?? CSS ?? == */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	} to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	height: 200px;
	overflow: hidden;
	background: #000 no-repeat top / auto 100%;
	font-size: 0;
	line-height: 210px;
	color: #fff;
}

#visual .container {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

#visual .h1 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 8vw;
}

#visual .h1 + p {
	font-size: 2.5vw;
	line-height: 1.8;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	border-bottom: solid 1px #e9ecef;
}

#bread ol {
	display: flex;
	align-items: center;
	height: 9vw;
	padding: 0 4vw;
	font-size: 2.5vw;
	line-height: 5vw;
	color: #94a3b8;
}

#bread li:first-of-type a {
	display: inline-block;
	vertical-align: 0;
	padding: 0 1em;
	border-radius: 20px;
	background: #e5e7eb;
	font-weight: 500;
	color: #475569;
}

#bread li:not(:last-of-type):after {
	content: '/';
	margin: 0 0.5em;
}

#bread li a {
	color: #94a3b8;
}

/* ---------------------------------------------------------
	CSS Document anchor
--------------------------------------------------------- */

#anchor {
	margin-bottom: 40px;
	font-size: 0;
}

#anchor li {
	display: inline-block;
	vertical-align: top;
	width: 20%;
}

#anchor li:not(:last-of-type) {
	border-right: solid 1px #c4c6c7;
}

#anchor li div,
#anchor li a {
	display: block;
	height: 60px;
	background: #aaadaf;
	text-decoration: none;
	line-height: 60px;
	color: #fff;
}

#anchor li div span,
#anchor li a span {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
	font-size: 3vw;
	line-height: 1.2;
}

#anchor li.this div,
#anchor li.this a {
	background: #0b89da;
	position: relative;
	z-index: 0;
}

#anchor li.this div:after,
#anchor li.this a:after {
	content: '';
	width: 0;
	height: 0;
	border: solid 10px transparent;
	border-top: solid 12px #0b89da;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	bottom: -22px;
}

	CSS Document cart-backdrop
--------------------------------------------------------- */

.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-backdrop.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 400px; max-width: 90vw;
  background: #fff; z-index: 2001; transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cd-header { padding: 16px 20px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.cd-header h3 { font-size: 18px; font-weight: 800; color: var(--color-primary); margin: 0; display: flex; align-items: center; gap: 8px; }
.cd-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; padding: 4px; transition: color 0.2s; }
.cd-close:hover { color: #333; }

.cd-body { flex: 1; overflow-y: auto; padding: 20px; background: #fafafa; }
.empty-cart-msg { text-align: center; color: #999; font-size: 14px; margin-top: 60px; }

.cd-item { 
  background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 16px; margin-bottom: 12px;
  position: relative; transition: all 0.2s; 
}
.cd-item:hover { border-color: #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.cd-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.cd-name { font-size: 14px; font-weight: 700; color: #333; line-height: 1.4; padding-right: 20px; }
.cd-del { position: absolute; top: 12px; right: 12px; color: #ccc; cursor: pointer; font-size: 14px; }
.cd-del:hover { color: #ff5555; }
.cd-opt { font-size: 12px; color: #777; margin-bottom: 12px; background: #f8f9fa; display: inline-block; padding: 2px 6px; border-radius: 4px; }
.cd-action-row { display: flex; align-items: center; justify-content: space-between; }
.cd-qty-ctrl { display: flex; align-items: center; border: 1px solid #eee; border-radius: 4px; overflow: hidden; height: 32px; background: #fff; }
.cd-qty-btn { width: 28px; height: 100%; display: flex; align-items: center; justify-content: center; background: #fdfdfd; cursor: pointer; font-size: 11px; color: #555; }
.cd-qty-btn:hover { background: #eee; }
.cd-qty-val { width: 34px; text-align: center; font-size: 13px; font-weight: 600; border: none; outline: none; background: transparent; pointer-events: none; }
.cd-price { font-size: 15px; font-weight: 700; color: var(--color-primary); }

.cd-footer { padding: 20px; border-top: 1px solid #eee; background: #fff; }
.cd-sum-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: #666; }
.cd-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 2px solid #333; font-weight: 800; font-size: 18px; color: var(--color-primary); }
.cd-checkout-btn { 
  display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 20px; 
  height: 50px; background: #172554; color: #fff; font-weight: 700; border-radius: 6px; 
  font-size: 16px; border: none; cursor: pointer; transition: background 0.2s;
}
.cd-checkout-btn:hover { background: #1e3a8a; }

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(135deg, #1251A3, #0F4C81);
	box-shadow: 0 4px 12px rgba(18, 81, 163, 0.35);
	text-align: center;
	font-size: 18px;
	line-height: 42px;
	color: #fff;
	position: fixed;
	bottom: 5vw;
	right: 5vw;
	z-index: 9;
}

/* ---------------------------------------------------------
	CSS Document modal
--------------------------------------------------------- */

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17, 24, 39, 0.4); /* ??? ???? */
      backdrop-filter: blur(4px); /* ?? ?? ?? */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }
    .modal-backdrop.active {
      display: flex;
      opacity: 1;
    }

    .modal {
      width: 90%;
      background: #ffffff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
      position: relative;
      transform: scale(0.95) translateY(10px);
      transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .modal-backdrop.active .modal {
      transform: scale(1) translateY(0);
    }

    /* ?? ?? */
    .btn-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      border-radius: 50%;
      color: #9ca3af;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: bold;
      transition: background 0.2s;
    }
    .btn-close:hover {
      background: #f3f4f6;
      color: #4b5563;
    }

    /* ?? ?? */
    .modal-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* ??? ??? ?? (Soft Tint) */
    .modal-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    
    .icon-success {
      background: #d1fae5;
      color: #059669;
      /* Checkmark ?? */
      font-weight: bold;
    }
    .icon-error {
      background: #fee2e2;
      color: #dc2626;
      font-weight: 800;
    }
    .icon-info {
      background: #eff6ff;
      color: #2563eb;
    }

    .modal-title {
      font-size: 16px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
      line-height: 1.4;
      padding-top: 2px;
    }
    .modal-sub {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.4;
    }

    .divider {
      height: 1px;
      background: #f3f4f6;
      margin: 0 -24px 16px; /* ?? ?? ?? */
    }

    .modal-body {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .modal-body strong {
      color: #111827;
      font-weight: 600;
    }

    /* ?? ??? */
    .hint {
      margin-top: 12px;
      font-size: 12px;
      color: #9ca3af;
      padding-left: 2px;
    }

    /* ?? ?? */
    .modal-body code {
      display: block;
      font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      background: #1e293b; /* Dark Mode Code Block */
      color: #e2e8f0;
      padding: 12px;
      border-radius: 8px;
      margin: 8px 0;
      word-break: break-all;
    }
    
    /* ?? ?? ?? */
    .code-row {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-top: 8px;
      background: #f3f4f6;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }
    .code-row code {
      background: transparent;
      color: #1f2937;
      border: none;
      margin: 0;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .btn-copy {
      background: #ffffff;
      border: none;
      border-left: 1px solid #e5e7eb;
      padding: 0 16px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: #0D47A1;
      transition: background 0.2s;
    }
    .btn-copy:hover {
      background: #eff6ff;
    }

    /* ?? ?? (?? ??) */
    .modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 10px; /* ?? ?? ?? */
    }

    /* =========================================
       NEW MODAL ACTION BUTTONS STYLES
       ========================================= */
    .btn-modal-action {
      border-radius: 10px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s ease;
      border: 1px solid transparent;
    }
    .btn-modal-action:active {
      transform: scale(0.98);
    }

    /* Secondary Action (e.g., Close, Cancel) */
    .btn-modal-secondary {
      background: #ffffff;
      border-color: #e5e7eb;
      color: #374151;
    }
    .btn-modal-secondary:hover {
      background: #f9fafb;
      border-color: #d1d5db;
    }

    /* Primary Action (e.g., Confirm, OK, Go to Main) */
    .btn-modal-primary {
      background: #1976D2;
      color: #ffffff;
      box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    }
    .btn-modal-primary:hover {
      background: #0D47A1;
      box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    }
    
    /* ?? ?? ??? ?? (?? ?? ????) */
    .modal-footer .btn {
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 13px;
    }

/* === FROM soft.php === */

:root{
  --c-black:#0a0a0a;
  --c-gray-900:#1a1a1a;
  --c-gray-700:#4a4a4a;
  --c-gray-500:#6b7280;
  --c-gray-400:#9ca3af;
  --c-gray-300:#d1d5db;
  --c-gray-200:#e5e7eb;
  --c-gray-100:#f3f4f6;
  --c-gray-50:#f9fafb;
  --c-white:#fff;
  --c-blue:#1251A3;
  --c-blue-dark:#0d3d7a;
  --c-blue-soft:#eef3ff;
  /* Brand accent (PRO: Deep Blue) */
  --c-brand:#1428A0;
  --c-brand-light:#4a5fb8;
  --c-brand-dark:#0a1d6e;
  --c-brand-soft:#eef0fa;
  --c-amber:#d97706;
  --c-amber-soft:#fffbeb;
  --c-green:#059669;
  --c-green-soft:#ecfdf5;
  --c-purple:#7c3aed;
  --c-purple-soft:#f5f3ff;
  --c-pink:#ec4899;
  --c-pink-soft:#fdf2f8;
  --c-orange:#ea580c;
  --c-orange-soft:#fff7ed;
  --c-mint:#10b981;
  --c-mint-soft:#d1fae5;

  --r-sm:8px;
  --r-md:12px;
  --r-lg:16px;
  --r-xl:24px;
  --container:1280px;
}

/* =========================================================
   Hero Section (#sec01) - Base & Layout
   ========================================================= */
.hero {
	background: linear-gradient(180deg, #0D2137 0%, #112B3C 60%, #081520 100%);
	color: #fff;
	position: relative;
}

@media only screen and (min-width: 641px) {
	.hero-grid {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 660px;
		position: relative;
		z-index: 2;
		width: 100%;
	}
}

.hero-left {
	max-width: 690px;
}

.hero-lineup {
	display: inline-flex;
	gap: 8px;
	height: 38px;
	margin-bottom: 15px;
	padding: 4px;
	border-radius: 38px;
	background: rgba(255, 255, 255, 0.08);
}

.hero-pill {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 54px;
	height: 30px;
	padding: 0 1em;
	border-radius: 30px;
	border: solid 1px rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
	font-weight: 700;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 640px) {
	.hero-pill {
		font-size: 10px;
	}
}

.hero-pill.active {
	border-color: transparent;
	background: rgba(255, 255, 255, 0.15);
	font-weight: 800;
	color: #fff;
}

.hero-product-label {
	font-weight: 600;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

.hero-product-name {
	margin-bottom: 15px;
	font-weight: 800;
	font-size: 46px;
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.5;
	color: #fff;
}

.hero-product-name .highlight {
	color: #7b2d8e;
}

.hero-sub-title {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 18px;
	font-size: clamp(15px, 3.6vw, 18px);
	line-height: 1.4;
	color: rgba(255, 255, 255, .85);
}

.hero-description {
	margin-bottom: 30px;
	font-size: clamp(14px, 3.6vw, 16px);
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.hero-description strong {
	color: rgba(255, 255, 255, 0.9);
}

.hero-trust {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 84px;
	margin-bottom: 20px;
	padding: 0 16px;
	border-left: 4px solid #7B2D8E;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
}

.hero-trust i {
	font-size: 18px;
	color: #7B2D8E;
	flex-shrink: 0;
}

.hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.hero-chip {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 7px 14px;
	border-radius: 20px;
	font-weight: 700;
	font-size: clamp(10px, 2.6vw, 13px);
}

.hero-chip.accent {
	border-color: rgba(123, 45, 142, .4);
	background: rgba(123, 45, 142, .2);
	color: #C084D8;
}

.hero-warn {
	margin-bottom: 15px;
	font-size: 12px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

.hero-warn strong {
	color: rgba(255, 255, 255, 0.9);
}

.hero-warn a {
	text-decoration: underline;
	color: #fff;
	cursor: pointer;
	transition: opacity .4s;
}

.hero-warn a:hover {
	opacity: 0.6;
}

.hero-btns {
	display: flex;
	gap: 10px;
}

.hero-btn-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 220px;
	padding: 16px 32px;
	border-radius: 8px;
	border: 2px solid rgba(255, 255, 255, .4);
	background: transparent;
	font-weight: 800;
	font-size: clamp(13px, 2.6vw, 16px);
	color: #fff;
	transition: .4s;
}

.hero-btn-download:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
}

.btn-btn-buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 220px;
	padding: 16px 32px;
	border-radius: 8px;
	background: #fff;
	font-weight: 800;
	font-size: clamp(13px, 2.6vw, 16px);
	color: #1a0020;
	transition: .4s;
}

.btn-btn-buy:hover {
	transform: translateY(-2px);
	background: #2563eb;
	color: #fff;
}

.product-hero-visual {
	padding: 40px;
	border-radius: 20px;
	border: solid 2px rgba(123, 45, 142, 0.35);
	background: rgba(255, 255, 255, 0.06);
	text-align: center;
	box-shadow: 0 0 30px rgba(123, 45, 142, 0.12);
}
@media only screen and (min-width: 641px) {
	.product-hero-visual {
		width: 530px;
		height: 500px;
	}
	.product-hero-package {
		height: 272px;
		padding-top: 15px;
	}
}

.hero-spec-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.hero-spec {
	height: 67px;
	padding: 11px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
}

.hero-spec-val {
	font-weight: 800;
	font-size: clamp(14px, 2.6vw, 18px);
	color: #7b2d8e;
}

.hero-spec-label {
	margin-top: 2px;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   common
   ========================================================= */

.st-section {
	padding: 50px 0;
	background: #fff;
}

.st-section.gray {
	background: #f9fafb;
}

.st-section.gray + .st-section.gray {
	border-top: solid 1px #e0e0e0;
	background: linear-gradient(to bottom, #fcfcfc 0%, #f9fafb 100%);
}

.st-section-head {
	margin-bottom: 34px;
	text-align: left;
}

.st-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 15px;
	padding: 5px 12px;
	border-radius: 999px;
	border: 1px solid var(--c-red);
	background: var(--c-red);
	text-transform: uppercase;
	font-weight: 800;
	font-size: 11.5px;
	letter-spacing: 0.08em;
	color: #fff;
}

.st-section-badge.outline {
	background: transparent;
	color: var(--c-red);
}

.st-section-badge.gray {
	border-color: #e5e7eb;
	background: #f3f4f6;
	color: #4a4a4a;
}

.st-h2 {
	margin-bottom: 20px;
	font-weight: 800;
	font-size: clamp(26px, 3.6vw, 36px);
	color: #111;
	letter-spacing: -.025em;
	line-height: 1.25;
}

.st-h2 .red {
	color: var(--c-red)
}

.st-section-desc {
	max-width: 680px;
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.65;
	color: #6b7280;
}

/* =========================================================
   trust
   ========================================================= */

.st-trust-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	margin-bottom: 24px
}

.st-trust-card {
	background: #fff;
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-lg);
	padding: 22px 18px;
	text-align: center;
	transition: .25s
}

.st-trust-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
	border-color: var(--c-red)
}

.st-trust-icon {
	width: 48px;
	height: 48px;
	background: var(--c-red-soft);
	color: var(--c-red);
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 20px;
	margin: 0 auto 10px
}

.st-trust-card h3 {
	font-size: 14.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.01em;
	margin-bottom: 4px
}

.st-trust-card p {
	font-size: 12.5px;
	color: var(--c-gray-500);
	font-weight: 600;
	line-height: 1.5
}

.st-trust-card a {
	color: var(--c-blue);
	font-weight: 700
}

.st-trust-banner {
	background: linear-gradient(135deg, #0a1d6e 0%, #050a30 100%);
	color: #fff;
	border-radius: var(--r-xl);
	padding: 24px 28px;
	text-align: center
}

.st-trust-banner h3 {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 6px
}

.st-trust-banner p {
	font-size: 13.5px;
	color: rgba(255, 255, 255, .92);
	line-height: 1.7;
	max-width: 880px;
	margin: 0 auto
}

/* =========================================================
   WHY
   ========================================================= */

.st-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px
}

.st-why-card {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-xl);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: .25s
}

.st-why-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
	border-color: var(--c-red)
}

.st-why-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-size: 22px
}

.st-why-icon.lavender {
	background: var(--c-purple-soft);
	color: var(--c-purple)
}

.st-why-icon.peach {
	background: var(--c-orange-soft);
	color: var(--c-orange)
}

.st-why-icon.mint {
	background: var(--c-mint-soft);
	color: var(--c-mint)
}

.st-why-icon.pink {
	background: var(--c-pink-soft);
	color: var(--c-pink)
}

.st-why-card h3 {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em;
	line-height: 1.3
}

.st-why-card p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.6
}

/* =========================================================
   interface
   ========================================================= */

.st-section-note {
	margin-top: 6px;
	font-weight: 700;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--c-amber);
}

@media only screen and (min-width: 641px) {
	.st-mode-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px
	}
}
.st-mc {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: .25s
}

.st-mc:hover {
	box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
	border-color: var(--c-red)
}

.st-mv {
	position: relative;
	background: var(--c-gray-100);
	overflow: hidden;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto
}

.st-mv img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.st-step-img-callout {
	position: absolute;
	background: var(--c-white);
	border: 2px solid var(--c-blue);
	color: var(--c-blue);
	font-size: 12.5px;
	font-weight: 800;
	padding: 8px 14px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
	z-index: 2;
	white-space: nowrap;
	letter-spacing: -.01em
}

.st-step-img-callout.c-blue {
	border-color: var(--c-blue);
	color: var(--c-blue)
}

.st-step-img-callout.c-green {
	border-color: var(--c-green);
	color: var(--c-green)
}

.st-step-img-callout.c-purple {
	border-color: var(--c-purple);
	color: var(--c-purple)
}

.st-step-img-callout.c-orange {
	border-color: var(--c-orange);
	color: var(--c-orange)
}
.st-mb {
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.st-mbd {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 999px;
	width: fit-content;
	letter-spacing: .02em
}

.st-mbd.bg {
	background: var(--c-blue-soft);
	color: var(--c-blue)
}

.st-mbd.ad {
	background: var(--c-purple-soft);
	color: var(--c-purple)
}

.st-mb h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em
}

.st-mb p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.65
}

.st-mode-details {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 6px
}

.st-mode-detail {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12.5px;
	color: var(--c-gray-700);
	line-height: 1.55
}

.st-mode-detail i {
	color: var(--c-green);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 4px
}

/* =========================================================
   usecase
   ========================================================= */

.st-emo-banner {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border: 1px solid #bfdbfe;
	border-radius: var(--r-xl);
	padding: 24px 28px;
	text-align: center;
	margin-bottom: 32px
}

.st-emo-banner h3 {
	font-size: 20px;
	font-weight: 800;
	color: var(--c-red);
	letter-spacing: -.02em;
	margin-bottom: 6px;
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.st-emo-banner h3 i {
	color: var(--c-red);
	font-size: 18px
}

.st-emo-banner p {
	font-size: 13.5px;
	color: var(--c-gray-700);
	line-height: 1.7
}

@media only screen and (min-width: 641px) {
	.st-scard-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px
	}
}

.st-scard {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-lg);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: .25s
}

.st-scard:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
	border-color: var(--c-red)
}

.st-scard-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 20px
}

.st-scard-icon.red {
	background: #fef3c7;
	color: #d97706
}

.st-scard-icon.blue {
	background: var(--c-blue-soft);
	color: var(--c-blue)
}

.st-scard-icon.purple {
	background: var(--c-purple-soft);
	color: var(--c-purple)
}

.st-scard-icon.orange {
	background: var(--c-orange-soft);
	color: var(--c-orange)
}

.st-scard-icon.green {
	background: var(--c-green-soft);
	color: var(--c-green)
}

.st-scard h3 {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em
}

.st-scard p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.65
}

/* =========================================================
   Features
   ========================================================= */

.st-feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px
}

.st-feat-card {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-lg);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: .25s
}

.st-feat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
	border-color: var(--c-red)
}

.st-feat-icon {
	width: 46px;
	height: 46px;
	background: var(--c-red-soft);
	color: var(--c-red);
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 20px
}

.st-feat-card h3 {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em
}

.st-feat-card p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.6
}

/* ═══ PRO License Compare (Toggle - Default Closed) ═══ */
.st-lic-compare {
	margin-top: 40px;
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid var(--c-gray-200)
}

.st-lic-compare summary::-webkit-details-marker {
	display: none
}

.st-lic-compare summary::marker {
	content: ""
}

.st-lic-head {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a3d7a 100%);
	color: #fff;
	padding: 16px 22px;
	font-size: 14px;
	font-weight: 800;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	letter-spacing: -.01em;
	cursor: pointer;
	list-style: none;
	transition: .25s;
}

.st-lic-head:hover {
	filter: brightness(1.1)
}

.st-lic-head i.k {
	font-size: 14px
}

.st-lic-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-left: auto;
	border-radius: 100%;
	background: rgba(255, 255, 255, .15);
	font-weight: 800;
	font-size: 13px;
	transition: .3s;
}

.st-lic-compare[open] .st-lic-icon {
	background: rgba(56, 189, 248, .25)
}

.st-lic-icon i {
	transition: .3s;
}

.st-lic-compare[open] .st-lic-icon i {
	transform: rotate(45deg);
}

.st-lic-pills {
	display: inline-flex;
	gap: 6px;
	flex-wrap: wrap
}

.st-lic-pill {
	background: rgba(255, 255, 255, .18);
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600
}

.st-lic-pill.expert {
	background: rgba(255, 255, 255, .32);
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, .3)
}

.st-lic-body {
	background: var(--c-white);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}

.st-lic-body::-webkit-scrollbar {
	height: 6px
}

.st-lic-body::-webkit-scrollbar-thumb {
	background: var(--c-gray-300);
	border-radius: 3px
}

.st-lic-tbl {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

@media only screen and (min-width: 641px) {
	.st-lic-tbl {
		min-width: 680px
	}
}

.st-lic-tbl th {
	background: var(--c-gray-50);
	padding: 12px 14px;
	text-align: left;
	font-weight: 800;
	color: var(--c-black);
	border-bottom: 2px solid var(--c-gray-200);
	font-size: 12.5px
}

.st-lic-tbl th:not(:first-child) {
	text-align: center
}

.st-lic-tbl td {
	padding: 11px 14px;
	border-bottom: 1px solid var(--c-gray-100);
	color: var(--c-gray-700);
	vertical-align: middle;
	font-size: 12.5px;
	line-height: 1.55
}

.st-lic-tbl td:not(:first-child) {
	text-align: center
}

.st-lic-tbl td:first-child {
	font-weight: 700;
	color: var(--c-black)
}

.st-lic-tbl tr.lic-grp td {
	background: var(--c-blue-soft);
	color: var(--c-blue);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .02em;
	padding: 9px 14px;
	text-align: left
}

.st-lic-tbl .sup {
	color: var(--c-green);
	font-weight: 800
}

.st-lic-tbl .partial {
	color: var(--c-amber);
	font-weight: 700;
	font-size: 11.5px
}

.st-lic-tbl .unsup {
	color: var(--c-gray-400);
	font-weight: 600
}

.st-lic-tbl .note-cell {
	font-size: 11px;
	color: var(--c-gray-500);
	font-weight: 500;
	margin-top: 3px;
	line-height: 1.5
}

/* =========================================================
   SPECIFICATIONS
   ========================================================= */

.st-spec-grid-x {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}.st-spec-card{background:var(--c-white);border:1.5px solid var(--c-gray-200);border-radius:var(--r-lg);overflow:hidden}
.st-spec-card.full{grid-column:1/-1}
.st-spec-card-head{background:var(--c-gray-50);padding:14px 18px;font-size:14px;font-weight:800;color:var(--c-black);display:flex;align-items:center;gap:8px;border-bottom:1px solid var(--c-gray-200);letter-spacing:-.01em}
.st-spec-card-head i{color:var(--c-red);font-size:15px}
.st-spec-card-body{padding:14px 18px}
.st-spec-table{width:100%;border-collapse:collapse;font-size:13px}
.st-spec-table td{padding:9px 0;border-bottom:1px solid var(--c-gray-100);vertical-align:top;line-height:1.6}
.st-spec-table tr:last-child td{border-bottom:0}
.st-spec-table td:first-child{font-weight:700;color:var(--c-black);width:130px;padding-right:12px;white-space:nowrap}
.st-spec-table td:nth-child(2){color:var(--c-gray-700)}
.st-spec-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px
}

.st-spec-pill {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 11px;
	background: var(--c-gray-100);
	color: var(--c-gray-700);
	border-radius: 999px
}

.st-enc-card .st-spec-pill {
	flex: 1 1 auto;
	justify-content: center;
	white-space: nowrap;
	text-align: center;
}

.st-sym-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px
}

.st-sym-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 13px;
	background: var(--c-gray-50);
	border: 1px solid var(--c-gray-200);
	border-radius: var(--r-md);
	transition: .2s
}

.st-sym-item:hover {
	background: var(--c-white);
	border-color: var(--c-red);
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(15, 23, 42, .05)
}

.st-sym-icon {
	width: 30px;
	height: 30px;
	background: var(--c-white);
	color: var(--c-red);
	border: 1.5px solid var(--c-red-soft);
	border-radius: 8px;
	display: grid;
	place-items: center;
	font-size: 13px;
	flex-shrink: 0
}

.st-sym-name {
	font-size: clamp(11.5px, 1.6vw, 12.5px);
	font-weight: 700;
	color: var(--c-black);
	letter-spacing: -.01em;
	line-height: 1.3
}

.st-fs-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	margin-bottom: 14px
}
.st-fs-item{padding:10px 12px;background:var(--c-gray-50);border:1px solid var(--c-gray-200);border-radius:var(--r-sm);text-align:left}
.st-fs-name{font-size:12.5px;font-weight:800;color:var(--c-black);display:flex;align-items:center;gap:6px;margin-bottom:2px}
.st-fs-name i{color:var(--c-red);font-size:11px}
.st-fs-desc{font-size:11px;color:var(--c-gray-500);font-weight:600}
.st-fs-toggle{width:100%;padding:11px 14px;background:var(--c-red-soft);border:1px solid #d4c2e8;color:var(--c-red);font-size:13px;font-weight:800;border-radius:var(--r-sm);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:.2s;letter-spacing:-.01em}
.st-fs-toggle:hover{background:var(--c-red);color:#fff}
.st-fs-toggle i{transition:.3s}
.st-fs-toggle.open i{transform:rotate(180deg)}
.st-fs-detail{max-height:0;overflow:hidden;transition:max-height .4s ease}
.st-fs-detail.show{max-height:1000px;margin-top:14px}
.st-fs-badge{display:inline-flex;align-items:center;font-size:10.5px;font-weight:800;padding:3px 8px;border-radius:5px;margin-right:6px;letter-spacing:.02em}
.st-fs-badge.full{background:var(--c-green-soft);color:var(--c-green)}
.st-fs-badge.partial{background:var(--c-amber-soft);color:var(--c-amber)}

.st-spec-list-group{margin-top:18px;display:flex;flex-direction:column;gap:8px}
.st-spec-item{background:var(--c-white);border:1px solid var(--c-gray-200);border-radius:var(--r-md);overflow:hidden;transition:.2s}
.st-spec-item[open]{border-color:var(--c-blue);box-shadow:0 4px 12px rgba(15,23,42,.04)}
.st-spec-item summary{list-style:none}
.st-spec-item summary::-webkit-details-marker{display:none}
.st-spec-item summary::marker{content:""}
.st-spec-summary{
  padding:14px 18px;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  font-size:13.5px;font-weight:700;color:var(--c-black);
  letter-spacing:-.01em;transition:.2s;
}
.st-spec-summary:hover{background:var(--c-gray-50)}
.st-spec-summary i{
  font-size:12px;color:var(--c-gray-500);
  width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:50%;background:var(--c-gray-100);transition:.3s;flex-shrink:0;
}
.st-spec-item[open] .st-spec-summary i{transform:rotate(45deg);background:var(--c-blue);color:#fff}
.st-spec-item[open] .st-spec-summary{color:var(--c-blue)}
.st-spec-content{
  padding:0 18px 16px;border-top:1px solid var(--c-gray-100);
  animation:specFadeIn .25s ease;
}
@keyframes specFadeIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}

.st-spec-subtitle {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--c-gray-100);
	font-weight: 800;
	font-size: 13px;
	color: var(--c-black);
}
/* ═══ 대응 장치 - 아이콘 그리드 ═══ */
.st-dev-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.st-dev-item {
	padding: 12px 14px;
	background: var(--c-gray-50);
	border: 1px solid var(--c-gray-200);
	border-radius: var(--r-md);
	transition: .2s
}
@media only screen and (min-width: 641px) {
	.st-dev-item {
		display: flex;
		align-items: flex-start;
		gap: 11px;
	}
}
.st-dev-item:hover{background:var(--c-white);border-color:var(--c-red);transform:translateY(-1px);box-shadow:0 4px 12px rgba(15,23,42,.06)}
.st-dev-icon{width:38px;height:38px;background:var(--c-red-soft);color:var(--c-red);border-radius:9px;display:grid;place-items:center;font-size:16px;flex-shrink:0}
.st-dev-text{flex:1;min-width:0}
.st-dev-name{font-size:13px;font-weight:800;color:var(--c-black);margin-bottom:2px;letter-spacing:-.01em}
.st-dev-desc{font-size:11.5px;color:var(--c-gray-500);line-height:1.45;font-weight:500}

/* ═══ PRO Filesystem Matrix ═══ */
.st-fs-matrix-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px
}

.st-fs-matrix-btn {
	padding: 8px 14px;
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-300);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-gray-700);
	cursor: pointer;
	transition: .2s
}

.st-fs-matrix-btn:hover {
	border-color: var(--c-red);
	color: var(--c-red)
}

.st-fs-matrix-btn.active {
	background: var(--c-red);
	border-color: var(--c-red);
	color: #fff;
	box-shadow: 0 4px 12px rgba(18, 81, 163, .25)
}

.st-fs-matrix {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px
}

.st-fs-matrix-cell {
	background: var(--c-gray-50);
	border: 1px solid var(--c-gray-200);
	border-radius: var(--r-sm);
	padding: 11px 12px;
	transition: .2s;
	position: relative;
	overflow: hidden
}

.st-fs-matrix-cell.disabled {
	opacity: .35;
	background: var(--c-gray-100)
}

.st-fs-matrix-cell.disabled::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(15, 23, 42, .04) 4px, rgba(15, 23, 42, .04) 8px)
}

.st-fs-matrix-cell b {
	font-size: 12.5px;
	font-weight: 800;
	color: var(--c-black);
	display: flex;
	align-items: center;
	gap: 5px;
	letter-spacing: -.01em
}

.st-fs-matrix-cell b i {
	font-size: 11px;
	color: var(--c-gray-500);
	color: var(--c-red);
}

.st-fs-matrix-cell.disabled b i {
	color: var(--c-gray-500);
}

.st-fs-matrix-cell span {
	font-size: 10.5px;
	color: var(--c-gray-500);
	display: block;
	margin-top: 2px
}

/* ═══ Device Grid ═══ */
.st-dev-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:10px;margin-bottom:16px}
.st-dev-card{background:var(--c-white);border:1.5px solid var(--c-gray-200);border-radius:var(--r-sm);padding:18px 10px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;transition:.25s;text-align:center}
.st-dev-card:hover{border-color:var(--c-blue);transform:translateY(-3px);box-shadow:0 6px 16px rgba(15,23,42,.06)}
.st-dev-card i{font-size:22px;color:var(--c-black)}
.st-dev-card span{font-size:12.5px;font-weight:700;color:var(--c-black)}
.st-info-box{background:var(--c-gray-50);border:1px solid var(--c-gray-200);border-left:3px solid var(--c-red);padding:14px 18px;border-radius:0 var(--r-sm) var(--r-sm) 0;font-size:12.5px;color:var(--c-gray-700);line-height:1.85}
.st-info-box strong{color:var(--c-black);font-weight:800}

/* ═══ File Group / Chip ═══ */
.st-file-group{margin-bottom:18px}
.st-file-group:last-child{margin-bottom:0}
.st-file-group-title{font-size:13.5px;font-weight:800;color:var(--c-black);margin-bottom:10px;display:flex;align-items:center;gap:7px;letter-spacing:-.01em}
.st-file-group-title i{font-size:14px}
.st-file-group-title .c-blue{color:var(--c-blue)}
.st-file-group-title .c-teal{color:var(--c-mint)}
.st-file-group-title .c-purple{color:var(--c-purple)}
.st-file-grid{display:flex;flex-wrap:wrap;gap:7px}
.st-file-chip{background:var(--c-gray-50);border:1px solid var(--c-gray-200);padding:7px 13px;border-radius:999px;display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--c-gray-700)}
.st-file-chip i{font-size:11px}
.st-file-chip .c-gray{color:var(--c-gray-500)}
.st-file-chip .c-orange{color:var(--c-orange)}
.st-file-chip .c-purple{color:var(--c-purple)}

/* =========================================================
   Choose
   ========================================================= */

.st-ch-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px
}.st-ch-card{border-radius:var(--r-xl);padding:24px 22px;display:flex;flex-direction:column;gap:14px}
.st-ch-card.yes{background:var(--c-green-soft);border:1.5px solid #a7f3d0}
.st-ch-card.no{background:var(--c-amber-soft);border:1.5px solid #fde68a}
.st-ch-card h3{font-size:17px;font-weight:800;color:var(--c-black);letter-spacing:-.02em;display:flex;align-items:center;gap:8px}
.st-ch-card.yes h3 i{color:var(--c-green);font-size:18px}
.st-ch-card.no h3 i{color:var(--c-amber);font-size:16px}
.st-ch-list{display:flex;flex-direction:column;gap:8px}
.st-ch-item{display:flex;align-items:flex-start;gap:9px;font-size:13.5px;color:var(--c-gray-700);line-height:1.6}
.st-ch-item i{font-size:13px;flex-shrink:0;margin-top:3px}
.st-ch-item .ck{color:var(--c-green)}
.st-ch-item .xk{color:var(--c-red)}
.st-ch-card-link{margin-top:8px}
.st-ch-card-link a{color:var(--c-amber-dark,#b45309);font-weight:700;font-size:13px;text-decoration:underline;text-underline-offset:3px}

/* =========================================================
   RECOVERY RATE
   ========================================================= */
.st-rt-wrap{background:var(--c-white);border-radius:var(--r-xl);overflow:hidden;border:1.5px solid var(--c-gray-200)}
.st-rt{width:100%;border-collapse:collapse;font-size:13px;table-layout:fixed}
.st-rt thead{background:var(--c-gray-50)}
.st-rt th {
	padding: 12px 14px;
	text-align: left;
	font-weight: 800;
	font-size: 12.5px;
	white-space: nowrap;
	color: var(--c-black);
	border-bottom: 2px solid var(--c-gray-200);
	letter-spacing: -.01em
}
.st-rt th.w22 {
	width: 22%;
}

.st-rt th.w18 {
	width: 18%;
}

.st-rt td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--c-gray-100);
	color: var(--c-gray-700);
	line-height: 1.55;
	vertical-align: middle;
	font-size: 12.5px
}

.st-rt tr:last-child td {
	border-bottom: 0
}

.st-rt td:first-child {
	font-weight: 700;
	color: var(--c-black);
	word-break: keep-all
}.st-stars {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
	font-size: 13px;
	letter-spacing: 1px;
	color: #fbbf24;
}
.st-sl {
	display: inline-block;
	vertical-align: top;
	width: 56px;
	text-align: center;
	font-size: 10.5px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 5px;
	letter-spacing: .02em
}
.st-sl.h{background:var(--c-green-soft);color:var(--c-green)}
.st-sl.m{background:var(--c-blue-soft);color:var(--c-blue)}
.st-sl.l{background:rgba(196, 30, 58, 0.1);color:#c41e3a}
.st-rt-foot{margin-top:14px;font-size:12px;color:var(--c-gray-500);text-align:center}
.st-mobile-hint{display:none;font-size:11.5px;color:var(--c-gray-500);text-align:center;margin-bottom:10px;font-weight:600}

/* =========================================================
   HOW TO USE
   ========================================================= */
.st-step-tabs{display:flex;gap:6px;background:var(--c-gray-100);padding:6px;border-radius:var(--r-md);margin-bottom:24px;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.st-step-tabs::-webkit-scrollbar{display:none}
.st-step-tab-btn{flex:1;padding:11px 14px;background:transparent;border:0;border-radius:var(--r-sm);font-size:13px;font-weight:700;color:var(--c-gray-500);cursor:pointer;transition:.2s;white-space:nowrap;letter-spacing:-.01em;min-width:max-content}
.st-step-tab-btn:hover{color:var(--c-black);background:rgba(255,255,255,.5)}
.st-step-tab-btn.active{background:var(--c-white);color:var(--c-red);box-shadow:0 2px 8px rgba(15,23,42,.08);font-weight:800}
/* ═══ Step content - PC: 모든 step이 같은 grid cell에 stack 되어 높이 통일 ═══ */
.st-step-slider{display:grid}
.st-step-content{
  display:flex;
  flex-direction:column;
  grid-column:1;
  grid-row:1;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
}
.st-step-content.active{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}
@keyframes stFadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

/* ═══ HOW TO USE 5단계 - 모바일 가로 스크롤 슬라이드 ═══ */
.st-step-slider {
    display: grid;
}
.st-step-content {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.st-step-content.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.st-step-display {
	overflow: hidden;
	border-radius: 20px;
	border: 1.5px solid #fecaca;
	background: linear-gradient(135deg, var(--c-red-soft) 0%, #fffafa 50%, #fff 100%);
}
@media only screen and (min-width: 641px) {
	.st-step-display {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-flow: row-reverse;
		flex-wrap: wrap;
		padding: 36px 36px 0;
	}
}

.st-step-img {
	display: flex;
	align-items: center;
	overfow: hidden;
	position: relative;
	z-index: 0;
}
@media only screen and (min-width: 641px) {
	.st-step-img {
		width: 645px;
		height: 476px;
	}
}

.st-step-img img {
	width: 100%;
	height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .1);
}

.st-step-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
@media only screen and (min-width: 641px) {
	.st-step-info {
		display: flex;
		flex-direction: column;
		gap: 16px;
		width: 480px;
	}
}

.st-step-num {
    width: fit-content;
    background: var(--c-red);
    color: #fff;
    border-radius: 6px;
    padding: 5px 13px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
}

.st-step-num::before {
    content: "STEP ";
}

.st-step-text {
    flex: initial;
    width: 100%;
    min-width: 0;
}

.st-step-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-black);
    letter-spacing: -.025em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.st-step-text p {
    font-size: 15px;
    color: var(--c-gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.st-step-text p strong {
    color: var(--c-black);
    font-weight: 700;
}

.st-step-tip {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(15, 76, 129, .22);
    border-left: 3px solid var(--c-red);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    font-size: 13px;
    color: var(--c-gray-700);
    line-height: 1.6;
}

.st-step-tip strong {
    color: var(--c-red);
    font-weight: 800;
}

.st-step-nav {
    grid-area: nav;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;

    padding: 16px 0;
    border-top: 1px solid rgba(15, 76, 129, .18);
    background: transparent;
    margin-top: 24px;
}

.standard-root button {
    font-family: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.st-step-nav-btn {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
	white-space: nowrap;
}

.st-step-nav-btn:disabled {
	opacity: 0.2;
}

/* =========================================================
   Trial vs Full
   ========================================================= */

.st-cpt-wrap{background:var(--c-white);border-radius:var(--r-xl);overflow:hidden;border:1.5px solid var(--c-gray-200)}
.st-cpt{width:100%;border-collapse:collapse;font-size:13.5px;table-layout:fixed}
.st-cpt thead{background:var(--c-gray-50)}
.st-cpt th{padding:14px 16px;text-align:center;font-weight:800;font-size:13px;color:var(--c-black);border-bottom:2px solid var(--c-gray-200)}
.st-cpt th:first-child{text-align:left}
.st-cpt td{padding:14px 16px;border-bottom:1px solid var(--c-gray-100);color:var(--c-gray-700);vertical-align:middle;text-align:center;word-break:keep-all}
.st-cpt tr:last-child td{border-bottom:0}
.st-cpt td:first-child{font-weight:700;color:var(--c-black);background:var(--c-gray-50);text-align:left}
.st-cpt .ok{color:var(--c-green);font-weight:800}
.st-cpt .no{color:var(--c-red);font-weight:800}
.st-cpt .nt{color:var(--c-gray-500);font-size:12.5px}
.st-cpt-note{margin-top:12px;font-size:12px;color:var(--c-gray-500);text-align:center}

/* =========================================================
   LINEUP
   ========================================================= */
.st-lut-wrap{background:var(--c-white);border-radius:var(--r-xl);overflow:hidden;border:1.5px solid var(--c-gray-200)}
.st-lut{width:100%;border-collapse:collapse;font-size:13.5px;table-layout:fixed}
.st-lut thead{background:var(--c-gray-50)}
.st-lut th {
	padding: 14px 16px;
	text-align: center;
	font-weight: 800;
	font-size: 13px;
	color: var(--c-black);
	border-bottom: 2px solid var(--c-gray-200);
	letter-spacing: -.01em
}
.st-lut th:first-child{text-align:left}
.st-lut th.cr{background:var(--c-red-soft);color:var(--c-red)}
.st-lut td {
	padding: 13px 16px;
	border-bottom: 1px solid var(--c-gray-100);
	color: var(--c-gray-700);
	vertical-align: middle;
	text-align: center;
	word-break: keep-all
}
.st-lut tr:last-child td{border-bottom:0}
.st-lut td:first-child{font-weight:700;color:var(--c-black);background:var(--c-gray-50);text-align:left}
.st-lut td.cr{background:var(--c-red-soft);font-weight:800;color:var(--c-red)}
.st-lut .ok{color:var(--c-green);font-weight:800}
.st-lut .no{color:var(--c-gray-400);font-weight:600}
.st-cb{display:flex;gap:11px;align-items:flex-start;background:var(--c-blue-soft);border:1px solid #bfdbfe;border-radius:var(--r-md);padding:14px 18px;font-size:13.5px;color:var(--c-gray-700);line-height:1.65;max-width:880px;margin:20px auto 0}
.st-cb i{color:var(--c-blue);font-size:16px;flex-shrink:0;margin-top:2px}
.st-cb strong{color:var(--c-black);font-weight:800}
.st-lut-link{text-align:center;margin-top:18px;font-size:13.5px}
.st-lut-link a{color:var(--c-black);font-weight:800;text-decoration:underline;text-underline-offset:3px}

/* =========================================================
   LICENSE
   ========================================================= */
.st-pricing-note{text-align:center;font-size:12.5px;color:var(--c-gray-500);font-weight:600;margin-bottom:24px}
@media only screen and (min-width: 641px) {
	.st-pcg{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;padding-top:14px}
}
.st-pcc{background:var(--c-white);border:2px solid var(--c-gray-200);border-radius:var(--r-xl);overflow:visible;display:flex;flex-direction:column;transition:.3s;position:relative}
.st-pcc:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(15,23,42,.1)}
.st-pcc.ft{border-color:var(--c-red);box-shadow:0 8px 24px rgba(18,81,163,.15)}
.st-pc-banner{padding:18px 20px;color:#fff;display:flex;align-items:center;gap:12px;position:relative;min-height:80px;border-top-left-radius:calc(var(--r-xl) - 2px);border-top-right-radius:calc(var(--r-xl) - 2px)}
.st-pc-banner.home-bg{background:linear-gradient(135deg,#3f1f63 0%,#1a0830 100%)}
.st-pc-banner.biz-bg{background:linear-gradient(135deg,#172554 0%,#1e3a8a 100%)}
.st-pc-banner.exp-bg{background:linear-gradient(135deg,#0a0a0a 0%,#1f2937 100%)}
.st-pc-rec-tag{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#fbbf24;color:#0a0a0a;font-size:11px;font-weight:800;padding:5px 14px;border-radius:999px;letter-spacing:.02em;box-shadow:0 4px 12px rgba(251,191,36,.5);z-index:10;white-space:nowrap}
.st-pc-best-tag{position:absolute;top:14px;right:14px;background:rgba(255,255,255,.9);color:var(--c-blue);font-size:10px;font-weight:800;padding:3px 8px;border-radius:5px;letter-spacing:.04em}
.st-pc-banner-icon{width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.18);color:#fff;display:grid;place-items:center;font-size:18px;flex-shrink:0}
.st-pc-banner-name{font-size:15px;font-weight:800;letter-spacing:-.01em;line-height:1.3}
.st-pc-banner-sub{font-size:11.5px;color:rgba(255,255,255,.85);font-weight:600;margin-top:1px}
.st-pc-body{padding:22px 22px 24px;display:flex;flex-direction:column;gap:10px;flex:1}
.st-pc-license-tag{font-size:11px;font-weight:800;color:var(--c-gray-500);letter-spacing:.06em;text-transform:uppercase}
.st-pc-headline{font-size:11.5px;color:var(--c-red);font-weight:700;line-height:1.55}
.st-pc-title{font-size:18px;font-weight:800;color:var(--c-black);letter-spacing:-.02em;line-height:1.3}
.st-pc-desc{font-size:12.5px;color:var(--c-gray-700);line-height:1.6;flex:1}
.st-pc-target{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:var(--c-black);background:var(--c-gray-50);padding:7px 11px;border-radius:var(--r-sm);width:fit-content}
.st-pc-target i{color:var(--c-red)}
.st-pc-tags{display:flex;flex-wrap:wrap;gap:4px}
.st-pc-tag{display:inline-flex;align-items:center;font-size:10.5px;font-weight:700;color:var(--c-gray-700);background:var(--c-gray-100);padding:3px 8px;border-radius:5px}
.st-pc-features{display:flex;flex-direction:column;gap:6px;padding:10px 0;border-top:1px solid var(--c-gray-100);border-bottom:1px solid var(--c-gray-100)}
.st-pc-feat{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;color:var(--c-gray-700);line-height:1.5}
.st-pc-feat i{font-size:11px;flex-shrink:0;margin-top:3px}
.st-pc-feat .ck{color:var(--c-green)}
.st-pc-feat .mn{color:var(--c-gray-400)}
.st-pc-price-box{text-align:center;padding:6px 0}
.st-pc-price{font-size:28px;font-weight:800;color:var(--c-black);letter-spacing:-.02em;line-height:1.2}
.st-pc-price .unit{font-size:14px;font-weight:700;color:var(--c-gray-500);margin-left:3px}
.st-pc-price-sub{font-size:11.5px;color:var(--c-gray-500);font-weight:600;margin-top:2px}
.st-pc-actions{display:flex;gap:6px;margin-top:4px}
.st-btn-b{flex:1;padding:11px 14px;background:var(--c-red);color:#fff !important;border:1.5px solid var(--c-red);border-radius:var(--r-sm);font-size:13px;font-weight:800;display:inline-flex;align-items:center;justify-content:center;gap:6px;transition:.2s;text-decoration:none}
.st-btn-b:hover{background:var(--c-red-dark);border-color:var(--c-red-dark)}
.st-btn-t{padding:11px 14px;background:var(--c-white);color:var(--c-black) !important;border:1.5px solid var(--c-gray-300);border-radius:var(--r-sm);font-size:13px;font-weight:800;display:inline-flex;align-items:center;justify-content:center;gap:6px;transition:.2s;text-decoration:none;flex-shrink:0}
.st-btn-t:hover{border-color:var(--c-red);color:var(--c-red) !important}

/* =========================================================
   FAQ
   ========================================================= */
.st-faq-list{display:flex;flex-direction:column;gap:10px;max-width:840px;margin:0 auto}
.st-faq{background:var(--c-white);border:1.5px solid var(--c-gray-200);border-radius:var(--r-md);overflow:hidden;transition:.2s}
.st-faq[open]{border-color:var(--c-red);box-shadow:0 4px 16px rgba(18,81,163,.08)}
.st-faq summary{padding:16px 20px;font-size:14px;font-weight:700;color:var(--c-black);cursor:pointer;display:flex;align-items:center;gap:12px;list-style:none;transition:.2s;letter-spacing:-.01em}
.st-faq summary::-webkit-details-marker{display:none}
.st-faq summary::before{content:'067';font-family:'Font Awesome 6 Free';font-weight:900;font-size:11px;color:var(--c-red);width:24px;height:24px;background:var(--c-red-soft);border-radius:6px;display:grid;place-items:center;flex-shrink:0;transition:.2s}
.st-faq[open] summary::before{content:'068';background:var(--c-red);color:#fff}
.st-faq summary:hover{background:var(--c-gray-50)}
.st-faq-ans{padding:0 20px 18px 56px;font-size:13.5px;color:var(--c-gray-700);line-height:1.7}
.st-faq-ans strong{color:var(--c-black);font-weight:800}

/* =========================================================
   FINAL STEP
   ========================================================= */
.st-final-cta {
	max-width: 1000px;
	overflow: hidden;
	margin: 60px auto 90px;
	padding: 56px 40px;
	border-radius: var(--r-xl);
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a3d7a 100%);
	text-align: center;
	color: #fff;
	position: relative;
}

.st-final-kicker {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	color: #fbbf24;
	letter-spacing: .16em;
	margin-bottom: 14px
}

.st-final-cta h2 {
	font-weight: 800;
	font-size: clamp(20px, 3.6vw, 30px);
	color: #fff;
	letter-spacing: -.025em;
	line-height: 1.3;
	margin-bottom: 14px
}

.st-final-cta h2 .blue {
	color: var(--c-red-soft)
}

.st-final-cta>p {
	font-size: 14px;
	color: rgba(255, 255, 255, .78);
	line-height: 1.75;
	max-width: 680px;
	margin: 0 auto 28px
}

.st-final-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px
}

.st-final-extra {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .12)
}

.st-final-extra p {
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
	margin-bottom: 14px
}

.st-final-extra-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 22px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .18);
	color: rgba(255, 255, 255, .85);
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	cursor: not-allowed;
	opacity: .7
}

.st-final-extra-btn i {
	color: #38bdf8
}

.st-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 800;
    transition: .2s;
    min-height: 44px;
    cursor: pointer;
    letter-spacing: -.01em;
}

.st-hero-btn.primary {
    background: var(--c-red);
    color: #fff;
    border: 1px solid var(--c-red);
    box-shadow: 0 4px 12px rgba(91, 45, 142, .3);
}

.st-hero-btn.primary:hover {
	background: var(--c-red-soft);
	border-color: var(--c-red-soft);
	transform: translateY(-1px)
}
.st-hero-btn.ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.st-hero-btn.ghost:hover {
	background: rgba(255, 255, 255, .15);
	transform: translateY(-1px)
}

/* ═══ CTA Section ═══ */
.st-cta {
	max-width: 1000px;
	overflow: hidden;
	margin: 60px auto 90px;
	padding: 56px 40px;
	border-radius: var(--r-xl);
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a3d7a 100%);
	text-align: center;
	color: #fff;
	position: relative;
}

.st-cta h2 {
	font-size: clamp(22px, 3.6vw, 30px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -.025em;
	line-height: 1.25;
	margin-bottom: 12px
}

.st-cta h2 .blue {
	background: linear-gradient(120deg, #c084fc 0%, #FFD700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent
}

.st-cta p {
	font-size: 14.5px;
	color: rgba(255, 255, 255, .85);
	line-height: 1.7;
	max-width: 640px;
	margin: 0 auto 22px
}

.st-cta-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center
}

/* =========================================================
   mobile
   ========================================================= */
@media only screen and (max-width: 640px) {

	.m-slider-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-top: 10px;
		padding: 0 5vw;
	}

	.m-slider-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-top: 10px;
		padding: 0 5vw;
	}

	.m-slider-controls .msc-counter {
		font-size: 14px;
		font-weight: 800;
		color: #1d1d1f;
		letter-spacing: 0.02em;
		font-variaht-numeric: tabular-nums;
		min-width: 48px;
		text-align: left;
		flex-shrink: 0;
	}

	.m-slider-controls .msc-counter .msc-total {
		color: #9ca3af;
		font-weight: 600;
	}

	.m-slider-controls .msc-dots {
		display: flex;
		flex: 1;
		gap: 6px;
		justify-content: center;
		align-items: center;
		min-width: 0;
		flex-wrap: nowrap;
		overflow: hidden;
	}

	.m-slider-controls .msc-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #d1d5db;
		transition: all .3s ease;
		cursor: pointer;
		flex-shrink: 0;
	}

	.m-slider-controls .msc-dot.active {
		background: #4aa136;
		width: 18px;
		border-radius: 3px;
	}

	.m-slider-controls .msc-btns {
		display: flex;
		gap: 8px;
		flex-shrink: 0;
	}

	.m-slider-controls .msc-btn {
		width: 44px;
		height: 44px;
		border-radius: 50%;
		border: 1.5px solid #e2e8f0;
		background: #fff;
		color: #1d1d1f;
		font-size: 18px;
		font-weight: 700;
		line-height: 1;
		padding: 0;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all .2s ease;
		-webkit-tap-highlight-color: transparent;
	}

	.m-slider-controls .msc-btn:active:not(:disabled) {
		transform: scale(.92);
		background: #eff6ff;
		border-color: #0070d1;
		color: #0070d1;
	}

	.m-slider-controls .msc-btn:disabled {
		opacity: .35;
		cursor: not-allowed;
	}

	.hero-grid {
		padding: 40px 5vw;
		text-align: center;
	}

	.hero-left {
		margin-bottom: 40px;
	}

	.hero-product-label {
		margin-bottom: 15px;
	}

	.hero-trust {
		height: auto;
		padding: 16px;
	}

	.hero-chips {
		justify-content: center;
	}

	.hero-chip {
		padding: 4px 9px;
	}

	.hero-btns {
		justify-content: space-between;
	}

	.hero-btn-download {
		min-width: 48%;
		padding: 14px 10px;
	}

	.btn-btn-buy {
		min-width: 48%;
		padding: 14px 10px;
	}

	.product-hero-visual {
		padding: 20px;
	}

	.product-hero-package {
		margin-bottom: 20px;
	}

	.product-hero-package img {
		width: auto;
		height: 172px;
		aspect-ratio: 118 / 217;
		object-fit: cover;
	}

	.st-section {
		padding: 50px 5vw;
	}

	.st-section-head {
		text-align: center;
	}

	.st-trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.st-why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.st-why-card {
		text-align: center;
	}

	.st-why-icon {
		margin: 0 auto 10px;
	}

	.st-scard-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.st-scard {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		padding: 5vw;
	}

	.st-ch-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 18px
	}

	.st-rt th {
		padding: 12px 5px;
		text-align: center;
	}

	.st-rt th.w22 {
		width: 26%;
	}

	.st-rt th.w18 {
		width: 22%;
	}

	.st-rt td {
		padding: 12px 5px;
		text-align: center;
	}

	.st-rt td:first-child {
		padding-left: 12px;
		text-align: left;
	}

	.st-rt td:last-child {
		padding: 12px;
		text-align: left;
	}

	.st-step-tab-btn {
		font-size: 12px;
		padding: 9px 12px;
	}

	.st-step-slider {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		gap: 12px;
		padding: 4px 16px 14px;
		margin: 0 -16px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		cursor: grab;
		user-select: none;
	}

	.st-step-content {
		display: flex;
		flex-direction: column;
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		flex: 0 0 calc(100% - 24px);
		min-width: 0;
		scroll-snap-align: center;
		scroll-snap-stop: always;
		animation: none;
		margin: 0;
	}

	.st-step-display {
		display: flex;
		flex-direction: column;
		grid-template-columns: none;
		grid-template-areas: none;
		flex-grow: 1;
		background: var(--c-white);
		border: 1.5px solid var(--c-gray-200);
		border-radius: var(--r-xl);
		padding: 0;
		gap: 0;
	}

	.st-step-img-callout {
		font-size: 10px;
		padding: 5px 8px;
		gap: 4px;
		white-space: normal;
		line-height: 1.3;
		text-align: center;
	}

	.st-step-info {
		padding: 18px 20px;
		gap: 12px;
		flex-direction: column;
		align-items: flex-start;
		flex: 1 1 auto;
		min-height: 0;
	}

	.st-step-num {
		width: 36px;
		height: 36px;
		font-size: 16px;
		padding: 0;
		border-radius: 50%;
		text-align: center;
		line-height: 36px;
	}

	.st-step-num::before {
		content: "";
	}

	.st-step-text h3 {
		font-size: 15.5px;
	}

	.st-step-text p {
		font-size: 13px;
	}

	.st-step-tip {
		background: var(--c-blue-soft);
		border: 1px solid #bfdbfe;
		border-left-width: 1px;
		font-size: 12px;
		padding: 9px 12px;
	}

	.st-step-nav {
		padding: 11px 18px;
		background: transparent;
		border-top: 1px solid var(--c-gray-100);
		flex: 0 0 auto;
		margin-top: auto;
		font-size: 13px;
	}

	.st-step-nav-btn {
		font-size: 13px;
	}

	.st-why-grid,
	.st-feat-grid {
		grid-template-columns: 1fr 1fr;
	}

	.st-feat-card {
		padding: 18px;
		text-align: center;
	}

	.st-feat-icon {
		margin: 0 auto 5px;
	}

	.st-mode-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.st-mc {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.st-spec-grid-x {
		grid-template-columns: 1fr;
	}

	.st-dev-item {
		text-align: center;
	}

	.st-dev-icon {
		width: 34px;
		height: 34px;
		font-size: 15px;
		margin: 0 auto 10px;
	}

	.st-fs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.st-spec-table td {
		display: block;
		padding: 0;
		border-bottom: 1px solid var(--c-gray-200);
		line-height: 1.3;
	}

	.st-spec-table td:first-child {
		width: auto;
		display: block;
		padding: 12px 0 5px;
		border-bottom: 0;
	}

	.st-spec-table td:last-child {
		padding: 0 0 10px;
	}

	.st-fs-detail.show {
		max-height: 2000px;
	}

	.st-lut th {
		padding: 14px 0;
	}

	.st-lut th:first-child {
		text-align: center
	}

	.st-lut td {
		font-size: 13px;
	}

	.st-pcg {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		padding: 15px 0;
		position: relative;
	}

	.st-pcc {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-shadow: none;
	}

	.st-pcc.ft {
		box-shadow: none;
	}

	.st-cta {
		margin: 50px 5vw 50px;
		padding: 40px 5vw;
	}

	.st-hero-btn {
		justify-content: center;
		width: 90%;
	}

	.st-enc-card .st-spec-pill {
		flex: 0 0 auto;
	}

	.st-final-cta {
		margin: 50px 5vw 50px;
		padding: 40px 5vw;
	}

}

/* セクション全体 */
.bb-usecases-section {
	background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

/* グリッドレイアウト */
.bb-usecases-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 32px;
}

/* 通常カードスタイル */
.bb-usecases-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px 16px;
	text-align: center;
	transition: all .2s ease;
}

@media only screen and (max-width: 640px) {
	.bb-usecases-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-usecases-card {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
}

.bb-usecases-card .bb-usecases-icon-wrap {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.bb-usecases-card .bb-usecases-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 20px;
}

.bb-usecases-card .bb-usecases-card-title {
	font-size: 14px;
	font-weight: 800;
	color: #111;
	margin-bottom: 6px;
}

.bb-usecases-card .bb-usecases-card-text {
	font-size: 12px;
	color: #666;
	line-height: 1.5;
}

.bb-usecases-card:not(.is-active):hover {
	border-color: var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .08);
}

.bb-usecases-card.is-active {
	border: 2px solid var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .08);
}

.bb-usecases-card.is-active .bb-usecases-icon-wrap {
	background: linear-gradient(135deg, var(--c-red), var(--c-red-soft));
}

.bb-usecases-card.is-active .bb-usecases-icon-wrap i {
	color: #fff;
}

.bb-usecases-card.is-active .bb-usecases-card-title {
	color: var(--c-red);
}

#sec_vendors .st-section-head {
	text-align: center;
}

#sec_vendors .st-section-desc {
	margin-right: auto;
	margin-left: auto;
}

.bb-vendors-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 12px;
	margin: 32px 0 20px;
}

@media only screen and (max-width: 640px) {
	.bb-vendors-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.bb-vendor-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 18px 8px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	transition: all .2s ease;
	cursor: default;
}

.bb-vendor-card:hover {
	border-color: var(--c-red);
	box-shadow: 0 4px 12px rgba(25, 118, 210, .1);
}

/* ロゴのベーススタイルと背景カラー */
.bb-vendor-logo {
	width: 60px;
	height: 38px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.bb-vendor-logo span {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: -.3px;
}

.bb-vendor-logo.is-thinkware {
	background: linear-gradient(135deg, #E8EAF6, #C5CAE9);
}
.bb-vendor-logo.is-thinkware span {
	font-size: 9px;
	color: #1A237E;
}

.bb-vendor-logo.is-blackvue {
	background: linear-gradient(135deg, #263238, #37474F);
}
.bb-vendor-logo.is-blackvue span {
	font-size: 9px;
	color: #fff;
}

.bb-vendor-logo.is-papago {
	background: linear-gradient(135deg, #1B5E20, #2E7D32);
}
.bb-vendor-logo.is-papago span { color: #fff; }

.bb-vendor-logo.is-finevu {
	background: linear-gradient(135deg, #E65100, #FF6D00);
}
.bb-vendor-logo.is-finevu span { color: #fff; }

.bb-vendor-logo.is-iroad {
	background: linear-gradient(135deg, #0D47A1, #1565C0);
}
.bb-vendor-logo.is-iroad span { color: #fff; }

.bb-vendor-logo.is-garmin {
	background: linear-gradient(135deg, #004D40, #00695C);
}
.bb-vendor-logo.is-garmin span { color: #fff; }

.bb-vendor-logo.is-mando {
	background: linear-gradient(135deg, #B71C1C, #D32F2F);
}
.bb-vendor-logo.is-mando span { color: #fff; }

.bb-vendor-logo.is-vugera {
	background: linear-gradient(135deg, #4A148C, #6A1B9A);
}
.bb-vendor-logo.is-vugera span { color: #fff; }

.bb-vendor-name {
	font-size: 11px;
	font-weight: 800;
	color: var(--c-red);
}

/* タグ一覧エリア */
.bb-vendors-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
	.bb-vendors-tags {
		justify-content: flex-start;
	}
}

.bb-tag-item {
	padding: 6px 14px;
	background: #D4E6F1;
	border: 1px solid #AED6F1;
	color: #1565C0;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
}

.bb-tag-item.is-more {
	background: #e8e8e8;
	border-color: transparent;
	color: #999;
	font-weight: 600;
	font-style: italic;
}

/* 実績サマリー */
.bb-vendors-summary {
	text-align: center;
	margin-bottom: 24px;
}

.bb-summary-badge {
	display: inline-block;
	background: var(--c-red);
	color: #fff;
	padding: 6px 20px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
}

/* 重要案内ボックス */
.bb-notice-box {
	background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
	border: 2px solid #FFB74D;
	border-radius: 14px;
	padding: 24px 28px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.bb-notice-ribbon {
	position: absolute;
	top: 0;
	right: 0;
	background: #FF9800;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 6px 16px;
	border-radius: 0 0 0 10px;
	letter-spacing: 1px;
}

.bb-notice-ribbon i {
	margin-right: 4px;
}

@media only screen and (min-width: 641px) {
	.bb-notice-content {
		display: flex;
		gap: 16px;
		align-items: flex-start;
	}
}

.bb-notice-icon-wrap {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #E65100, #FF9800);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 4px;
}

@media only screen and (max-width: 640px) {
	.bb-notice-icon-wrap {
		margin: 0 auto 15px;
	}
}

.bb-notice-icon-wrap i {
	color: #fff;
	font-size: 20px;
}

.bb-notice-text-wrap .bb-notice-title {
	font-size: 16px;
	font-weight: 800;
	color: #E65100;
	margin-bottom: 10px;
}

.bb-notice-text-wrap p {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	margin: 0 0 10px;
}

.bb-text-highlight {
	color: #E65100;
}

/* 下部案内・お問い合わせ */
.bb-support-info {
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 22px 24px;
}

.bb-support-info p {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	margin: 0 0 12px;
}

.bb-contact-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.bb-contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bb-contact-item i {
	color: var(--c-red);
	font-size: 14px;
}

.bb-contact-item span {
	font-size: 14px;
	font-weight: 700;
	color: #333;
}

.bb-contact-item a {
	color: var(--c-red);
	text-decoration: none;
}

.bb-contact-item a i {
	font-size: 11px;
	margin-left: 2px;
}

/* 共通ユーティリティクラス */
.bb-margin-none {
	margin: 0 !important;
}
.bb-margin-bottom-sm {
	margin: 0 0 14px !important;
}

.bb-features-intro {
	max-width: 1280px;
	margin: 0 auto 40px;
	padding: 24px 28px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	font-size: 15px;
	color: #555;
	line-height: 1.85;
	transition: all .2s ease;
}

.bb-features-intro:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(15,40,80,0.10), 0 1px 4px rgba(15,40,80,0.06);
	border-color: var(--c-red-soft);
}

.bb-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.bb-features-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 28px 22px;
	box-shadow: 0 4px 16px rgba(15,40,80,0.10), 0 1px 4px rgba(15,40,80,0.06);
	transition: all .2s ease;
}

@media only screen and (max-width: 640px) {
	.bb-features-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-features-card {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-shadow: none;
	}
}

.bb-features-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(15,40,80,0.10), 0 1px 4px rgba(15,40,80,0.06);
	border-color: #a5bad9;
}

.bb-features-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.bb-features-icon-wrap {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bb-features-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 16px;
}

.bb-features-card-title {
	font-size: 15px;
	font-weight: 800;
	color: #111;
}

.bb-features-card-text {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* 通常カードのホバー効果 */
.bb-features-card:not(.is-active):hover {
	border-color: var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .06);
}

/* アクティブ（強調）カードスタイル */
.bb-features-card.is-active {
	border: 2px solid var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .06);
}

.bb-features-card.is-active .bb-features-icon-wrap {
	background: linear-gradient(135deg, var(--c-red), var(--c-red-soft));
}

.bb-features-card.is-active .bb-features-icon-wrap i {
	color: #fff;
}

#sec_analysis {
	background: linear-gradient(135deg, #081520 0%, #0a1628 40%, #112B3C 100%);
	color: #fff;
}

#sec_analysis .st-section-head {
	text-align: center;
}

#sec_analysis .st-h2 {
	color: #fff;
}

#sec_analysis .st-section-desc {
	margin-right: auto;
	margin-left: auto;
}

.bb-analysis-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

@media only screen and (max-width: 640px) {
	.bb-analysis-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-analysis-card {
		flex: 0 0 50vw;
		min-width: 50vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
	.bb-analysis-host .msc-counter {
		color: #fff;
	}
}

.bb-analysis-card {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 14px;
	padding: 24px 18px;
	text-align: center;
	transition: all .25s ease;
}

.bb-analysis-icon-wrap {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.bb-analysis-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 20px;
}

.bb-analysis-card-title {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 6px;
	line-height: 1.4;
}

.bb-analysis-card-text {
	font-size: 11px;
	color: rgba(255, 255, 255, .4);
	line-height: 1.5;
}

/* 通常カードのホバー効果（他セクションとの統一用、不要なら削除可） */
.bb-analysis-card:not(.is-active):hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(25, 118, 210, .5);
}

/* アクティブ（強調）カードスタイル */
.bb-analysis-card.is-active {
	background: rgba(25, 118, 210, .08);
	border: 2px solid rgba(25, 118, 210, .3);
}

.bb-analysis-card.is-active .bb-analysis-icon-wrap {
	background: linear-gradient(135deg, #0D47A1, var(--c-red));
}

.bb-analysis-card.is-active .bb-analysis-icon-wrap i {
	color: #fff;
}

.bb-analysis-card.is-active .bb-analysis-card-title {
	color: #42A5F5;
}

.bb-compare-box {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	margin-bottom: 28px;
}

.bb-compare-box:last-of-type {
	margin-bottom: 0;
}

.bb-compare-box-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--c-red);
	letter-spacing: .5px;
	margin-bottom: 16px;
}

/* グリッドレイアウト（2カラム） */
.bb-compare-grid-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

@media only screen and (max-width: 640px) {
	.bb-compare-grid-2col {
		grid-template-columns: 1fr;
	}

	.bb-compare-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		position: relative;
	}

	.bb-compare-box {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-shadow: none;
		margin-bottom: 10px;
	}
}

/* ステータスラベル（一般/BlackBox） */
.bb-compare-status-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.bb-compare-status-label span {
	font-size: 14px;
	font-weight: 800;
}

.bb-status-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bb-status-icon i {
	font-size: 10px;
}

/* 失敗（一般）用カラー */
.bb-compare-status-label.is-fail span {
	color: #999;
}
.bb-compare-status-label.is-fail .bb-status-icon {
	background: #fdecea;
}
.bb-compare-status-label.is-fail i {
	color: #e74c3c;
}

/* 成功（BlackBox）用カラー */
.bb-compare-status-label.is-success span {
	color: var(--c-red);
}
.bb-compare-status-label.is-success .bb-status-icon {
	background: #d4edda;
}
.bb-compare-status-label.is-success i {
	color: #28a745;
}

/* 画像ラッパー */
.bb-compare-img-wrap {
	border: 1px solid #e5e7eb;
	overflow: hidden;
	margin-bottom: 12px;
	padding: 20px;
	text-align: center;
	background: #fafafa;
}

/* BlackBox側（強調枠線） */
.bb-compare-img-wrap.is-highlight {
	border: 1px solid var(--c-red);
	box-shadow: 0 0 0 1px var(--c-red) inset;
}
/*
.bb-compare-img-wrap img,
.bb-compare-img-full img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
*/
/* フル幅の画像エリア（比較3用） */
.bb-compare-img-full {
	border: 1px solid #e5e7eb;
	overflow: hidden;
	margin-bottom: 16px;
	text-align: center;
	background: #fafafa;
}

/* 比較3用のステータス並列エリア */
.bb-compare-status-inline {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

/* 説明テキスト */
.bb-compare-text {
	font-size: 13px;
	line-height: 1.7;
	margin: 0;
}

.bb-compare-text.is-normal {
	color: #666;
}

.bb-compare-text.is-strong {
	color: #333;
}

/* 最下部サマリーバー */
.bb-compare-summary-bar {
	margin-top: 28px;
	text-align: center;
	padding: 16px;
	background: #EBF5FB;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	font-size: 14px;
	color: #555;
	font-weight: 700;
}

/* 共通パーツ・ユーティリティ */
.bb-text-blue {
	color: var(--c-red);
}

.bb-font-sm {
	font-size: 13px !important;
}

.bb-margin-none {
	margin: 0 !important;
}

#sec_steps .st-section-head {
	text-align: center;
}

#sec_steps .st-section-desc {
	margin-right: auto;
	margin-left: auto;
}

.bb-steps-indicator {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
	align-items: center;
}

.bb-sdot {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid #e5e7eb;
	background: #fff;
	color: #999;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	transition: .3s;
	flex-shrink: 0;
	padding: 0;
}

@media only screen and (max-width: 640px) {
	.bb-sdot {
		width: 28px;
		height: 28px;
		border-width: 2px;
		font-size: 12px;
	}
}

.bb-sdot.is-completed {
	background: var(--c-red);
	border-color: var(--c-red);
	color: #fff;
}

.bb-sdot-label {
	display: none;
}

.bb-sdot-label.is-completed {
	color: var(--c-red);
	font-weight: 900;
}

/* つなぎのライン */
.bb-step-line-bar {
	width: 32px;
	height: 3px;
	background: #e5e7eb;
	align-self: center;
	border-radius: 2px;
}

@media only screen and (max-width: 640px) {
	.bb-step-line-bar {
		width: 10px;
	}
}

.bb-step-line-fill {
	width: 0;
	height: 100%;
	background: var(--c-red);
	border-radius: 2px;
	transition: width .5s;
}

.bb-step-line-fill.is-active {
	width: 100%;
}

/* スライダー本体 */
.bb-steps-slider-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #EBF5FB;
	border: 2px solid #D4E6F1;
	min-height: 20px;
}

.bb-steps-slider {
	display: flex;
	transition: transform .5s ease;
	width: 500%;
}

@media only screen and (max-width: 640px) {
	.bb-steps-slider {
	}
}

.bb-step-slide {
	width: 20%;
	flex-shrink: 0;
	padding: 40px;
}

/* スライド内レイアウト */
.bb-step-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

@media only screen and (max-width: 640px) {
	.bb-step-grid {
		grid-template-columns: 1fr;
	}

	#sec_steps #stepSlider {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		transform: none !important;
	}

	#sec_steps #stepSlider>div {
		width: 100% !important;
		flex-shrink: 1 !important;
		display: none !important;
		padding: 24px 18px !important;
	}

	#sec_steps #stepSlider>div.step-active {
		display: block !important;
	}

	#sec_steps #stepSlider>div>div[style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	#sec_steps #stepSlider h3 {
		font-size: 20px !important;
	}

	#sec_steps #stepSlider p {
		font-size: 14px !important;
	}

	#sec_steps [style*="min-height:420px"] {
		min-height: auto !important;
	}
}

.bb-step-grid.align-start {
	align-items: flex-start;
}

/* テキストコンテンツ */
.bb-step-num-badge {
	display: inline-block;
	background: var(--c-red);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 6px;
	margin-bottom: 14px;
}

.bb-step-content-title {
	font-size: 24px;
	font-weight: 900;
	color: #111;
	margin: 0 0 14px;
}

.bb-step-desc {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin: 0;
}

/* 注意事項・補足ボックス */
.bb-step-notice-box {
	background: #fff;
	border: 1px solid #D4E6F1;
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 10px;
}

.bb-step-notice-box:last-child {
	margin-bottom: 0;
}

.bb-step-notice-box.is-yellow {
	background: #FFF8E1;
	border-color: #FFE082;
}

.bb-step-notice-box.is-green {
	background: #E8F5E9;
	border-color: #A5D6A7;
}

.bb-notice-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.bb-notice-title span {
	font-size: 13px;
	font-weight: 800;
}

.bb-notice-title i {
	font-size: 14px;
}

/* 通知ボックスごとのカラー定義 */
.bb-notice-title.is-orange { color: #E65100; }
.bb-notice-title.is-blue { color: var(--c-red); }
.bb-notice-title.is-dark-orange { color: #F57F17; }
.bb-notice-title.is-dark-green { color: #2E7D32; }

.bb-notice-text {
	font-size: 12px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* メディア（画像＆コールアウト） */
.bb-step-media {
	border-radius: 16px;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.bb-step-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 16px;
}

/* 画像内コールアウトの絶対配置（元コードをマッピング） */
.bb-callout {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--c-red);
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 3px 12px rgba(25, 118, 210, .35);
    z-index: 5;
    white-space: nowrap;
}

@media only screen and (max-width: 640px) {
	.bb-step-media {
		min-height: 150px;
		height: auto;
	}
	.bb-callout {
		font-size: 10px;
		padding: 5px 11px;
		white-space: normal;
		max-width: 140px;
	}
}
.bb-callout-s1-1 { top: 55%; left: 2%; }
.bb-callout-s1-2 { bottom: 5%; right: 2%; }

.bb-callout-s2-1 { top: 18%; right: 2%; }
.bb-callout-s2-2 { bottom: 5%; right: 2%; }

.bb-callout-s3-1 { top: 28%; right: 2%; }
.bb-callout-s3-2 { bottom: 12%; right: 2%; }

.bb-callout-s4-1 { top: 22%; left: 2%; }
.bb-callout-s4-2 { bottom: 5%; right: 2%; }

.bb-callout-s5-1 { bottom: 38%; right: 2%; }
.bb-callout-s5-2 { bottom: 5%; right: 2%; }

/* ボトムナビゲーションコントロール */
.bb-steps-nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 20px;
}

.bb-nav-btn {
	width: 56px;
	height: 44px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #dee1e5;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
	flex-shrink: 0;
	padding: 0;
	color: #0f172a;
	font-size: 15px;
	transition: all .2s ease;
}

.bb-nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.bb-counter {
	min-width: 80px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #94a3b8;
	letter-spacing: .3px;
	user-select: none;
}

.bb-counter-current {
	color: #0f172a;
	font-weight: 700;
	font-size: 16px;
}

.bb-counter-divider {
	margin: 0 2px;
}

/* ユーティリティ */
.bb-mb-16 {
	margin-bottom: 16px !important;
}

#sec_target.st-section {
	border-top: solid 1px #e0e0e0;
}

.bb-target-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

/* 通常カードスタイル */
.bb-target-card {
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px 22px;
	transition: all .25s ease;
}

@media only screen and (max-width: 640px) {
	.bb-target-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}
	.bb-target-card {
		flex: 0 0 50vw;
		min-width: 50vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
}

.bb-target-icon-wrap {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.bb-target-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 18px;
}

.bb-target-card-title {
	font-size: 16px;
	font-weight: 800;
	color: #111;
	margin-bottom: 10px;
}

/* リストアイテム */
.bb-target-list {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
}

.bb-target-item {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin-bottom: 6px;
}

.bb-target-item:last-child {
	margin-bottom: 0;
}

.bb-target-item i {
	color: var(--c-red);
	font-size: 11px;
	margin-top: 3px;
	flex-shrink: 0;
}

/* 通常カードのホバー効果 */
.bb-target-card:not(.is-active):hover {
	background: #fff;
	border-color: var(--c-red);
	box-shadow: 0 4px 14px rgba(25, 118, 210, .08);
}

/* アクティブ（強調）カードスタイル */
.bb-target-card.is-active {
	background: #EBF5FB;
	border: 2px solid var(--c-red);
}

.bb-target-card.is-active .bb-target-icon-wrap i {
	color: #fff;
}

.bb-target-card.is-active .bb-target-card-title {
	color: var(--c-red);
}

.bb-specs-main-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* カード構造 */
.bb-specs-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
}

.bb-specs-card-header {
	padding: 16px 22px;
	background: #EBF5FB;
	border-bottom: 1px solid #D4E6F1;
}

.bb-specs-card-title {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: #111;
	display: flex;
	align-items: center;
}

.bb-specs-card-title i {
	color: var(--c-red);
	margin-right: 8px;
}

.bb-specs-card-body {
	padding: 22px;
}

/* スペック項目 */
.bb-specs-item {
	margin-bottom: 16px;
}

.bb-specs-item:last-child {
	margin-bottom: 0;
}

.bb-specs-item-label {
	font-weight: 800;
	color: var(--c-red);
	font-size: 13px;
	margin-bottom: 8px;
}

.bb-specs-item-val {
	font-size: 13px;
	color: #444;
}

.bb-specs-item-val.is-list {
	line-height: 1.8;
}

.bb-specs-item-val.is-warning {
	color: #E8850A;
	font-weight: 600;
}

/* システム要件（下部）専用スタイル */
.bb-specs-sys-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.bb-specs-sys-box {
	background: #EBF5FB;
	border: 1px solid #D4E6F1;
	border-radius: 10px;
	padding: 18px;
}

.bb-specs-sys-label {
	font-weight: 800;
	color: var(--c-red);
	font-size: 13px;
	margin-bottom: 10px;
}

.bb-specs-sys-text {
	font-size: 13px;
	color: #555;
	line-height: 1.8;
}

/* ユーティリティ */
.bb-mt-20 {
	margin-top: 20px !important;
}

/* レスポンシブ対応（タブレット・スマホ向け） */
@media (max-width: 640px) {
	.bb-specs-main-grid,
	.bb-specs-sys-grid {
		grid-template-columns: 1fr;
	}
}

.bb-license-notice {
	background: #fff3e0;
	border: 2px solid #ffe0b2;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 32px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.bb-license-notice i {
	color: #E8850A;
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.bb-license-notice-text {
	font-size: 13px;
	color: #555;
	line-height: 1.8;
}

/* 그리드 및 카드 공통 */
.bb-license-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.bb-license-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 18px;
	padding: 36px 28px;
	text-align: center;
	position: relative;
	transition: all .25s ease;
}

@media only screen and (max-width: 640px) {
	.bb-license-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		padding-top: 15px;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-license-card {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
}

/* 추천 리본 */
.bb-card-ribbon {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--c-red);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 6px;
}

/* 라이선스 타입 뱃지 */
.bb-card-type {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 6px;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.bb-card-type.is-esd {
	background: var(--c-red);
	color: #fff;
}

.bb-card-type.is-package {
	background: #D4E6F1;
	color: var(--c-red);
}

/* 카드 내부 텍스트 구조 */
.bb-card-title {
	font-size: 20px;
	font-weight: 900;
	color: #111;
	margin: 0 0 8px;
}

.bb-card-price {
	font-size: 42px;
	font-weight: 900;
	color: var(--c-red);
	margin: 16px 0;
}

.bb-card-unit {
	font-size: 16px;
	font-weight: 600;
	color: #999;
}

.bb-card-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0 0 20px;
}

/* 하단 태그 */
.bb-card-tag {
	padding: 10px 16px;
	background: #f8f9fa;
	border-radius: 8px;
	font-size: 12px;
	color: #888;
	margin-bottom: 16px;
}

.bb-card-tag.is-blue {
	background: #EBF5FB;
	color: var(--c-red);
	font-weight: 700;
}

/* 버튼 스타일 */
.bb-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: .4s;
}

.bb-card-btn.is-blue {
	background: var(--c-red);
	color: #fff;
}

.bb-card-btn.is-blue:hover {
	background: #115293;
	box-shadow: 0 4px 24px rgba(25, 118, 210, .12);
	transform: translateY(-2px);
}

.bb-card-btn.is-dark {
	background: #0a1628;
	color: #fff;
}

.bb-card-btn.is-dark:hover {
	background: #2a5596;
	box-shadow: 0 4px 24px rgba(25, 118, 210, .12);
	transform: translateY(-2px);
}

/* 활성화/추천 카드 강조 효과 */
.bb-license-card.is-active {
	border: 3px solid var(--c-red);
	box-shadow: 0 4px 24px rgba(25, 118, 210, .12);
}

/* 일반 텍스트 컬러 유틸리티 */
.text-orange { color: #E8850A; }
.text-blue { color: var(--c-red); }
.text-dark-blue { color: #0D47A1; }

@media (max-width: 640px) {
	.bb-card-ribbon {
		top: -12px;
		right: 16px;
	}
}

/* FAQ Section */
#sec_faq .st-section-head {
	text-align: center;
}
.bb-faq-host {
	max-width: 900px;
	margin: 40px auto 0;
}
.bb-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bb-faq-item {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 40, 80, 0.07), 0 1px 2px rgba(15, 40, 80, 0.04);
	transition: border-color .3s;
}
.bb-faq-item.open {
	border-color: #7B2D8E;
}
.bb-faq-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	background: #fff;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	color: #222;
	text-align: left;
}
.bb-faq-arrow {
	color: #999;
	font-size: 12px;
	transition: transform .3s, color .3s;
}
.bb-faq-item.open .bb-faq-arrow {
	transform: rotate(180deg);
	color: #7B2D8E;
}
.bb-faq-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}
.bb-faq-item.open .bb-faq-panel {
	max-height: 200px; /* 답변 내용 길이에 맞춰 자동 조절 */
}
.bb-faq-content {
	padding: 0 22px 22px;
	font-size: 14px;
	color: #555;
	line-height: 1.85;
}

/* === FROM cctv.php === */

.hero {
	background: linear-gradient(to bottom, #0d2137 0%, #112b3c 50%, #081520 100%);
}

.hero-product-name .highlight {
	color: #7b2d8e;
}

.hero-trust {
	border-left: 4px solid #7b2d8e;
}

.hero-trust i {
	color: #7b2d8e;
}

.hero-chip.accent {
	border-color: rgba(123, 45, 142, .4);
	background: rgba(123, 45, 142, .2);
	color: #C084D8;
}

.product-hero-visual {
	border: solid 2px rgba(123, 45, 142, 0.35);
	box-shadow: 0 0 30px rgba(123, 45, 142, 0.12);
}

.hero-spec-val {
	color: #7b2d8e;
}

:root{
	--c-red: #5E1A75;
    --c-red-dark: #0a1d6e;
    --c-red-soft: #C084D8;
}

.st-section {
	padding: 70px 0;
}

@media only screen and (max-width: 640px) {
	.st-section {
		padding: 50px 5vw;
	}
}

.st-section-badge {
	border-color: rgba(0,0,0,0.05);
	background: #F6ECF8;
	color: var(--c-red);
}

@media only screen and (min-width: 641px) {
	.bb-usecases-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.bb-usecases-card.is-active .bb-usecases-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

.bb-vendor-logo {
	background: #F6ECF8;
}

.bb-vendor-logo i {
	color: #c9a0dc;
	font-size: 14px;
}

.bb-tag-item {
	background: #F6ECF8;
	border: 1px solid #e1bee7;
	color: var(--c-red);
}

#sec_analysis {
	background: linear-gradient(135deg, #081520 0%, #1a0020 40%, #112B3C 100%);
}

.bb-analysis-card.is-active {
	background: rgba(123, 45, 142, .08);
	border-color: rgba(123,45,142,.3)
}

.bb-analysis-card.is-active .bb-analysis-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

.bb-analysis-card:not(.is-active):hover {
	background: rgba(123, 45, 142, .06);
	border-color: rgba(123,45,142,.5)
}

.bb-step-notice-box {
	margin: 15px 0;
}

.bb-notice-title {
	margin: 0;
}

.bb-step-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--c-red);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bb-step-media {
	height: auto;
}

.bb-steps-bottom-guide {
	display: flex;
	gap: 10px;
	margin-top: 40px;
	padding: 20px 20px;
	border-radius: 10px;
	border: 1px solid #FFE082;
	background: #FFF8E1;
	font-size: 13px;
	color: #555;
	line-height: 1.3;
}

.bb-steps-bottom-guide i {
	font-size: 18px;
	color: #E65100;
}

@media only screen and (min-width: 641px) {
	.bb-features-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.bb-features-card:nth-child(-n + 3) {
		grid-column: span 2;
	}

	.bb-features-card:nth-child(n + 4) {
		grid-column: span 3;
	}
}
/*
.bb-target-card {
	background: #fff;
}*/

.bb-target-card.is-active {
	background: #F6ECF8;
}

.bb-target-title-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bb-target-card.is-active .bb-target-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

.bb-features-card.is-active .bb-features-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

#sec_video .st-section-head {
	text-align: center;
}

.bb-video-iframe {
	max-width: 800px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin: 0 auto 40px;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
	background: #000;
}

.bb-video-iframe iframe {
	vertical-align: top;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 0;
}

.bb-video-grid {
	max-width: 800px;
	margin: 16px auto 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.bb-video-box {
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(15,40,80,0.07), 0 1px 2px rgba(15,40,80,0.04);
	font-size: 13px;
	color: #555;
	line-height: 1.65;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
}
@media only screen and (min-width: 641px) {
	.bb-compare-img-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 310px;
	}
}
@media only screen and (max-width: 640px) {
	.bb-compare-img-wrap img {
		height: auto;
	}
}

.bb-compare-summary-bar {
	background: #F6ECF7;
	font-weight: 400;
}

/* Pre-check Section */
.bb-check-section .bb-h2-sub {
	font-size: 16px;
	font-weight: 600;
	color: #999;
}
.bb-check-host {
	margin-top: 40px;
}
.bb-check-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.bb-check-card {
	background: #fff;
	border-radius: 0 12px 12px 0;
	padding: 22px 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.bb-check-card-top {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.bb-check-card-title {
	font-size: 14px;
	font-weight: 800;
	color: #111;
}
.bb-check-card-text {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Status variants for borders and icons */
.bb-check-card.is-warning {
	border-left: 4px solid #E8850A;
}
.bb-check-card.is-warning .fa-solid {
	color: #E8850A;
	font-size: 14px;
}

.bb-check-card.is-info {
	border-left: 4px solid #3498db;
}
.bb-check-card.is-info .fa-solid {
	color: #3498db;
	font-size: 14px;
}

.bb-check-card.is-danger {
	border-left: 4px solid #e74c3c;
}
.bb-check-card.is-danger .fa-solid {
	color: #e74c3c;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
	.bb-check-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.bb-check-grid {
		grid-template-columns: 1fr;
	}
}

.bb-card-btn.is-blue:hover {
	background: #852aa4;
}

.bb-card-btn.is-dark:hover {
	background: #4b0463;
}

.bb-card-type.is-package {
	background: #F6ECF8;
}

.bb-card-tag.is-blue {
	background: #F6ECF8;
}

.bb-specs-card-header {
	background: #F6ECF8;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bb-specs-sys-box {
	background: #F6ECF8;
    border: 1px solid rgba(0, 0, 0, 0.05);
}


/* === common.pc.css === */

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.wf-active #load {
	display: none;
}

:root {
	--primary-color: #2563eb;
	--primary-hover: #1d4ed8;
	--text-main: #1e293b;
	--text-sub: #64748b;
	--radius-sm: 8px;

  --primary: #2563eb;       /* Core Blue */
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  
  --text-main: #0f172a;     /* Dark Slate */
  --text-sub: #475569;      /* Adjusted for better readability */
  --text-light: #94a3b8;
  
  --bg-body: #f8fafc;       /* Very Light Blue/Gray Background */
  --bg-card: #ffffff;
  
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --container: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

body {
	min-width: 1300px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	word-break: keep-all;
	color: var(--text-main);
}

* {
	outline: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-collapse: collapse;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
	font-style: normal;
	list-style: none;
}

.sp {
	display: none;
}

.find {
	cursor: pointer;
	transition: .4s;
}

.clearfix:after {
	display: block;
	content: '';
	clear: both;
	height: 1px;
	overflow: hidden;
}

img {
	vertical-align: top;
	max-width: 100%;
}

/* ---------------------------------------------------------
	CSS Document form
--------------------------------------------------------- */

input, textarea, select, button {
	outline: 0;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
	font-size: 14px;
	color: var(--text-main);
}

select.invalid,
input.invalid,
textarea.invalid {
	box-shadow: 0 0 3px 0 #f00;
}

button,
input[type='button'],
input[type='submit'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .4s;
}

input[type='checkbox'],
input[type='radio'] {
	vertical-align: top;
	width: 22px;
	height: 22px;
	margin-right: 5px;
}

::-webkit-input-placeholder {
	color: #c8c8c8;
}

::-moz-placeholder {
	opacity: 1;
	color: #c8c8c8;
}

:-ms-input-placeholder {
	color: #c8c8c8;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
	overflow: hidden;
	padding-top: 120px;
}

.container {
	width: var(--container);
	margin: 0 auto;
}

.target {
	margin-top: -130px;
	padding-top: 130px;
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#sp_header,
#kalDrawer {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document header > pc_header
--------------------------------------------------------- */

#pc_header {
	height: 44px;
	overflow: hidden;
	background: var(--text-main);
	font-weight: 400;
	line-height: 46px;
	color: #e5e7eb;
}

#pc_header .pc_header-inner {
	display: flex;
	justify-content: space-between;
	width: var(--container);
	margin: 0 auto;
}

#pc_header .pc_header-exchange {
	display: flex;
}

#pc_header .pc_header-exchange li {
	margin-right: 9px;
	padding-right: 11px;
	font-size: 11px;
	position: relative;
}

#pc_header .pc_header-exchange li:not(:last-of-type):after {
	content: '';
	width: 1px;
	height: 12px;
	background: var(--text-light);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 0;
}

#pc_header .pc_header-exchange a {
	text-decoration: none;
	color: #e5e7eb;
	opacity: 0.85;
	transition: opacity .2s;
}

#pc_header .pc_header-exchange a:hover {
	text-decoration: underline;
	opacity: 1;
}

#pc_header .pc_header-exchange .this a {
	font-weight: 600;
	color: #fff;
	opacity: 1;
}

#pc_header .pc_header-nav {
	display: flex;
}

#pc_header .pc_header-nav li {
	margin-left: 15px;
	font-size: 13px;
}

#pc_header .pc_header-nav a {
	color: #fff;
	opacity: 0.8;
	transition: opacity .2s;
}

#pc_header .pc_header-nav a:hover {
	opacity: 1;
}

#pc_header .pc_header-nav .this a {
	font-weight: 600;
	color: #93c5fd;
	opacity: 1;
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	min-width: var(--container);
	width: 100%;
	height: 70px;
	border-bottom: solid 1px #d2d8e5;
	background: #fff;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 99;
}

#navi .navi-inner {
	display: flex;
	justify-content: space-between;
	width: var(--container);
	margin: 0 auto;
}

#navi .navi-brand a {
	display: flex;
	padding-top: 9px;
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
	color: #5f6f8f;
}

#navi .navi-brand img {
	height: 45px;
}

#navi .navi-brand_sub {
	margin-left: 20px;
	line-height: 50px;
}

#navi .navi-menu {
	display: flex;
	align-items: center;
}

#navi .menu {
	display: flex;
	align-items: center;
}

#navi .menu li {
	margin-left: 30px;
}

#navi .nav-link {
	display: block;
	background: transparent;
	font-size: 15px;
	font-weight: 600;
	line-height: 70px;
	color: var(--text-main);
	position: relative;
	transition: color .2s;
}
#navi .nav-link:hover { color: var(--primary); }
#navi .nav-link.active { color: var(--primary); }
#navi .nav-link.active::after { content:''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--primary); border-radius: 3px 3px 0 0; }

#navi .buy {
	display: block;
	height: 36px;
	padding: 0 20px;
	border-radius: 36px;
	background: var(--text-main);
	font-weight: 700;
	font-size: 14px;
	line-height: 36px;
	color: #fff; 
	transition: var(--transition);
	position: relative;
}

#navi .buy:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); color: #fff; }
#navi .buy.active { background: var(--primary); transform: translateY(0); box-shadow: none; color: #fff; }
#navi .buy.active::after { content:''; position: absolute; bottom: -17px; left: 0; width: 100%; height: 3px; background: var(--primary); border-radius: 3px 3px 0 0; }

#navi .util-box {
	display: none;
}

#navi .util-box.active {
	display: block;
}

#navi .header-cart-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 30px;
	margin-left: 15px;
	padding-top: 2px;
	border-radius: 4px;
	background: transparent;
	font-size: 18px;
	color: var(--text-main);
	transition: color 0.2s;
	position: relative;
}

#navi .header-cart-btn:hover {
	color: var(--primary);
}

#navi .header-cart-count {
	min-width: 16px;
	padding: 2px 5px;
	border-radius: 10px;
	background: #dc2626;
	text-align: center;
	font-weight: 700;
	font-size: 10px;
	color: #fff;
	position: absolute;
	top: -2px;
	right: -4px;
}

/* ---------------------------------------------------------
	CSS Document header > navi_software
--------------------------------------------------------- */

.mega {
	display: none;
	width: 100%;
	position: absolute;
	top: 70px;
	left: 0;
	z-index: 99;
}

.menu>li:hover .mega, .menu>li.open .mega { display: block; }
.mega-panel {
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
  padding: 40px 0;
}
.mega-grid { display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 40px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
/* === NEW MEGA MENU STYLES === */

/* Design 1: headline pills + clean grid */
.mega-style-1 .mega-headline-row {
  display: flex;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto 16px;
  padding: 0 24px;
}
.mega-headline-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-sub);
  font-size: 12px;
}
.mega-headline-pill.is-primary {
  background: var(--primary);
  color: #fff;
}
.mega-style-1-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px 0;
}
.mega-style-1-grid > div {
  border-right: 1px solid var(--border);
  padding-right: 16px;
  margin-right: 16px;
}
.mega-style-1-grid > div:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

/* Design 2: horizontal bands with chips */
.mega-style-2 {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-band {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-band-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.mega-band-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}
.mega-band-desc {
  font-size: 11px;
  color: var(--text-light);
}
.mega-band-body {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mega-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text-sub);
  text-decoration: none;
}
.mega-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #eff6ff;
}

/* Design 3: product tiles grid */
.mega-style-3 {
	width: var(--container);
	margin: 0 auto;
}
.mega-tile-flex {
	display: flex;
	justify-content: space-between;
}
.mega-tag-legend {
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}
.mega-tag-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text-sub);
}
.mega-tag-pill.is-support { border-color: #e2e8f0; }
.mega-tag-pill.is-normal { border-color: #bfdbfe; }
.mega-tag-pill.is-plugin { border-color: #4338ca; }
.mega-tag-pill.is-forensic { border-color: #fbbf24; }

.mega-tile-grid {
	display: flex;
	align-items: center;
}
.mega-tile-icon {
	margin-right: 12px;
}
.mega-tile-icon img {
	height: 36px;
}
.mega-col {
	width: 305px;
}
.mega-col-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.mega-tile-support-icon {
	margin-bottom: 8px;
	flex-shrink: 0;
}
.mega-tile-support-icon img {
	height: 26px;
}
.mega-tile-support-text .mega-tile-title {
	margin-bottom: 4px;
}

.mega-tile {
	display: flex;
	align-items: center;
	height: 90px;
	background: #ffffff;
	border-radius: 12px;
	margin-top: 10px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	transition: var(--transition);
}
.mega-tile:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  transform: translateY(-1px);
}
.mega-tile-tag {
  font-size: 10px;
  margin-bottom: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  display: inline-block;
  background: #f9fafb;
  color: var(--text-light);
}
.mega-tile-tag.is-normal { background: #eff6ff; color: #1d4ed8; }
.mega-tile-tag.is-plugin { background: #eef2ff; color: #4338ca; }
.mega-tile-tag.is-forensic { background: #fef3c7; color: #b45309; }
.mega-tile-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}
.mega-tile-desc {
	font-size: 11px;
	letter-spacing: 0.05em;
	color: var(--text-light);
}

.mega-col-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-light); margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 8px;
}
.mega-quick-item {
  display: flex; align-items: center; gap: 12px; padding: 12px; margin-bottom: 8px;
  background: var(--bg-body); border-radius: 12px; transition: var(--transition);
}
.mega-quick-item:hover { background: var(--primary-light); }
.mega-quick-item-icon { font-size: 20px; }
.mega-quick-item-title { font-size: 14px; font-weight: 700; color: var(--text-main); display: block;}
.mega-quick-item-desc { font-size: 12px; color: var(--text-sub); display: block; margin-top: 2px; }

.mega-link { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: var(--text-main); transition: var(--transition); }
.mega-link:hover { transform: translateX(4px); }
.mega-link:hover .mega-link-title { color: var(--primary); }
.mega-link-icon { color: var(--primary); font-size: 18px; width: 24px; display: flex; justify-content: center; margin-top: 2px; }
.mega-link-text { display: flex; flex-direction: column; }
.mega-link-title { font-size: 14px; font-weight: 600; }
.mega-link-desc { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	height: 250px;
	overflow: hidden;
	background: #000 no-repeat center;
	font-size: 0;
	line-height: 244px;
	color: #fff;
}

@media only screen and (min-width: 1921px) {
	#visual {
		background-size: 100% auto;
	}
}

#visual .container {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

#visual .h1 {
	font-weight: 800;
	font-size: 55px;
}

#visual .h1 + p {
	margin-top: 20px;
	font-size: 17px;
	line-height: 1.8;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	height: 32px;
	overflow: hidden;
	border-bottom: solid 1px #d2d8e5;
	font-size: 12px;
	color: var(--text-light);
}

#bread ol {
	display: flex;
	align-items: center;
	width: var(--container);
	height: 32px;
	margin: 0 auto;
}

#bread li:first-of-type a {
	display: inline-block;
	vertical-align: 0;
	height: 20px;
	padding: 0 1em;
	border-radius: 20px;
	background: #e5e7eb;
	font-weight: 500;
	line-height: 20px;
	color: var(--text-sub);
	transition: .2s;
}

#bread li:first-of-type a:hover {
	background: var(--primary-light);
	color: var(--primary);
}

#bread li:not(:last-of-type):after {
	content: '/';
	margin: 0 0.5em;
}

#bread li a {
	color: var(--text-light);
}

/* ---------------------------------------------------------
	CSS Document anchor
--------------------------------------------------------- */

#anchor {
	margin-bottom: 40px;
	text-align: center;
	font-size: 0;
}

#anchor li {
	display: inline-block;
	vertical-align: top;
	width: 20%;
}

#anchor li:not(:last-of-type) {
	border-right: solid 1px #c4c6c7;
}

#anchor li div,
#anchor li a {
	display: block;
	height: 60px;
	background: #aaadaf;
	text-decoration: none;
	font-size: 16px;
	line-height: 60px;
	color: #fff;
}

#anchor li.this div,
#anchor li.this a {
	background: #0b89da;
	position: relative;
	z-index: 0;
}

#anchor li.this div:after,
#anchor li.this a:after {
	content: '';
	width: 0;
	height: 0;
	border: solid 10px transparent;
	border-top: solid 12px #0b89da;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	bottom: -22px;
}

	CSS Document cart-backdrop
--------------------------------------------------------- */

.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-backdrop.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 400px; max-width: 90vw;
  background: #fff; z-index: 2001; transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cd-header { padding: 16px 20px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.cd-header h3 { font-size: 18px; font-weight: 800; color: var(--color-primary); margin: 0; display: flex; align-items: center; gap: 8px; }
.cd-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; padding: 4px; transition: color 0.2s; }
.cd-close:hover { color: #333; }

.cd-body { flex: 1; overflow-y: auto; padding: 20px; background: #fafafa; }
.empty-cart-msg { text-align: center; color: #999; font-size: 14px; margin-top: 60px; }

.cd-item { 
  background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 16px; margin-bottom: 12px;
  position: relative; transition: all 0.2s; 
}
.cd-item:hover { border-color: #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.cd-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.cd-name { font-size: 14px; font-weight: 700; color: #333; line-height: 1.4; padding-right: 20px; }
.cd-del { position: absolute; top: 12px; right: 12px; color: #ccc; cursor: pointer; font-size: 14px; }
.cd-del:hover { color: #ff5555; }
.cd-opt { font-size: 12px; color: #777; margin-bottom: 12px; background: #f8f9fa; display: inline-block; padding: 2px 6px; border-radius: 4px; }
.cd-action-row { display: flex; align-items: center; justify-content: space-between; }
.cd-qty-ctrl { display: flex; align-items: center; border: 1px solid #eee; border-radius: 4px; overflow: hidden; height: 32px; background: #fff; }
.cd-qty-btn { width: 28px; height: 100%; display: flex; align-items: center; justify-content: center; background: #fdfdfd; cursor: pointer; font-size: 11px; color: #555; }
.cd-qty-btn:hover { background: #eee; }
.cd-qty-val { width: 34px; text-align: center; font-size: 13px; font-weight: 600; border: none; outline: none; background: transparent; pointer-events: none; }
.cd-price { font-size: 15px; font-weight: 700; color: var(--color-primary); }

.cd-footer { padding: 20px; border-top: 1px solid #eee; background: #fff; }
.cd-sum-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: #666; }
.cd-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 2px solid #333; font-weight: 800; font-size: 18px; color: var(--color-primary); }
.cd-checkout-btn { 
  display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 20px; 
  height: 50px; background: #172554; color: #fff; font-weight: 700; border-radius: 6px; 
  font-size: 16px; border: none; cursor: pointer; transition: background 0.2s;
}
.cd-checkout-btn:hover { background: #1e3a8a; }

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(135deg, #1251A3, #0F4C81);
	box-shadow: 0 4px 12px rgba(18, 81, 163, 0.35);
	text-align: center;
	font-size: 18px;
	line-height: 42px;
	color: #fff;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 9;
	cursor: pointer;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

#pagetop:hover {
	background: linear-gradient(135deg, #0e449a, #0A3A63);
	box-shadow: 0 6px 18px rgba(18, 81, 163, 0.45);
	transform: translateY(-3px);
}

/* ---------------------------------------------------------
	CSS Document modal
--------------------------------------------------------- */

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17, 24, 39, 0.4); /* ??? ???? */
      backdrop-filter: blur(4px); /* ?? ?? ?? */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 100;
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }
    .modal-backdrop.active {
      display: flex;
      opacity: 1;
    }

    .modal {
      width: 100%;
      max-width: 520px;
      background: #ffffff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
      position: relative;
      transform: scale(0.95) translateY(10px);
      transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .modal-backdrop.active .modal {
      transform: scale(1) translateY(0);
    }

    /* ?? ?? */
    .btn-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      border-radius: 50%;
      color: #9ca3af;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: bold;
      transition: background 0.2s;
    }
    .btn-close:hover {
      background: #f3f4f6;
      color: #4b5563;
    }

    /* ?? ?? */
    .modal-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* ??? ??? ?? (Soft Tint) */
    .modal-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    
    .icon-success {
      background: #d1fae5;
      color: #059669;
      /* Checkmark ?? */
      font-weight: bold;
    }
    .icon-error {
      background: #fee2e2;
      color: #dc2626;
      font-weight: 800;
    }
    .icon-info {
      background: #eff6ff;
      color: #2563eb;
    }

    .modal-title {
      font-size: 16px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
      line-height: 1.4;
      padding-top: 2px;
    }
    .modal-sub {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.4;
    }

    .divider {
      height: 1px;
      background: #f3f4f6;
      margin: 0 -24px 16px; /* ?? ?? ?? */
    }

    .modal-body {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .modal-body strong {
      color: #111827;
      font-weight: 600;
    }

    /* ?? ??? */
    .hint {
      margin-top: 12px;
      font-size: 12px;
      color: #9ca3af;
      padding-left: 2px;
    }

    /* ?? ?? */
    .modal-body code {
      display: block;
      font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      background: #1e293b; /* Dark Mode Code Block */
      color: #e2e8f0;
      padding: 12px;
      border-radius: 8px;
      margin: 8px 0;
      word-break: break-all;
    }
    
    /* ?? ?? ?? */
    .code-row {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-top: 8px;
      background: #f3f4f6;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }
    .code-row code {
      background: transparent;
      color: #1f2937;
      border: none;
      margin: 0;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .btn-copy {
      background: #ffffff;
      border: none;
      border-left: 1px solid #e5e7eb;
      padding: 0 16px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-dark);
      transition: background 0.2s;
    }
    .btn-copy:hover {
      background: #eff6ff;
    }

    /* ?? ?? (?? ??) */
    .modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 10px; /* ?? ?? ?? */
    }

    /* =========================================
       NEW MODAL ACTION BUTTONS STYLES
       ========================================= */
    .btn-modal-action {
      border-radius: 10px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s ease;
      border: 1px solid transparent;
    }
    .btn-modal-action:active {
      transform: scale(0.98);
    }

    /* Secondary Action (e.g., Close, Cancel) */
    .btn-modal-secondary {
      background: #ffffff;
      border-color: #e5e7eb;
      color: #374151;
    }
    .btn-modal-secondary:hover {
      background: #f9fafb;
      border-color: #d1d5db;
    }

    /* Primary Action (e.g., Confirm, OK, Go to Main) */
    .btn-modal-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    }
    .btn-modal-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    }
    
    /* ?? ?? ??? ?? (?? ?? ????) */
    .modal-footer .btn {
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 13px;
    }


/* === common.sp.css === */

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.wf-active #load {
	display: none;
}

:root {

	--text-light: #94a3b8;
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

body {
	word-break: keep-all;
	color: var(--text-main);
}

* {
	outline: 0;
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
	font-style: normal;
	list-style: none;
}

.pc {
	display: none;
}

img {
	vertical-align: top;
	max-width: 100%;
	border: 0;
}

/* ---------------------------------------------------------
	CSS Document form
--------------------------------------------------------- */

input, textarea, select, button {
	outline: 0;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
}

button,
input[type='button'],
input[type='submit'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .4s;
}

input[type='checkbox'],
input[type='radio'] {
	vertical-align: top;
	width: 22px;
	height: 22px;
	margin-right: 5px;
}

::-webkit-input-placeholder {
	color: #c8c8c8;
}

::-moz-placeholder {
	opacity: 1;
	color: #c8c8c8;
}

:-ms-input-placeholder {
	color: #c8c8c8;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

main {
	overflow: hidden;
	padding-top: 0px;
}

.target {
	margin-top: -70px;
	padding-top: 70px;
}

#pc_header,
#navi {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document sp_header
--------------------------------------------------------- */

#sp_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 5vw 0 4vw;
	border-bottom: solid 1px #e9ecef;
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

#sp_header .sp_header-logo {
	width: 110px;
	padding-bottom: 5px;
}

#sp_header .sp_header-logo img {
	height: 40px;
}

#sp_header .sp_header-controls {
	display: flex;
	align-items: center;
}

#sp_header .util-box {
	display: none;
}

#sp_header .util-box.active {
	display: block;
}

#sp_header .header-cart-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 30px;
	margin-right: 2vw;
	padding-top: 5px;
	border-radius: 4px;
	background: transparent;
	font-size: 18px;
	color: var(--text-main);
	transition: color 0.2s;
	position: relative;
}

#sp_header .header-cart-count {
	min-width: 14px;
	padding: 2px 3px;
	border-radius: 10px;
	background: #dc2626;
	text-align: center;
	font-weight: 700;
	font-size: 8px;
	color: #fff;
	position: absolute;
	top: -1px;
	right: -1px;
}

#sp_header .sp_header-my a {
	margin-right: 10px;
	padding: 7px 0;
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
}

#sp_header .sp_header-logout {
	margin-right: 10px;
}

#sp_header .sp_header-logout a {
	display: inline-block;
	vertical-align: top;
	padding: 7px 10px;
	border-radius: 99px;
	background: #e5e7eb;
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
}

#sp_header .sp_header-login {
	margin-right: 15px;
	margin-left: 5px;
}

#sp_header .sp_header-login a {
	display: inline-block;
	vertical-align: top;
	padding: 8px 16px;
	border-radius: 10px;
	background: #1e3a8a;
	font-weight: 600;
	font-size: 13px;
	color: #fff;
}

#sp_header .m-menuBtn {
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 6px;
}

#sp_header .m-menuBtn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #0f172a;
}

#sp_header .m-menuBtn span:nth-child(2) {
	width: 18px;
}

.kal-drawer {
	display: flex;
	flex-direction: column;
	background: #fff;
	position: fixed;
	inset: 0;
	z-index: 200;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.kal-top-area {
	background: #1e3a8a;
	color: #fff;
	padding-bottom: 24px;
}

.kal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5vw;
}

.kal-header-h2 {
	font-size: 5vw;
	margin: 0;
	font-weight: 700;
}

.kal-close {
	padding: 4px;
	border: 0;
	background: none;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
}

.kal-user-status {
	padding: 0 5vw;
}

.guest-view .user-msg {
	margin-bottom: 16px;
	font-weight: 500;
	font-size: 3.5vw;
	opacity: 0.9;
}

.guest-view .btn-group {
	display: flex;
	justify-content: space-between;
}

.guest-view .btn-group div {
	width: 48%;
}

.guest-view .btn-group a {
	display: block;
	border-radius: 6px;
	background: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 3.5vw;
	line-height: 10vw;
	color: #1e3a8a;
}

.guest-view .btn-group .btn-group-agreement a {
	border: solid 1px rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* member-view */
.member-view .user-info {
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 4vw;
}
.member-view .user-info b {
	font-weight: 700;
	font-size: 5vw;
}

.member-quick-menu {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; /* ??? ???? ?? */
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15);
}
.quick-link {
  color: #fff; text-decoration: none; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px; opacity: 0.9;
  background: rgba(255,255,255,0.1); padding: 10px 12px; border-radius: 8px; transition: all 0.2s;
}
.quick-link:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.quick-link i { font-size: 16px; }
.quick-link.danger { color: #ffc9c9; background: rgba(255, 173, 173, 0.1); }
.quick-link.danger:hover { background: rgba(255, 173, 173, 0.2); }
.quick-link::before { content: none; } /* ?? ? ?? */

/* ---------------------------------------------------------
	CSS Document sp_header > sp_navi
--------------------------------------------------------- */

/* 2. SPLIT BODY */
.kal-body {
	flex: 1;
	display: flex;
	overflow: hidden;
}
/* [Left] Tabs */
.kal-tabs {
	width: 100px;
	
	background: #f3f4f6;
	overflow-y: auto;
	flex-shrink: 0;
	padding-bottom: 20px;
	border-right: 1px solid #eee;
}

.kal-tab {
	padding: 16px 10px;
	font-size: 13px;
	color: #777;
	text-align: left;
	font-weight: 500;
	border-bottom: 1px solid #e5e7eb;
	cursor: pointer;
	word-break: keep-all;
	line-height: 1.35;
}

.kal-tab.active {
	
	background: #fff;
	color: #00256c;
	font-weight: 800;
	
	position: relative;
	border-right: none;
	margin-right: -1px;
	z-index: 2;
}

.kal-tab.active::after {
	
	content:'';
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	width:4px;
	background: #0064de;
	
}

/* [Right] Panels */
.kal-panels {
	flex: 1;
	overflow-y: auto;
	background: #fff;
	padding: 20px 16px;
}

.kal-panel {
	display: none;
	padding-bottom: 40px;
}

.kal-panel.active {
	display: block;
	animation: fadeIn 0.3s;
}
/* ?? ?? ? ??? */
.menu-group {
	margin-bottom: 26px;
}

.group-title {
	font-size: 14px;
	font-weight: 800;
	color: #00256c;
	margin-bottom: 10px;
	display: block;
	border-bottom: 2px solid #00256c;
	padding-bottom: 6px;
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 13px;
	color: #333;
	text-decoration: none;
}

.menu-item span {
	color: #999;
	font-size: 11px;
}

/* == ??? ?? CSS ?? == */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	} to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	height: 200px;
	overflow: hidden;
	background: #000 no-repeat top / auto 100%;
	font-size: 0;
	line-height: 210px;
	color: #fff;
}

#visual .container {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

#visual .h1 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 8vw;
}

#visual .h1 + p {
	font-size: 2.5vw;
	line-height: 1.8;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	border-bottom: solid 1px #e9ecef;
}

#bread ol {
	display: flex;
	align-items: center;
	height: 9vw;
	padding: 0 4vw;
	font-size: 2.5vw;
	line-height: 5vw;
	color: #94a3b8;
}

#bread li:first-of-type a {
	display: inline-block;
	vertical-align: 0;
	padding: 0 1em;
	border-radius: 20px;
	background: #e5e7eb;
	font-weight: 500;
	color: #475569;
}

#bread li:not(:last-of-type):after {
	content: '/';
	margin: 0 0.5em;
}

#bread li a {
	color: #94a3b8;
}

/* ---------------------------------------------------------
	CSS Document anchor
--------------------------------------------------------- */

#anchor {
	margin-bottom: 40px;
	font-size: 0;
}

#anchor li {
	display: inline-block;
	vertical-align: top;
	width: 20%;
}

#anchor li:not(:last-of-type) {
	border-right: solid 1px #c4c6c7;
}

#anchor li div,
#anchor li a {
	display: block;
	height: 60px;
	background: #aaadaf;
	text-decoration: none;
	line-height: 60px;
	color: #fff;
}

#anchor li div span,
#anchor li a span {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
	font-size: 3vw;
	line-height: 1.2;
}

#anchor li.this div,
#anchor li.this a {
	background: #0b89da;
	position: relative;
	z-index: 0;
}

#anchor li.this div:after,
#anchor li.this a:after {
	content: '';
	width: 0;
	height: 0;
	border: solid 10px transparent;
	border-top: solid 12px #0b89da;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	bottom: -22px;
}

	CSS Document cart-backdrop
--------------------------------------------------------- */

.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-backdrop.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 400px; max-width: 90vw;
  background: #fff; z-index: 2001; transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cd-header { padding: 16px 20px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.cd-header h3 { font-size: 18px; font-weight: 800; color: var(--color-primary); margin: 0; display: flex; align-items: center; gap: 8px; }
.cd-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; padding: 4px; transition: color 0.2s; }
.cd-close:hover { color: #333; }

.cd-body { flex: 1; overflow-y: auto; padding: 20px; background: #fafafa; }
.empty-cart-msg { text-align: center; color: #999; font-size: 14px; margin-top: 60px; }

.cd-item { 
  background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 16px; margin-bottom: 12px;
  position: relative; transition: all 0.2s; 
}
.cd-item:hover { border-color: #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.cd-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.cd-name { font-size: 14px; font-weight: 700; color: #333; line-height: 1.4; padding-right: 20px; }
.cd-del { position: absolute; top: 12px; right: 12px; color: #ccc; cursor: pointer; font-size: 14px; }
.cd-del:hover { color: #ff5555; }
.cd-opt { font-size: 12px; color: #777; margin-bottom: 12px; background: #f8f9fa; display: inline-block; padding: 2px 6px; border-radius: 4px; }
.cd-action-row { display: flex; align-items: center; justify-content: space-between; }
.cd-qty-ctrl { display: flex; align-items: center; border: 1px solid #eee; border-radius: 4px; overflow: hidden; height: 32px; background: #fff; }
.cd-qty-btn { width: 28px; height: 100%; display: flex; align-items: center; justify-content: center; background: #fdfdfd; cursor: pointer; font-size: 11px; color: #555; }
.cd-qty-btn:hover { background: #eee; }
.cd-qty-val { width: 34px; text-align: center; font-size: 13px; font-weight: 600; border: none; outline: none; background: transparent; pointer-events: none; }
.cd-price { font-size: 15px; font-weight: 700; color: var(--color-primary); }

.cd-footer { padding: 20px; border-top: 1px solid #eee; background: #fff; }
.cd-sum-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: #666; }
.cd-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 2px solid #333; font-weight: 800; font-size: 18px; color: var(--color-primary); }
.cd-checkout-btn { 
  display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 20px; 
  height: 50px; background: #172554; color: #fff; font-weight: 700; border-radius: 6px; 
  font-size: 16px; border: none; cursor: pointer; transition: background 0.2s;
}
.cd-checkout-btn:hover { background: #1e3a8a; }

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(135deg, #1251A3, #0F4C81);
	box-shadow: 0 4px 12px rgba(18, 81, 163, 0.35);
	text-align: center;
	font-size: 18px;
	line-height: 42px;
	color: #fff;
	position: fixed;
	bottom: 5vw;
	right: 5vw;
	z-index: 9;
}

/* ---------------------------------------------------------
	CSS Document modal
--------------------------------------------------------- */

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17, 24, 39, 0.4); /* ??? ???? */
      backdrop-filter: blur(4px); /* ?? ?? ?? */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }
    .modal-backdrop.active {
      display: flex;
      opacity: 1;
    }

    .modal {
      width: 90%;
      background: #ffffff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
      position: relative;
      transform: scale(0.95) translateY(10px);
      transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .modal-backdrop.active .modal {
      transform: scale(1) translateY(0);
    }

    /* ?? ?? */
    .btn-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      border-radius: 50%;
      color: #9ca3af;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: bold;
      transition: background 0.2s;
    }
    .btn-close:hover {
      background: #f3f4f6;
      color: #4b5563;
    }

    /* ?? ?? */
    .modal-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* ??? ??? ?? (Soft Tint) */
    .modal-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    
    .icon-success {
      background: #d1fae5;
      color: #059669;
      /* Checkmark ?? */
      font-weight: bold;
    }
    .icon-error {
      background: #fee2e2;
      color: #dc2626;
      font-weight: 800;
    }
    .icon-info {
      background: #eff6ff;
      color: #2563eb;
    }

    .modal-title {
      font-size: 16px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
      line-height: 1.4;
      padding-top: 2px;
    }
    .modal-sub {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.4;
    }

    .divider {
      height: 1px;
      background: #f3f4f6;
      margin: 0 -24px 16px; /* ?? ?? ?? */
    }

    .modal-body {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .modal-body strong {
      color: #111827;
      font-weight: 600;
    }

    /* ?? ??? */
    .hint {
      margin-top: 12px;
      font-size: 12px;
      color: #9ca3af;
      padding-left: 2px;
    }

    /* ?? ?? */
    .modal-body code {
      display: block;
      font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      background: #1e293b; /* Dark Mode Code Block */
      color: #e2e8f0;
      padding: 12px;
      border-radius: 8px;
      margin: 8px 0;
      word-break: break-all;
    }
    
    /* ?? ?? ?? */
    .code-row {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-top: 8px;
      background: #f3f4f6;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }
    .code-row code {
      background: transparent;
      color: #1f2937;
      border: none;
      margin: 0;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .btn-copy {
      background: #ffffff;
      border: none;
      border-left: 1px solid #e5e7eb;
      padding: 0 16px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: #0D47A1;
      transition: background 0.2s;
    }
    .btn-copy:hover {
      background: #eff6ff;
    }

    /* ?? ?? (?? ??) */
    .modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 10px; /* ?? ?? ?? */
    }

    /* =========================================
       NEW MODAL ACTION BUTTONS STYLES
       ========================================= */
    .btn-modal-action {
      border-radius: 10px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s ease;
      border: 1px solid transparent;
    }
    .btn-modal-action:active {
      transform: scale(0.98);
    }

    /* Secondary Action (e.g., Close, Cancel) */
    .btn-modal-secondary {
      background: #ffffff;
      border-color: #e5e7eb;
      color: #374151;
    }
    .btn-modal-secondary:hover {
      background: #f9fafb;
      border-color: #d1d5db;
    }

    /* Primary Action (e.g., Confirm, OK, Go to Main) */
    .btn-modal-primary {
      background: #1976D2;
      color: #ffffff;
      box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    }
    .btn-modal-primary:hover {
      background: #0D47A1;
      box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    }
    
    /* ?? ?? ??? ?? (?? ?? ????) */
    .modal-footer .btn {
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 13px;
    }

/* === modal.css === */
/**
 * 복구천사 웹 사이트 - 모달 팝업 스타일
 * popup_message.html에서 추출한 공통 스타일
 */

:root {
  /* Color Palette */
  --modal-primary: #3b82f6;
  --modal-primary-dark: #2563eb;
  --modal-primary-soft: #eff6ff;

  --modal-success: #10b981;
  --modal-success-dark: #059669;
  --modal-success-soft: #d1fae5;

  --modal-danger: #ef4444;
  --modal-danger-dark: #dc2626;
  --modal-danger-soft: #fee2e2;

  --modal-text-main: #1f2937;
  --modal-text-sub: #6b7280;
  --modal-border: #e5e7eb;
}

/* 모달 배경 (오버레이) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

/* 모달 컨테이너 */
.modal {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 20px;
}

.modal-backdrop.active .modal {
  transform: scale(1) translateY(0);
}

/* 닫기 버튼 */
.modal .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: background 0.2s;
}

.modal .btn-close::before {
  content: "✕";
  font-size: 16px;
  font-weight: bold;
}

.modal .btn-close:hover {
  background: #f3f4f6;
  color: #4b5563;
}

/* 헤더 영역 - .modal 내부에서만 적용 */
.modal > .modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-right: 32px; /* 닫기 버튼 공간 확보 */
}

/* 헤더 텍스트 영역 - .modal 내부에서만 적용 */
.modal > .modal-header > div:not(.modal-icon) {
  flex: 1;
  min-width: 0;
}

/* 아이콘 스타일 */
.modal-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.modal-icon.icon-success {
  background: var(--modal-success-soft);
  color: var(--modal-success-dark);
  font-weight: bold;
}

.modal-icon.icon-error {
  background: var(--modal-danger-soft);
  color: var(--modal-danger-dark);
  font-weight: 800;
}

.modal-icon.icon-info {
  background: var(--modal-primary-soft);
  color: var(--modal-primary-dark);
}

/* 제목 영역 - .modal 내부에서만 적용 */
.modal .modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.4;
}

.modal .modal-sub {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* 구분선 */
.modal .divider {
  height: 1px;
  background: #f3f4f6;
  margin: 0 -24px 16px;
}

/* 본문 영역 - .modal 내부에서만 적용 */
.modal > .modal-body {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal > .modal-body strong {
  color: #111827;
  font-weight: 600;
}

/* 리스트 스타일 - .modal 내부에서만 적용 */
.modal > .modal-body ul {
  background: #f9fafb;
  padding: 12px 16px;
  border-radius: 12px;
  list-style: none;
  margin-top: 12px;
}

.modal > .modal-body ul li {
  margin-bottom: 4px;
  font-size: 13px;
  color: #4b5563;
  padding-left: 0;
}

.modal > .modal-body ul li:last-child {
  margin-bottom: 0;
}

/* 힌트 텍스트 - .modal 내부에서만 적용 */
.modal > .modal-body .hint {
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
  padding-left: 2px;
}

/* 코드 블럭 */
.modal-body code {
  display: block;
  font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  background: #1e293b;
  color: #e2e8f0;
  padding: 12px;
  border-radius: 8px;
  margin: 8px 0;
  word-break: break-all;
}

/* 코드 복사 영역 */
.modal-body .code-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
  background: #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.modal-body .code-row code {
  background: transparent;
  color: #1f2937;
  border: none;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.modal-body .btn-copy {
  background: #ffffff;
  border: none;
  border-left: 1px solid #e5e7eb;
  padding: 0 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--modal-primary-dark);
  transition: background 0.2s;
}

.modal-body .btn-copy:hover {
  background: #eff6ff;
}

/* 푸터 영역 (버튼) - .modal 내부에서만 적용 */
.modal > .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* 모달 액션 버튼 */
.btn-modal-action {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-modal-action:active {
  transform: scale(0.98);
}

/* Secondary 버튼 (닫기, 취소) */
.btn-modal-secondary {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #374151;
}

.btn-modal-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

/* Primary 버튼 (확인, 제출) */
.btn-modal-primary {
  background: var(--modal-primary);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.btn-modal-primary:hover {
  background: var(--modal-primary-dark);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

/* Success 버튼 */
.btn-modal-success {
  background: var(--modal-success);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.btn-modal-success:hover {
  background: var(--modal-success-dark);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Danger 버튼 */
.btn-modal-danger {
  background: var(--modal-danger);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.btn-modal-danger:hover {
  background: var(--modal-danger-dark);
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

/* Outline 버튼 */
.btn-modal-outline {
  background: white;
  border: 1px solid var(--modal-border);
  color: var(--modal-text-main);
}

.btn-modal-outline:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

/* 반응형 */
@media (max-width: 640px) {
  .modal {
    max-width: 100%;
    margin: 16px;
    padding: 20px;
  }

  .modal > .modal-header {
    gap: 12px;
  }

  .modal .modal-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .modal .modal-title {
    font-size: 15px;
  }

  .modal > .modal-footer {
    flex-direction: column;
  }

  .btn-modal-action {
    width: 100%;
    justify-content: center;
  }
}

/* === style.php === */
/* ============================================
   ORIGINAL DESIGN A — Brand Slider + Dark Process + Pricing
   Restored CSS for index2.html
   ============================================ */

/* === BRAND SECTION (HDD 6-step Slider) === */
.brand-section-wrapper {
	padding: 80px 0;
	background: linear-gradient(160deg, #0c1222 0%, #162036 40%, #1a2744 70%, #0f172a 100%);
	color: #ffffff;
	overflow-x: hidden;
}
.brand-section-wrapper .container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
.brand-section-wrapper .header-section {
	text-align: center;
	margin-bottom: 60px;
}
.brand-section-wrapper .header-section h2 {
	font-size: clamp(24px, 3.6vw, 42px);
	font-weight: 800;
	margin-bottom: 20px;
	color: #fff;
	letter-spacing: -.02em;
}
.brand-section-wrapper .header-section p {
	font-size: clamp(15px, 2vw, 17px);
	color: rgba(255, 255, 255, .75);
	line-height: 1.85;
}
.brand-section-wrapper .split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
}
.brand-section-wrapper .slider-window {
	width: 100%;
	aspect-ratio: 16/10;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	border: solid 1px #fff;
}
.brand-section-wrapper .slider-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(.25, 1, .5, 1);
}
.brand-section-wrapper .slide {
	min-width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
}
.brand-section-wrapper .slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.brand-section-wrapper .slide-content {
	position: relative;
	z-index: 2;
	transform: translateY(20px);
	opacity: 0;
	transition: all .5s ease .2s;
}
.brand-section-wrapper .slide.active .slide-content {
	transform: translateY(0);
	opacity: 1;
}
.brand-section-wrapper .slide-content h3 {
	font-size: clamp(20px, 3vw, 32px);
	margin-bottom: 12px;
	color: #fff;
	font-weight: 800;
}
.brand-section-wrapper .slide-content p {
	font-size: 16px;
	color: #fff;
	max-width: 90%;
	line-height: 1.6;
}
.brand-section-wrapper .nav-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.brand-section-wrapper .nav-list .nav-item {
	height: auto;
	padding: 24px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
	opacity: .7;
	transition: all .3s ease;
	position: relative;
}
.brand-section-wrapper .nav-list .nav-item:hover {
	opacity: 1;
}
.brand-section-wrapper .nav-list .nav-item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-section-wrapper .nav-num {
	font-family: monospace;
	font-size: 14px;
	margin-right: 20px;
	color: #60a5fa;
	opacity: 1;
	font-weight: 600;
}
.brand-section-wrapper .nav-title {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -.01em;
}
.brand-section-wrapper .nav-list .nav-item.active {
	color: #ffffff;
	opacity: 1;
	padding-left: 26px;
}
.brand-section-wrapper .nav-list .nav-item.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #60a5fa;
}
.brand-section-wrapper .brand-section {
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-section-wrapper .brand-title {
	text-align: center;
	font-size: 14px;
	margin-bottom: 30px;
	letter-spacing: 0.15em;
	font-weight: 700;
	color: rgba(255, 255, 255, .7);
}
.brand-section-wrapper .marquee-container {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	width: 100%;
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.brand-section-wrapper .marquee-track {
	display: inline-flex;
	gap: 60px;
	animation: marquee 30s linear infinite;
}
.brand-section-wrapper .brand-logo {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	user-select: none;
}
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (max-width: 980px) {
	.brand-section-wrapper { padding: 60px 0; }
	.brand-section-wrapper .split-layout { grid-template-columns: 1fr; gap: 30px; }
	.brand-section-wrapper .slider-window { aspect-ratio: auto; height: auto; border: none; box-shadow: none; border-radius: 0; }
	.brand-section-wrapper .slider-track { display: flex; gap: 5vw; overflow-x: auto; margin-bottom: 20px; }
	.brand-section-wrapper .slide { display: block; min-width: 100%; height: auto; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid #e2e8f0; }
	.brand-section-wrapper .slide-bg { width: 100%; height: auto; position: relative; }
	.brand-section-wrapper .slide-content { position: relative; transform: none; opacity: 1; padding: 24px; top: 0; }
	.brand-section-wrapper .slide-content h3 { color: #111; margin-bottom: 8px; }
	.brand-section-wrapper .slide-content p { color: #555; }
	.brand-section-wrapper .nav-list { display: none !important; }
	.brand-section-wrapper .brand-section { margin-top: 30px; padding-top: 30px; }
}

/* === DARK THEME WRAPPER (#process: process + pricing) === */
#process.dark-theme-wrapper {
	padding: 80px 0;
	background-color: #1a1f2e;
	color: #9ca3af;
}
#process.dark-theme-wrapper .container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
#process .page-header {
	margin-bottom: 40px;
	text-align: left;
}
#process .sub-label {
	display: block;
	margin-bottom: 16px;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 14px;
	color: #2563eb;
	letter-spacing: .15em;
}
#process .main-title {
	margin-bottom: 16px;
	font-weight: 900;
	font-size: clamp(26px, 3.6vw, 40px);
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: -.02em;
}
#process .header-desc {
	font-size: 16px;
	line-height: 1.85;
	color: rgba(255, 255, 255, .65);
}
#process .header-desc strong {
	color: #FFD700;
	font-weight: 700;
}

#process .feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}
#process .feature-item-dark {
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all .3s ease;
}
#process .feature-item-dark:hover {
	background-color: rgba(255, 255, 255, .05);
	border-color: rgba(38, 128, 235, .3);
	transform: translateY(-3px);
}
#process .icon-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	width: 100%;
}
#process .icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px;
	min-height: 36px;
	max-width: 36px;
	max-height: 36px;
	border-radius: 50%;
	background-color: #2563eb;
	color: #ffffff;
	flex-shrink: 0;
	box-sizing: border-box;
	overflow: hidden;
}
#process .icon-circle svg {
	width: 18px !important;
	height: 18px !important;
	max-width: 18px;
	max-height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	display: block;
}
#process .icon-circle svg[style*="fill:currentColor"] {
	fill: currentColor !important;
	stroke: none !important;
}
#process .feature-title {
	font-weight: 800;
	font-size: 17px;
	color: #ffffff;
	letter-spacing: -.01em;
	line-height: 1.3;
	margin: 0;
}
#process .feature-desc {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .7);
}
#process .tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
}
#process .tag-light {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(38, 128, 235, .15);
	font-size: 11px;
	font-weight: 700;
	color: #93c5fd;
	border: 1px solid rgba(38, 128, 235, .25);
}
#process .sec-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
#process .sec-list li {
	margin-bottom: 6px;
	padding-left: 18px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, .8);
	position: relative;
	line-height: 1.5;
}
#process .sec-list li::before {
	content: "•";
	font-size: 18px;
	line-height: 14px;
	color: #60a5fa;
	position: absolute;
	top: 2px;
	left: 0;
	font-weight: 700;
}

#process .stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 60px;
}
#process .stat-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 200px;
	padding: 28px 24px;
	border-radius: 14px;
	border: 1px solid rgba(59, 130, 246, .25);
	background: linear-gradient(135deg, #1e3a5f 0%, #1a365d 50%, #1e40af 100%);
	color: #ffffff;
	transition: transform .3s ease;
}
#process .stat-card:hover {
	transform: translateY(-4px);
}
#process .stat-top {
	margin-bottom: 16px;
}
#process .stat-value {
	font-weight: 900;
	font-size: 32px;
	line-height: 1;
	color: #FFF;
	font-family: 'Helvetica Neue', sans-serif;
	letter-spacing: -.02em;
}
#process .stat-unit {
	font-weight: 600;
	font-size: 14px;
	margin-left: 4px;
}
#process .stat-info h3 {
	margin-top: 18px;
	padding-top: 18px;
	border-top: solid 1px rgba(255, 255, 255, .15);
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 800;
	color: #FFF;
}
#process .stat-info ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#process .stat-info li {
	margin-bottom: 4px;
	padding-left: 16px;
	font-size: 13px;
	color: rgba(255, 255, 255, .8);
	position: relative;
	line-height: 1.5;
}
#process .stat-info li::before {
	content: "•";
	font-size: 18px;
	line-height: 14px;
	color: #FFD700;
	position: absolute;
	top: 1px;
	left: 0;
	font-weight: 700;
}
#process .card-label {
	font-size: 10px;
	font-weight: 800;
	opacity: .7;
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-top: auto;
	font-family: 'Helvetica Neue', sans-serif;
}
#process .btn-link {
	display: inline-block;
	margin-top: auto;
	padding: 8px 0;
	border-bottom: 2px solid #FFD700;
	font-size: 14px;
	font-weight: 800;
	color: #FFD700;
	text-decoration: none;
	transition: all .2s ease;
}
#process .btn-link:hover {
	color: #FFE55C;
	border-bottom-color: #FFE55C;
}

#price.page-header {
	margin-top: 60px;
	padding-top: 50px;
	border-top: solid 1px rgba(255, 255, 255, .15);
}
#process .pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 30px;
}
#process .pricing-card {
	background-color: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 28px 24px;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	transition: all .3s ease;
	position: relative;
}
#process .pricing-card:hover {
	background-color: rgba(255, 255, 255, .06);
	transform: translateY(-4px);
}
#process .pricing-card.highlight {
	border-color: rgba(255, 215, 0, .4);
	background: linear-gradient(180deg, rgba(255, 215, 0, .06) 0%, rgba(255, 255, 255, .03) 100%);
}
#process .lv-badge {
	display: inline-block;
	background-color: #2563eb;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 16px;
	align-self: flex-start;
	letter-spacing: .05em;
	font-family: 'Helvetica Neue', sans-serif;
}
#process .card-title {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 4px;
	color: #ffffff;
	letter-spacing: -.01em;
}
#process .card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .55);
	margin-bottom: 20px;
	display: block;
}
#process .price-area {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#process .price-value {
	font-size: 30px;
	font-weight: 900;
	color: #FFD700;
	letter-spacing: -.03em;
	font-family: 'Helvetica Neue', sans-serif;
}
#process .price-unit {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, .8);
	margin-left: 4px;
}
#process .check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}
#process .check-list li {
	font-size: 13px;
	color: rgba(255, 255, 255, .75);
	margin-bottom: 9px;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}
#process .check-list li::before {
	content: "✔";
	color: #00D4FF;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 800;
}
#process .note-section {
	background-color: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	padding: 24px 28px;
	margin-top: 24px;
}
#process .note-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
#process .note-list li {
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
	margin-bottom: 6px;
	padding-left: 14px;
	position: relative;
	line-height: 1.7;
}
#process .note-list li::before {
	content: "*";
	position: absolute;
	left: 0;
	color: #FFD700;
	font-weight: 700;
}
#process .note-list strong {
	color: #FFF;
	font-weight: 700;
}

@media (max-width: 980px) {
	#process .feature-grid { grid-template-columns: repeat(2, 1fr); }
	#process .stats-grid { grid-template-columns: 1fr; }
	#process .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	#process.dark-theme-wrapper { padding: 60px 0; }
	#process .feature-grid { grid-template-columns: 1fr; gap: 12px; }
	#process .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
	#process .stat-card { min-height: auto; }
}

/* ============================================
   HDD データ復旧 — Design B v2 (Global Premium / Yahoo JP Font)
   Content flow restructured for user trust
   ============================================ */

:root {
	--rb-jp-font: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
	--rb-jp-font-bold: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
	--rb-jp-mincho: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
	--rb-num-font: "Pretendard", "Helvetica Neue", -apple-system, sans-serif;
	--rb-black: #000000;
	--rb-near-black: #0A0A0A;
	--rb-charcoal: #1A1A1A;
	--rb-navy: #1428A0;
	--rb-blue: #2680EB;
	--rb-blue-light: #E8F0FE;
	--rb-cyan: #00D4FF;
	/* RAID theme — Purple accent (variable name kept for compatibility) */
	--rb-red: #0D9488;
	--rb-red-light: #F5F3FF;
	--rb-green: #00B670;
	--rb-gold: #FFD700;
	--rb-gold-2: #F59E0B;
	--rb-text: #0A0A0A;
	--rb-text-2: #4A4A4A;
	--rb-text-3: #757575;
	--rb-bg: #FFFFFF;
	--rb-bg-soft: #F7F7F7;
	--rb-bg-soft2: #FAFAFA;
	--rb-bg-dark: #0A0A0A;
	--rb-border: #E5E5E5;
	--rb-border-light: #F0F0F0;
	--rb-radius: 4px;
	--rb-radius-md: 12px;
	--rb-radius-lg: 24px;
	--rb-pill: 999px;
	--rb-shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
	--rb-shadow: 0 8px 32px rgba(0, 0, 0, .08);
	--rb-shadow-lg: 0 20px 60px rgba(0, 0, 0, .12);
	--rb-ease: cubic-bezier(0.32, 0, 0.16, 1);
}

.rb-page {
	font-family: var(--rb-jp-font);
	color: var(--rb-text);
	background: var(--rb-bg);
	line-height: 1.7;
	font-size: 15px;
	letter-spacing: .02em;
}
.rb-page * { box-sizing: border-box; }
.rb-page h1, .rb-page h2, .rb-page h3, .rb-page h4 {
	font-family: var(--rb-jp-font-bold);
	font-weight: 700;
	letter-spacing: -.01em;
}

.rb-container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.rb-section-head {
	text-align: center;
	margin-bottom: 56px;
}
.rb-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--rb-blue);
	margin-bottom: 16px;
	font-family: var(--rb-num-font);
}
.rb-eyebrow::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--rb-blue);
}
.rb-page h2.rb-title {
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--rb-text);
	margin: 0 0 18px;
	letter-spacing: -.02em;
}
.rb-page .rb-section-head p {
	font-size: 16px;
	line-height: 1.95;
	color: var(--rb-text-2);
	max-width: 720px;
	margin: 0 auto;
	font-weight: 400;
}

/* Buttons */
.rb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .3s var(--rb-ease);
	white-space: nowrap;
	letter-spacing: .03em;
	min-height: 56px;
	border-radius: var(--rb-pill);
	font-family: var(--rb-jp-font-bold);
}
.rb-btn-primary {
	background: var(--rb-red);
	color: #FFF;
	border-color: var(--rb-red);
	box-shadow: 0 6px 18px rgba(13, 148, 136, .35);
}
.rb-btn-primary:hover {
	background: #0F766E;
	border-color: #0F766E;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(13, 148, 136, .5);
}
.rb-btn-black {
	background: var(--rb-black);
	color: #FFF;
	border-color: var(--rb-black);
}
.rb-btn-black:hover {
	background: var(--rb-charcoal);
	transform: translateY(-2px);
}
.rb-btn-white {
	background: #FFF;
	color: var(--rb-black);
	border-color: #FFF;
}
.rb-btn-white:hover {
	background: rgba(255, 255, 255, .9);
	transform: translateY(-2px);
}
.rb-btn-outline-w {
	background: transparent;
	color: #FFF;
	border-color: rgba(255, 255, 255, .35);
}
.rb-btn-outline-w:hover {
	border-color: #FFF;
	background: rgba(255, 255, 255, .08);
}
.rb-btn-outline-b {
	background: transparent;
	color: var(--rb-black);
	border-color: var(--rb-black);
}
.rb-btn-outline-b:hover {
	background: var(--rb-black);
	color: #FFF;
}
.rb-btn-large {
	padding: 18px 38px;
	font-size: 15px;
	min-height: 60px;
}

/* Top Banner */
.rb-topbar {
	background: var(--rb-red);
	color: #FFF;
	padding: 10px 0;
	font-size: 13px;
	text-align: center;
	font-weight: 700;
}
.rb-topbar strong {
	color: var(--rb-gold);
	margin: 0 6px;
	font-weight: 700;
}
.rb-topbar a {
	color: #FFF;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 700;
}

/* ============================================
   1. HERO
   ============================================ */
.rb-hero {
	position: relative;
	background: var(--rb-near-black);
	color: #FFF;
	overflow: hidden;
	padding: 90px 0 100px;
	min-height: 720px;
	display: flex;
	align-items: center;
}
.rb-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 75% 50%, rgba(38, 128, 235, .35) 0%, transparent 60%),
		radial-gradient(ellipse at 0% 100%, rgba(13, 148, 136, .15) 0%, transparent 50%);
}
.rb-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.rb-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
}
.rb-hero-text { min-width: 0; }
.rb-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px 8px 12px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--rb-pill);
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 24px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.rb-hero-badge-dot {
	width: 8px;
	height: 8px;
	background: #00FF7F;
	border-radius: 50%;
	box-shadow: 0 0 10px #00FF7F;
	animation: rbPulse 1.6s var(--rb-ease) infinite;
}
@keyframes rbPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .5; transform: scale(.85); }
}
.rb-hero h1 {
	font-size: clamp(26px, 4vw, 46px);
	white-space: nowrap;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.02em;
	margin: 0 0 24px;
	color: #FFF;
}
.rb-hero h1 .rb-hl {
	background: linear-gradient(135deg, var(--rb-gold) 0%, var(--rb-gold-2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.rb-hero-lead {
	font-size: 16px;
	line-height: 1.95;
	color: rgba(255, 255, 255, .8);
	margin: 0 0 32px;
	max-width: 560px;
}
.rb-hero-recovery {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 22px 28px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--rb-radius-md);
	margin-bottom: 32px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.rb-hero-recovery-num {
	font-size: 52px;
	font-weight: 900;
	letter-spacing: -.03em;
	line-height: 1;
	background: linear-gradient(135deg, var(--rb-gold), var(--rb-gold-2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: var(--rb-num-font);
}
.rb-hero-recovery-num small {
	font-size: 22px;
	font-weight: 700;
}
.rb-hero-recovery-text strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 4px;
}
.rb-hero-recovery-text span {
	font-size: 12px;
	color: rgba(255, 255, 255, .55);
	letter-spacing: .02em;
	display: block;
}
.rb-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}
.rb-hero-microtrust {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 12px;
	color: rgba(255, 255, 255, .65);
}
.rb-hero-microtrust span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
}
.rb-hero-microtrust span::before {
	content: "✓";
	color: #00FF7F;
	font-weight: 700;
}

.rb-hero-visual {
	min-width: 0;
	position: relative;
}
.rb-hero-visual-frame {
	position: relative;
	border-radius: var(--rb-radius-lg);
	overflow: hidden;
	background: var(--rb-charcoal);
	border: 1px solid rgba(255, 255, 255, .15);
	padding: 0;
	aspect-ratio: 4/3;
	display: block;
	box-shadow: 0 24px 64px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05);
}
.rb-hero-visual-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, .35) 100%);
	pointer-events: none;
	z-index: 1;
}
.rb-hero-visual-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.rb-hero-visual-tag {
	position: absolute;
	bottom: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background: rgba(10, 10, 10, .75);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--rb-pill);
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	z-index: 2;
	letter-spacing: .03em;
}
.rb-hero-visual-tag::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--rb-gold);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--rb-gold);
}
.rb-hero-floating {
	position: absolute;
	background: rgba(10, 10, 10, .85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 14px;
	padding: 14px 18px;
	color: #FFF;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.rb-hero-floating-1 {
	top: 30px;
	left: -20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.rb-hero-floating-1-ico { font-size: 22px; }
.rb-hero-floating-1-text strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #FFF;
}
.rb-hero-floating-1-text span {
	font-size: 11px;
	color: rgba(255, 255, 255, .55);
}
.rb-hero-floating-2 {
	bottom: 30px;
	right: -20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.rb-hero-floating-2-num {
	font-size: 28px;
	font-weight: 900;
	color: #00FF7F;
	font-family: var(--rb-num-font);
	line-height: 1;
}
.rb-hero-floating-2-text strong {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #FFF;
}
.rb-hero-floating-2-text span {
	font-size: 10px;
	color: rgba(255, 255, 255, .55);
}

@media (max-width: 980px) {
	.rb-hero { padding: 60px 0 80px; min-height: auto; display: block; }
	.rb-hero-grid { grid-template-columns: 1fr; gap: 50px; }
	.rb-hero-floating { display: none; }
}
@media (max-width: 540px) {
	.rb-hero h1 { font-size: 30px; white-space: normal; }
	.rb-hero-recovery { flex-direction: column; align-items: flex-start; padding: 20px; gap: 12px; }
	.rb-hero-recovery-num { font-size: 40px; }
	.rb-hero-actions { flex-direction: column; width: 100%; }
	.rb-hero-actions .rb-btn { width: 100%; }
}

/* ============================================
   FREE DIAGNOSIS CTA BANNER
   ============================================ */
.rb-fdcta {
	padding: 60px 0;
	background: linear-gradient(135deg, var(--rb-red) 0%, #0F766E 100%);
	color: #FFF;
	position: relative;
	overflow: hidden;
}
.rb-fdcta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, .15) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, .1) 0%, transparent 50%);
}
.rb-fdcta::after {
	content: "FREE";
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	font-size: 220px;
	font-weight: 900;
	color: rgba(255, 255, 255, .08);
	font-family: var(--rb-num-font);
	letter-spacing: -.08em;
	line-height: 1;
	pointer-events: none;
}
.rb-fdcta-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}
.rb-fdcta-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--rb-pill);
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.rb-fdcta-badge::before {
	content: "✓";
	color: var(--rb-gold);
	font-weight: 800;
}
.rb-fdcta-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) auto;
	gap: 40px;
	align-items: center;
}
.rb-fdcta-text {
	min-width: 0;
}
.rb-fdcta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .15);
	color: var(--rb-gold);
	padding: 6px 14px;
	border-radius: var(--rb-pill);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .15em;
	margin-bottom: 12px;
	font-family: var(--rb-num-font);
	border: 1px solid rgba(255, 215, 0, .3);
}
.rb-fdcta h2 {
	font-size: clamp(24px, 3.6vw, 36px);
	font-weight: 700;
	color: #FFF;
	margin: 0 0 10px;
	line-height: 1.4;
	letter-spacing: -.01em;
}
.rb-fdcta h2 strong {
	color: var(--rb-gold);
	font-weight: 900;
}
.rb-fdcta p {
	font-size: 15px;
	color: rgba(255, 255, 255, .85);
	margin: 0;
	line-height: 1.85;
}
.rb-fdcta-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 280px;
}
.rb-fdcta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 28px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--rb-pill);
	transition: all .3s var(--rb-ease);
	min-height: 60px;
	font-family: var(--rb-jp-font-bold);
}
.rb-fdcta-btn-gold {
	background: var(--rb-gold);
	color: var(--rb-black);
	box-shadow: 0 6px 18px rgba(255, 215, 0, .35);
}
.rb-fdcta-btn-gold:hover {
	background: #FFE55C;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(255, 215, 0, .5);
}
.rb-fdcta-btn-tel {
	background: transparent;
	color: #FFF;
	border: 2px solid rgba(255, 255, 255, .35);
}
.rb-fdcta-btn-tel:hover {
	border-color: #FFF;
	background: rgba(255, 255, 255, .08);
}

@media (max-width: 880px) {
	.rb-fdcta-inner { grid-template-columns: 1fr; gap: 24px; }
	.rb-fdcta-actions { min-width: 0; }
}

/* ============================================
   RECOVERY RATE TABLE
   ============================================ */
.rb-rate {
	padding: 100px 0;
	background: var(--rb-bg-soft);
}
.rb-rate-wrap {
	max-width: 1000px;
	margin: 0 auto;
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	padding: 40px;
	border: 1px solid var(--rb-border);
	box-shadow: var(--rb-shadow);
}
.rb-rate-table {
	width: 100%;
	border-collapse: collapse;
}
.rb-rate-table thead th {
	padding: 16px 20px;
	font-size: 11px;
	font-weight: 700;
	text-align: left;
	color: var(--rb-text-3);
	letter-spacing: .2em;
	text-transform: uppercase;
	border-bottom: 2px solid var(--rb-text);
	font-family: var(--rb-num-font);
}
.rb-rate-table thead th:last-child { text-align: right; }
.rb-rate-table tbody td {
	padding: 20px 20px;
	border-bottom: 1px solid var(--rb-border-light);
	font-size: 14px;
	color: var(--rb-text-2);
	vertical-align: middle;
}
.rb-rate-table tbody tr:last-child td { border-bottom: none; }
.rb-rate-table tbody tr:hover { background: var(--rb-bg-soft2); }
.rb-rate-table tbody td:first-child {
	font-weight: 700;
	color: var(--rb-text);
	font-size: 15px;
}
.rb-rate-meter {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}
.rb-rate-track {
	width: 140px;
	height: 7px;
	background: var(--rb-border);
	border-radius: 99px;
	overflow: hidden;
}
.rb-rate-fill { height: 100%; border-radius: 99px; }
.rb-rate-fill.high { background: linear-gradient(90deg, var(--rb-green), #34D399); }
.rb-rate-fill.mid { background: linear-gradient(90deg, var(--rb-gold-2), var(--rb-gold)); }
.rb-rate-fill.low { background: linear-gradient(90deg, #DC2626, #F87171); }
.rb-rate-pct {
	font-size: 18px;
	font-weight: 900;
	min-width: 56px;
	text-align: right;
	font-family: var(--rb-num-font);
	letter-spacing: -.02em;
}
.rb-rate-pct.high { color: var(--rb-green); }
.rb-rate-pct.mid { color: var(--rb-gold-2); }
.rb-rate-pct.low { color: #DC2626; }
.rb-rate-note {
	margin-top: 24px;
	padding: 16px 20px;
	background: var(--rb-red-light);
	border-left: 3px solid var(--rb-red);
	border-radius: 0 8px 8px 0;
	font-size: 13px;
	color: var(--rb-text-2);
	line-height: 1.7;
}
.rb-rate-note strong { color: var(--rb-red); }

@media (max-width: 880px) {
	.rb-rate { padding: 70px 0; }
	.rb-rate-wrap { padding: 24px; overflow-x: auto; }
	.rb-rate-table { min-width: 600px; }
	.rb-rate-track { width: 80px; }
}

/* ============================================
   2. STATS
   ============================================ */
.rb-stats {
	padding: 80px 0;
	background: var(--rb-bg-soft);
}
.rb-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.rb-stat-card {
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	padding: 36px 24px;
	text-align: center;
	transition: all .3s var(--rb-ease);
	border: 1px solid var(--rb-border-light);
}
.rb-stat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--rb-shadow-lg);
	border-color: var(--rb-blue);
}
.rb-stat-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rb-navy) 0%, var(--rb-blue) 100%);
	color: #FFF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 16px;
}
.rb-stat-num {
	font-size: 44px;
	font-weight: 900;
	color: var(--rb-navy);
	letter-spacing: -.03em;
	line-height: 1;
	margin-bottom: 6px;
	font-family: var(--rb-num-font);
}
.rb-stat-num small {
	font-size: 16px;
	color: var(--rb-text-2);
	font-weight: 700;
	margin-left: 4px;
}
.rb-stat-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--rb-text);
	margin-bottom: 4px;
}
.rb-stat-sub {
	font-size: 12px;
	color: var(--rb-text-3);
	line-height: 1.5;
}

@media (max-width: 880px) {
	.rb-stats { padding: 60px 0; }
	.rb-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.rb-stat-num { font-size: 36px; }
}

/* ============================================
   3. SYMPTOMS
   ============================================ */
.rb-symptoms {
	padding: 100px 0;
	background: #FFF;
}
.rb-symptoms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.rb-symptom {
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	overflow: hidden;
	border: 1px solid var(--rb-border);
	transition: all .35s var(--rb-ease);
	display: flex;
	flex-direction: column;
}
.rb-symptom:hover {
	transform: translateY(-6px);
	box-shadow: var(--rb-shadow-lg);
	border-color: var(--rb-black);
}
.rb-symptom-img {
	aspect-ratio: 16/10;
	overflow: hidden;
	position: relative;
	background: var(--rb-bg-soft);
}
.rb-symptom-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--rb-ease);
}
.rb-symptom:hover .rb-symptom-img img { transform: scale(1.06); }
.rb-symptom-img-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--rb-black);
	color: #FFF;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: var(--rb-pill);
	letter-spacing: .03em;
}
.rb-symptom-body {
	padding: 24px 26px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.rb-symptom h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 10px;
}
.rb-symptom p {
	font-size: 13.5px;
	line-height: 1.85;
	color: var(--rb-text-2);
	margin: 0 0 16px;
	flex: 1;
}
.rb-symptom-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.rb-symptom-tags span {
	display: inline-block;
	padding: 4px 11px;
	background: var(--rb-bg-soft);
	color: var(--rb-text);
	font-size: 11px;
	font-weight: 700;
	border-radius: var(--rb-pill);
	border: 1px solid var(--rb-border);
}

@media (max-width: 980px) {
	.rb-symptoms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.rb-symptoms { padding: 70px 0; }
	.rb-symptoms-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   4. WHY PRO (Risk vs Safe)
   ============================================ */
.rb-why {
	padding: 100px 0;
	background: var(--rb-bg-soft);
}
.rb-why-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}
.rb-why-col {
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	padding: 36px 32px;
	border: 2px solid var(--rb-border);
}
.rb-why-col.rb-risk { border-color: var(--rb-red); }
.rb-why-col.rb-safe { border-color: var(--rb-green); }
.rb-why-col-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--rb-border);
}
.rb-why-col-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}
.rb-why-col.rb-risk .rb-why-col-icon { background: var(--rb-red-light); color: var(--rb-red); }
.rb-why-col.rb-safe .rb-why-col-icon { background: #ECFDF5; color: var(--rb-green); }
.rb-why-col-head strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--rb-text);
	margin-bottom: 2px;
}
.rb-why-col-head span {
	font-size: 11px;
	color: var(--rb-text-3);
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	font-family: var(--rb-num-font);
}
.rb-why-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.rb-why-list li {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 12px;
	padding: 10px 0;
	font-size: 14px;
	color: var(--rb-text-2);
	line-height: 1.7;
}
.rb-why-list li::before {
	content: "✕";
	color: var(--rb-red);
	font-weight: 700;
	font-size: 16px;
}
.rb-why-col.rb-safe .rb-why-list li::before {
	content: "✓";
	color: var(--rb-green);
}
.rb-why-list li strong {
	color: var(--rb-text);
	font-weight: 700;
}
.rb-why-vs {
	font-size: 32px;
	font-weight: 900;
	color: var(--rb-text-3);
	font-family: var(--rb-num-font);
	letter-spacing: -.02em;
}

@media (max-width: 880px) {
	.rb-why { padding: 70px 0; }
	.rb-why-grid { grid-template-columns: 1fr; gap: 16px; }
	.rb-why-vs { display: none; }
}

/* ============================================
   5. CRITICAL ALERT (Immediate Consultation)
   ============================================ */
.rb-alert {
	padding: 80px 0;
	background: #FFF;
}
.rb-alert-box {
	background: linear-gradient(135deg, #DDD6FE 0%, #F5F3FF 100%);
	border: 2px solid var(--rb-red);
	border-radius: var(--rb-radius-lg);
	padding: 48px;
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.rb-alert-box::before {
	content: "!";
	position: absolute;
	top: -40px;
	right: -20px;
	font-size: 280px;
	font-weight: 900;
	color: rgba(13, 148, 136, .08);
	font-family: var(--rb-num-font);
	line-height: 1;
}
.rb-alert-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 40px;
	position: relative;
	z-index: 1;
}
.rb-alert-text {
	min-width: 0;
}
.rb-alert-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--rb-red);
	color: #FFF;
	padding: 6px 14px;
	border-radius: var(--rb-pill);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .15em;
	margin-bottom: 16px;
	font-family: var(--rb-num-font);
}
.rb-alert-eyebrow::before {
	content: "⚠";
	font-size: 14px;
}
.rb-alert h2 {
	font-size: clamp(24px, 3.5vw, 34px);
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 16px;
	line-height: 1.4;
	letter-spacing: -.01em;
}
.rb-alert h2 em {
	font-style: normal;
	color: var(--rb-red);
}
.rb-alert-lead {
	font-size: 15px;
	line-height: 1.95;
	color: var(--rb-text-2);
	margin: 0 0 26px;
}
.rb-alert-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.rb-alert-list {
	list-style: none;
	padding: 0;
	margin: 0;
	background: #FFF;
	border-radius: var(--rb-radius-md);
	padding: 24px;
	border: 1px solid var(--rb-border);
}
.rb-alert-list-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--rb-red);
	margin-bottom: 14px;
	letter-spacing: .03em;
}
.rb-alert-list li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 10px;
	padding: 6px 0;
	font-size: 13.5px;
	color: var(--rb-text);
	font-weight: 600;
}
.rb-alert-list li::before {
	content: "→";
	color: var(--rb-red);
	font-weight: 700;
}

@media (max-width: 880px) {
	.rb-alert { padding: 60px 0; }
	.rb-alert-box { padding: 32px 24px; }
	.rb-alert-grid { grid-template-columns: 1fr; gap: 24px; }
	.rb-alert-actions .rb-btn { flex: 1; }
}

/* ============================================
   6. PROCESS — Editorial Magazine Style (Color Optimized)
   ============================================ */
.rb-process {
	padding: 120px 0;
	background: var(--rb-bg-soft2);
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--rb-border-light);
	border-bottom: 1px solid var(--rb-border-light);
}
.rb-process .rb-section-head { margin-bottom: 80px; }
.rb-process h2.rb-title {
	font-family: var(--rb-jp-mincho);
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.15;
	color: var(--rb-text);
}
.rb-process h2.rb-title em {
	font-style: normal;
	color: var(--rb-red);
	font-weight: 400;
}
.rb-process .rb-eyebrow {
	color: var(--rb-red);
	font-family: var(--rb-jp-mincho);
	font-style: normal;
	letter-spacing: .25em;
	font-size: 13px;
}
.rb-process .rb-eyebrow::before { background: var(--rb-red); width: 28px; height: 1px; }
.rb-process .rb-section-head p {
	font-size: 16px;
	color: var(--rb-text-2);
	line-height: 1.95;
}

.rb-process-list {
	max-width: 980px;
	margin: 0 auto;
	position: relative;
}
.rb-process-list::before {
	content: "";
	position: absolute;
	top: 60px;
	bottom: 60px;
	left: 60px;
	width: 1px;
	background: var(--rb-border);
}
.rb-process-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 40px;
	padding: 40px 0;
	border-bottom: 1px solid var(--rb-border-light);
	transition: all .3s var(--rb-ease);
	align-items: start;
	background: transparent !important;
	border-radius: 0 !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
}
.rb-process-item:last-child { border-bottom: none; }
.rb-process-item:hover {
	transform: none;
	background: transparent !important;
}
.rb-process-num {
	width: 120px;
	height: 120px;
	background: var(--rb-red);
	color: #FFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-family: var(--rb-jp-mincho);
	box-shadow: 0 16px 36px rgba(200, 16, 46, .35);
	position: relative;
	z-index: 1;
}
.rb-process-num strong {
	font-size: 56px;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	letter-spacing: -.04em;
}
.rb-process-num small {
	font-size: 10px;
	letter-spacing: .25em;
	margin-top: 4px;
	font-weight: 700;
	opacity: .9;
	font-style: normal;
}
.rb-process-content {
	min-width: 0;
	padding-top: 18px;
}
.rb-process-content h3 {
	font-family: var(--rb-jp-mincho);
	font-size: 28px;
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 14px;
	letter-spacing: -.02em;
	line-height: 1.3;
}
.rb-process-content p {
	font-size: 15px;
	line-height: 1.95;
	color: var(--rb-text-2);
	margin: 0 0 18px;
}
.rb-process-content p strong {
	color: var(--rb-red) !important;
	font-weight: 700;
	font-style: normal;
	font-family: var(--rb-jp-mincho);
}
.rb-process-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-family: var(--rb-jp-mincho);
	font-size: 13px;
	font-style: normal;
	color: var(--rb-text-3);
	padding-top: 16px;
	border-top: 1px dashed var(--rb-border);
}
.rb-process-tags span {
	display: inline-block;
	background: transparent !important;
	color: var(--rb-text-3) !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	font-weight: 400 !important;
}
.rb-process-tags span::before {
	content: "#";
	color: var(--rb-red);
	font-weight: 700;
	margin-right: 4px;
}

@media (max-width: 640px) {
	.rb-process { padding: 70px 0; }
	.rb-process-list::before { left: 30px; }
	.rb-process-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
	.rb-process-num { width: 60px; height: 60px; }
	.rb-process-num strong { font-size: 28px; }
	.rb-process-num small { display: none; }
	.rb-process-content h3 { font-size: 22px; }
}

/* ============================================
   7. TRUST POINTS — Editorial Magazine Style (Color Optimized)
   ============================================ */
.rb-trust {
	padding: 120px 0;
	background: #FFF;
	position: relative;
}
.rb-trust .rb-section-head { margin-bottom: 70px; }
.rb-trust h2.rb-title {
	font-family: var(--rb-jp-mincho);
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.15;
	color: var(--rb-text);
}
.rb-trust h2.rb-title em {
	font-style: normal;
	color: var(--rb-red);
	font-weight: 400;
}
.rb-trust .rb-eyebrow {
	color: var(--rb-red);
	font-family: var(--rb-jp-mincho);
	font-style: normal;
	letter-spacing: .25em;
	font-size: 13px;
}
.rb-trust .rb-eyebrow::before { background: var(--rb-red); width: 28px; height: 1px; }
.rb-trust .rb-section-head p {
	font-size: 16px;
	color: var(--rb-text-2);
	line-height: 1.95;
}

.rb-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: 1100px;
	margin: 0 auto;
	border-top: 2px solid var(--rb-text);
	border-left: 1px solid var(--rb-border);
}
.rb-trust-card {
	background: #FFF !important;
	border-radius: 0 !important;
	padding: 48px 36px !important;
	border: none !important;
	border-right: 1px solid var(--rb-border) !important;
	border-bottom: 1px solid var(--rb-border) !important;
	transition: all .35s var(--rb-ease);
	position: relative;
}
.rb-trust-card:hover {
	transform: none !important;
	box-shadow: none !important;
	background: var(--rb-bg-soft2) !important;
}
.rb-trust-card:hover .rb-trust-num {
	color: var(--rb-red) !important;
	opacity: 1;
}
.rb-trust-num {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	font-family: var(--rb-jp-mincho) !important;
	font-size: 80px !important;
	font-weight: 700 !important;
	font-style: normal !important;
	color: var(--rb-red) !important;
	line-height: 1 !important;
	letter-spacing: -.05em !important;
	margin-bottom: 16px !important;
	display: block !important;
	opacity: .25;
	transition: opacity .35s var(--rb-ease);
}
.rb-trust-icon {
	width: auto !important;
	height: auto !important;
	background: transparent !important;
	color: var(--rb-red) !important;
	font-size: 32px !important;
	margin-bottom: 18px !important;
	display: inline-block !important;
	box-shadow: none !important;
}
.rb-trust-card h3 {
	font-family: var(--rb-jp-mincho) !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	color: var(--rb-text) !important;
	margin: 0 0 14px !important;
	letter-spacing: -.02em !important;
	line-height: 1.35 !important;
}
.rb-trust-card p {
	font-size: 14px !important;
	line-height: 1.95 !important;
	color: var(--rb-text-2) !important;
	margin: 0 !important;
}
.rb-trust-card p strong {
	color: var(--rb-red) !important;
	font-weight: 700 !important;
	font-family: var(--rb-jp-mincho) !important;
	font-style: normal !important;
}

@media (max-width: 980px) {
	.rb-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.rb-trust { padding: 70px 0; }
	.rb-trust-grid { grid-template-columns: 1fr; border-left: none; border-top: 1px solid var(--rb-border); }
	.rb-trust-card { padding: 36px 24px !important; border-right: none !important; }
	.rb-trust-num { font-size: 64px !important; }
}

/* ============================================
   8. TECHNOLOGY (Big Image Cards)
   ============================================ */
.rb-tech {
	padding: 100px 0;
	background: #FFF;
}
.rb-tech-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.rb-tech-card {
	background: var(--rb-bg-soft);
	border-radius: var(--rb-radius-lg);
	overflow: hidden;
	transition: all .3s var(--rb-ease);
	display: flex;
	flex-direction: column;
}
.rb-tech-card:hover {
	transform: translateY(-6px);
	background: #FFF;
	box-shadow: var(--rb-shadow-lg);
}
.rb-tech-img {
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
	background: var(--rb-charcoal);
}
.rb-tech-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--rb-ease);
}
.rb-tech-card:hover .rb-tech-img img { transform: scale(1.05); }
.rb-tech-img-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 22px 26px;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
	color: #FFF;
}
.rb-tech-img-overlay strong {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .8);
	font-family: var(--rb-num-font);
}
.rb-tech-body {
	padding: 28px 30px 32px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.rb-tech-body h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 12px;
	letter-spacing: -.01em;
	line-height: 1.4;
}
.rb-tech-body p {
	font-size: 14px;
	line-height: 1.95;
	color: var(--rb-text-2);
	margin: 0 0 18px;
	flex: 1;
}
.rb-tech-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.rb-tech-tags span {
	display: inline-block;
	padding: 5px 12px;
	background: #FFF;
	color: var(--rb-text);
	font-size: 11px;
	font-weight: 700;
	border-radius: var(--rb-pill);
	border: 1px solid var(--rb-border);
}

@media (max-width: 880px) {
	.rb-tech { padding: 70px 0; }
	.rb-tech-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   9. PRICING
   ============================================ */
.rb-pricing {
	padding: 100px 0;
	background: var(--rb-bg-soft);
}
.rb-pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	max-width: 1100px;
	margin: 0 auto;
}
.rb-pricing-card {
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	padding: 32px 26px;
	border: 1.5px solid var(--rb-border);
	display: flex;
	flex-direction: column;
	transition: all .3s var(--rb-ease);
	position: relative;
}
.rb-pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--rb-shadow-lg);
}
.rb-pricing-card.rb-featured {
	background: var(--rb-black);
	color: #FFF;
	border-color: var(--rb-black);
	transform: translateY(-10px);
}
.rb-pricing-card.rb-featured::before {
	content: "おすすめ";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--rb-gold) 0%, var(--rb-gold-2) 100%);
	color: var(--rb-black);
	font-size: 11px;
	font-weight: 700;
	padding: 7px 16px;
	border-radius: var(--rb-pill);
	letter-spacing: .08em;
}
.rb-pricing-tier {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--rb-text-3);
	letter-spacing: .15em;
	margin-bottom: 12px;
	align-self: flex-start;
	font-family: var(--rb-num-font);
}
.rb-pricing-card.rb-featured .rb-pricing-tier { color: var(--rb-gold); }
.rb-pricing-card h3 {
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 6px;
	color: inherit;
}
.rb-pricing-sub {
	font-size: 12px;
	color: var(--rb-text-3);
	display: block;
	margin-bottom: 22px;
}
.rb-pricing-card.rb-featured .rb-pricing-sub { color: rgba(255, 255, 255, .55); }
.rb-pricing-price {
	font-size: 38px;
	font-weight: 900;
	color: var(--rb-text);
	letter-spacing: -.03em;
	line-height: 1;
	margin-bottom: 4px;
	font-family: var(--rb-num-font);
}
.rb-pricing-card.rb-featured .rb-pricing-price { color: #FFF; }
.rb-pricing-price small {
	font-size: 16px;
	color: var(--rb-text-2);
	font-weight: 700;
	margin-left: 4px;
}
.rb-pricing-card.rb-featured .rb-pricing-price small { color: rgba(255, 255, 255, .7); }
.rb-pricing-price-note {
	font-size: 12px;
	color: var(--rb-text-3);
	margin-bottom: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--rb-border);
}
.rb-pricing-card.rb-featured .rb-pricing-price-note {
	color: rgba(255, 255, 255, .5);
	border-bottom-color: rgba(255, 255, 255, .15);
}
.rb-pricing-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}
.rb-pricing-list li {
	font-size: 13px;
	padding: 7px 0 7px 24px;
	position: relative;
	line-height: 1.5;
	color: var(--rb-text-2);
}
.rb-pricing-card.rb-featured .rb-pricing-list li { color: rgba(255, 255, 255, .8); }
.rb-pricing-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--rb-blue);
	font-weight: 700;
	font-size: 15px;
}
.rb-pricing-card.rb-featured .rb-pricing-list li::before { color: var(--rb-gold); }

@media (max-width: 980px) {
	.rb-pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.rb-pricing-card.rb-featured { transform: none; }
}
@media (max-width: 540px) {
	.rb-pricing { padding: 70px 0; }
	.rb-pricing-grid { grid-template-columns: 1fr; gap: 14px; }
	.rb-pricing-price { font-size: 32px; }
}

/* ============================================
   10. CASES
   ============================================ */
.rb-cases {
	padding: 100px 0;
	background: #FFF;
}
.rb-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.rb-case {
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	overflow: hidden;
	border: 1px solid var(--rb-border);
	transition: all .35s var(--rb-ease);
	display: flex;
	flex-direction: column;
}
.rb-case:hover {
	transform: translateY(-6px);
	box-shadow: var(--rb-shadow-lg);
	border-color: var(--rb-black);
}
.rb-case-img {
	aspect-ratio: 16/10;
	overflow: hidden;
	position: relative;
	background: var(--rb-bg-soft);
}
.rb-case-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--rb-ease);
}
.rb-case:hover .rb-case-img img { transform: scale(1.06); }
.rb-case-result {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--rb-black);
	color: var(--rb-gold);
	font-size: 13px;
	font-weight: 900;
	padding: 7px 14px;
	border-radius: var(--rb-pill);
	font-family: var(--rb-num-font);
}
.rb-case-body {
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.rb-case-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--rb-blue);
	letter-spacing: .15em;
	margin-bottom: 12px;
	align-self: flex-start;
	text-transform: uppercase;
	font-family: var(--rb-num-font);
}
.rb-case h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 12px;
	line-height: 1.5;
}
.rb-case p {
	font-size: 13.5px;
	line-height: 1.85;
	color: var(--rb-text-2);
	margin: 0 0 18px;
	flex: 1;
}
.rb-case-meta {
	display: flex;
	gap: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--rb-border);
}
.rb-case-meta-item {
	display: flex;
	flex-direction: column;
}
.rb-case-meta-num {
	font-size: 15px;
	font-weight: 700;
	color: var(--rb-text);
	letter-spacing: -.01em;
	font-family: var(--rb-num-font);
}
.rb-case-meta-label {
	font-size: 10px;
	color: var(--rb-text-3);
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-top: 2px;
	font-family: var(--rb-num-font);
}

@media (max-width: 980px) {
	.rb-cases-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.rb-cases { padding: 70px 0; }
}

/* ============================================
   11. REVIEWS
   ============================================ */
.rb-reviews {
	padding: 100px 0;
	background: var(--rb-bg-soft);
}
.rb-reviews-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
}
.rb-review {
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	padding: 32px 30px;
	border: 1px solid var(--rb-border);
	transition: all .3s var(--rb-ease);
	position: relative;
}
.rb-review:hover {
	transform: translateY(-4px);
	box-shadow: var(--rb-shadow-lg);
}
.rb-review-stars {
	color: var(--rb-gold-2);
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.rb-review-rating {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--rb-num-font);
	font-size: 13px;
	color: var(--rb-text-3);
	margin-left: 8px;
	font-weight: 700;
}
.rb-review-rating strong {
	color: var(--rb-text);
	font-size: 16px;
}
.rb-review-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 12px;
	line-height: 1.5;
}
.rb-review-text {
	font-size: 14px;
	line-height: 1.95;
	color: var(--rb-text-2);
	margin: 0 0 20px;
}
.rb-review-text strong { color: var(--rb-red); font-weight: 700; }
.rb-review-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 18px;
	border-top: 1px solid var(--rb-border);
}
.rb-review-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rb-navy) 0%, var(--rb-blue) 100%);
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 900;
	flex-shrink: 0;
	font-family: var(--rb-num-font);
}
.rb-review-author {
	flex: 1;
	min-width: 0;
}
.rb-review-author strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--rb-text);
	margin-bottom: 2px;
}
.rb-review-author span {
	font-size: 12px;
	color: var(--rb-text-3);
}
.rb-review-date {
	font-size: 11px;
	color: var(--rb-text-3);
	font-weight: 700;
	letter-spacing: .03em;
	font-family: var(--rb-num-font);
}

@media (max-width: 880px) {
	.rb-reviews { padding: 70px 0; }
	.rb-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   12. FAQ
   ============================================ */
.rb-faq {
	padding: 100px 0;
	background: #FFF;
}
.rb-faq-list {
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.rb-faq-item {
	background: var(--rb-bg-soft);
	border-radius: var(--rb-radius-md);
	border: 1px solid var(--rb-border);
	overflow: hidden;
	transition: all .25s var(--rb-ease);
}
.rb-faq-item[open] {
	background: #FFF;
	border-color: var(--rb-black);
	box-shadow: var(--rb-shadow);
}
.rb-faq-item summary {
	padding: 22px 26px;
	font-size: 15px;
	font-weight: 700;
	color: var(--rb-text);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 16px;
}
.rb-faq-item summary::-webkit-details-marker { display: none; }
.rb-faq-q {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--rb-black);
	color: #FFF;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 900;
	flex-shrink: 0;
	font-family: var(--rb-num-font);
}
.rb-faq-text {
	flex: 1;
	min-width: 0;
	line-height: 1.5;
}
.rb-faq-toggle {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: var(--rb-text-3);
	transition: all .3s var(--rb-ease);
	flex-shrink: 0;
	background: var(--rb-bg-soft);
	border-radius: 50%;
}
.rb-faq-item[open] .rb-faq-toggle { transform: rotate(180deg); background: var(--rb-black); color: #FFF; }
.rb-faq-body {
	padding: 0 26px 26px 74px;
	font-size: 14px;
	line-height: 1.95;
	color: var(--rb-text-2);
}
.rb-faq-body strong { color: var(--rb-text); }
.rb-faq-body .rb-warn { color: var(--rb-red); font-weight: 700; }

@media (max-width: 640px) {
	.rb-faq { padding: 70px 0; }
	.rb-faq-item summary { padding: 18px 20px; font-size: 14px; gap: 12px; }
	.rb-faq-q { width: 28px; height: 28px; font-size: 12px; }
	.rb-faq-toggle { width: 28px; height: 28px; }
	.rb-faq-body { padding: 0 20px 22px 60px; font-size: 13.5px; }
}

/* ============================================
   13. ACCESS
   ============================================ */
.rb-access {
	padding: 100px 0;
	background: var(--rb-bg-soft);
}
.rb-access-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 32px;
	max-width: 1100px;
	margin: 0 auto;
	align-items: stretch;
}
.rb-access-map {
	border-radius: var(--rb-radius-lg);
	overflow: hidden;
	min-height: 420px;
	box-shadow: var(--rb-shadow);
}
.rb-access-map iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	display: block;
}
.rb-access-info {
	background: #FFF;
	border-radius: var(--rb-radius-lg);
	padding: 36px 32px;
	border: 1px solid var(--rb-border);
}
.rb-access-row {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid var(--rb-border-light);
}
.rb-access-row:first-child { padding-top: 0; }
.rb-access-row:last-child { border-bottom: none; padding-bottom: 0; }
.rb-access-row-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--rb-black);
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}
.rb-access-row-text strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--rb-text);
	margin-bottom: 4px;
}
.rb-access-row-text span {
	font-size: 14px;
	color: var(--rb-text-2);
	line-height: 1.7;
}
.rb-access-row-text a {
	color: var(--rb-blue);
	font-weight: 700;
	text-decoration: none;
}

@media (max-width: 880px) {
	.rb-access { padding: 70px 0; }
	.rb-access-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   14. FINAL CTA
   ============================================ */
.rb-finalcta {
	padding: 100px 0;
	background: var(--rb-black);
	color: #FFF;
	position: relative;
	overflow: hidden;
}
.rb-finalcta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 50%, rgba(38, 128, 235, .25) 0%, transparent 50%),
		radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, .12) 0%, transparent 50%);
}
.rb-finalcta-inner {
	position: relative;
	z-index: 1;
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}
.rb-finalcta h2 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	margin: 18px 0 22px;
	line-height: 1.4;
	color: #FFF;
	letter-spacing: -.02em;
}
.rb-finalcta h2 .rb-hl {
	background: linear-gradient(135deg, var(--rb-gold) 0%, var(--rb-gold-2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.rb-finalcta p {
	font-size: 16px;
	color: rgba(255, 255, 255, .8);
	margin: 0 0 36px;
	line-height: 1.95;
}
.rb-finalcta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-bottom: 36px;
}
.rb-finalcta-emergency {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 22px 32px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: var(--rb-pill);
	transition: all .3s var(--rb-ease);
	text-decoration: none;
}
.rb-finalcta-emergency:hover {
	background: rgba(255, 255, 255, .1);
	border-color: var(--rb-gold);
}
.rb-finalcta-emergency-ico {
	font-size: 26px;
}
.rb-finalcta-emergency-text {
	text-align: left;
}
.rb-finalcta-emergency-text strong {
	display: block;
	font-size: 26px;
	font-weight: 900;
	color: #FFF;
	font-family: var(--rb-num-font);
	letter-spacing: -.02em;
	line-height: 1;
	margin-bottom: 4px;
}
.rb-finalcta-emergency-text span {
	font-size: 12px;
	color: rgba(255, 255, 255, .65);
	font-weight: 700;
	letter-spacing: .03em;
}

@media (max-width: 540px) {
	.rb-finalcta { padding: 70px 0; }
	.rb-finalcta-actions { flex-direction: column; }
	.rb-finalcta-actions .rb-btn { width: 100%; }
	.rb-finalcta-emergency { padding: 18px 24px; gap: 12px; }
	.rb-finalcta-emergency-text strong { font-size: 22px; }
}

/* ============================================
   STICKY RIGHT-SIDE QUICK MENU (Floating)
   Avoids covering footer SNS icons
   ============================================ */
.rb-stickybar {
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transform: translateX(140%);
	transition: transform .5s var(--rb-ease);
}
.rb-stickybar.rb-show { transform: translateX(0); }

.rb-stickybar-tel,
.rb-stickybar-apply {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 12px;
	transition: all .25s var(--rb-ease);
	white-space: nowrap;
	font-family: var(--rb-jp-font-bold);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
	min-width: 220px;
}
.rb-stickybar-tel {
	background: rgba(10, 10, 10, .95);
	color: #FFF;
	border: 1px solid rgba(255, 255, 255, .15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.rb-stickybar-tel:hover {
	background: var(--rb-black);
	transform: translateX(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}
.rb-stickybar-apply {
	background: var(--rb-red);
	color: #FFF;
	border: 1px solid var(--rb-red);
}
.rb-stickybar-apply:hover {
	background: #0F766E;
	border-color: #0F766E;
	transform: translateX(-4px);
	box-shadow: 0 16px 40px rgba(13, 148, 136, .4);
}
.rb-stickybar-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}
.rb-stickybar-tel .rb-stickybar-icon {
	background: rgba(255, 255, 255, .12);
}
.rb-stickybar-apply .rb-stickybar-icon {
	background: rgba(0, 0, 0, .18);
}
.rb-stickybar-text-block {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.rb-stickybar-text-block strong {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .02em;
	font-family: var(--rb-num-font);
}
.rb-stickybar-text-block span {
	font-size: 11px;
	font-weight: 600;
	opacity: .75;
	margin-top: 3px;
	letter-spacing: .03em;
}

@media (max-width: 640px) {
	.rb-stickybar {
		right: 12px;
		bottom: 12px;
		gap: 8px;
	}
	.rb-stickybar-tel,
	.rb-stickybar-apply {
		min-width: 0;
		padding: 12px 14px;
	}
	.rb-stickybar-text-block {
		display: none;
	}
	.rb-stickybar-icon {
		width: 40px;
		height: 40px;
		margin: 0;
	}
}

/* ============================================
   RELATED RECOVERY SERVICES (Simple)
   ============================================ */
.rb-related {
	padding: 70px 0 60px;
	background: var(--rb-bg-soft);
	text-align: center;
	border-top: 1px solid var(--rb-border-light);
}
.rb-related-head {
	max-width: 720px;
	margin: 0 auto 36px;
}
.rb-related-head .rb-eyebrow {
	color: var(--rb-blue);
}
.rb-related-head .rb-eyebrow::before {
	background: var(--rb-blue);
}
.rb-related-head h2 {
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 12px;
	letter-spacing: -.02em;
}
.rb-related-head p {
	font-size: 14px;
	color: var(--rb-text-2);
	line-height: 1.85;
	margin: 0;
}
.rb-related-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	max-width: 1100px;
	margin: 0 auto;
}
.rb-related-list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: #FFF;
	border: 1px solid var(--rb-border);
	border-radius: var(--rb-pill);
	color: var(--rb-text);
	font-size: 13.5px;
	font-weight: 700;
	text-decoration: none;
	transition: all .25s var(--rb-ease);
}
.rb-related-list a::after {
	content: "→";
	color: var(--rb-text-3);
	transition: all .2s var(--rb-ease);
	font-size: 14px;
}
.rb-related-list a:hover {
	background: var(--rb-black);
	border-color: var(--rb-black);
	color: #FFF;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}
.rb-related-list a:hover::after {
	color: #FFF;
	transform: translateX(3px);
}

@media (max-width: 540px) {
	.rb-related { padding: 50px 0; }
}

/* ============================================
   (LEGACY) SEO INTERNAL LINKS SECTION — unused
   ============================================ */
.rb-seolinks {
	padding: 80px 0 60px;
	background: var(--rb-bg-soft);
	border-top: 1px solid var(--rb-border-light);
}
.rb-seolinks-head {
	text-align: center;
	margin-bottom: 48px;
}
.rb-seolinks-head .rb-eyebrow {
	color: var(--rb-blue);
}
.rb-seolinks-head .rb-eyebrow::before {
	background: var(--rb-blue);
}
.rb-seolinks-head h2 {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	color: var(--rb-text);
	margin: 0 0 12px;
	letter-spacing: -.02em;
}
.rb-seolinks-head p {
	font-size: 15px;
	color: var(--rb-text-2);
	line-height: 1.85;
	max-width: 720px;
	margin: 0 auto;
}
.rb-seolinks-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto 40px;
}
.rb-seolinks-col h3 {
	font-size: 14px;
	font-weight: 800;
	color: var(--rb-text);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--rb-text);
	letter-spacing: -.01em;
	display: flex;
	align-items: center;
	gap: 8px;
}
.rb-seolinks-col h3::before {
	content: "";
	width: 4px;
	height: 14px;
	background: var(--rb-red);
}
.rb-seolinks-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.rb-seolinks-col li {
	margin-bottom: 8px;
}
.rb-seolinks-col a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--rb-text-2);
	text-decoration: none;
	transition: all .2s var(--rb-ease);
	padding: 4px 0;
	font-weight: 600;
}
.rb-seolinks-col a::before {
	content: "›";
	color: var(--rb-text-3);
	font-size: 14px;
	font-weight: 700;
	transition: all .2s var(--rb-ease);
}
.rb-seolinks-col a:hover {
	color: var(--rb-red);
	transform: translateX(2px);
}
.rb-seolinks-col a:hover::before {
	color: var(--rb-red);
}
.rb-seolinks-tags {
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 32px;
	border-top: 1px solid var(--rb-border);
	text-align: center;
}
.rb-seolinks-tags-label {
	display: block;
	font-size: 11px;
	font-weight: 800;
	color: var(--rb-text-3);
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-bottom: 16px;
	font-family: var(--rb-num-font);
}
.rb-seolinks-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.rb-seolinks-tags-list a {
	display: inline-block;
	padding: 7px 14px;
	background: #FFF;
	border: 1px solid var(--rb-border);
	border-radius: var(--rb-pill);
	color: var(--rb-text-2);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all .2s var(--rb-ease);
}
.rb-seolinks-tags-list a:hover {
	background: var(--rb-black);
	border-color: var(--rb-black);
	color: #FFF;
	transform: translateY(-1px);
}

@media (max-width: 880px) {
	.rb-seolinks { padding: 60px 0 50px; }
	.rb-seolinks-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}
@media (max-width: 480px) {
	.rb-seolinks-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Breadcrumb & Skip */
.rb-bread {
	background: #FFF;
	padding: 14px 0;
	border-bottom: 1px solid var(--rb-border-light);
}
.rb-bread ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 12px;
}
.rb-bread li { color: var(--rb-text-3); display: inline-flex; align-items: center; }
.rb-bread li:not(:last-child)::after { content: "›"; margin: 0 6px; color: var(--rb-text-3); }
.rb-bread a { color: var(--rb-text-2); text-decoration: none; }
.rb-bread a:hover { color: var(--rb-black); }

.rb-skip {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* === soft.php === */
:root{
  --c-black:#0a0a0a;
  --c-gray-900:#1a1a1a;
  --c-gray-700:#4a4a4a;
  --c-gray-500:#6b7280;
  --c-gray-400:#9ca3af;
  --c-gray-300:#d1d5db;
  --c-gray-200:#e5e7eb;
  --c-gray-100:#f3f4f6;
  --c-gray-50:#f9fafb;
  --c-white:#fff;
  --c-blue:#1251A3;
  --c-blue-dark:#0d3d7a;
  --c-blue-soft:#eef3ff;
  /* Brand accent (PRO: Deep Blue) */
  --c-brand:#1428A0;
  --c-brand-light:#4a5fb8;
  --c-brand-dark:#0a1d6e;
  --c-brand-soft:#eef0fa;
  --c-amber:#d97706;
  --c-amber-soft:#fffbeb;
  --c-green:#059669;
  --c-green-soft:#ecfdf5;
  --c-purple:#7c3aed;
  --c-purple-soft:#f5f3ff;
  --c-pink:#ec4899;
  --c-pink-soft:#fdf2f8;
  --c-orange:#ea580c;
  --c-orange-soft:#fff7ed;
  --c-mint:#10b981;
  --c-mint-soft:#d1fae5;

  --r-sm:8px;
  --r-md:12px;
  --r-lg:16px;
  --r-xl:24px;
  --container:1280px;
}

/* =========================================================
   Hero Section (#sec01) - Base & Layout
   ========================================================= */
.hero {
	background: linear-gradient(180deg, #0D2137 0%, #112B3C 60%, #081520 100%);
	color: #fff;
	position: relative;
}

@media only screen and (min-width: 641px) {
	.hero-grid {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 660px;
		position: relative;
		z-index: 2;
		width: 100%;
	}
}

.hero-left {
	max-width: 690px;
}

.hero-lineup {
	display: inline-flex;
	gap: 8px;
	height: 38px;
	margin-bottom: 15px;
	padding: 4px;
	border-radius: 38px;
	background: rgba(255, 255, 255, 0.08);
}

.hero-pill {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 54px;
	height: 30px;
	padding: 0 1em;
	border-radius: 30px;
	border: solid 1px rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
	font-weight: 700;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 640px) {
	.hero-pill {
		font-size: 10px;
	}
}

.hero-pill.active {
	border-color: transparent;
	background: rgba(255, 255, 255, 0.15);
	font-weight: 800;
	color: #fff;
}

.hero-product-label {
	font-weight: 600;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

.hero-product-name {
	margin-bottom: 15px;
	font-weight: 800;
	font-size: 46px;
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.5;
	color: #fff;
}

.hero-product-name .highlight {
	color: #7b2d8e;
}

.hero-sub-title {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 18px;
	font-size: clamp(15px, 3.6vw, 18px);
	line-height: 1.4;
	color: rgba(255, 255, 255, .85);
}

.hero-description {
	margin-bottom: 30px;
	font-size: clamp(14px, 3.6vw, 16px);
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.hero-description strong {
	color: rgba(255, 255, 255, 0.9);
}

.hero-trust {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 84px;
	margin-bottom: 20px;
	padding: 0 16px;
	border-left: 4px solid #7B2D8E;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
}

.hero-trust i {
	font-size: 18px;
	color: #7B2D8E;
	flex-shrink: 0;
}

.hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.hero-chip {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 7px 14px;
	border-radius: 20px;
	font-weight: 700;
	font-size: clamp(10px, 2.6vw, 13px);
}

.hero-chip.accent {
	border-color: rgba(123, 45, 142, .4);
	background: rgba(123, 45, 142, .2);
	color: #C084D8;
}

.hero-warn {
	margin-bottom: 15px;
	font-size: 12px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

.hero-warn strong {
	color: rgba(255, 255, 255, 0.9);
}

.hero-warn a {
	text-decoration: underline;
	color: #fff;
	cursor: pointer;
	transition: opacity .4s;
}

.hero-warn a:hover {
	opacity: 0.6;
}

.hero-btns {
	display: flex;
	gap: 10px;
}

.hero-btn-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 220px;
	padding: 16px 32px;
	border-radius: 8px;
	border: 2px solid rgba(255, 255, 255, .4);
	background: transparent;
	font-weight: 800;
	font-size: clamp(13px, 2.6vw, 16px);
	color: #fff;
	transition: .4s;
}

.hero-btn-download:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
}

.btn-btn-buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 220px;
	padding: 16px 32px;
	border-radius: 8px;
	background: #fff;
	font-weight: 800;
	font-size: clamp(13px, 2.6vw, 16px);
	color: #1a0020;
	transition: .4s;
}

.btn-btn-buy:hover {
	transform: translateY(-2px);
	background: #2563eb;
	color: #fff;
}

.product-hero-visual {
	padding: 40px;
	border-radius: 20px;
	border: solid 2px rgba(123, 45, 142, 0.35);
	background: rgba(255, 255, 255, 0.06);
	text-align: center;
	box-shadow: 0 0 30px rgba(123, 45, 142, 0.12);
}
@media only screen and (min-width: 641px) {
	.product-hero-visual {
		width: 530px;
		height: 500px;
	}
	.product-hero-package {
		height: 272px;
		padding-top: 15px;
	}
}

.hero-spec-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.hero-spec {
	height: 67px;
	padding: 11px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
}

.hero-spec-val {
	font-weight: 800;
	font-size: clamp(14px, 2.6vw, 18px);
	color: #7b2d8e;
}

.hero-spec-label {
	margin-top: 2px;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   common
   ========================================================= */

.st-section {
	padding: 50px 0;
	background: #fff;
}

.st-section.gray {
	background: #f9fafb;
}

.st-section.gray + .st-section.gray {
	border-top: solid 1px #e0e0e0;
	background: linear-gradient(to bottom, #fcfcfc 0%, #f9fafb 100%);
}

.st-section-head {
	margin-bottom: 34px;
	text-align: left;
}

.st-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 15px;
	padding: 5px 12px;
	border-radius: 999px;
	border: 1px solid var(--c-red);
	background: var(--c-red);
	text-transform: uppercase;
	font-weight: 800;
	font-size: 11.5px;
	letter-spacing: 0.08em;
	color: #fff;
}

.st-section-badge.outline {
	background: transparent;
	color: var(--c-red);
}

.st-section-badge.gray {
	border-color: #e5e7eb;
	background: #f3f4f6;
	color: #4a4a4a;
}

.st-h2 {
	margin-bottom: 20px;
	font-weight: 800;
	font-size: clamp(26px, 3.6vw, 36px);
	color: #111;
	letter-spacing: -.025em;
	line-height: 1.25;
}

.st-h2 .red {
	color: var(--c-red)
}

.st-section-desc {
	max-width: 680px;
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.65;
	color: #6b7280;
}

/* =========================================================
   trust
   ========================================================= */

.st-trust-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	margin-bottom: 24px
}

.st-trust-card {
	background: #fff;
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-lg);
	padding: 22px 18px;
	text-align: center;
	transition: .25s
}

.st-trust-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
	border-color: var(--c-red)
}

.st-trust-icon {
	width: 48px;
	height: 48px;
	background: var(--c-red-soft);
	color: var(--c-red);
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 20px;
	margin: 0 auto 10px
}

.st-trust-card h3 {
	font-size: 14.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.01em;
	margin-bottom: 4px
}

.st-trust-card p {
	font-size: 12.5px;
	color: var(--c-gray-500);
	font-weight: 600;
	line-height: 1.5
}

.st-trust-card a {
	color: var(--c-blue);
	font-weight: 700
}

.st-trust-banner {
	background: linear-gradient(135deg, #0a1d6e 0%, #050a30 100%);
	color: #fff;
	border-radius: var(--r-xl);
	padding: 24px 28px;
	text-align: center
}

.st-trust-banner h3 {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 6px
}

.st-trust-banner p {
	font-size: 13.5px;
	color: rgba(255, 255, 255, .92);
	line-height: 1.7;
	max-width: 880px;
	margin: 0 auto
}

/* =========================================================
   WHY
   ========================================================= */

.st-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px
}

.st-why-card {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-xl);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: .25s
}

.st-why-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
	border-color: var(--c-red)
}

.st-why-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-size: 22px
}

.st-why-icon.lavender {
	background: var(--c-purple-soft);
	color: var(--c-purple)
}

.st-why-icon.peach {
	background: var(--c-orange-soft);
	color: var(--c-orange)
}

.st-why-icon.mint {
	background: var(--c-mint-soft);
	color: var(--c-mint)
}

.st-why-icon.pink {
	background: var(--c-pink-soft);
	color: var(--c-pink)
}

.st-why-card h3 {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em;
	line-height: 1.3
}

.st-why-card p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.6
}

/* =========================================================
   interface
   ========================================================= */

.st-section-note {
	margin-top: 6px;
	font-weight: 700;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--c-amber);
}

@media only screen and (min-width: 641px) {
	.st-mode-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px
	}
}
.st-mc {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: .25s
}

.st-mc:hover {
	box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
	border-color: var(--c-red)
}

.st-mv {
	position: relative;
	background: var(--c-gray-100);
	overflow: hidden;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto
}

.st-mv img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.st-step-img-callout {
	position: absolute;
	background: var(--c-white);
	border: 2px solid var(--c-blue);
	color: var(--c-blue);
	font-size: 12.5px;
	font-weight: 800;
	padding: 8px 14px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
	z-index: 2;
	white-space: nowrap;
	letter-spacing: -.01em
}

.st-step-img-callout.c-blue {
	border-color: var(--c-blue);
	color: var(--c-blue)
}

.st-step-img-callout.c-green {
	border-color: var(--c-green);
	color: var(--c-green)
}

.st-step-img-callout.c-purple {
	border-color: var(--c-purple);
	color: var(--c-purple)
}

.st-step-img-callout.c-orange {
	border-color: var(--c-orange);
	color: var(--c-orange)
}
.st-mb {
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.st-mbd {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 999px;
	width: fit-content;
	letter-spacing: .02em
}

.st-mbd.bg {
	background: var(--c-blue-soft);
	color: var(--c-blue)
}

.st-mbd.ad {
	background: var(--c-purple-soft);
	color: var(--c-purple)
}

.st-mb h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em
}

.st-mb p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.65
}

.st-mode-details {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 6px
}

.st-mode-detail {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12.5px;
	color: var(--c-gray-700);
	line-height: 1.55
}

.st-mode-detail i {
	color: var(--c-green);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 4px
}

/* =========================================================
   usecase
   ========================================================= */

.st-emo-banner {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border: 1px solid #bfdbfe;
	border-radius: var(--r-xl);
	padding: 24px 28px;
	text-align: center;
	margin-bottom: 32px
}

.st-emo-banner h3 {
	font-size: 20px;
	font-weight: 800;
	color: var(--c-red);
	letter-spacing: -.02em;
	margin-bottom: 6px;
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.st-emo-banner h3 i {
	color: var(--c-red);
	font-size: 18px
}

.st-emo-banner p {
	font-size: 13.5px;
	color: var(--c-gray-700);
	line-height: 1.7
}

@media only screen and (min-width: 641px) {
	.st-scard-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px
	}
}

.st-scard {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-lg);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: .25s
}

.st-scard:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
	border-color: var(--c-red)
}

.st-scard-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 20px
}

.st-scard-icon.red {
	background: #fef3c7;
	color: #d97706
}

.st-scard-icon.blue {
	background: var(--c-blue-soft);
	color: var(--c-blue)
}

.st-scard-icon.purple {
	background: var(--c-purple-soft);
	color: var(--c-purple)
}

.st-scard-icon.orange {
	background: var(--c-orange-soft);
	color: var(--c-orange)
}

.st-scard-icon.green {
	background: var(--c-green-soft);
	color: var(--c-green)
}

.st-scard h3 {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em
}

.st-scard p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.65
}

/* =========================================================
   Features
   ========================================================= */

.st-feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px
}

.st-feat-card {
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-200);
	border-radius: var(--r-lg);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: .25s
}

.st-feat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
	border-color: var(--c-red)
}

.st-feat-icon {
	width: 46px;
	height: 46px;
	background: var(--c-red-soft);
	color: var(--c-red);
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 20px
}

.st-feat-card h3 {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--c-black);
	letter-spacing: -.02em
}

.st-feat-card p {
	font-size: 13px;
	color: var(--c-gray-700);
	line-height: 1.6
}

/* ═══ PRO License Compare (Toggle - Default Closed) ═══ */
.st-lic-compare {
	margin-top: 40px;
	border-radius: var(--r-md);
	overflow: hidden;
	border: 1px solid var(--c-gray-200)
}

.st-lic-compare summary::-webkit-details-marker {
	display: none
}

.st-lic-compare summary::marker {
	content: ""
}

.st-lic-head {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a3d7a 100%);
	color: #fff;
	padding: 16px 22px;
	font-size: 14px;
	font-weight: 800;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	letter-spacing: -.01em;
	cursor: pointer;
	list-style: none;
	transition: .25s;
}

.st-lic-head:hover {
	filter: brightness(1.1)
}

.st-lic-head i.k {
	font-size: 14px
}

.st-lic-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-left: auto;
	border-radius: 100%;
	background: rgba(255, 255, 255, .15);
	font-weight: 800;
	font-size: 13px;
	transition: .3s;
}

.st-lic-compare[open] .st-lic-icon {
	background: rgba(56, 189, 248, .25)
}

.st-lic-icon i {
	transition: .3s;
}

.st-lic-compare[open] .st-lic-icon i {
	transform: rotate(45deg);
}

.st-lic-pills {
	display: inline-flex;
	gap: 6px;
	flex-wrap: wrap
}

.st-lic-pill {
	background: rgba(255, 255, 255, .18);
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600
}

.st-lic-pill.expert {
	background: rgba(255, 255, 255, .32);
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, .3)
}

.st-lic-body {
	background: var(--c-white);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}

.st-lic-body::-webkit-scrollbar {
	height: 6px
}

.st-lic-body::-webkit-scrollbar-thumb {
	background: var(--c-gray-300);
	border-radius: 3px
}

.st-lic-tbl {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

@media only screen and (min-width: 641px) {
	.st-lic-tbl {
		min-width: 680px
	}
}

.st-lic-tbl th {
	background: var(--c-gray-50);
	padding: 12px 14px;
	text-align: left;
	font-weight: 800;
	color: var(--c-black);
	border-bottom: 2px solid var(--c-gray-200);
	font-size: 12.5px
}

.st-lic-tbl th:not(:first-child) {
	text-align: center
}

.st-lic-tbl td {
	padding: 11px 14px;
	border-bottom: 1px solid var(--c-gray-100);
	color: var(--c-gray-700);
	vertical-align: middle;
	font-size: 12.5px;
	line-height: 1.55
}

.st-lic-tbl td:not(:first-child) {
	text-align: center
}

.st-lic-tbl td:first-child {
	font-weight: 700;
	color: var(--c-black)
}

.st-lic-tbl tr.lic-grp td {
	background: var(--c-blue-soft);
	color: var(--c-blue);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .02em;
	padding: 9px 14px;
	text-align: left
}

.st-lic-tbl .sup {
	color: var(--c-green);
	font-weight: 800
}

.st-lic-tbl .partial {
	color: var(--c-amber);
	font-weight: 700;
	font-size: 11.5px
}

.st-lic-tbl .unsup {
	color: var(--c-gray-400);
	font-weight: 600
}

.st-lic-tbl .note-cell {
	font-size: 11px;
	color: var(--c-gray-500);
	font-weight: 500;
	margin-top: 3px;
	line-height: 1.5
}

/* =========================================================
   SPECIFICATIONS
   ========================================================= */

.st-spec-grid-x {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}.st-spec-card{background:var(--c-white);border:1.5px solid var(--c-gray-200);border-radius:var(--r-lg);overflow:hidden}
.st-spec-card.full{grid-column:1/-1}
.st-spec-card-head{background:var(--c-gray-50);padding:14px 18px;font-size:14px;font-weight:800;color:var(--c-black);display:flex;align-items:center;gap:8px;border-bottom:1px solid var(--c-gray-200);letter-spacing:-.01em}
.st-spec-card-head i{color:var(--c-red);font-size:15px}
.st-spec-card-body{padding:14px 18px}
.st-spec-table{width:100%;border-collapse:collapse;font-size:13px}
.st-spec-table td{padding:9px 0;border-bottom:1px solid var(--c-gray-100);vertical-align:top;line-height:1.6}
.st-spec-table tr:last-child td{border-bottom:0}
.st-spec-table td:first-child{font-weight:700;color:var(--c-black);width:130px;padding-right:12px;white-space:nowrap}
.st-spec-table td:nth-child(2){color:var(--c-gray-700)}
.st-spec-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px
}

.st-spec-pill {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 11px;
	background: var(--c-gray-100);
	color: var(--c-gray-700);
	border-radius: 999px
}

.st-enc-card .st-spec-pill {
	flex: 1 1 auto;
	justify-content: center;
	white-space: nowrap;
	text-align: center;
}

.st-sym-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px
}

.st-sym-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 13px;
	background: var(--c-gray-50);
	border: 1px solid var(--c-gray-200);
	border-radius: var(--r-md);
	transition: .2s
}

.st-sym-item:hover {
	background: var(--c-white);
	border-color: var(--c-red);
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(15, 23, 42, .05)
}

.st-sym-icon {
	width: 30px;
	height: 30px;
	background: var(--c-white);
	color: var(--c-red);
	border: 1.5px solid var(--c-red-soft);
	border-radius: 8px;
	display: grid;
	place-items: center;
	font-size: 13px;
	flex-shrink: 0
}

.st-sym-name {
	font-size: clamp(11.5px, 1.6vw, 12.5px);
	font-weight: 700;
	color: var(--c-black);
	letter-spacing: -.01em;
	line-height: 1.3
}

.st-fs-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	margin-bottom: 14px
}
.st-fs-item{padding:10px 12px;background:var(--c-gray-50);border:1px solid var(--c-gray-200);border-radius:var(--r-sm);text-align:left}
.st-fs-name{font-size:12.5px;font-weight:800;color:var(--c-black);display:flex;align-items:center;gap:6px;margin-bottom:2px}
.st-fs-name i{color:var(--c-red);font-size:11px}
.st-fs-desc{font-size:11px;color:var(--c-gray-500);font-weight:600}
.st-fs-toggle{width:100%;padding:11px 14px;background:var(--c-red-soft);border:1px solid #d4c2e8;color:var(--c-red);font-size:13px;font-weight:800;border-radius:var(--r-sm);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:.2s;letter-spacing:-.01em}
.st-fs-toggle:hover{background:var(--c-red);color:#fff}
.st-fs-toggle i{transition:.3s}
.st-fs-toggle.open i{transform:rotate(180deg)}
.st-fs-detail{max-height:0;overflow:hidden;transition:max-height .4s ease}
.st-fs-detail.show{max-height:1000px;margin-top:14px}
.st-fs-badge{display:inline-flex;align-items:center;font-size:10.5px;font-weight:800;padding:3px 8px;border-radius:5px;margin-right:6px;letter-spacing:.02em}
.st-fs-badge.full{background:var(--c-green-soft);color:var(--c-green)}
.st-fs-badge.partial{background:var(--c-amber-soft);color:var(--c-amber)}

.st-spec-list-group{margin-top:18px;display:flex;flex-direction:column;gap:8px}
.st-spec-item{background:var(--c-white);border:1px solid var(--c-gray-200);border-radius:var(--r-md);overflow:hidden;transition:.2s}
.st-spec-item[open]{border-color:var(--c-blue);box-shadow:0 4px 12px rgba(15,23,42,.04)}
.st-spec-item summary{list-style:none}
.st-spec-item summary::-webkit-details-marker{display:none}
.st-spec-item summary::marker{content:""}
.st-spec-summary{
  padding:14px 18px;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  font-size:13.5px;font-weight:700;color:var(--c-black);
  letter-spacing:-.01em;transition:.2s;
}
.st-spec-summary:hover{background:var(--c-gray-50)}
.st-spec-summary i{
  font-size:12px;color:var(--c-gray-500);
  width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:50%;background:var(--c-gray-100);transition:.3s;flex-shrink:0;
}
.st-spec-item[open] .st-spec-summary i{transform:rotate(45deg);background:var(--c-blue);color:#fff}
.st-spec-item[open] .st-spec-summary{color:var(--c-blue)}
.st-spec-content{
  padding:0 18px 16px;border-top:1px solid var(--c-gray-100);
  animation:specFadeIn .25s ease;
}
@keyframes specFadeIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}

.st-spec-subtitle {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--c-gray-100);
	font-weight: 800;
	font-size: 13px;
	color: var(--c-black);
}
/* ═══ 대응 장치 - 아이콘 그리드 ═══ */
.st-dev-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.st-dev-item {
	padding: 12px 14px;
	background: var(--c-gray-50);
	border: 1px solid var(--c-gray-200);
	border-radius: var(--r-md);
	transition: .2s
}
@media only screen and (min-width: 641px) {
	.st-dev-item {
		display: flex;
		align-items: flex-start;
		gap: 11px;
	}
}
.st-dev-item:hover{background:var(--c-white);border-color:var(--c-red);transform:translateY(-1px);box-shadow:0 4px 12px rgba(15,23,42,.06)}
.st-dev-icon{width:38px;height:38px;background:var(--c-red-soft);color:var(--c-red);border-radius:9px;display:grid;place-items:center;font-size:16px;flex-shrink:0}
.st-dev-text{flex:1;min-width:0}
.st-dev-name{font-size:13px;font-weight:800;color:var(--c-black);margin-bottom:2px;letter-spacing:-.01em}
.st-dev-desc{font-size:11.5px;color:var(--c-gray-500);line-height:1.45;font-weight:500}

/* ═══ PRO Filesystem Matrix ═══ */
.st-fs-matrix-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px
}

.st-fs-matrix-btn {
	padding: 8px 14px;
	background: var(--c-white);
	border: 1.5px solid var(--c-gray-300);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-gray-700);
	cursor: pointer;
	transition: .2s
}

.st-fs-matrix-btn:hover {
	border-color: var(--c-red);
	color: var(--c-red)
}

.st-fs-matrix-btn.active {
	background: var(--c-red);
	border-color: var(--c-red);
	color: #fff;
	box-shadow: 0 4px 12px rgba(18, 81, 163, .25)
}

.st-fs-matrix {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px
}

.st-fs-matrix-cell {
	background: var(--c-gray-50);
	border: 1px solid var(--c-gray-200);
	border-radius: var(--r-sm);
	padding: 11px 12px;
	transition: .2s;
	position: relative;
	overflow: hidden
}

.st-fs-matrix-cell.disabled {
	opacity: .35;
	background: var(--c-gray-100)
}

.st-fs-matrix-cell.disabled::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(15, 23, 42, .04) 4px, rgba(15, 23, 42, .04) 8px)
}

.st-fs-matrix-cell b {
	font-size: 12.5px;
	font-weight: 800;
	color: var(--c-black);
	display: flex;
	align-items: center;
	gap: 5px;
	letter-spacing: -.01em
}

.st-fs-matrix-cell b i {
	font-size: 11px;
	color: var(--c-gray-500);
	color: var(--c-red);
}

.st-fs-matrix-cell.disabled b i {
	color: var(--c-gray-500);
}

.st-fs-matrix-cell span {
	font-size: 10.5px;
	color: var(--c-gray-500);
	display: block;
	margin-top: 2px
}

/* ═══ Device Grid ═══ */
.st-dev-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:10px;margin-bottom:16px}
.st-dev-card{background:var(--c-white);border:1.5px solid var(--c-gray-200);border-radius:var(--r-sm);padding:18px 10px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;transition:.25s;text-align:center}
.st-dev-card:hover{border-color:var(--c-blue);transform:translateY(-3px);box-shadow:0 6px 16px rgba(15,23,42,.06)}
.st-dev-card i{font-size:22px;color:var(--c-black)}
.st-dev-card span{font-size:12.5px;font-weight:700;color:var(--c-black)}
.st-info-box{background:var(--c-gray-50);border:1px solid var(--c-gray-200);border-left:3px solid var(--c-red);padding:14px 18px;border-radius:0 var(--r-sm) var(--r-sm) 0;font-size:12.5px;color:var(--c-gray-700);line-height:1.85}
.st-info-box strong{color:var(--c-black);font-weight:800}

/* ═══ File Group / Chip ═══ */
.st-file-group{margin-bottom:18px}
.st-file-group:last-child{margin-bottom:0}
.st-file-group-title{font-size:13.5px;font-weight:800;color:var(--c-black);margin-bottom:10px;display:flex;align-items:center;gap:7px;letter-spacing:-.01em}
.st-file-group-title i{font-size:14px}
.st-file-group-title .c-blue{color:var(--c-blue)}
.st-file-group-title .c-teal{color:var(--c-mint)}
.st-file-group-title .c-purple{color:var(--c-purple)}
.st-file-grid{display:flex;flex-wrap:wrap;gap:7px}
.st-file-chip{background:var(--c-gray-50);border:1px solid var(--c-gray-200);padding:7px 13px;border-radius:999px;display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--c-gray-700)}
.st-file-chip i{font-size:11px}
.st-file-chip .c-gray{color:var(--c-gray-500)}
.st-file-chip .c-orange{color:var(--c-orange)}
.st-file-chip .c-purple{color:var(--c-purple)}

/* =========================================================
   Choose
   ========================================================= */

.st-ch-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px
}.st-ch-card{border-radius:var(--r-xl);padding:24px 22px;display:flex;flex-direction:column;gap:14px}
.st-ch-card.yes{background:var(--c-green-soft);border:1.5px solid #a7f3d0}
.st-ch-card.no{background:var(--c-amber-soft);border:1.5px solid #fde68a}
.st-ch-card h3{font-size:17px;font-weight:800;color:var(--c-black);letter-spacing:-.02em;display:flex;align-items:center;gap:8px}
.st-ch-card.yes h3 i{color:var(--c-green);font-size:18px}
.st-ch-card.no h3 i{color:var(--c-amber);font-size:16px}
.st-ch-list{display:flex;flex-direction:column;gap:8px}
.st-ch-item{display:flex;align-items:flex-start;gap:9px;font-size:13.5px;color:var(--c-gray-700);line-height:1.6}
.st-ch-item i{font-size:13px;flex-shrink:0;margin-top:3px}
.st-ch-item .ck{color:var(--c-green)}
.st-ch-item .xk{color:var(--c-red)}
.st-ch-card-link{margin-top:8px}
.st-ch-card-link a{color:var(--c-amber-dark,#b45309);font-weight:700;font-size:13px;text-decoration:underline;text-underline-offset:3px}

/* =========================================================
   RECOVERY RATE
   ========================================================= */
.st-rt-wrap{background:var(--c-white);border-radius:var(--r-xl);overflow:hidden;border:1.5px solid var(--c-gray-200)}
.st-rt{width:100%;border-collapse:collapse;font-size:13px;table-layout:fixed}
.st-rt thead{background:var(--c-gray-50)}
.st-rt th {
	padding: 12px 14px;
	text-align: left;
	font-weight: 800;
	font-size: 12.5px;
	white-space: nowrap;
	color: var(--c-black);
	border-bottom: 2px solid var(--c-gray-200);
	letter-spacing: -.01em
}
.st-rt th.w22 {
	width: 22%;
}

.st-rt th.w18 {
	width: 18%;
}

.st-rt td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--c-gray-100);
	color: var(--c-gray-700);
	line-height: 1.55;
	vertical-align: middle;
	font-size: 12.5px
}

.st-rt tr:last-child td {
	border-bottom: 0
}

.st-rt td:first-child {
	font-weight: 700;
	color: var(--c-black);
	word-break: keep-all
}.st-stars {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
	font-size: 13px;
	letter-spacing: 1px;
	color: #fbbf24;
}
.st-sl {
	display: inline-block;
	vertical-align: top;
	width: 56px;
	text-align: center;
	font-size: 10.5px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 5px;
	letter-spacing: .02em
}
.st-sl.h{background:var(--c-green-soft);color:var(--c-green)}
.st-sl.m{background:var(--c-blue-soft);color:var(--c-blue)}
.st-sl.l{background:rgba(196, 30, 58, 0.1);color:#c41e3a}
.st-rt-foot{margin-top:14px;font-size:12px;color:var(--c-gray-500);text-align:center}
.st-mobile-hint{display:none;font-size:11.5px;color:var(--c-gray-500);text-align:center;margin-bottom:10px;font-weight:600}

/* =========================================================
   HOW TO USE
   ========================================================= */
.st-step-tabs{display:flex;gap:6px;background:var(--c-gray-100);padding:6px;border-radius:var(--r-md);margin-bottom:24px;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.st-step-tabs::-webkit-scrollbar{display:none}
.st-step-tab-btn{flex:1;padding:11px 14px;background:transparent;border:0;border-radius:var(--r-sm);font-size:13px;font-weight:700;color:var(--c-gray-500);cursor:pointer;transition:.2s;white-space:nowrap;letter-spacing:-.01em;min-width:max-content}
.st-step-tab-btn:hover{color:var(--c-black);background:rgba(255,255,255,.5)}
.st-step-tab-btn.active{background:var(--c-white);color:var(--c-red);box-shadow:0 2px 8px rgba(15,23,42,.08);font-weight:800}
/* ═══ Step content - PC: 모든 step이 같은 grid cell에 stack 되어 높이 통일 ═══ */
.st-step-slider{display:grid}
.st-step-content{
  display:flex;
  flex-direction:column;
  grid-column:1;
  grid-row:1;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
}
.st-step-content.active{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}
@keyframes stFadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

/* ═══ HOW TO USE 5단계 - 모바일 가로 스크롤 슬라이드 ═══ */
.st-step-slider {
    display: grid;
}
.st-step-content {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.st-step-content.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.st-step-display {
	overflow: hidden;
	border-radius: 20px;
	border: 1.5px solid #fecaca;
	background: linear-gradient(135deg, var(--c-red-soft) 0%, #fffafa 50%, #fff 100%);
}
@media only screen and (min-width: 641px) {
	.st-step-display {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-flow: row-reverse;
		flex-wrap: wrap;
		padding: 36px 36px 0;
	}
}

.st-step-img {
	display: flex;
	align-items: center;
	overfow: hidden;
	position: relative;
	z-index: 0;
}
@media only screen and (min-width: 641px) {
	.st-step-img {
		width: 645px;
		height: 476px;
	}
}

.st-step-img img {
	width: 100%;
	height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .1);
}

.st-step-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
@media only screen and (min-width: 641px) {
	.st-step-info {
		display: flex;
		flex-direction: column;
		gap: 16px;
		width: 480px;
	}
}

.st-step-num {
    width: fit-content;
    background: var(--c-red);
    color: #fff;
    border-radius: 6px;
    padding: 5px 13px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
}

.st-step-num::before {
    content: "STEP ";
}

.st-step-text {
    flex: initial;
    width: 100%;
    min-width: 0;
}

.st-step-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-black);
    letter-spacing: -.025em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.st-step-text p {
    font-size: 15px;
    color: var(--c-gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.st-step-text p strong {
    color: var(--c-black);
    font-weight: 700;
}

.st-step-tip {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(15, 76, 129, .22);
    border-left: 3px solid var(--c-red);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    font-size: 13px;
    color: var(--c-gray-700);
    line-height: 1.6;
}

.st-step-tip strong {
    color: var(--c-red);
    font-weight: 800;
}

.st-step-nav {
    grid-area: nav;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;

    padding: 16px 0;
    border-top: 1px solid rgba(15, 76, 129, .18);
    background: transparent;
    margin-top: 24px;
}

.standard-root button {
    font-family: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.st-step-nav-btn {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
	white-space: nowrap;
}

.st-step-nav-btn:disabled {
	opacity: 0.2;
}

/* =========================================================
   Trial vs Full
   ========================================================= */

.st-cpt-wrap{background:var(--c-white);border-radius:var(--r-xl);overflow:hidden;border:1.5px solid var(--c-gray-200)}
.st-cpt{width:100%;border-collapse:collapse;font-size:13.5px;table-layout:fixed}
.st-cpt thead{background:var(--c-gray-50)}
.st-cpt th{padding:14px 16px;text-align:center;font-weight:800;font-size:13px;color:var(--c-black);border-bottom:2px solid var(--c-gray-200)}
.st-cpt th:first-child{text-align:left}
.st-cpt td{padding:14px 16px;border-bottom:1px solid var(--c-gray-100);color:var(--c-gray-700);vertical-align:middle;text-align:center;word-break:keep-all}
.st-cpt tr:last-child td{border-bottom:0}
.st-cpt td:first-child{font-weight:700;color:var(--c-black);background:var(--c-gray-50);text-align:left}
.st-cpt .ok{color:var(--c-green);font-weight:800}
.st-cpt .no{color:var(--c-red);font-weight:800}
.st-cpt .nt{color:var(--c-gray-500);font-size:12.5px}
.st-cpt-note{margin-top:12px;font-size:12px;color:var(--c-gray-500);text-align:center}

/* =========================================================
   LINEUP
   ========================================================= */
.st-lut-wrap{background:var(--c-white);border-radius:var(--r-xl);overflow:hidden;border:1.5px solid var(--c-gray-200)}
.st-lut{width:100%;border-collapse:collapse;font-size:13.5px;table-layout:fixed}
.st-lut thead{background:var(--c-gray-50)}
.st-lut th {
	padding: 14px 16px;
	text-align: center;
	font-weight: 800;
	font-size: 13px;
	color: var(--c-black);
	border-bottom: 2px solid var(--c-gray-200);
	letter-spacing: -.01em
}
.st-lut th:first-child{text-align:left}
.st-lut th.cr{background:var(--c-red-soft);color:var(--c-red)}
.st-lut td {
	padding: 13px 16px;
	border-bottom: 1px solid var(--c-gray-100);
	color: var(--c-gray-700);
	vertical-align: middle;
	text-align: center;
	word-break: keep-all
}
.st-lut tr:last-child td{border-bottom:0}
.st-lut td:first-child{font-weight:700;color:var(--c-black);background:var(--c-gray-50);text-align:left}
.st-lut td.cr{background:var(--c-red-soft);font-weight:800;color:var(--c-red)}
.st-lut .ok{color:var(--c-green);font-weight:800}
.st-lut .no{color:var(--c-gray-400);font-weight:600}
.st-cb{display:flex;gap:11px;align-items:flex-start;background:var(--c-blue-soft);border:1px solid #bfdbfe;border-radius:var(--r-md);padding:14px 18px;font-size:13.5px;color:var(--c-gray-700);line-height:1.65;max-width:880px;margin:20px auto 0}
.st-cb i{color:var(--c-blue);font-size:16px;flex-shrink:0;margin-top:2px}
.st-cb strong{color:var(--c-black);font-weight:800}
.st-lut-link{text-align:center;margin-top:18px;font-size:13.5px}
.st-lut-link a{color:var(--c-black);font-weight:800;text-decoration:underline;text-underline-offset:3px}

/* =========================================================
   LICENSE
   ========================================================= */
.st-pricing-note{text-align:center;font-size:12.5px;color:var(--c-gray-500);font-weight:600;margin-bottom:24px}
@media only screen and (min-width: 641px) {
	.st-pcg{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;padding-top:14px}
}
.st-pcc{background:var(--c-white);border:2px solid var(--c-gray-200);border-radius:var(--r-xl);overflow:visible;display:flex;flex-direction:column;transition:.3s;position:relative}
.st-pcc:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(15,23,42,.1)}
.st-pcc.ft{border-color:var(--c-red);box-shadow:0 8px 24px rgba(18,81,163,.15)}
.st-pc-banner{padding:18px 20px;color:#fff;display:flex;align-items:center;gap:12px;position:relative;min-height:80px;border-top-left-radius:calc(var(--r-xl) - 2px);border-top-right-radius:calc(var(--r-xl) - 2px)}
.st-pc-banner.home-bg{background:linear-gradient(135deg,#3f1f63 0%,#1a0830 100%)}
.st-pc-banner.biz-bg{background:linear-gradient(135deg,#172554 0%,#1e3a8a 100%)}
.st-pc-banner.exp-bg{background:linear-gradient(135deg,#0a0a0a 0%,#1f2937 100%)}
.st-pc-rec-tag{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#fbbf24;color:#0a0a0a;font-size:11px;font-weight:800;padding:5px 14px;border-radius:999px;letter-spacing:.02em;box-shadow:0 4px 12px rgba(251,191,36,.5);z-index:10;white-space:nowrap}
.st-pc-best-tag{position:absolute;top:14px;right:14px;background:rgba(255,255,255,.9);color:var(--c-blue);font-size:10px;font-weight:800;padding:3px 8px;border-radius:5px;letter-spacing:.04em}
.st-pc-banner-icon{width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.18);color:#fff;display:grid;place-items:center;font-size:18px;flex-shrink:0}
.st-pc-banner-name{font-size:15px;font-weight:800;letter-spacing:-.01em;line-height:1.3}
.st-pc-banner-sub{font-size:11.5px;color:rgba(255,255,255,.85);font-weight:600;margin-top:1px}
.st-pc-body{padding:22px 22px 24px;display:flex;flex-direction:column;gap:10px;flex:1}
.st-pc-license-tag{font-size:11px;font-weight:800;color:var(--c-gray-500);letter-spacing:.06em;text-transform:uppercase}
.st-pc-headline{font-size:11.5px;color:var(--c-red);font-weight:700;line-height:1.55}
.st-pc-title{font-size:18px;font-weight:800;color:var(--c-black);letter-spacing:-.02em;line-height:1.3}
.st-pc-desc{font-size:12.5px;color:var(--c-gray-700);line-height:1.6;flex:1}
.st-pc-target{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:var(--c-black);background:var(--c-gray-50);padding:7px 11px;border-radius:var(--r-sm);width:fit-content}
.st-pc-target i{color:var(--c-red)}
.st-pc-tags{display:flex;flex-wrap:wrap;gap:4px}
.st-pc-tag{display:inline-flex;align-items:center;font-size:10.5px;font-weight:700;color:var(--c-gray-700);background:var(--c-gray-100);padding:3px 8px;border-radius:5px}
.st-pc-features{display:flex;flex-direction:column;gap:6px;padding:10px 0;border-top:1px solid var(--c-gray-100);border-bottom:1px solid var(--c-gray-100)}
.st-pc-feat{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;color:var(--c-gray-700);line-height:1.5}
.st-pc-feat i{font-size:11px;flex-shrink:0;margin-top:3px}
.st-pc-feat .ck{color:var(--c-green)}
.st-pc-feat .mn{color:var(--c-gray-400)}
.st-pc-price-box{text-align:center;padding:6px 0}
.st-pc-price{font-size:28px;font-weight:800;color:var(--c-black);letter-spacing:-.02em;line-height:1.2}
.st-pc-price .unit{font-size:14px;font-weight:700;color:var(--c-gray-500);margin-left:3px}
.st-pc-price-sub{font-size:11.5px;color:var(--c-gray-500);font-weight:600;margin-top:2px}
.st-pc-actions{display:flex;gap:6px;margin-top:4px}
.st-btn-b{flex:1;padding:11px 14px;background:var(--c-red);color:#fff !important;border:1.5px solid var(--c-red);border-radius:var(--r-sm);font-size:13px;font-weight:800;display:inline-flex;align-items:center;justify-content:center;gap:6px;transition:.2s;text-decoration:none}
.st-btn-b:hover{background:var(--c-red-dark);border-color:var(--c-red-dark)}
.st-btn-t{padding:11px 14px;background:var(--c-white);color:var(--c-black) !important;border:1.5px solid var(--c-gray-300);border-radius:var(--r-sm);font-size:13px;font-weight:800;display:inline-flex;align-items:center;justify-content:center;gap:6px;transition:.2s;text-decoration:none;flex-shrink:0}
.st-btn-t:hover{border-color:var(--c-red);color:var(--c-red) !important}

/* =========================================================
   FAQ
   ========================================================= */
.st-faq-list{display:flex;flex-direction:column;gap:10px;max-width:840px;margin:0 auto}
.st-faq{background:var(--c-white);border:1.5px solid var(--c-gray-200);border-radius:var(--r-md);overflow:hidden;transition:.2s}
.st-faq[open]{border-color:var(--c-red);box-shadow:0 4px 16px rgba(18,81,163,.08)}
.st-faq summary{padding:16px 20px;font-size:14px;font-weight:700;color:var(--c-black);cursor:pointer;display:flex;align-items:center;gap:12px;list-style:none;transition:.2s;letter-spacing:-.01em}
.st-faq summary::-webkit-details-marker{display:none}
.st-faq summary::before{content:'\f067';font-family:'Font Awesome 6 Free';font-weight:900;font-size:11px;color:var(--c-red);width:24px;height:24px;background:var(--c-red-soft);border-radius:6px;display:grid;place-items:center;flex-shrink:0;transition:.2s}
.st-faq[open] summary::before{content:'\f068';background:var(--c-red);color:#fff}
.st-faq summary:hover{background:var(--c-gray-50)}
.st-faq-ans{padding:0 20px 18px 56px;font-size:13.5px;color:var(--c-gray-700);line-height:1.7}
.st-faq-ans strong{color:var(--c-black);font-weight:800}

/* =========================================================
   FINAL STEP
   ========================================================= */
.st-final-cta {
	max-width: 1000px;
	overflow: hidden;
	margin: 60px auto 90px;
	padding: 56px 40px;
	border-radius: var(--r-xl);
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a3d7a 100%);
	text-align: center;
	color: #fff;
	position: relative;
}

.st-final-kicker {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	color: #fbbf24;
	letter-spacing: .16em;
	margin-bottom: 14px
}

.st-final-cta h2 {
	font-weight: 800;
	font-size: clamp(20px, 3.6vw, 30px);
	color: #fff;
	letter-spacing: -.025em;
	line-height: 1.3;
	margin-bottom: 14px
}

.st-final-cta h2 .blue {
	color: var(--c-red-soft)
}

.st-final-cta>p {
	font-size: 14px;
	color: rgba(255, 255, 255, .78);
	line-height: 1.75;
	max-width: 680px;
	margin: 0 auto 28px
}

.st-final-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px
}

.st-final-extra {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .12)
}

.st-final-extra p {
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
	margin-bottom: 14px
}

.st-final-extra-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 22px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .18);
	color: rgba(255, 255, 255, .85);
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	cursor: not-allowed;
	opacity: .7
}

.st-final-extra-btn i {
	color: #38bdf8
}

.st-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 800;
    transition: .2s;
    min-height: 44px;
    cursor: pointer;
    letter-spacing: -.01em;
}

.st-hero-btn.primary {
    background: var(--c-red);
    color: #fff;
    border: 1px solid var(--c-red);
    box-shadow: 0 4px 12px rgba(91, 45, 142, .3);
}

.st-hero-btn.primary:hover {
	background: var(--c-red-soft);
	border-color: var(--c-red-soft);
	transform: translateY(-1px)
}
.st-hero-btn.ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.st-hero-btn.ghost:hover {
	background: rgba(255, 255, 255, .15);
	transform: translateY(-1px)
}

/* ═══ CTA Section ═══ */
.st-cta {
	max-width: 1000px;
	overflow: hidden;
	margin: 60px auto 90px;
	padding: 56px 40px;
	border-radius: var(--r-xl);
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a3d7a 100%);
	text-align: center;
	color: #fff;
	position: relative;
}

.st-cta h2 {
	font-size: clamp(22px, 3.6vw, 30px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -.025em;
	line-height: 1.25;
	margin-bottom: 12px
}

.st-cta h2 .blue {
	background: linear-gradient(120deg, #c084fc 0%, #FFD700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent
}

.st-cta p {
	font-size: 14.5px;
	color: rgba(255, 255, 255, .85);
	line-height: 1.7;
	max-width: 640px;
	margin: 0 auto 22px
}

.st-cta-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center
}

/* =========================================================
   mobile
   ========================================================= */
@media only screen and (max-width: 640px) {

	.m-slider-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-top: 10px;
		padding: 0 5vw;
	}

	.m-slider-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-top: 10px;
		padding: 0 5vw;
	}

	.m-slider-controls .msc-counter {
		font-size: 14px;
		font-weight: 800;
		color: #1d1d1f;
		letter-spacing: 0.02em;
		font-variaht-numeric: tabular-nums;
		min-width: 48px;
		text-align: left;
		flex-shrink: 0;
	}

	.m-slider-controls .msc-counter .msc-total {
		color: #9ca3af;
		font-weight: 600;
	}

	.m-slider-controls .msc-dots {
		display: flex;
		flex: 1;
		gap: 6px;
		justify-content: center;
		align-items: center;
		min-width: 0;
		flex-wrap: nowrap;
		overflow: hidden;
	}

	.m-slider-controls .msc-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #d1d5db;
		transition: all .3s ease;
		cursor: pointer;
		flex-shrink: 0;
	}

	.m-slider-controls .msc-dot.active {
		background: #4aa136;
		width: 18px;
		border-radius: 3px;
	}

	.m-slider-controls .msc-btns {
		display: flex;
		gap: 8px;
		flex-shrink: 0;
	}

	.m-slider-controls .msc-btn {
		width: 44px;
		height: 44px;
		border-radius: 50%;
		border: 1.5px solid #e2e8f0;
		background: #fff;
		color: #1d1d1f;
		font-size: 18px;
		font-weight: 700;
		line-height: 1;
		padding: 0;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all .2s ease;
		-webkit-tap-highlight-color: transparent;
	}

	.m-slider-controls .msc-btn:active:not(:disabled) {
		transform: scale(.92);
		background: #eff6ff;
		border-color: #0070d1;
		color: #0070d1;
	}

	.m-slider-controls .msc-btn:disabled {
		opacity: .35;
		cursor: not-allowed;
	}

	.hero-grid {
		padding: 40px 5vw;
		text-align: center;
	}

	.hero-left {
		margin-bottom: 40px;
	}

	.hero-product-label {
		margin-bottom: 15px;
	}

	.hero-trust {
		height: auto;
		padding: 16px;
	}

	.hero-chips {
		justify-content: center;
	}

	.hero-chip {
		padding: 4px 9px;
	}

	.hero-btns {
		justify-content: space-between;
	}

	.hero-btn-download {
		min-width: 48%;
		padding: 14px 10px;
	}

	.btn-btn-buy {
		min-width: 48%;
		padding: 14px 10px;
	}

	.product-hero-visual {
		padding: 20px;
	}

	.product-hero-package {
		margin-bottom: 20px;
	}

	.product-hero-package img {
		width: auto;
		height: 172px;
		aspect-ratio: 118 / 217;
		object-fit: cover;
	}

	.st-section {
		padding: 50px 5vw;
	}

	.st-section-head {
		text-align: center;
	}

	.st-trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.st-why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.st-why-card {
		text-align: center;
	}

	.st-why-icon {
		margin: 0 auto 10px;
	}

	.st-scard-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.st-scard {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		padding: 5vw;
	}

	.st-ch-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 18px
	}

	.st-rt th {
		padding: 12px 5px;
		text-align: center;
	}

	.st-rt th.w22 {
		width: 26%;
	}

	.st-rt th.w18 {
		width: 22%;
	}

	.st-rt td {
		padding: 12px 5px;
		text-align: center;
	}

	.st-rt td:first-child {
		padding-left: 12px;
		text-align: left;
	}

	.st-rt td:last-child {
		padding: 12px;
		text-align: left;
	}

	.st-step-tab-btn {
		font-size: 12px;
		padding: 9px 12px;
	}

	.st-step-slider {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		gap: 12px;
		padding: 4px 16px 14px;
		margin: 0 -16px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		cursor: grab;
		user-select: none;
	}

	.st-step-content {
		display: flex;
		flex-direction: column;
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		flex: 0 0 calc(100% - 24px);
		min-width: 0;
		scroll-snap-align: center;
		scroll-snap-stop: always;
		animation: none;
		margin: 0;
	}

	.st-step-display {
		display: flex;
		flex-direction: column;
		grid-template-columns: none;
		grid-template-areas: none;
		flex-grow: 1;
		background: var(--c-white);
		border: 1.5px solid var(--c-gray-200);
		border-radius: var(--r-xl);
		padding: 0;
		gap: 0;
	}

	.st-step-img-callout {
		font-size: 10px;
		padding: 5px 8px;
		gap: 4px;
		white-space: normal;
		line-height: 1.3;
		text-align: center;
	}

	.st-step-info {
		padding: 18px 20px;
		gap: 12px;
		flex-direction: column;
		align-items: flex-start;
		flex: 1 1 auto;
		min-height: 0;
	}

	.st-step-num {
		width: 36px;
		height: 36px;
		font-size: 16px;
		padding: 0;
		border-radius: 50%;
		text-align: center;
		line-height: 36px;
	}

	.st-step-num::before {
		content: "";
	}

	.st-step-text h3 {
		font-size: 15.5px;
	}

	.st-step-text p {
		font-size: 13px;
	}

	.st-step-tip {
		background: var(--c-blue-soft);
		border: 1px solid #bfdbfe;
		border-left-width: 1px;
		font-size: 12px;
		padding: 9px 12px;
	}

	.st-step-nav {
		padding: 11px 18px;
		background: transparent;
		border-top: 1px solid var(--c-gray-100);
		flex: 0 0 auto;
		margin-top: auto;
		font-size: 13px;
	}

	.st-step-nav-btn {
		font-size: 13px;
	}

	.st-why-grid,
	.st-feat-grid {
		grid-template-columns: 1fr 1fr;
	}

	.st-feat-card {
		padding: 18px;
		text-align: center;
	}

	.st-feat-icon {
		margin: 0 auto 5px;
	}

	.st-mode-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.st-mc {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.st-spec-grid-x {
		grid-template-columns: 1fr;
	}

	.st-dev-item {
		text-align: center;
	}

	.st-dev-icon {
		width: 34px;
		height: 34px;
		font-size: 15px;
		margin: 0 auto 10px;
	}

	.st-fs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.st-spec-table td {
		display: block;
		padding: 0;
		border-bottom: 1px solid var(--c-gray-200);
		line-height: 1.3;
	}

	.st-spec-table td:first-child {
		width: auto;
		display: block;
		padding: 12px 0 5px;
		border-bottom: 0;
	}

	.st-spec-table td:last-child {
		padding: 0 0 10px;
	}

	.st-fs-detail.show {
		max-height: 2000px;
	}

	.st-lut th {
		padding: 14px 0;
	}

	.st-lut th:first-child {
		text-align: center
	}

	.st-lut td {
		font-size: 13px;
	}

	.st-pcg {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		padding: 15px 0;
		position: relative;
	}

	.st-pcc {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-shadow: none;
	}

	.st-pcc.ft {
		box-shadow: none;
	}

	.st-cta {
		margin: 50px 5vw 50px;
		padding: 40px 5vw;
	}

	.st-hero-btn {
		justify-content: center;
		width: 90%;
	}

	.st-enc-card .st-spec-pill {
		flex: 0 0 auto;
	}

	.st-final-cta {
		margin: 50px 5vw 50px;
		padding: 40px 5vw;
	}

}

/* セクション全体 */
.bb-usecases-section {
	background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

/* グリッドレイアウト */
.bb-usecases-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 32px;
}

/* 通常カードスタイル */
.bb-usecases-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px 16px;
	text-align: center;
	transition: all .2s ease;
}

@media only screen and (max-width: 640px) {
	.bb-usecases-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-usecases-card {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
}

.bb-usecases-card .bb-usecases-icon-wrap {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.bb-usecases-card .bb-usecases-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 20px;
}

.bb-usecases-card .bb-usecases-card-title {
	font-size: 14px;
	font-weight: 800;
	color: #111;
	margin-bottom: 6px;
}

.bb-usecases-card .bb-usecases-card-text {
	font-size: 12px;
	color: #666;
	line-height: 1.5;
}

.bb-usecases-card:not(.is-active):hover {
	border-color: var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .08);
}

.bb-usecases-card.is-active {
	border: 2px solid var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .08);
}

.bb-usecases-card.is-active .bb-usecases-icon-wrap {
	background: linear-gradient(135deg, var(--c-red), var(--c-red-soft));
}

.bb-usecases-card.is-active .bb-usecases-icon-wrap i {
	color: #fff;
}

.bb-usecases-card.is-active .bb-usecases-card-title {
	color: var(--c-red);
}

#sec_vendors .st-section-head {
	text-align: center;
}

#sec_vendors .st-section-desc {
	margin-right: auto;
	margin-left: auto;
}

.bb-vendors-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 12px;
	margin: 32px 0 20px;
}

@media only screen and (max-width: 640px) {
	.bb-vendors-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.bb-vendor-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 18px 8px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	transition: all .2s ease;
	cursor: default;
}

.bb-vendor-card:hover {
	border-color: var(--c-red);
	box-shadow: 0 4px 12px rgba(25, 118, 210, .1);
}

/* ロゴのベーススタイルと背景カラー */
.bb-vendor-logo {
	width: 60px;
	height: 38px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.bb-vendor-logo span {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: -.3px;
}

.bb-vendor-logo.is-thinkware {
	background: linear-gradient(135deg, #E8EAF6, #C5CAE9);
}
.bb-vendor-logo.is-thinkware span {
	font-size: 9px;
	color: #1A237E;
}

.bb-vendor-logo.is-blackvue {
	background: linear-gradient(135deg, #263238, #37474F);
}
.bb-vendor-logo.is-blackvue span {
	font-size: 9px;
	color: #fff;
}

.bb-vendor-logo.is-papago {
	background: linear-gradient(135deg, #1B5E20, #2E7D32);
}
.bb-vendor-logo.is-papago span { color: #fff; }

.bb-vendor-logo.is-finevu {
	background: linear-gradient(135deg, #E65100, #FF6D00);
}
.bb-vendor-logo.is-finevu span { color: #fff; }

.bb-vendor-logo.is-iroad {
	background: linear-gradient(135deg, #0D47A1, #1565C0);
}
.bb-vendor-logo.is-iroad span { color: #fff; }

.bb-vendor-logo.is-garmin {
	background: linear-gradient(135deg, #004D40, #00695C);
}
.bb-vendor-logo.is-garmin span { color: #fff; }

.bb-vendor-logo.is-mando {
	background: linear-gradient(135deg, #B71C1C, #D32F2F);
}
.bb-vendor-logo.is-mando span { color: #fff; }

.bb-vendor-logo.is-vugera {
	background: linear-gradient(135deg, #4A148C, #6A1B9A);
}
.bb-vendor-logo.is-vugera span { color: #fff; }

.bb-vendor-name {
	font-size: 11px;
	font-weight: 800;
	color: var(--c-red);
}

/* タグ一覧エリア */
.bb-vendors-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
	.bb-vendors-tags {
		justify-content: flex-start;
	}
}

.bb-tag-item {
	padding: 6px 14px;
	background: #D4E6F1;
	border: 1px solid #AED6F1;
	color: #1565C0;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
}

.bb-tag-item.is-more {
	background: #e8e8e8;
	border-color: transparent;
	color: #999;
	font-weight: 600;
	font-style: italic;
}

/* 実績サマリー */
.bb-vendors-summary {
	text-align: center;
	margin-bottom: 24px;
}

.bb-summary-badge {
	display: inline-block;
	background: var(--c-red);
	color: #fff;
	padding: 6px 20px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
}

/* 重要案内ボックス */
.bb-notice-box {
	background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
	border: 2px solid #FFB74D;
	border-radius: 14px;
	padding: 24px 28px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.bb-notice-ribbon {
	position: absolute;
	top: 0;
	right: 0;
	background: #FF9800;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 6px 16px;
	border-radius: 0 0 0 10px;
	letter-spacing: 1px;
}

.bb-notice-ribbon i {
	margin-right: 4px;
}

@media only screen and (min-width: 641px) {
	.bb-notice-content {
		display: flex;
		gap: 16px;
		align-items: flex-start;
	}
}

.bb-notice-icon-wrap {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #E65100, #FF9800);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 4px;
}

@media only screen and (max-width: 640px) {
	.bb-notice-icon-wrap {
		margin: 0 auto 15px;
	}
}

.bb-notice-icon-wrap i {
	color: #fff;
	font-size: 20px;
}

.bb-notice-text-wrap .bb-notice-title {
	font-size: 16px;
	font-weight: 800;
	color: #E65100;
	margin-bottom: 10px;
}

.bb-notice-text-wrap p {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	margin: 0 0 10px;
}

.bb-text-highlight {
	color: #E65100;
}

/* 下部案内・お問い合わせ */
.bb-support-info {
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 22px 24px;
}

.bb-support-info p {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	margin: 0 0 12px;
}

.bb-contact-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.bb-contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bb-contact-item i {
	color: var(--c-red);
	font-size: 14px;
}

.bb-contact-item span {
	font-size: 14px;
	font-weight: 700;
	color: #333;
}

.bb-contact-item a {
	color: var(--c-red);
	text-decoration: none;
}

.bb-contact-item a i {
	font-size: 11px;
	margin-left: 2px;
}

/* 共通ユーティリティクラス */
.bb-margin-none {
	margin: 0 !important;
}
.bb-margin-bottom-sm {
	margin: 0 0 14px !important;
}

.bb-features-intro {
	max-width: 1280px;
	margin: 0 auto 40px;
	padding: 24px 28px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	font-size: 15px;
	color: #555;
	line-height: 1.85;
	transition: all .2s ease;
}

.bb-features-intro:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(15,40,80,0.10), 0 1px 4px rgba(15,40,80,0.06);
	border-color: var(--c-red-soft);
}

.bb-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.bb-features-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 28px 22px;
	box-shadow: 0 4px 16px rgba(15,40,80,0.10), 0 1px 4px rgba(15,40,80,0.06);
	transition: all .2s ease;
}

@media only screen and (max-width: 640px) {
	.bb-features-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-features-card {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-shadow: none;
	}
}

.bb-features-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(15,40,80,0.10), 0 1px 4px rgba(15,40,80,0.06);
	border-color: #a5bad9;
}

.bb-features-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.bb-features-icon-wrap {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bb-features-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 16px;
}

.bb-features-card-title {
	font-size: 15px;
	font-weight: 800;
	color: #111;
}

.bb-features-card-text {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* 通常カードのホバー効果 */
.bb-features-card:not(.is-active):hover {
	border-color: var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .06);
}

/* アクティブ（強調）カードスタイル */
.bb-features-card.is-active {
	border: 2px solid var(--c-red);
	box-shadow: 0 2px 12px rgba(25, 118, 210, .06);
}

.bb-features-card.is-active .bb-features-icon-wrap {
	background: linear-gradient(135deg, var(--c-red), var(--c-red-soft));
}

.bb-features-card.is-active .bb-features-icon-wrap i {
	color: #fff;
}

#sec_analysis {
	background: linear-gradient(135deg, #081520 0%, #0a1628 40%, #112B3C 100%);
	color: #fff;
}

#sec_analysis .st-section-head {
	text-align: center;
}

#sec_analysis .st-h2 {
	color: #fff;
}

#sec_analysis .st-section-desc {
	margin-right: auto;
	margin-left: auto;
}

.bb-analysis-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

@media only screen and (max-width: 640px) {
	.bb-analysis-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-analysis-card {
		flex: 0 0 50vw;
		min-width: 50vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
	.bb-analysis-host .msc-counter {
		color: #fff;
	}
}

.bb-analysis-card {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 14px;
	padding: 24px 18px;
	text-align: center;
	transition: all .25s ease;
}

.bb-analysis-icon-wrap {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.bb-analysis-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 20px;
}

.bb-analysis-card-title {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 6px;
	line-height: 1.4;
}

.bb-analysis-card-text {
	font-size: 11px;
	color: rgba(255, 255, 255, .4);
	line-height: 1.5;
}

/* 通常カードのホバー効果（他セクションとの統一用、不要なら削除可） */
.bb-analysis-card:not(.is-active):hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(25, 118, 210, .5);
}

/* アクティブ（強調）カードスタイル */
.bb-analysis-card.is-active {
	background: rgba(25, 118, 210, .08);
	border: 2px solid rgba(25, 118, 210, .3);
}

.bb-analysis-card.is-active .bb-analysis-icon-wrap {
	background: linear-gradient(135deg, #0D47A1, var(--c-red));
}

.bb-analysis-card.is-active .bb-analysis-icon-wrap i {
	color: #fff;
}

.bb-analysis-card.is-active .bb-analysis-card-title {
	color: #42A5F5;
}

.bb-compare-box {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	margin-bottom: 28px;
}

.bb-compare-box:last-of-type {
	margin-bottom: 0;
}

.bb-compare-box-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--c-red);
	letter-spacing: .5px;
	margin-bottom: 16px;
}

/* グリッドレイアウト（2カラム） */
.bb-compare-grid-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

@media only screen and (max-width: 640px) {
	.bb-compare-grid-2col {
		grid-template-columns: 1fr;
	}

	.bb-compare-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		position: relative;
	}

	.bb-compare-box {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-shadow: none;
		margin-bottom: 10px;
	}
}

/* ステータスラベル（一般/BlackBox） */
.bb-compare-status-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.bb-compare-status-label span {
	font-size: 14px;
	font-weight: 800;
}

.bb-status-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bb-status-icon i {
	font-size: 10px;
}

/* 失敗（一般）用カラー */
.bb-compare-status-label.is-fail span {
	color: #999;
}
.bb-compare-status-label.is-fail .bb-status-icon {
	background: #fdecea;
}
.bb-compare-status-label.is-fail i {
	color: #e74c3c;
}

/* 成功（BlackBox）用カラー */
.bb-compare-status-label.is-success span {
	color: var(--c-red);
}
.bb-compare-status-label.is-success .bb-status-icon {
	background: #d4edda;
}
.bb-compare-status-label.is-success i {
	color: #28a745;
}

/* 画像ラッパー */
.bb-compare-img-wrap {
	border: 1px solid #e5e7eb;
	overflow: hidden;
	margin-bottom: 12px;
	padding: 20px;
	text-align: center;
	background: #fafafa;
}

/* BlackBox側（強調枠線） */
.bb-compare-img-wrap.is-highlight {
	border: 1px solid var(--c-red);
	box-shadow: 0 0 0 1px var(--c-red) inset;
}
/*
.bb-compare-img-wrap img,
.bb-compare-img-full img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
*/
/* フル幅の画像エリア（比較3用） */
.bb-compare-img-full {
	border: 1px solid #e5e7eb;
	overflow: hidden;
	margin-bottom: 16px;
	text-align: center;
	background: #fafafa;
}

/* 比較3用のステータス並列エリア */
.bb-compare-status-inline {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

/* 説明テキスト */
.bb-compare-text {
	font-size: 13px;
	line-height: 1.7;
	margin: 0;
}

.bb-compare-text.is-normal {
	color: #666;
}

.bb-compare-text.is-strong {
	color: #333;
}

/* 最下部サマリーバー */
.bb-compare-summary-bar {
	margin-top: 28px;
	text-align: center;
	padding: 16px;
	background: #EBF5FB;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	font-size: 14px;
	color: #555;
	font-weight: 700;
}

/* 共通パーツ・ユーティリティ */
.bb-text-blue {
	color: var(--c-red);
}

.bb-font-sm {
	font-size: 13px !important;
}

.bb-margin-none {
	margin: 0 !important;
}

#sec_steps .st-section-head {
	text-align: center;
}

#sec_steps .st-section-desc {
	margin-right: auto;
	margin-left: auto;
}

.bb-steps-indicator {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
	align-items: center;
}

.bb-sdot {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid #e5e7eb;
	background: #fff;
	color: #999;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	transition: .3s;
	flex-shrink: 0;
	padding: 0;
}

@media only screen and (max-width: 640px) {
	.bb-sdot {
		width: 28px;
		height: 28px;
		border-width: 2px;
		font-size: 12px;
	}
}

.bb-sdot.is-completed {
	background: var(--c-red);
	border-color: var(--c-red);
	color: #fff;
}

.bb-sdot-label {
	display: none;
}

.bb-sdot-label.is-completed {
	color: var(--c-red);
	font-weight: 900;
}

/* つなぎのライン */
.bb-step-line-bar {
	width: 32px;
	height: 3px;
	background: #e5e7eb;
	align-self: center;
	border-radius: 2px;
}

@media only screen and (max-width: 640px) {
	.bb-step-line-bar {
		width: 10px;
	}
}

.bb-step-line-fill {
	width: 0;
	height: 100%;
	background: var(--c-red);
	border-radius: 2px;
	transition: width .5s;
}

.bb-step-line-fill.is-active {
	width: 100%;
}

/* スライダー本体 */
.bb-steps-slider-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #EBF5FB;
	border: 2px solid #D4E6F1;
	min-height: 20px;
}

.bb-steps-slider {
	display: flex;
	transition: transform .5s ease;
	width: 500%;
}

@media only screen and (max-width: 640px) {
	.bb-steps-slider {
	}
}

.bb-step-slide {
	width: 20%;
	flex-shrink: 0;
	padding: 40px;
}

/* スライド内レイアウト */
.bb-step-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

@media only screen and (max-width: 640px) {
	.bb-step-grid {
		grid-template-columns: 1fr;
	}

	#sec_steps #stepSlider {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		transform: none !important;
	}

	#sec_steps #stepSlider>div {
		width: 100% !important;
		flex-shrink: 1 !important;
		display: none !important;
		padding: 24px 18px !important;
	}

	#sec_steps #stepSlider>div.step-active {
		display: block !important;
	}

	#sec_steps #stepSlider>div>div[style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	#sec_steps #stepSlider h3 {
		font-size: 20px !important;
	}

	#sec_steps #stepSlider p {
		font-size: 14px !important;
	}

	#sec_steps [style*="min-height:420px"] {
		min-height: auto !important;
	}
}

.bb-step-grid.align-start {
	align-items: flex-start;
}

/* テキストコンテンツ */
.bb-step-num-badge {
	display: inline-block;
	background: var(--c-red);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 6px;
	margin-bottom: 14px;
}

.bb-step-content-title {
	font-size: 24px;
	font-weight: 900;
	color: #111;
	margin: 0 0 14px;
}

.bb-step-desc {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin: 0;
}

/* 注意事項・補足ボックス */
.bb-step-notice-box {
	background: #fff;
	border: 1px solid #D4E6F1;
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 10px;
}

.bb-step-notice-box:last-child {
	margin-bottom: 0;
}

.bb-step-notice-box.is-yellow {
	background: #FFF8E1;
	border-color: #FFE082;
}

.bb-step-notice-box.is-green {
	background: #E8F5E9;
	border-color: #A5D6A7;
}

.bb-notice-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.bb-notice-title span {
	font-size: 13px;
	font-weight: 800;
}

.bb-notice-title i {
	font-size: 14px;
}

/* 通知ボックスごとのカラー定義 */
.bb-notice-title.is-orange { color: #E65100; }
.bb-notice-title.is-blue { color: var(--c-red); }
.bb-notice-title.is-dark-orange { color: #F57F17; }
.bb-notice-title.is-dark-green { color: #2E7D32; }

.bb-notice-text {
	font-size: 12px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* メディア（画像＆コールアウト） */
.bb-step-media {
	border-radius: 16px;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.bb-step-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 16px;
}

/* 画像内コールアウトの絶対配置（元コードをマッピング） */
.bb-callout {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--c-red);
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 3px 12px rgba(25, 118, 210, .35);
    z-index: 5;
    white-space: nowrap;
}

@media only screen and (max-width: 640px) {
	.bb-step-media {
		min-height: 150px;
		height: auto;
	}
	.bb-callout {
		font-size: 10px;
		padding: 5px 11px;
		white-space: normal;
		max-width: 140px;
	}
}
.bb-callout-s1-1 { top: 55%; left: 2%; }
.bb-callout-s1-2 { bottom: 5%; right: 2%; }

.bb-callout-s2-1 { top: 18%; right: 2%; }
.bb-callout-s2-2 { bottom: 5%; right: 2%; }

.bb-callout-s3-1 { top: 28%; right: 2%; }
.bb-callout-s3-2 { bottom: 12%; right: 2%; }

.bb-callout-s4-1 { top: 22%; left: 2%; }
.bb-callout-s4-2 { bottom: 5%; right: 2%; }

.bb-callout-s5-1 { bottom: 38%; right: 2%; }
.bb-callout-s5-2 { bottom: 5%; right: 2%; }

/* ボトムナビゲーションコントロール */
.bb-steps-nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 20px;
}

.bb-nav-btn {
	width: 56px;
	height: 44px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #dee1e5;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
	flex-shrink: 0;
	padding: 0;
	color: #0f172a;
	font-size: 15px;
	transition: all .2s ease;
}

.bb-nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.bb-counter {
	min-width: 80px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #94a3b8;
	letter-spacing: .3px;
	user-select: none;
}

.bb-counter-current {
	color: #0f172a;
	font-weight: 700;
	font-size: 16px;
}

.bb-counter-divider {
	margin: 0 2px;
}

/* ユーティリティ */
.bb-mb-16 {
	margin-bottom: 16px !important;
}

#sec_target.st-section {
	border-top: solid 1px #e0e0e0;
}

.bb-target-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

/* 通常カードスタイル */
.bb-target-card {
	background: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px 22px;
	transition: all .25s ease;
}

@media only screen and (max-width: 640px) {
	.bb-target-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		margin-bottom: 20px;
		position: relative;
	}
	.bb-target-card {
		flex: 0 0 50vw;
		min-width: 50vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
}

.bb-target-icon-wrap {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #0a1628, #2D3748);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.bb-target-icon-wrap i {
	color: var(--c-red-soft);
	font-size: 18px;
}

.bb-target-card-title {
	font-size: 16px;
	font-weight: 800;
	color: #111;
	margin-bottom: 10px;
}

/* リストアイテム */
.bb-target-list {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
}

.bb-target-item {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin-bottom: 6px;
}

.bb-target-item:last-child {
	margin-bottom: 0;
}

.bb-target-item i {
	color: var(--c-red);
	font-size: 11px;
	margin-top: 3px;
	flex-shrink: 0;
}

/* 通常カードのホバー効果 */
.bb-target-card:not(.is-active):hover {
	background: #fff;
	border-color: var(--c-red);
	box-shadow: 0 4px 14px rgba(25, 118, 210, .08);
}

/* アクティブ（強調）カードスタイル */
.bb-target-card.is-active {
	background: #EBF5FB;
	border: 2px solid var(--c-red);
}

.bb-target-card.is-active .bb-target-icon-wrap i {
	color: #fff;
}

.bb-target-card.is-active .bb-target-card-title {
	color: var(--c-red);
}

.bb-specs-main-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* カード構造 */
.bb-specs-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
}

.bb-specs-card-header {
	padding: 16px 22px;
	background: #EBF5FB;
	border-bottom: 1px solid #D4E6F1;
}

.bb-specs-card-title {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: #111;
	display: flex;
	align-items: center;
}

.bb-specs-card-title i {
	color: var(--c-red);
	margin-right: 8px;
}

.bb-specs-card-body {
	padding: 22px;
}

/* スペック項目 */
.bb-specs-item {
	margin-bottom: 16px;
}

.bb-specs-item:last-child {
	margin-bottom: 0;
}

.bb-specs-item-label {
	font-weight: 800;
	color: var(--c-red);
	font-size: 13px;
	margin-bottom: 8px;
}

.bb-specs-item-val {
	font-size: 13px;
	color: #444;
}

.bb-specs-item-val.is-list {
	line-height: 1.8;
}

.bb-specs-item-val.is-warning {
	color: #E8850A;
	font-weight: 600;
}

/* システム要件（下部）専用スタイル */
.bb-specs-sys-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.bb-specs-sys-box {
	background: #EBF5FB;
	border: 1px solid #D4E6F1;
	border-radius: 10px;
	padding: 18px;
}

.bb-specs-sys-label {
	font-weight: 800;
	color: var(--c-red);
	font-size: 13px;
	margin-bottom: 10px;
}

.bb-specs-sys-text {
	font-size: 13px;
	color: #555;
	line-height: 1.8;
}

/* ユーティリティ */
.bb-mt-20 {
	margin-top: 20px !important;
}

/* レスポンシブ対応（タブレット・スマホ向け） */
@media (max-width: 640px) {
	.bb-specs-main-grid,
	.bb-specs-sys-grid {
		grid-template-columns: 1fr;
	}
}

.bb-license-notice {
	background: #fff3e0;
	border: 2px solid #ffe0b2;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 32px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.bb-license-notice i {
	color: #E8850A;
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.bb-license-notice-text {
	font-size: 13px;
	color: #555;
	line-height: 1.8;
}

/* 그리드 및 카드 공통 */
.bb-license-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.bb-license-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 18px;
	padding: 36px 28px;
	text-align: center;
	position: relative;
	transition: all .25s ease;
}

@media only screen and (max-width: 640px) {
	.bb-license-grid {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		padding-top: 15px;
		margin-bottom: 20px;
		position: relative;
	}

	.bb-license-card {
		flex: 0 0 80vw;
		min-width: 80vw;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
}

/* 추천 리본 */
.bb-card-ribbon {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--c-red);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 6px;
}

/* 라이선스 타입 뱃지 */
.bb-card-type {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 6px;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.bb-card-type.is-esd {
	background: var(--c-red);
	color: #fff;
}

.bb-card-type.is-package {
	background: #D4E6F1;
	color: var(--c-red);
}

/* 카드 내부 텍스트 구조 */
.bb-card-title {
	font-size: 20px;
	font-weight: 900;
	color: #111;
	margin: 0 0 8px;
}

.bb-card-price {
	font-size: 42px;
	font-weight: 900;
	color: var(--c-red);
	margin: 16px 0;
}

.bb-card-unit {
	font-size: 16px;
	font-weight: 600;
	color: #999;
}

.bb-card-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0 0 20px;
}

/* 하단 태그 */
.bb-card-tag {
	padding: 10px 16px;
	background: #f8f9fa;
	border-radius: 8px;
	font-size: 12px;
	color: #888;
	margin-bottom: 16px;
}

.bb-card-tag.is-blue {
	background: #EBF5FB;
	color: var(--c-red);
	font-weight: 700;
}

/* 버튼 스타일 */
.bb-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: .4s;
}

.bb-card-btn.is-blue {
	background: var(--c-red);
	color: #fff;
}

.bb-card-btn.is-blue:hover {
	background: #115293;
	box-shadow: 0 4px 24px rgba(25, 118, 210, .12);
	transform: translateY(-2px);
}

.bb-card-btn.is-dark {
	background: #0a1628;
	color: #fff;
}

.bb-card-btn.is-dark:hover {
	background: #2a5596;
	box-shadow: 0 4px 24px rgba(25, 118, 210, .12);
	transform: translateY(-2px);
}

/* 활성화/추천 카드 강조 효과 */
.bb-license-card.is-active {
	border: 3px solid var(--c-red);
	box-shadow: 0 4px 24px rgba(25, 118, 210, .12);
}

/* 일반 텍스트 컬러 유틸리티 */
.text-orange { color: #E8850A; }
.text-blue { color: var(--c-red); }
.text-dark-blue { color: #0D47A1; }

@media (max-width: 640px) {
	.bb-card-ribbon {
		top: -12px;
		right: 16px;
	}
}

/* FAQ Section */
#sec_faq .st-section-head {
	text-align: center;
}
.bb-faq-host {
	max-width: 900px;
	margin: 40px auto 0;
}
.bb-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bb-faq-item {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 40, 80, 0.07), 0 1px 2px rgba(15, 40, 80, 0.04);
	transition: border-color .3s;
}
.bb-faq-item.open {
	border-color: #7B2D8E;
}
.bb-faq-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	background: #fff;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	color: #222;
	text-align: left;
}
.bb-faq-arrow {
	color: #999;
	font-size: 12px;
	transition: transform .3s, color .3s;
}
.bb-faq-item.open .bb-faq-arrow {
	transform: rotate(180deg);
	color: #7B2D8E;
}
.bb-faq-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}
.bb-faq-item.open .bb-faq-panel {
	max-height: 200px; /* 답변 내용 길이에 맞춰 자동 조절 */
}
.bb-faq-content {
	padding: 0 22px 22px;
	font-size: 14px;
	color: #555;
	line-height: 1.85;
}

/* === cctv.php === */
.hero {
	background: linear-gradient(to bottom, #0d2137 0%, #112b3c 50%, #081520 100%);
}

.hero-product-name .highlight {
	color: #7b2d8e;
}

.hero-trust {
	border-left: 4px solid #7b2d8e;
}

.hero-trust i {
	color: #7b2d8e;
}

.hero-chip.accent {
	border-color: rgba(123, 45, 142, .4);
	background: rgba(123, 45, 142, .2);
	color: #C084D8;
}

.product-hero-visual {
	border: solid 2px rgba(123, 45, 142, 0.35);
	box-shadow: 0 0 30px rgba(123, 45, 142, 0.12);
}

.hero-spec-val {
	color: #7b2d8e;
}

:root{
	--c-red: #5E1A75;
    --c-red-dark: #0a1d6e;
    --c-red-soft: #C084D8;
}

.st-section {
	padding: 70px 0;
}

@media only screen and (max-width: 640px) {
	.st-section {
		padding: 50px 5vw;
	}
}

.st-section-badge {
	border-color: rgba(0,0,0,0.05);
	background: #F6ECF8;
	color: var(--c-red);
}

@media only screen and (min-width: 641px) {
	.bb-usecases-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.bb-usecases-card.is-active .bb-usecases-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

.bb-vendor-logo {
	background: #F6ECF8;
}

.bb-vendor-logo i {
	color: #c9a0dc;
	font-size: 14px;
}

.bb-tag-item {
	background: #F6ECF8;
	border: 1px solid #e1bee7;
	color: var(--c-red);
}

#sec_analysis {
	background: linear-gradient(135deg, #081520 0%, #1a0020 40%, #112B3C 100%);
}

.bb-analysis-card.is-active {
	background: rgba(123, 45, 142, .08);
	border-color: rgba(123,45,142,.3)
}

.bb-analysis-card.is-active .bb-analysis-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

.bb-analysis-card:not(.is-active):hover {
	background: rgba(123, 45, 142, .06);
	border-color: rgba(123,45,142,.5)
}

.bb-step-notice-box {
	margin: 15px 0;
}

.bb-notice-title {
	margin: 0;
}

.bb-step-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--c-red);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bb-step-media {
	height: auto;
}

.bb-steps-bottom-guide {
	display: flex;
	gap: 10px;
	margin-top: 40px;
	padding: 20px 20px;
	border-radius: 10px;
	border: 1px solid #FFE082;
	background: #FFF8E1;
	font-size: 13px;
	color: #555;
	line-height: 1.3;
}

.bb-steps-bottom-guide i {
	font-size: 18px;
	color: #E65100;
}

@media only screen and (min-width: 641px) {
	.bb-features-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.bb-features-card:nth-child(-n + 3) {
		grid-column: span 2;
	}

	.bb-features-card:nth-child(n + 4) {
		grid-column: span 3;
	}
}
/*
.bb-target-card {
	background: #fff;
}*/

.bb-target-card.is-active {
	background: #F6ECF8;
}

.bb-target-title-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bb-target-card.is-active .bb-target-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

.bb-features-card.is-active .bb-features-icon-wrap {
	background: linear-gradient(135deg, #5E1A75, #7B2D8E);
}

#sec_video .st-section-head {
	text-align: center;
}

.bb-video-iframe {
	max-width: 800px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin: 0 auto 40px;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
	background: #000;
}

.bb-video-iframe iframe {
	vertical-align: top;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 0;
}

.bb-video-grid {
	max-width: 800px;
	margin: 16px auto 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.bb-video-box {
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(15,40,80,0.07), 0 1px 2px rgba(15,40,80,0.04);
	font-size: 13px;
	color: #555;
	line-height: 1.65;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
}
@media only screen and (min-width: 641px) {
	.bb-compare-img-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 310px;
	}
}
@media only screen and (max-width: 640px) {
	.bb-compare-img-wrap img {
		height: auto;
	}
}

.bb-compare-summary-bar {
	background: #F6ECF7;
	font-weight: 400;
}

/* Pre-check Section */
.bb-check-section .bb-h2-sub {
	font-size: 16px;
	font-weight: 600;
	color: #999;
}
.bb-check-host {
	margin-top: 40px;
}
.bb-check-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.bb-check-card {
	background: #fff;
	border-radius: 0 12px 12px 0;
	padding: 22px 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.bb-check-card-top {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.bb-check-card-title {
	font-size: 14px;
	font-weight: 800;
	color: #111;
}
.bb-check-card-text {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Status variants for borders and icons */
.bb-check-card.is-warning {
	border-left: 4px solid #E8850A;
}
.bb-check-card.is-warning .fa-solid {
	color: #E8850A;
	font-size: 14px;
}

.bb-check-card.is-info {
	border-left: 4px solid #3498db;
}
.bb-check-card.is-info .fa-solid {
	color: #3498db;
	font-size: 14px;
}

.bb-check-card.is-danger {
	border-left: 4px solid #e74c3c;
}
.bb-check-card.is-danger .fa-solid {
	color: #e74c3c;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
	.bb-check-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.bb-check-grid {
		grid-template-columns: 1fr;
	}
}

.bb-card-btn.is-blue:hover {
	background: #852aa4;
}

.bb-card-btn.is-dark:hover {
	background: #4b0463;
}

.bb-card-type.is-package {
	background: #F6ECF8;
}

.bb-card-tag.is-blue {
	background: #F6ECF8;
}

.bb-specs-card-header {
	background: #F6ECF8;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bb-specs-sys-box {
	background: #F6ECF8;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

