/* ===========================
   ABOUT
=========================== */
.about-section {
  background: #fff;
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.about-section h2 {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.6;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.about-section p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
}
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-section h2 {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 16px;
  }
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: calc(100vh + 64px);
  height: calc(100svh + 64px);
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  margin-top: -64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/proxyvox-topimage1.webp') center 30% / cover no-repeat;
  opacity: 0.55;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,26,53,0.82) 0%, rgba(11,26,53,0.55) 50%, rgba(11,26,53,0.25) 100%);
}
.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126,184,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,184,247,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-popup-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
  max-width: 480px;
  width: 100%;
}
.hero-popup-img a {
  display: block;
  width: 100%;
}
.hero-popup-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.5));
}
.hero-popup-img .popup-img-1 {
  position: relative;
  animation: popupFade1 8s ease-in-out 1.7s infinite;
}
.hero-popup-img .popup-img-2 {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  animation: popupFade2 8s ease-in-out 1.7s infinite;
}
@keyframes popupFade1 {
  0%, 37.5% { opacity: 1; }
  50%, 87.5% { opacity: 0; }
  100%       { opacity: 1; }
}
@keyframes popupFade2 {
  0%, 37.5% { opacity: 0; }
  50%, 87.5% { opacity: 1; }
  100%       { opacity: 0; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(1.3); }
}
.hero-eyebrow-text {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-content { min-width: 0; }
.hero-title {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero-title .line1 {
  display: block;
  font-size: 0.72em;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hero-title em {
  font-style: normal;
  color: var(--blue-mist);
}
.hero-title .accent-word {
  color: var(--orange);
}
.hero-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255,255,255,0.88);
  line-height: 2;
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-en);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 1.8s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.badge-price {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 99px;
  background: rgba(29, 158, 117, 0.25);
  color: #7DDFC0;
}
.badge-target {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 99px;
  background: rgba(55, 138, 221, 0.22);
  color: #A8CEFF;
}
.btn-secondary {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.45);
  text-decoration: none;
}
.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero-chips .chip {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-trust .trust-item {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* ===========================
   PAIN SECTION
=========================== */
.pain-section { background: #fff; border-bottom: 1px solid var(--border); }
.pain-section .section-desc { max-width: none; }
.reception-section .section-desc { max-width: none; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pain-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pain-item-img { width: 100%; height: 170px; overflow: hidden; flex-shrink: 0; }
.pain-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pain-item-body { padding: 22px 24px 20px; display: flex; flex-direction: column; flex: 1; }
.pain-item-title {
  font-size: 15px; font-weight: 900; color: var(--navy);
  line-height: 1.55; margin-bottom: 10px;
}
.pain-item-desc {
  font-size: 13px; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 16px; flex: 1;
}
.pain-item-solution {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: #fff3ee;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 12.5px; font-weight: 600; color: var(--navy); line-height: 1.65;
}
.pain-solution-icon { flex-shrink: 0; color: var(--orange); margin-top: 2px; }

/* ===========================
   FEATURES
=========================== */
.features-section { background: var(--off-white); }
.features-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px; gap: 24px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: #fff; padding: 40px 28px;
  transition: background 0.2s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: #fafcff; }
.feature-num {
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; color: var(--text-light); margin-bottom: 24px;
}
.feature-icon-box {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.2s, opacity 0.4s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0; transform: scale(0.5);
}
.feature-icon-box.icon-pop { opacity: 1; transform: scale(1); }
.feature-card:hover .feature-icon-box { background: rgba(232,93,38,0.08); }
.feature-icon-box svg { width: 36px; height: 36px; }
.feature-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--text-mid); line-height: 1.8; }

/* ===========================
   PLANS
=========================== */
.plans-section { background: var(--navy); overflow: hidden; position: relative; }
.plans-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,184,247,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.plans-section .section-en { color: rgba(232,93,38,0.8); }
.plans-section .section-title { color: #fff; }
.plans-section .section-desc { color: rgba(255,255,255,0.45); }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.plan-card {
  border-radius: var(--radius-lg); padding: 48px 40px; position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.plan-card.light-plan {
  background: linear-gradient(145deg, #eaf3ff 0%, #ffffff 60%);
  border: 1.5px solid rgba(126,184,247,0.45);
  box-shadow: 0 8px 40px rgba(11,26,53,0.18);
  overflow: hidden;
}
.plan-card.light-plan::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #2980e6, var(--blue-mist));
}
.plan-card.light-plan:hover { box-shadow: 0 24px 60px rgba(41,128,230,0.25); }
.plan-card.custom-plan {
  background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  border: 1.5px solid rgba(232,93,38,0.45);
  overflow: hidden;
}
.plan-card.custom-plan::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffaa6e);
}
.plan-card.custom-plan:hover { box-shadow: 0 24px 60px rgba(232,93,38,0.2); }
.plan-badge {
  display: inline-block; font-family: var(--font-en);
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
}
.light-plan .plan-badge { background: rgba(41,128,230,0.1); color: #2980e6; }
.custom-plan .plan-badge { background: rgba(255,255,255,0.2); color: #fff; }
.plan-name { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.light-plan .plan-name { color: var(--navy); }
.plan-price { margin-bottom: 8px; min-height: 64px; display: flex; flex-wrap: wrap; align-content: flex-start; align-items: baseline; gap: 0 4px; }
.plan-price-num {
  font-family: var(--font-en); font-size: 48px; font-weight: 700;
  color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.light-plan .plan-price-num { color: var(--navy); }
.plan-price-unit { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); margin-left: 4px; }
.light-plan .plan-price-unit { color: var(--text-mid); }
.plan-tagline { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.custom-plan .plan-tagline { color: rgba(255,255,255,0.7); }
.light-plan .plan-tagline { color: var(--text-mid); }
.plan-divider { height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 28px; }
.light-plan .plan-divider { background: rgba(126,184,247,0.3); }
.plan-features { flex: 1; }
.plan-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.8);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-features li:last-child { border-bottom: none; }
.light-plan .plan-features li { color: var(--text); border-bottom-color: rgba(126,184,247,0.2); }
.plan-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plan-check svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2.5; }
.custom-plan .plan-check { background: rgba(255,255,255,0.25); }
.light-plan .plan-check { background: rgba(41,128,230,0.12); }
.light-plan .plan-check svg { stroke: #2980e6; }
.plan-cta-wrap { margin-top: 32px; }
.light-plan .plan-cta-wrap .btn-ghost {
  background: linear-gradient(135deg, #2980e6 0%, var(--blue-mist) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(41,128,230,0.3);
}
.light-plan .plan-cta-wrap .btn-ghost:hover {
  background: linear-gradient(135deg, #1d6cc9 0%, #5aa0e8 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41,128,230,0.4);
}

/* ===========================
   COMPARE TABLE
=========================== */
.compare-section { background: #fff; }
.table-wrap {
  overflow-x: auto; border-radius: var(--radius-lg);
  border: 1px solid var(--border); margin-top: 48px;
}
.compare-table { width: 100%; min-width: 560px; border-collapse: collapse; }
.compare-table thead th {
  padding: 20px 28px; font-size: 13px; font-weight: 800;
  border-bottom: 2px solid var(--border); text-align: center;
}
.compare-table thead th:first-child { text-align: left; color: var(--text-mid); font-weight: 600; }
.compare-table thead th.col-light { color: var(--navy); background: #f0f5ff; }
.compare-table thead th.col-custom { background: var(--navy); color: #fff; }
.compare-table tbody tr:nth-child(even) td { background: #fafbfd; }
.compare-table tbody tr:hover td { background: #f0f5ff; }
.compare-table td {
  padding: 14px 28px; border-bottom: 1px solid var(--border);
  font-size: 14px; text-align: center; vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text); background: transparent !important; }
.compare-table tr:last-child td { border-bottom: none; }
.check-icon { color: var(--orange); font-size: 18px; font-weight: 900; }
.cross-icon { color: #ccc; font-size: 16px; }
.price-cell { font-weight: 800; color: var(--navy); font-family: var(--font-en); }
.td-custom { color: rgba(255,255,255,0.7); background: var(--navy-mid) !important; }
.compare-section-header td {
  background: var(--off-white) !important;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); padding: 10px 28px;
  border-bottom: 1px solid var(--border);
}
.compare-sub { font-size: 11px; font-weight: 400; color: var(--text-light); display: block; margin-top: 3px; }
.option-add { font-family: var(--font-en); font-size: 15px; font-weight: 700; color: var(--orange); }
.option-add small { font-size: 11px; font-weight: 500; margin-left: 2px; }

/* ===========================
   NOTIFY（通知チャネル）
=========================== */
.notify-section { background: var(--off-white); }
.notify-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.notify-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; align-items: center;
}
.notify-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(126,184,247,0.45);
}
.notify-logo-box {
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.notify-logo-box img { max-height: 52px; max-width: 120px; object-fit: contain; }
.notify-logo-box svg { width: 48px; height: 48px; }
.notify-name { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.notify-desc { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.notify-footnote {
  text-align: center; margin-top: 36px;
}
.notify-footnote p {
  display: inline-block;
  font-size: 13px; color: var(--text-mid);
  background: #fff; border: 1px solid var(--border);
  border-radius: 99px; padding: 10px 28px;
}
.notify-footnote p::before { content: '✓ '; color: var(--orange); font-weight: 700; }

/* ===========================
   MERIT
=========================== */
.merit-section { background: var(--off-white); }
.merit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
}
.merit-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px;
  border: 1px solid var(--border); transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.merit-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mist));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.merit-card:hover::after { transform: scaleX(1); }
.merit-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,26,53,0.1); }
.merit-num {
  font-family: var(--font-en); font-size: 48px; font-weight: 700;
  color: rgba(11,26,53,0.06); line-height: 1; margin-bottom: 16px; letter-spacing: -0.03em;
}
.merit-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.merit-card p { font-size: 13px; color: var(--text-mid); line-height: 1.8; }

/* ===========================
   FLOW
=========================== */
.flow-section { background: #fff; }
.flow-steps {
  display: flex; align-items: flex-start; gap: 0; margin-top: 56px; position: relative;
}
.flow-steps::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px;
  height: 1px; background: var(--border); z-index: 0;
}
.flow-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px; position: relative; z-index: 1;
}
.step-circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 16px; font-weight: 700;
  margin-bottom: 20px; box-shadow: 0 4px 16px rgba(11,26,53,0.2);
  transition: background 0.2s, transform 0.2s; border: 3px solid #fff;
}
.flow-step:hover .step-circle { background: var(--orange); transform: scale(1.1); }
.flow-step h3 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.flow-step p { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

/* ===========================
   TRUST
=========================== */
.trust-section { background: var(--off-white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.trust-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 32px 26px;
  text-align: center; transition: transform 0.25s var(--ease);
}
.trust-card:hover { transform: translateY(-4px); }
.trust-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.trust-icon svg { width: 26px; height: 26px; stroke: var(--blue-mist); fill: none; stroke-width: 1.8; }
.trust-card h3 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.trust-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===========================
   FAQ
=========================== */
.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 88px; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--navy); font-family: var(--font-jp); transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s var(--ease); color: var(--text-mid);
  font-size: 18px; line-height: 1;
}
.faq-item.open .faq-q-arrow {
  background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg);
}
.faq-a { display: none; padding: 0 0 22px; font-size: 14px; color: var(--text-mid); line-height: 1.9; }
.faq-item.open .faq-a { display: block; }

/* ===========================
   CTA BAND
=========================== */
.cta-section {
  background: linear-gradient(135deg, #060f1e 0%, #0b1a35 60%, #0b2040 100%);
  padding: 120px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(126,184,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,184,247,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-tag {
  display: inline-block; font-family: var(--font-en);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,93,38,0.12);
  border: 1px solid rgba(232,93,38,0.25); border-radius: 20px;
  padding: 5px 16px; margin-bottom: 24px;
}
.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; color: #fff;
  letter-spacing: -0.025em; line-height: 1.3; margin-bottom: 16px;
}
.cta-section > div > p {
  font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 48px; font-weight: 300;
}
.cta-actions {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px;
}
.cta-tel { font-size: 13px; color: rgba(255,255,255,0.4); }
.cta-tel a {
  font-family: var(--font-en); font-size: 20px; font-weight: 700;
  color: var(--blue-mist); margin: 0 8px; letter-spacing: 0.03em;
}
.cta-tel a:hover { text-decoration: underline; }

/* ===========================
   OPTIONS（オプションサービス）
=========================== */
.options-section { background: #fff; border-top: 1px solid var(--border); }
.option-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: box-shadow 0.3s;
}
.option-card:hover { box-shadow: var(--shadow-md); }
.option-card-body { padding: 56px 48px; }
.option-card-side {
  background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.option-card-side::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,184,247,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.option-badge {
  display: inline-block; font-family: var(--font-en);
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
  background: rgba(232,93,38,0.1); color: var(--orange);
  border: 1px solid rgba(232,93,38,0.25);
}
.option-name { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.option-desc { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 32px; }
.option-features { display: flex; flex-direction: column; gap: 10px; }
.option-feature-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text);
}
.option-feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(41,128,230,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.option-feature-check svg { width: 10px; height: 10px; stroke: #2980e6; fill: none; stroke-width: 2.5; }
.option-price-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.option-price-value {
  font-family: var(--font-en); font-size: 40px; font-weight: 700;
  color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.option-price-unit { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); margin-left: 4px; }
.option-note {
  font-size: 12px; color: rgba(255,255,255,0.4);
  margin-top: 16px; line-height: 1.8;
}
.option-side-list {
  margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.option-side-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.75);
}
.option-side-list li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 10px; background-repeat: no-repeat; background-position: center;
}
.option-cta { margin-top: 32px; }
.option-area-wrap {
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.option-area-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.option-area-label::before {
  content: ''; display: block; width: 16px; height: 2px;
  background: #2980e6; border-radius: 2px;
}
.option-area-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
}
.option-area-tag {
  font-size: 12px; font-weight: 600; color: var(--navy);
  background: rgba(41,128,230,0.05); border: 1px solid rgba(41,128,230,0.18);
  border-radius: var(--radius); padding: 8px 12px;
  display: flex; align-items: center; gap: 7px;
  transition: background 0.2s, border-color 0.2s;
}
.option-area-tag:hover {
  background: rgba(41,128,230,0.1); border-color: rgba(41,128,230,0.35);
}
.option-area-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #2980e6; flex-shrink: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-img-card { display: none; }
  .notify-grid { grid-template-columns: repeat(2, 1fr); }
  .merit-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { padding: 130px 24px 72px; grid-template-columns: 1fr; }
  .hero-actions { display: none; }
  .hero-popup-img { display: flex; justify-content: center; max-width: 100%; }
  .hero-popup-img img { max-width: 320px; }
  .hero-title { font-size: 32px; }
  .hero-stat-row { flex-direction: column; gap: 20px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-header { flex-direction: column; align-items: flex-start; }
  .plans-grid { grid-template-columns: 1fr; }
  .option-card { grid-template-columns: 1fr; }
  .option-card-body { padding: 36px 28px; }
  .option-card-side { padding: 36px 28px; }
  .merit-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .flow-steps { flex-direction: column; align-items: center; gap: 24px; }
  .flow-steps::before { display: none; }
  .flow-step { width: 100%; max-width: 280px; }
  .cta-section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .hero { height: auto; min-height: calc(100svh + 64px); }
  .merit-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 32px 24px; }
  .pain-grid { grid-template-columns: 1fr; }
}

/* ===========================
   RECEPTION
=========================== */
.reception-section { background: var(--off-white); }
.reception-plan-tag {
  display: inline-block;
  background: rgba(41,128,230,0.12); color: #2980e6;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 12px;
}
.reception-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-top: 52px;
}
.reception-flow { display: flex; flex-direction: column; }
.flow-item { display: flex; gap: 20px; }
.flow-item-track { display: flex; flex-direction: column; align-items: center; }
.flow-step-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--blue-mist);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.flow-step-icon svg { width: 22px; height: 22px; }
.flow-step-num {
  position: absolute; top: -5px; right: -5px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700; font-family: var(--font-en);
  display: flex; align-items: center; justify-content: center;
}
.flow-connector {
  flex: 1; width: 2px; background: var(--border);
  margin: 5px 0; min-height: 28px;
}
.flow-item:last-child .flow-connector { display: none; }
.flow-item-body { padding-bottom: 28px; padding-top: 6px; }
.flow-item:last-child .flow-item-body { padding-bottom: 0; }
.flow-item-title { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.flow-item-desc  { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.sample-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(11,26,53,0.1);
  overflow: hidden;
}
.sample-titlebar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
}
.sample-titlebar svg { width: 15px; height: 15px; color: var(--blue-mist); flex-shrink: 0; }
.sample-titlebar-label {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.85); letter-spacing: 0.06em;
}
.sample-meta {
  padding: 10px 18px; background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.sample-meta p { font-size: 11px; color: var(--text-mid); line-height: 1.85; margin: 0; }
.sample-meta strong { color: var(--text); font-weight: 600; }
.sample-subject {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 800; color: var(--navy);
}
.sample-body { padding: 18px 18px 22px; }
.sample-field {
  display: flex; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
}
.sample-field:last-child { border-bottom: none; padding-bottom: 0; }
.sample-field-label {
  width: 88px; flex-shrink: 0;
  font-size: 12px; font-weight: 700; color: var(--text-mid);
}
.sample-field-value { font-size: 13px; color: var(--text); line-height: 1.6; }
.sample-field-value strong { color: var(--navy); font-weight: 700; }
.sample-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-light); text-transform: uppercase;
  text-align: center; margin-bottom: 12px;
}
@media (max-width: 900px) {
  .reception-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* デモ体験セクション */
.demo-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.demo-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(126,184,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,184,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.demo-section .section-en  { color: rgba(232,93,38,0.85); }
.demo-section .section-title { color: #fff; }
.demo-section .section-desc  { color: rgba(255,255,255,0.55); }
.demo-inner { position: relative; z-index: 1; }
.audio-player-wrap {
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url('../img/proxyvox-sample01.webp') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 36px 40px 32px;
  max-width: 520px; margin: 48px auto 52px;
  text-align: center; overflow: hidden;
  box-shadow: 0 8px 40px rgba(10,18,40,0.18);
}
.audio-player-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 14px;
}
.audio-player-title {
  font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.audio-player-badge { margin-bottom: 24px; }
.audio-player-badge span {
  display: inline-block;
  background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 12px; border-radius: 20px;
}
.audio-controls { display: flex; align-items: center; gap: 18px; }
.audio-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s var(--ease);
}
.audio-play-btn:hover { background: var(--orange-dark); transform: scale(1.06); }
.audio-play-btn svg { color: #fff; width: 22px; height: 22px; }
.audio-progress-wrap { flex: 1; }
.audio-progress-bar {
  width: 100%; height: 4px;
  background: rgba(10,18,40,0.12);
  border-radius: 2px; cursor: pointer; position: relative; margin-bottom: 8px;
}
.audio-progress-fill {
  height: 100%; background: var(--orange); border-radius: 2px; width: 0%;
}
.audio-time {
  display: flex; justify-content: space-between;
  font-family: var(--font-en); font-size: 11px; color: rgba(10,18,40,0.4);
}
.demo-steps {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; max-width: 780px; margin: 0 auto;
}
.demo-step {
  flex: 1; text-align: center; padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}
.demo-step-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: rgba(255,255,255,0.25); padding: 0 8px; flex-shrink: 0;
}
.demo-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: var(--font-en); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.demo-step-title { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.demo-step-text  { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }
@media (min-width: 769px) {
  .demo-section .section-desc { white-space: nowrap; }
}
@media (max-width: 768px) {
  .audio-player-wrap { padding: 28px 24px 24px; }
  .demo-steps { flex-direction: column; align-items: center; gap: 12px; }
  .demo-step { width: 100%; max-width: 360px; }
  .demo-step-arrow { transform: rotate(90deg); padding: 0; }
}
/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(126,184,247,0.12);
}
.stats-bar-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.stats-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
}
.stats-bar-num {
  font-family: var(--font-en);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}
.stats-bar-unit {
  font-size: 0.6em;
  font-weight: 700;
}
.stats-bar-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
}
.stats-bar-sep {
  width: 1px;
  background: rgba(126,184,247,0.15);
  align-self: stretch;
  margin: 14px 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats-bar-grid { flex-wrap: wrap; }
  .stats-bar-item { flex: 1 1 calc(50% - 1px); padding: 20px 16px; border-bottom: 1px solid rgba(126,184,247,0.1); }
  .stats-bar-sep { display: none; }
}
@media (max-width: 480px) {
  .stats-bar-item { flex: 1 1 100%; }
}

/* ===========================
   USE CASES
=========================== */
.use-cases-section { background: var(--off-white); }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.use-case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.use-case-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.uc-card-img-wrap {
  margin: -36px -28px 20px;
  height: 160px; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.uc-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
.use-case-card:hover .uc-card-img-wrap img { transform: scale(1.04); }
.use-case-industry {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 8px;
}
.use-case-card h3 {
  font-size: 16px; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; line-height: 1.4;
}
.use-case-card p {
  font-size: 13px; color: var(--text-mid); line-height: 1.8; margin: 0;
}
@media (max-width: 1024px) {
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .use-cases-grid { grid-template-columns: 1fr; }
}
/* ===========================
   CASE STUDIES
=========================== */
.case-studies-section { background: #fff; }
.cs-section-desc { white-space: nowrap; }
@media (max-width: 640px) {
  .cs-section-desc { white-space: normal; }
}
.cs-tab-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; margin-bottom: 32px;
}
.cs-tab-btn {
  padding: 9px 22px; border-radius: 24px;
  border: 1.5px solid var(--border-solid);
  background: transparent; color: var(--text-mid);
  font-size: 13px; font-weight: 700; font-family: var(--font-jp);
  cursor: pointer; transition: all 0.2s var(--ease);
}
.cs-tab-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.cs-tab-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.cs-count { font-size: 13px; color: var(--text-mid); margin-bottom: 20px; }
.cs-slider-wrap { position: relative; }
.cs-slider {
  display: flex; gap: 20px; align-items: stretch;
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  scrollbar-width: none; scroll-behavior: smooth;
  padding: 8px 4px 16px;
}
.cs-slider::-webkit-scrollbar { display: none; }
.cs-nav {
  display: flex; align-items: center; justify-content: space-between; margin-top: 28px;
}
.cs-nav-arrows { display: flex; gap: 10px; }
.cs-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border-solid); background: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease); color: var(--navy); flex-shrink: 0;
}
.cs-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cs-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.cs-arrow svg { width: 18px; height: 18px; }
.cs-dots { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.cs-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: var(--border-solid); border: none; padding: 0; cursor: pointer;
  transition: all 0.25s var(--ease); flex-shrink: 0;
}
.cs-dot.active { width: 22px; background: var(--navy); }
.cs-card-img-wrap {
  margin: -24px -24px 0; height: 160px; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0; flex-shrink: 0;
}
.cs-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
.cs-card:hover .cs-card-img-wrap img { transform: scale(1.04); }
.cs-card {
  flex: 0 0 calc((100% - 40px) / 3); min-width: 260px;
  scroll-snap-align: start;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.cs-card:hover { box-shadow: var(--shadow-md); }
.cs-industry-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; padding: 3px 10px; border-radius: 12px;
  background: rgba(11,26,53,0.08); color: var(--navy);
}
.cs-dept {
  font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.4; margin: 0;
}
.cs-bar-label-row {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px;
}
.cs-bar-label { font-size: 11px; font-weight: 700; color: var(--text-mid); }
.cs-bar-pct { font-size: 13px; font-weight: 800; }
.cs-bar-track {
  height: 8px; background: rgba(0,0,0,0.07); border-radius: 4px; overflow: hidden;
}
.cs-bar-fill {
  height: 100%; border-radius: 4px;
}
.cs-bar-fill.green  { background: #16a34a; }
.cs-bar-fill.blue   { background: #2980e6; }
.cs-bar-fill.orange { background: var(--orange); }
.cs-bar-fill.purple { background: #7c3aed; }
.cs-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-mid); margin: 0 0 4px;
}
.cs-challenge { font-size: 12.5px; color: var(--text-mid); line-height: 1.75; margin: 0; }
.cs-solution-wrap { border-top: 1px solid var(--border); padding-top: 12px; margin-top: auto; }
.cs-solution { font-size: 12.5px; color: var(--navy); font-weight: 600; line-height: 1.75; margin: 0; }
@media (max-width: 1024px) {
  .cs-card { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 640px) {
  .cs-card { flex: 0 0 82%; }
  .cs-tab-btn { font-size: 12px; padding: 8px 14px; }
  .case-studies-section .section-desc { white-space: normal; }
}
