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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1A1C1C;
  background: #E8E8E8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

.page-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0 0 40px rgba(0,0,0,0.06);
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Section Labels */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 8px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  color: #1A1C1C;
  background: none;
  border-radius: 0;
  padding: 0 0 14px;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #06C755, #34d278);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--green {
  background: linear-gradient(135deg, #06C755, #05b34c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(6,199,85,0.3);
}

.btn--green.btn--lg {
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 14px rgba(6,199,85,0.3); }
  50% { box-shadow: 0 4px 24px rgba(6,199,85,0.5); }
}

.btn--outline {
  background: transparent;
  color: #3A4665;
  border: 1.5px solid #E4E4E7;
}

.btn--sm {
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 6px;
}

.btn--lg {
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 10px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--line::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 5.82 2 10.5c0 2.83 1.77 5.33 4.42 6.86L5.5 21l3.75-2.06c.89.17 1.81.26 2.75.26 5.52 0 10-3.82 10-8.5S17.52 2 12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Stars */
.stars {
  color: #94A3B8;
  font-size: 13px;
  letter-spacing: 1px;
}

.stars--gold {
  color: #F59E0B;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge--recommended {
  background: #06C755;
  color: #fff;
}

/* Marks */
.mark { font-size: 13px; }
.mark--excellent { color: #06C755; font-weight: 600; }
.mark--good { color: #3A4665; }
.mark--fair { color: #F59E0B; }
.mark--bad { color: #BA1A1A; }

/* ============================================
   FV: FIRST VIEW
   ============================================ */
.fv {
  background: #fff;
}

.fv__hero-image {
  width: 100%;
  overflow: hidden;
}

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

.fv__content {
  padding: 24px 20px 32px;
}

.fv__badge {
  display: inline-block;
  background: linear-gradient(135deg, #06C755, #34d278);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(6,199,85,0.2);
}

.fv__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  color: #1A1C1C;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.fv__subtitle {
  font-size: 14px;
  color: #515E7E;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fv__supervisor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #F4F4F5;
  border-radius: 8px;
  margin-bottom: 12px;
}

.fv__supervisor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E4E4E7;
  flex-shrink: 0;
}

.fv__supervisor-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.fv__supervisor-title {
  display: block;
  font-size: 11px;
  color: #06C755;
  font-weight: 500;
}

.fv__updated {
  font-size: 11px;
  color: #94A3B8;
  margin-bottom: 20px;
}

/* Info Box */
.fv__box {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid #06C755;
  border-radius: 8px;
  padding: 0;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.fv__box-title {
  font-size: 16px;
  font-weight: 800;
  color: #333;
  padding: 14px 20px 12px;
  margin-bottom: 0;
}

.fv__box-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eee;
  padding: 0 20px;
}

.fv__box-list li {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 14px 0 14px 32px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.fv__box-list li:last-child {
  border-bottom: none;
}

.fv__box-list li::before {
  content: '◎';
  position: absolute;
  left: 0;
  top: 14px;
  color: #06C755;
  font-weight: 700;
  font-size: 16px;
}

/* TOC */
.toc {
  background: #FAFAFA;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}

.toc__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #1A1C1C;
}

.toc__list {
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc__list li {
  counter-increment: toc;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: #515E7E;
  line-height: 1.4;
}

.toc__list li::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 12px;
  font-weight: 700;
  color: #06C755;
  opacity: 0.5;
  flex-shrink: 0;
  width: 20px;
}

.toc__list li a {
  transition: color 0.2s;
}

.toc__list li a:hover {
  color: #06C755;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-section {
  background: #fff;
}

.section-header {
  padding: 36px 20px;
  text-align: center;
}

.section-header--dark {
  background: linear-gradient(135deg, #1A1C1C 0%, #2d3748 100%);
  color: #fff;
}

.section-header__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 8px;
}

.section-header__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.section-header__title--light {
  color: #fff;
}

.section-header__desc {
  font-size: 13px;
  line-height: 1.6;
}

.section-header__desc--light {
  color: rgba(255,255,255,0.85);
}

.comparison-table-wrapper {
  padding: 16px 0 24px;
}

.scroll-hint {
  text-align: center;
  font-size: 11px;
  color: #94A3B8;
  margin-bottom: 8px;
}

.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 12px;
}

.comparison-table {
  width: max-content;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 12px;
}

.comparison-table th,
.comparison-table td {
  padding: 10px 14px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #F3F3F3;
  white-space: nowrap;
}

.comparison-table thead th {
  font-size: 12px;
  font-weight: 700;
  padding: 14px;
  border-bottom: 2px solid #E4E4E7;
  background: #F9F9F9;
  position: sticky;
  top: 0;
}

.comparison-table__label {
  text-align: left !important;
  font-weight: 600;
  color: #1A1C1C;
  min-width: 80px;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}

thead .comparison-table__label {
  background: #F9F9F9;
  z-index: 2;
}

.comparison-table__logo {
  display: block;
  height: 22px;
  width: auto;
  margin: 6px auto 4px;
}

.comparison-table__recommended {
  background: #F2FAF5 !important;
  font-weight: 600;
}

.price--highlight {
  font-size: 18px;
  font-weight: 800;
  color: #06C755;
}

.price-note {
  display: block;
  font-size: 10px;
  color: #64748B;
  font-weight: 400;
}

.highlight-number {
  font-size: 16px;
  font-weight: 800;
  color: #06C755;
}

.comparison-table__note {
  font-size: 11px;
  color: #94A3B8;
  padding: 12px 20px;
  line-height: 1.6;
}

.comparison-table__cta-row td {
  padding: 14px;
}

.btn--table-line {
  gap: 4px;
}

.btn__line-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
}

/* ============================================
   RANKING TOP3
   ============================================ */
.ranking-top3 {
  padding: 48px 0;
  background: #F9F9F9;
}

.criteria-box {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}

.criteria-box__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.criteria-box__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.criteria-box__list li {
  font-size: 11px;
  color: #64748B;
  background: #F4F4F5;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Rank Card - First */
.rank-card--first {
  background: #fff;
  border: 2px solid #06C755;
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 16px;
  position: relative;
}

.rank-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rank-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
}

.rank-card__badge--gold {
  background: #FFD700;
  color: #1A1C1C;
}

.rank-card__badge--silver {
  background: #C0C0C0;
  color: #fff;
}

.rank-card__badge--bronze {
  background: #CD7F32;
  color: #fff;
}

.rank-card__logo {
  display: inline-block;
  height: 28px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}

.rank-card__name {
  font-size: 18px;
  font-weight: 800;
}

.rank-card__name--sm {
  font-size: 15px;
}

.rank-card__score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.rank-card__score-number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: #1A1C1C;
}

.rank-card__score-label {
  font-size: 14px;
  color: #94A3B8;
}

.rank-card__service-img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.rank-card__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.rank-card__points li {
  font-size: 13px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
  color: #3A4665;
}

.rank-card__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #06C755;
  font-weight: 700;
  font-size: 14px;
}

/* Rank Cards Row (2nd, 3rd) */
.rank-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rank-card--sub {
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.rank-card--sub:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.rank-card--sub .rank-card__header {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.rank-card__score-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748B;
  margin-bottom: 10px;
}

.rank-card__tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.rank-card__tags li {
  font-size: 11px;
  color: #64748B;
  background: #F4F4F5;
  padding: 3px 8px;
  border-radius: 4px;
}

.rank-card__link {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #06C755;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #F2FAF5 0%, #e6f7ed 50%, #F2FAF5 100%);
  position: relative;
}

.cta-section__deco {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #1A1C1C;
  margin-bottom: 8px;
}

.cta-section__title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #1A1C1C;
}

.cta-section__note {
  text-align: center;
  font-size: 11px;
  color: #64748B;
  margin-top: 10px;
}

/* ============================================
   REASONS SECTION
   ============================================ */
.reasons-section {
  padding: 48px 0;
  background: #fff;
}

.reasons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.reason-card {
  padding: 24px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E8E8E8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #06C755, #34d278);
  border-radius: 2px 0 0 2px;
}

.reason-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06C755, #34d278);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  opacity: 1;
}

.reason-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.reason-card__desc {
  font-size: 13px;
  color: #515E7E;
  line-height: 1.6;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: #F9F9F9;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.stat-card__label {
  display: block;
  font-size: 11px;
  color: #64748B;
  margin-bottom: 4px;
}

.stat-card__value {
  font-size: 28px;
  font-weight: 900;
  color: #1A1C1C;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 50px 0;
  background: #fff;
  color: #333;
}

.about-section__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  color: #1A1C1C;
  background: none;
  border-radius: 0;
  padding: 0 0 14px;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}

.about-section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4a7c8a, #6ba3b5);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ---- メインエリア（説明 + イラスト） ---- */
.about-main {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about-main__left {
  flex: 1;
  min-width: 0;
}

.about-main__illust {
  flex-shrink: 0;
  width: 130px;
  align-self: center;
}

.about-main__illust img {
  width: 100%;
  height: auto;
}

.about-section__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.benefit-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.benefit-card {
  width: 100%;
  background: #fff;
  border: 2px solid #4a7c8a;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #333;
}

.benefit-card__plus {
  font-size: 16px;
  font-weight: 700;
  color: #4a7c8a;
}

/* ---- リスクエリア（リスク + イラスト） ---- */
.about-risk-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.risk-box {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
}

.risk-box__title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.risk-box__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.risk-box__list li {
  font-size: 12px;
  color: #555;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.risk-box__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

.about-risk-row__illust {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-risk-row__illust img {
  width: 100%;
  height: auto;
}

/* ---- 合計受給額 ---- */
.total-benefit {
  background: #4a7c8a;
  border: none;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.total-benefit__label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.total-benefit__value {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

/* ---- 結論 ---- */
.about-section__conclusion {
  font-size: 16px;
  font-weight: 800;
  color: #4a7c8a;
  text-align: center;
  background: #fff;
  border: 2px solid #4a7c8a;
  border-radius: 6px;
  padding: 14px 20px;
}

@media (max-width: 600px) {
  .about-main {
    flex-direction: column;
    align-items: center;
  }
  .about-main__illust {
    width: 120px;
    order: -1;
  }
  .about-risk-row {
    flex-direction: column;
  }
  .about-risk-row__illust {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .about-risk-row__illust img {
    width: 100px;
  }
}

/* ============================================
   WARNING SECTION
   ============================================ */
.warning-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #1a8aaa 0%, #2ba0c2 100%);
}

.warning-section__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  color: #fff;
  background: none;
  border-radius: 0;
  padding: 0 20px;
  margin-bottom: 28px;
  text-align: center;
}

/* ---- チェックリストボックス ---- */
.warning-checklist-box {
  background: #fff;
  border-radius: 6px;
  padding: 32px 24px 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.warning-checklist-box__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.warning-checklist-box__content {
  flex: 1;
  min-width: 0;
  position: relative;
}

.warning-checklist-box__illust {
  flex-shrink: 0;
  width: 160px;
}

.warning-checklist-box__illust img {
  width: 100%;
  height: auto;
  display: block;
}

.warning-checklist-box__deco {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1a8aaa, #54c1db);
  border-radius: 0 0 2px 2px;
}

.warning-checklist-box__title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1a3c50;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.warning-checklist-box__title::before,
.warning-checklist-box__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c0d8e4, transparent);
}

@media (max-width: 600px) {
  .warning-checklist-box__inner {
    flex-direction: column;
  }
  .warning-checklist-box__illust {
    width: 140px;
    order: -1;
    margin: 0 auto 12px;
  }
}

/* ---- チェックリスト ---- */
.warning-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.warning-checklist__item {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  padding-left: 30px;
  position: relative;
}

.warning-checklist__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 16px;
  font-weight: 700;
  color: #1a8aaa;
}

.warning-checklist__em {
  background: linear-gradient(transparent 60%, #b8e6f5 60%);
  font-weight: 700;
}

/* ---- アドバイスボックス ---- */
.advice-box {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 16px 20px;
}

.advice-box__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.advice-box__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* ============================================
   DETAIL CARDS (Rankings)
   ============================================ */
.detail-section {
  padding: 48px 0;
  background: #F9F9F9;
}

.detail-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 20px;
  border: 1px solid #E4E4E7;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.detail-card--first {
  border: 2px solid #06C755;
  box-shadow: 0 4px 24px rgba(6,199,85,0.12);
}

.detail-card__rank {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.detail-card__rank-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
}

.detail-card__rank-badge--gold {
  background: #FFD700;
  color: #1A1C1C;
}

.detail-card__rank-badge--silver {
  background: #C0C0C0;
  color: #fff;
}

.detail-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-card__rating-num {
  font-size: 14px;
  font-weight: 700;
  color: #64748B;
}

.detail-card__logo {
  display: inline-block;
  height: 32px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}

.detail-card__service-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.detail-card__name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.detail-card__catch {
  font-size: 13px;
  color: #515E7E;
  line-height: 1.6;
  margin-bottom: 20px;
}

.detail-card__header-compact {
  margin-bottom: 8px;
}

/* Specs Table */
.detail-card__specs {
  margin-bottom: 20px;
}

.detail-card__specs-label,
.detail-card__section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #06C755;
  margin-bottom: 12px;
}

.specs-table {
  width: 100%;
}

.specs-table__row {
  display: flex;
  border-bottom: 1px solid #F3F3F3;
  padding: 8px 0;
}

.specs-table__row dt {
  width: 100px;
  flex-shrink: 0;
  font-size: 12px;
  color: #94A3B8;
}

.specs-table__row dd {
  font-size: 13px;
  font-weight: 500;
}

.specs-table__highlight {
  color: #06C755;
  font-weight: 700 !important;
}

.specs-table__accent {
  color: #06C755;
  font-weight: 600 !important;
}

.specs-table--compact .specs-table__row {
  padding: 6px 0;
}

.specs-table--compact .specs-table__row dt {
  font-size: 11px;
}

.specs-table--compact .specs-table__row dd {
  font-size: 12px;
}

/* Highlights */
.detail-card__highlights {
  margin-bottom: 16px;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlights-list li {
  font-size: 13px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
  color: #3A4665;
}

.highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #06C755;
  font-weight: 700;
}

.highlights-list--compact li {
  font-size: 12px;
  gap: 6px;
}

/* Caution */
.detail-card__caution {
  background: #FEF3C7;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #B45309;
  line-height: 1.6;
}

.detail-card__caution--compact {
  background: #FFF5F5;
  color: #76241E;
}

.detail-card__mini-label {
  font-size: 12px;
  font-weight: 700;
  color: #06C755;
  margin-bottom: 6px;
}

.detail-card__mini-label--warn {
  color: #BA1A1A;
}

/* Reviews */
.detail-card__reviews {
  margin-bottom: 20px;
}

.review-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: #F9F9F9;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 10px;
  border-left: 3px solid #06C755;
  position: relative;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E4E4E7;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card__meta {
  font-size: 11px;
  color: #94A3B8;
}

.review-card__text {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

/* Tabs */
.detail-card__tabs {
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #F3F3F3;
  margin-bottom: 12px;
}

.tabs__btn {
  flex: 1;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  color: #94A3B8;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.tabs__btn--active {
  color: #06C755;
  border-bottom-color: #06C755;
}

.tabs__content {
  display: none;
  padding: 8px 0;
}

.tabs__content--active {
  display: block;
}

.tabs__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tabs__list li {
  font-size: 12px;
  color: #64748B;
  padding-left: 16px;
  position: relative;
}

.tabs__list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #06C755;
}

.tabs__content p {
  font-size: 12px;
  color: #64748B;
  line-height: 1.6;
}

.detail-card__cta-deco {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #06C755;
  margin-bottom: 8px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 48px 0;
  background: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.faq-item {
  background: #F9F9F9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  line-height: 1.5;
}

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

.faq-item__question::after {
  content: '＋';
  margin-left: auto;
  font-size: 16px;
  color: #94A3B8;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-item__question::after {
  content: '－';
}

.faq-item__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0D1B37;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item__answer {
  display: flex;
  gap: 10px;
  padding: 0 16px 14px;
}

.faq-item__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #06C755;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item__answer p {
  font-size: 13px;
  color: #515E7E;
  line-height: 1.7;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  background: #F2FAF5;
  border-radius: 14px;
  padding: 24px 20px;
}

.faq-cta__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.faq-cta__desc {
  font-size: 13px;
  color: #515E7E;
  margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 0;
  background: #0D1B37;
  color: #fff;
  text-align: center;
}

.footer__brand {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer__link {
  display: inline-block;
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 12px;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__copy {
  font-size: 11px;
  color: #64748B;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 860px;
  z-index: 100;
  padding: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.floating-cta--visible {
  transform: translateX(-50%) translateY(0);
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #06C755, #05b34c);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  gap: 8px;
  letter-spacing: 0.02em;
}

.floating-cta__btn::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 5.82 2 10.5c0 2.83 1.77 5.33 4.42 6.86L5.5 21l3.75-2.06c.89.17 1.81.26 2.75.26 5.52 0 10-3.82 10-8.5S17.52 2 12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================
   RESPONSIVE: TABLET+
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .fv__content {
    padding: 28px 32px 36px;
  }

  .fv__title {
    font-size: 34px;
  }

  .section-title {
    font-size: 26px;
  }

  .rank-cards-row {
    gap: 16px;
  }

  .comparison-table {
    min-width: 750px;
  }

  .stats-row {
    gap: 16px;
  }

  .reasons {
    flex-direction: row;
  }

  .reason-card {
    flex: 1;
  }

}

/* Bottom padding for floating CTA */
body {
  padding-bottom: 72px;
}
