:root {
  --ink: #18202a;
  --muted: #69727f;
  --line: #d9dde5;
  --base: #f7f3ea;
  --panel: #ffffff;
  --soft: #edf6f2;
  --navy: #24364b;
  --teal: #087d84;
  --green: #198b61;
  --green-dark: #0f6f4e;
  --gold: #c79531;
  --gold-soft: #fff2d8;
  --blue-soft: #e7f4f6;
  --orange: #d83b2d;
  --orange-dark: #a92c22;
  --sky: #1597a8;
  --pink: #e11d48;
  --violet: #6750a4;
  --shadow: 0 18px 42px rgba(94, 58, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbf7ef 0, var(--base) 520px, #f5f0e7 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 span {
  display: inline;
}

h2 {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(212, 164, 88, 0.24);
  background: rgba(255, 251, 244, 0.94);
  backdrop-filter: blur(14px);
}

.brand,
.topbar nav a,
.button,
.soft-link,
.article-grid a,
.other-links a,
.company-link,
.sticky {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-pr {
  padding: 7px clamp(18px, 5vw, 64px) 0;
  color: #7a6c5d;
  background: rgba(255, 251, 244, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero {
  min-height: 0;
  padding: clamp(24px, 4vw, 46px) clamp(18px, 5vw, 72px) clamp(24px, 3.2vw, 42px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 234, 0.72)),
    var(--base);
  border-bottom: 1px solid rgba(36, 54, 75, 0.1);
}

.ad {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #6b5843;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ad span {
  padding: 1px 5px;
  border: 1px solid rgba(36, 54, 75, 0.28);
  border-radius: 3px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: min(620px, calc(100vh - 190px));
}

.hero-grid-ad {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
  margin-inline: auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  min-height: auto;
}

.hero-grid > *,
.pick-grid > *,
.rank-cards > *,
.article-grid > *,
.review-grid > *,
.trust-strip > *,
.decision-strip > *,
.priority-box > *,
.final-cta > * {
  min-width: 0;
}

.hero-copy {
  max-width: 800px;
}

.kicker {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #606b78;
  font-size: 12px;
  text-align: left;
  text-transform: none;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 14px;
  color: #101923;
  font-size: clamp(31px, 3.8vw, 50px);
  font-weight: 900;
  line-height: 1.2;
}

.mobile-break {
  display: none;
}

.mobile-title-break {
  display: none;
}

.hero-copy h1 em {
  color: inherit;
  font-style: normal;
  font-size: inherit;
  text-shadow: none;
}

.lead {
  max-width: 700px;
  margin-bottom: 12px;
  color: #394656;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: #536070;
  font-size: 12px;
  font-weight: 800;
}

.hero-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, calc(100vw - 32px));
  max-width: min(620px, calc(100vw - 32px));
  margin: 0 0 12px;
}

.hero-proof-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(19, 103, 112, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #174a52;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.editorial-summary {
  margin: 0 0 20px;
  padding: 0 0 0 18px;
  border-left: 3px solid rgba(36, 54, 75, 0.3);
}

.editorial-summary b {
  display: block;
  margin-bottom: 8px;
  color: #202833;
  font-size: 15px;
}

.editorial-summary ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.1em;
  color: #3f4b58;
  font-size: 14px;
  font-weight: 700;
}

.hero-jump {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 2px;
  padding: 0 2px;
  border-bottom: 2px solid rgba(168, 44, 34, 0.42);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.hero-jump::after {
  content: "↓";
  margin-left: 9px;
  font-size: 13px;
}

.hero-apply-band {
  position: relative;
  display: grid;
  justify-items: start;
  width: min(100%, 520px);
  margin: 13px 0 16px;
  min-height: 214px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(4, 107, 140, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 42%, rgba(255, 255, 255, 0.34) 66%, rgba(255, 255, 255, 0) 100%),
    url("assets/pr-realistic-man-banner-v189.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #eefbfb 0%, #fff7dc 100%);
  box-shadow:
    0 18px 34px rgba(8, 125, 132, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #153241;
  text-align: left;
  overflow: hidden;
}

.hero-apply-band::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.hero-apply-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(5, 111, 136, 0.12));
  pointer-events: none;
}

.hero-apply-label {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  padding: 4px 14px;
  border-radius: 999px;
  color: #153241;
  background: #ffe36d;
  box-shadow: 0 4px 0 rgba(123, 93, 0, 0.18);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.25;
}

.hero-apply-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 1px;
  width: min(100%, 305px);
  min-width: 0;
  margin-bottom: 11px;
}

.hero-apply-copy span {
  color: #087d84;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-apply-copy b {
  font-size: 21px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hero-apply-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 290px);
  min-height: 50px;
  padding: 0 44px 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, #0d9db5 0%, #087d84 100%);
  box-shadow:
    0 8px 0 rgba(5, 74, 92, 0.24),
    0 18px 28px rgba(24, 32, 42, 0.18);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.hero-apply-button::after {
  content: "";
  position: absolute;
  right: 19px;
  width: 11px;
  height: 11px;
  border-top: 3px solid #ffe36d;
  border-right: 3px solid #ffe36d;
  transform: rotate(45deg);
}

.hero-apply-note {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  width: min(100%, 310px);
  color: #40606d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 24px;
}

.assurance-grid div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 10px;
  align-items: center;
  min-height: 80px;
  padding: 12px;
  border: 1px solid rgba(8, 125, 132, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.assurance-grid b {
  color: var(--teal);
  font-size: 14px;
  line-height: 1.25;
}

.assurance-grid small {
  grid-column: 2;
  color: #526170;
  font-size: 11px;
  font-weight: 800;
}

.assurance-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.assurance-icon::before {
  font-weight: 900;
}

.assurance-icon.shield::before {
  content: "✓";
}

.assurance-icon.clock::before {
  content: "○";
}

.assurance-icon.yen::before {
  content: "¥";
}

.mega-cta {
  position: relative;
  width: min(100%, 560px);
  min-height: 76px;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
  font-size: clamp(20px, 2vw, 28px);
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(168, 31, 23, 0.3);
}

.mega-cta span {
  display: grid;
  width: 76px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: #44270b;
  background: radial-gradient(circle at 35% 30%, #ffe66c, #f7bd25 74%);
  font-size: 13px;
  line-height: 1.1;
}

.mega-cta::after {
  content: "›";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  font-size: 30px;
  line-height: 1;
}

.hero-toc-panel {
  width: min(100%, 760px);
  min-width: 0;
  margin-top: 7px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(36, 54, 75, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  min-width: 0;
  margin-top: 0;
}

.hero-toc-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
  color: #4d5867;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.hero-toc-title span {
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

.hero-toc a {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  min-width: 0;
  color: #536070;
  text-align: left;
  text-decoration: none;
}

.hero-toc a:hover {
  color: #0b6fa4;
}

.hero-toc a span {
  color: #8a929d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.hero-toc a b {
  display: block;
  position: relative;
  min-width: 0;
  padding-left: 0;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-toc a b::before {
  content: none;
}

.hero-toc .toc-major {
  margin-top: 0;
}

.hero-toc .toc-major:first-child {
  margin-top: 0;
}

.hero-toc .toc-major span {
  font-size: 13px;
}

.hero-toc .toc-major b {
  font-size: 13px;
}

.hero-toc .toc-sub span {
  font-size: 17px;
}

.hero-toc .toc-sub b {
  color: #292d33;
  font-size: clamp(15px, 2vw, 20px);
}

.secure-note {
  display: block;
  width: min(100%, 620px);
  margin-top: 12px;
  color: #526170;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.hero-ranking {
  min-width: 0;
  width: 100%;
  padding-top: clamp(16px, 2vw, 26px);
  padding-bottom: clamp(12px, 2vw, 24px);
  border-top: 1px solid rgba(36, 54, 75, 0.16);
}

.ranking-section-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.ranking-section-head p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.ranking-section-head span {
  display: block;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.ranking-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #081f41;
  font-weight: 950;
  text-align: center;
}

.ranking-title::before,
.ranking-title::after {
  content: "⌇";
  color: var(--gold);
  font-size: 36px;
  transform: rotate(22deg);
}

.ranking-title::after {
  transform: rotate(-22deg);
}

.ranking-title span {
  font-size: clamp(18px, 2vw, 25px);
}

.ranking-title b {
  color: #9d6b1c;
  font-family: inherit;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 950;
}

.ranking-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.ranking-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 440px;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid rgba(154, 122, 75, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.94)),
    #fff;
  box-shadow: 0 18px 34px rgba(64, 46, 24, 0.1);
}

.ranking-card.featured-rank {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.48fr);
  gap: clamp(18px, 2vw, 26px) clamp(22px, 3vw, 44px);
  min-height: 0;
  align-items: end;
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid rgba(176, 123, 35, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 251, 244, 0.96), rgba(255, 255, 255, 0.98) 54%, rgba(248, 252, 255, 0.9)),
    #fff;
  box-shadow: 0 22px 42px rgba(65, 46, 22, 0.13);
  transform: none;
}

.ranking-card:not(.featured-rank) {
  min-height: 398px;
  border-color: rgba(154, 122, 75, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 253, 249, 0.9)),
    #fff;
  box-shadow: 0 14px 28px rgba(64, 46, 24, 0.08);
}

.ranking-card:not(.featured-rank)::before {
  content: none;
}

.ranking-card::before {
  content: none;
}

.ranking-card.featured-rank::before {
  content: none;
}

.ranking-card.rank-silver::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, #cdd9e2, #527d9a 72%);
}

.ranking-card.rank-bronze::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, #e2af78, #965b28 72%);
}

.rank-medal {
  position: absolute;
  top: 8px;
  left: 14px;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 84px;
  place-items: center;
  padding: 11px 10px 15px;
  color: #744607;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.74) 0 12%, transparent 13% 48%, rgba(112, 59, 11, 0.18) 100%),
    linear-gradient(145deg, #fff2a7, #f0bd28 48%, #b97312);
  clip-path: polygon(50% 0, 91% 12%, 84% 70%, 50% 100%, 16% 70%, 9% 12%);
  box-shadow: 0 15px 24px rgba(76, 41, 12, 0.24);
  text-align: center;
}

.rank-medal::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.76) 0 13%, transparent 14%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.03));
  clip-path: inherit;
}

.rank-medal::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  clip-path: inherit;
}

.rank-medal span,
.rank-medal em {
  display: block;
  font-style: normal;
  min-width: 42px;
  padding: 3px 5px 2px;
  border-radius: 999px;
  color: #fff7d5;
  background: rgba(92, 53, 12, 0.32);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.rank-medal b {
  display: block;
  margin: 2px 0 0;
  font-family: inherit;
  font-size: 38px;
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 1px 0 #fff7ca, 0 3px 8px rgba(102, 56, 13, 0.18);
}

.rank-silver .rank-medal {
  color: #314b61;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.8) 0 12%, transparent 13% 48%, rgba(33, 65, 89, 0.18) 100%),
    linear-gradient(145deg, #f3f8fb, #b9cbd7 48%, #5a7f99);
}

.rank-silver .rank-medal span,
.rank-silver .rank-medal em {
  color: #f7fbff;
  background: rgba(42, 75, 100, 0.34);
}

.rank-bronze .rank-medal {
  color: #704014;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7) 0 12%, transparent 13% 48%, rgba(97, 48, 10, 0.2) 100%),
    linear-gradient(145deg, #f4c99a, #d89755 48%, #925323);
}

.rank-bronze .rank-medal span,
.rank-bronze .rank-medal em {
  color: #fff2df;
  background: rgba(91, 48, 12, 0.33);
}

.ranking-card:not(.featured-rank) .rank-medal {
  top: 10px;
  left: 12px;
  width: 58px;
  height: 64px;
  padding: 8px 8px 11px;
}

.ranking-card:not(.featured-rank) .rank-medal span,
.ranking-card:not(.featured-rank) .rank-medal em {
  min-width: 32px;
  padding: 2px 4px;
  font-size: 9px;
}

.ranking-card:not(.featured-rank) .rank-medal b {
  font-size: 30px;
}

.rank-ribbon {
  position: absolute;
  top: 18px;
  right: 14px;
  left: 92px;
  z-index: 2;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(72, 42, 12, 0.2);
  backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ranking-card:not(.featured-rank) .rank-ribbon {
  top: 17px;
  right: 12px;
  left: 74px;
  min-height: 30px;
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.22);
}

.rank-ribbon span {
  display: block;
  padding: 0 12px;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}

.feature-rank-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.featured-rank .feature-rank-main {
  grid-template-columns: minmax(310px, 0.42fr) minmax(0, 1fr);
  align-items: center;
}

.featured-rank .feature-rank-main {
  grid-column: 1;
  grid-template-columns: minmax(170px, 0.48fr) minmax(190px, 1fr);
}

.feature-rank-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.feature-rank-side {
  display: grid;
  align-self: stretch;
  gap: 10px;
  min-width: 0;
}

.featured-rank .feature-rank-side {
  grid-row: 2;
  grid-column: 2;
  align-content: center;
  padding: clamp(14px, 1.8vw, 22px) 0 0 clamp(18px, 2vw, 28px);
  border-left: 1px solid rgba(36, 54, 75, 0.13);
}

.check-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: #6e4b18;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.check-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(174, 119, 31, 0.26);
}

.rank-editorial-head {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  min-width: 0;
  padding-bottom: 13px;
  border-bottom: 2px solid rgba(174, 119, 31, 0.58);
}

.featured-rank .rank-editorial-head {
  grid-column: 1 / -1;
  padding-bottom: 16px;
  border-bottom-color: rgba(174, 119, 31, 0.7);
}

.rank-editorial-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  color: #3a2616;
  white-space: nowrap;
}

.rank-editorial-number span,
.rank-editorial-number em {
  color: #a56e18;
  font-style: normal;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 950;
  line-height: 1;
}

.rank-editorial-number b {
  color: #2b1d14;
  font-family: inherit;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 950;
  line-height: 0.92;
}

.ranking-card:not(.featured-rank) .rank-editorial-number b {
  font-size: clamp(34px, 3.2vw, 48px);
}

.ranking-card:not(.featured-rank) .rank-editorial-number {
  gap: 3px;
}

.ranking-card:not(.featured-rank) .rank-editorial-number span,
.ranking-card:not(.featured-rank) .rank-editorial-number em {
  font-size: clamp(15px, 1.3vw, 20px);
}

.rank-editorial-badge {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 9px clamp(14px, 1.8vw, 24px);
  border: 1px solid rgba(174, 119, 31, 0.52);
  color: #a56e18;
  background: rgba(255, 252, 246, 0.88);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 950;
  line-height: 1.1;
}

.ranking-card:not(.featured-rank) .rank-editorial-badge {
  padding: 7px 9px;
  font-size: 11px;
}

.featured-rank .rank-editorial-badge {
  margin-left: 10px;
  padding: 10px clamp(18px, 2vw, 30px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent 44%),
    linear-gradient(180deg, #d7a535, #b57a18);
  color: #fff;
  box-shadow: 0 8px 18px rgba(138, 88, 15, 0.18);
}

.score-line,
.stars {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.score-line {
  margin: -54px 0 0 46px;
  font-size: clamp(11px, 1.05vw, 14px);
  white-space: nowrap;
}

.score-line b {
  font-size: clamp(20px, 1.9vw, 25px);
}

.stars {
  margin-bottom: 10px;
  color: #ffe464;
  letter-spacing: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.brand-plate {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(19, 41, 71, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.88));
  box-shadow: inset 0 -12px 20px rgba(19, 41, 71, 0.03), 0 9px 16px rgba(18, 59, 93, 0.08);
}

a.brand-plate {
  color: inherit;
}

.company-link:hover b,
.company-link:hover strong,
.shop:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.featured-rank .brand-plate {
  min-height: auto;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ranking-card:not(.featured-rank) .brand-plate {
  min-height: 72px;
  justify-content: flex-start;
  padding: 4px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-plate::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(199, 149, 49, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.featured-rank .brand-plate::before {
  content: none;
}

.ranking-card:not(.featured-rank) .brand-plate::before {
  content: none;
}

.brand-plate img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(18, 59, 93, 0.12));
}

.ticket-center-logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.featured-rank .ticket-center-logo img {
  width: clamp(50px, 5vw, 64px);
  height: clamp(50px, 5vw, 64px);
  border-radius: 16px;
}

.ticket-center-logo strong {
  position: relative;
  z-index: 1;
  color: #1758b8;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 950;
  line-height: 1.1;
  text-align: left;
}

.featured-rank .ticket-center-logo strong {
  font-size: clamp(24px, 2.2vw, 32px);
}

.premier-card-logo img {
  width: min(100%, 226px);
  max-height: 44px;
}

.ranking-card:not(.featured-rank) .premier-card-logo img {
  width: min(100%, 230px);
  max-height: 48px;
}

.card-fit {
  display: grid;
  min-height: 40px;
  place-items: center;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(36, 54, 75, 0.1);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
}

.featured-rank .card-fit {
  min-height: auto;
  place-items: start;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(36, 54, 75, 0.12);
  border-radius: 0;
  background: transparent;
  color: #2e4158;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 900;
  text-align: left;
}

.ranking-card:not(.featured-rank) .card-fit {
  min-height: auto;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(174, 119, 31, 0.24);
  border-radius: 0;
  background: transparent;
  color: #3b4655;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  text-align: left;
  place-items: start;
}

.flash-card-logo {
  gap: 9px;
}

.flash-card-logo .flash-icon {
  width: 38px;
  height: 38px;
}

.ranking-card:not(.featured-rank) .flash-card-logo .flash-icon {
  width: 42px;
  height: 42px;
}

.flash-card-logo .flash-wordmark {
  width: min(100%, 174px);
  min-width: 0;
  max-height: 32px;
  object-fit: contain;
}

.ranking-card:not(.featured-rank) .flash-card-logo .flash-wordmark {
  width: min(100%, 190px);
  max-height: 34px;
}

.ranking-card dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(36, 54, 75, 0.12);
  border-bottom: 1px solid rgba(36, 54, 75, 0.12);
}

.featured-rank dl {
  grid-template-columns: 1fr;
  border-color: rgba(36, 54, 75, 0.14);
}

.ranking-card dl div {
  display: flex;
  min-height: 42px;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(36, 54, 75, 0.1);
  border-radius: 0;
  background: transparent;
}

.ranking-card:not(.featured-rank) dl {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(174, 119, 31, 0.2);
  border-bottom: 1px solid rgba(174, 119, 31, 0.2);
}

.ranking-card:not(.featured-rank) dl div {
  min-height: 38px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(174, 119, 31, 0.16);
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.ranking-card:not(.featured-rank) dl div:last-child {
  border-bottom: 0;
}

.featured-rank dl div {
  min-height: 46px;
  padding: 10px 0;
}

.featured-rank dl div:last-child {
  border-bottom: 0;
}

.rank-silver dl div {
  background: transparent;
}

.rank-bronze dl div {
  background: transparent;
}

.ranking-card dt {
  color: #526170;
  font-size: 12px;
  font-weight: 950;
}

.featured-rank dt {
  color: #526170;
  font-size: 12px;
}

.ranking-card:not(.featured-rank) dt {
  color: #675545;
  font-size: 11px;
}

.ranking-card dd {
  margin: 0;
  color: #2b1d14;
  font-family: inherit;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 950;
  line-height: 1.05;
  text-align: right;
  white-space: nowrap;
}

.ranking-card:not(.featured-rank) dd {
  color: #2b1d14;
  font-size: clamp(16px, 1.35vw, 20px);
}

.featured-rank dd {
  color: #c52f24;
  font-size: clamp(19px, 1.6vw, 24px);
}

.ranking-card dd span {
  margin-left: 4px;
  font-size: 0.72em;
}

.ranking-card:not(.featured-rank) dd span {
  display: inline;
  margin-left: 1px;
  font-size: 11px;
  text-align: right;
}

.featured-rank dd span {
  display: inline;
  margin-left: 2px;
  line-height: 1.2;
}

.ranking-card ul {
  display: grid;
  gap: 7px;
  margin: 2px 0 4px;
  padding: 0;
  list-style: none;
}

.featured-rank ul {
  gap: 9px;
  padding: 0;
  border-left: 0;
  background: transparent;
}

.ranking-card:not(.featured-rank) ul {
  gap: 6px;
  margin: 0 0 4px;
  padding-top: 2px;
}

.ranking-card:not(.featured-rank) li:nth-child(n+3) {
  display: none;
}

.ranking-card li {
  position: relative;
  padding-left: 22px;
  color: #23344b;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 850;
  line-height: 1.45;
}

.ranking-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.ranking-card .button {
  margin-top: auto;
  min-height: 52px;
  white-space: normal;
  line-height: 1.25;
}

.featured-rank .button {
  min-height: 58px;
  font-size: clamp(16px, 1.25vw, 18px);
}

.ranking-card:not(.featured-rank) .button {
  min-height: 50px;
  padding-inline: 12px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 9px 16px rgba(205, 43, 32, 0.17);
}

.lower-ranking {
  margin-top: clamp(18px, 2.4vw, 28px);
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(36, 54, 75, 0.13);
}

.lower-ranking-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: 12px;
}

.lower-ranking-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 950;
  line-height: 1.35;
}

.lower-ranking-head p {
  max-width: 590px;
  margin: 0;
  color: #59697c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.lower-rank-list {
  display: grid;
  gap: 16px;
  border-top: 0;
  background: transparent;
}

.lower-rank-row {
  display: grid;
  grid-template-columns: 56px minmax(128px, 0.82fr) minmax(190px, 1.25fr) 132px 96px 100px 96px 96px;
  gap: 8px;
  align-items: center;
  min-height: 154px;
  padding: 24px 12px;
  border: 1px solid rgba(36, 54, 75, 0.14);
  border-left: 5px solid #d85f16;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.085);
}

.lower-rank-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #fff7eb;
  color: #9a4b0b;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(157, 107, 28, 0.22);
}

.lower-rank-service {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-decoration: none;
}

.lower-rank-service b {
  color: var(--navy);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.35;
}

.lower-rank-service span,
.lower-rank-meta span {
  color: #68798c;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.lower-rank-row p {
  margin: 0;
  color: #172a3d;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.55;
}

.lower-rank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 72px;
  min-width: 0;
  padding: 5px 8px;
  overflow: hidden;
  border: 1px solid rgba(36, 54, 75, 0.13);
  border-radius: 8px;
  background: #fff;
}

.lower-rank-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lower-rank-logo-yaiba {
  padding: 3px 6px;
  background: #1b1512;
  border-color: rgba(211, 169, 46, 0.45);
}

.lower-rank-logo-resethicket {
  padding: 5px 7px;
  background: #fff;
}

.lower-rank-logo-sheep {
  padding: 0;
  background: #fbf8ec;
}

.lower-rank-logo-sheep img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lower-rank-logo-quick {
  background: #fff;
}

.lower-rank-logo-donkey {
  padding: 5px 8px;
  background: #fff8e5;
}

.lower-rank-logo-minimum {
  padding: 4px 8px;
  background: #fffdf8;
}

.lower-rank-logo-baichike {
  padding: 4px 7px;
  background: #24384f;
}

.lower-rank-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 9px 10px;
  border: 1px solid rgba(154, 75, 11, 0.24);
  border-radius: 7px;
  background: #d85f16;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(216, 95, 22, 0.18);
}

.lower-rank-official:hover {
  border-color: rgba(154, 75, 11, 0.38);
  background: #c95110;
}

.lower-rank-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  min-height: 64px;
  align-content: center;
  padding: 11px 10px;
  border: 1px solid rgba(36, 54, 75, 0.12);
  border-radius: 8px;
  background: #f8fafc;
}

.lower-rank-meta b {
  color: #0f6f4e;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.lower-ranking-note {
  margin: 13px 0 0;
  color: #6a7888;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.ranking-note-link {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.fv-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 26px;
  align-items: start;
  padding: 26px clamp(18px, 5vw, 72px) 34px;
  background: rgba(255, 252, 246, 0.98);
}

.quick-compare,
.safety-panel {
  width: 100%;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(8, 125, 132, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(75, 51, 24, 0.09);
}

.safety-panel {
  padding: 4px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mini-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.mini-section-head h2,
.safety-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.mini-section-head h2 span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.mini-section-head a {
  color: #1f5595;
  font-size: 12px;
  font-weight: 900;
}

.compact-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.compact-row {
  display: grid;
  grid-template-columns: 180px 112px 124px 104px 124px;
  align-items: center;
  min-height: 64px;
  min-width: 644px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.compact-row:first-child {
  border-top: 0;
}

.compact-row > * {
  padding: 10px 12px;
  border-left: 1px solid var(--line);
  text-align: center;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.compact-row > *:first-child {
  border-left: 0;
  text-align: left;
  white-space: normal;
}

.compact-head {
  min-height: 40px;
  color: var(--navy);
  background: #f8fafc;
  font-size: 12px;
  font-weight: 950;
}

.compact-row b {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-right: 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--gold);
}

.compact-row strong {
  color: #d72d22;
  font-size: 18px;
}

.compact-row em,
.compact-row i {
  color: var(--navy);
  font-style: normal;
  font-weight: 850;
}

.quick-compare p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.safety-panel h2 span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 16px;
}

.safety-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border: 0;
  border-top: 1px solid rgba(8, 125, 132, 0.13);
  border-radius: 0;
  background: transparent;
}

.safety-list article {
  padding: 13px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(8, 125, 132, 0.13);
}

.safety-list article:first-child {
  border-top: 0;
}

.safety-list b {
  display: block;
  color: var(--teal);
  font-size: 15px;
}

.safety-list span {
  color: #526170;
  font-size: 12px;
  font-weight: 750;
}

.attention-box {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: #3d4650;
  font-size: 12px;
  font-weight: 800;
}

.attention-box b {
  color: #5f3b0b;
  font-size: 14px;
}

.badges,
.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.badges span,
.mini-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.badges span {
  color: #fff;
  background: var(--navy);
}

.badges span:nth-child(2) {
  background: var(--green-dark);
}

.badges span:nth-child(3) {
  background: var(--teal);
}

.badges span:nth-child(4) {
  background: var(--orange-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
}

.hero-cta {
  min-width: 210px;
  min-height: 54px;
  font-size: 16px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
}

.hero-proof span {
  display: grid;
  min-height: 78px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(19, 41, 71, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(19, 41, 71, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-proof b {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.soft-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.26);
}

.quick-panel,
.top3-panel {
  padding: 22px;
  border: 1px solid rgba(217, 154, 36, 0.34);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.recommend-panel,
.top3-panel {
  position: relative;
  overflow: hidden;
}

.recommend-panel::before,
.top3-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--green));
}

.recommend-ribbon {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #80530c;
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
}

.recommend-panel h2,
.top3-panel h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.recommend-panel p,
.recommend-panel small,
.top3-panel small {
  color: var(--muted);
}

.hero-service-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 14px;
}

.hero-service-list a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: center;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.hero-service-list a:nth-child(1) {
  border-color: rgba(249, 115, 22, 0.34);
  background: linear-gradient(90deg, #fff7ed, #fff);
}

.hero-service-list a:nth-child(2) {
  border-color: rgba(14, 116, 144, 0.3);
  background: linear-gradient(90deg, #ecfeff, #fff);
}

.hero-service-list a:nth-child(3) {
  border-color: rgba(15, 159, 110, 0.3);
  background: linear-gradient(90deg, #ecfdf5, #fff);
}

.hero-service-logo {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 8px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(255, 244, 215, 0.88)),
    url("assets/hero-ticket-buyback.png") center / cover;
  overflow: hidden;
}

.hero-service-logo.premier-logo {
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.2), rgba(236, 254, 255, 0.9)),
    url("assets/hero-ticket-buyback.png") center / cover;
}

.hero-service-logo.flash-logo {
  grid-template-columns: auto 1fr;
  gap: 5px;
  background:
    linear-gradient(135deg, rgba(15, 159, 110, 0.22), rgba(236, 253, 245, 0.92)),
    url("assets/hero-ticket-buyback.png") center / cover;
}

.hero-service-logo img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(18, 59, 93, 0.2));
}

.hero-service-logo .flash-icon {
  width: 24px;
  height: 24px;
}

.hero-service-logo .flash-wordmark {
  max-height: 20px;
}

.hero-service-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.hero-service-list b {
  color: var(--navy);
  line-height: 1.25;
}

.hero-service-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-service-list em {
  min-width: 78px;
  color: var(--orange-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.score-list {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.score-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.score-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.score-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.recommend-panel small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  gap: 3px;
  min-height: 82px;
  align-content: center;
  padding: 14px clamp(18px, 4vw, 42px);
  background: #fff;
}

.trust-strip b {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px clamp(18px, 5vw, 72px);
  background: #fff;
  box-shadow: 0 10px 26px rgba(19, 41, 71, 0.06);
}

.decision-strip a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  text-decoration: none;
}

.decision-strip b {
  color: var(--navy);
  line-height: 1.25;
}

.decision-strip em {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.decision-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.decision-icon::before {
  font-size: 21px;
  font-weight: 900;
}

.decision-icon.phone::before {
  content: "総";
  font-size: 12px;
}

.decision-icon.speed::before {
  content: "速";
}

.decision-icon.rate::before {
  content: "%";
}

.panel-title {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--base);
  font-weight: 900;
}

.panel-note,
.mini-note,
.evidence-note,
.ranking-note,
.source-note,
.section-title p {
  color: var(--muted);
}

.panel-note,
.evidence-note,
.ranking-note {
  margin: 14px 0 0;
  font-size: 13px;
}

.evidence-note,
.ranking-note {
  max-width: 780px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(36, 54, 75, 0.12);
  border-radius: 0;
  background: transparent;
  font-weight: 700;
}

.section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.section:not(.final-cta) > * {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.section.soft {
  background: #f9faf8;
}

.review-policy {
  background: #fff;
  padding-top: clamp(30px, 4.5vw, 48px);
  padding-bottom: clamp(30px, 4.5vw, 50px);
}

.review-policy .section-title {
  max-width: 760px;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: 0;
}

.review-policy .ranking-note {
  max-width: 920px;
  margin-top: 0;
  padding: 0 0 18px;
  border-top: 0;
  border-bottom: 1px solid rgba(36, 54, 75, 0.13);
}

.review-policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
}

.review-policy-grid div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(36, 74, 112, 0.12);
  border-radius: 8px;
  background: #fbfcfd;
}

.review-policy-grid b {
  color: #172a3d;
  font-size: 13px;
  font-weight: 950;
}

.review-policy-grid span {
  color: #566372;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.55;
}

.ranking-return-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(14, 116, 144, 0.18);
  border-radius: 8px;
  background: #f6fbfb;
}

.ranking-return-cta p {
  margin: 0;
  color: #374656;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.ranking-return-cta .button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 13px;
  border-color: rgba(14, 116, 144, 0.24);
  color: #0c5f66;
  background: #fff;
  box-shadow: none;
  font-size: 12px;
}

.rank-proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
}

.rank-proof-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(190, 128, 31, 0.22);
  border-radius: 999px;
  background: #fff8e9;
  color: #875411;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
}

.ticket-center-focus {
  background:
    linear-gradient(180deg, #fff 0%, #fff8ee 100%);
}

.ticket-center-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.focus-lead-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(202, 117, 28, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(63, 45, 22, 0.08);
}

.focus-lead-card h3 {
  margin: 0;
  color: #172a3d;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.28;
  letter-spacing: 0;
}

.focus-lead-card p {
  margin: 0;
  color: #4f5b68;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.focus-lead-card .button {
  margin-top: 4px;
}

.focus-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.focus-check-list article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(36, 74, 112, 0.13);
  border-radius: 8px;
  background: #fff;
}

.focus-check-list b {
  color: #963c13;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.35;
}

.focus-check-list span {
  color: #536070;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.7;
}

#compare {
  padding-top: clamp(76px, 9vw, 116px);
  padding-bottom: clamp(78px, 9vw, 118px);
  background:
    linear-gradient(180deg, #fff 0%, #f3f6f8 18%, #f3f6f8 82%, #fff 100%);
}

#compare > * {
  width: min(100%, 1240px);
}

#compare .section-title {
  max-width: 940px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom-color: rgba(36, 54, 75, 0.18);
}

.flow {
  padding-top: clamp(26px, 3.2vw, 38px);
  padding-bottom: clamp(26px, 3.2vw, 38px);
  background: #fbfaf7;
}

.flow .section-title {
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: 0;
}

.safety-guide {
  padding-top: clamp(50px, 6vw, 76px);
  padding-bottom: clamp(44px, 5.5vw, 66px);
  background: #fff;
}

.safety-guide .section-title {
  max-width: 760px;
}

#other-services {
  padding-top: clamp(24px, 3vw, 34px);
  padding-bottom: clamp(24px, 3vw, 34px);
  background: #f6f7f5;
}

#other-services .section-title {
  margin-bottom: 8px;
  padding-bottom: 0;
  border-bottom: 0;
}

#faq {
  padding-top: clamp(38px, 4.6vw, 56px);
  padding-bottom: clamp(38px, 4.6vw, 56px);
}

#faq .section-title {
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: 0;
}

.top-picks {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.section-title {
  max-width: 820px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-title.compact {
  margin-bottom: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  border-top: 1px solid var(--line);
}

.review-grid article {
  display: grid;
  gap: 5px;
  min-height: auto;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.review-grid article:first-child {
  border-color: var(--line);
  background: transparent;
}

.review-grid b {
  color: var(--navy);
}

.review-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.compare-table {
  overflow: hidden;
  border: 1px solid rgba(36, 54, 75, 0.18);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 28px 58px rgba(18, 59, 93, 0.14);
}

.priority-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 18px;
  padding: 20px;
  border: 1px solid rgba(217, 154, 36, 0.35);
  border-radius: 10px;
  background: linear-gradient(90deg, #fff8e7, #ffffff);
  box-shadow: 0 12px 28px rgba(19, 41, 71, 0.07);
}

.priority-box.top3-push {
  border-color: rgba(14, 116, 144, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 247, 237, 0.88), rgba(236, 254, 255, 0.74), rgba(236, 253, 245, 0.82));
}

.priority-box span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #80530c;
  background: #fff0c2;
  font-size: 12px;
  font-weight: 900;
}

.priority-box h3 {
  margin-bottom: 6px;
}

.priority-box p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.compare-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-card {
  display: grid;
  gap: 4px;
  min-height: auto;
  align-content: center;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
}

.guide-card:last-child {
  border-right: 0;
}

.guide-card.orange {
  border-color: var(--line);
  background: transparent;
}

.guide-card.cyan {
  border-color: var(--line);
  background: transparent;
}

.guide-card.green {
  border-color: var(--line);
  background: transparent;
}

.guide-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.guide-card b {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.guide-card em {
  width: fit-content;
  margin-top: 5px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.guide-card.cyan em {
  color: var(--teal);
  background: transparent;
}

.guide-card.green em {
  color: var(--green-dark);
  background: transparent;
}

.table-row {
  display: grid;
  grid-template-columns: 66px 1.35fr 0.78fr 0.82fr 0.92fr 1fr 150px;
  gap: 10px;
  align-items: center;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-head {
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.featured {
  background: #f8fcff;
}

.featured.best {
  border-left: 0;
  background: linear-gradient(90deg, #fff7ed, #fff);
}

.featured .button {
  min-height: 46px;
}

.featured:nth-child(3) {
  background: linear-gradient(90deg, #ecfeff, #fff);
}

.featured:nth-child(4) {
  background: linear-gradient(90deg, #ecfdf5, #fff);
}

.muted-row {
  color: #475569;
  background: #fff;
}

.rank {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--gold);
  font-weight: 900;
}

.muted-row .rank {
  background: #94a3b8;
}

.shop {
  color: var(--navy);
  font-weight: 900;
}

.shop em {
  display: block;
  width: fit-content;
  margin-top: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #e9f9ef;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}

.button.ghost {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
}

#compare .button {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 12px;
  box-shadow: none;
}

#compare .featured.best .button.primary {
  color: #fff;
  background: var(--navy);
}

#compare .featured:not(.best) .button.primary {
  color: var(--navy);
  border-color: rgba(36, 54, 75, 0.18);
  background: #fff;
}

#compare .button.ghost {
  color: #647084;
  border-color: rgba(36, 54, 75, 0.16);
  background: transparent;
}

.full {
  width: 100%;
}

.mini-note {
  max-width: 960px;
  margin: 16px auto 0;
  font-size: 13px;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pick-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 59, 93, 0.09);
}

.pick-card.orange {
  border-color: rgba(249, 115, 22, 0.34);
  background: linear-gradient(180deg, #fff7ed, #fff);
}

.pick-card.cyan {
  border-color: rgba(14, 116, 144, 0.3);
  background: linear-gradient(180deg, #ecfeff, #fff);
}

.pick-card.green {
  border-color: rgba(15, 159, 110, 0.3);
  background: linear-gradient(180deg, #ecfdf5, #fff);
}

.pick-rank {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.pick-card.cyan .pick-rank {
  background: var(--teal);
}

.pick-card.green .pick-rank {
  background: var(--green-dark);
}

.fit-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 8px;
  color: #9a3412;
  background: rgba(255, 247, 237, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.pick-card.cyan .fit-tag {
  border-color: rgba(14, 116, 144, 0.22);
  color: #155e75;
  background: rgba(236, 254, 255, 0.86);
}

.pick-card.green .fit-tag {
  border-color: rgba(15, 159, 110, 0.22);
  color: #047857;
  background: rgba(236, 253, 245, 0.86);
}

.pick-card h3 {
  margin-bottom: 0;
}

.pick-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.conversion-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversion-list li {
  position: relative;
  min-height: 28px;
  padding: 5px 8px 5px 28px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.conversion-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.pick-card.cyan .conversion-list li::before {
  background: var(--teal);
}

.pick-card.green .conversion-list li::before {
  background: var(--green-dark);
}

.pick-card dl {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.pick-card dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid rgba(216, 227, 237, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.pick-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pick-card dd {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.rank-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rank-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 41, 71, 0.08);
}

.rank-card.gold {
  border-color: var(--line);
  background: #fff;
}

.rank-card:nth-child(1) {
  border-color: rgba(249, 115, 22, 0.34);
  background: linear-gradient(180deg, #fff7ed, #fff);
}

.rank-card:nth-child(2) {
  border-color: rgba(14, 116, 144, 0.3);
  background: linear-gradient(180deg, #ecfeff, #fff);
}

.rank-card:nth-child(3) {
  border-color: rgba(15, 159, 110, 0.3);
  background: linear-gradient(180deg, #ecfdf5, #fff);
}

.brand-visual {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  margin: -6px -6px 16px;
  padding: 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.brand-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  pointer-events: none;
}

.brand-visual img {
  position: relative;
  z-index: 1;
  max-width: 86%;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(18, 59, 93, 0.2));
}

.ticket-center-visual {
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(255, 244, 215, 0.86)),
    url("assets/hero-ticket-buyback.png") center / cover;
}

.premier-visual {
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.22), rgba(236, 254, 255, 0.9)),
    url("assets/hero-ticket-buyback.png") center / cover;
}

.flash-visual {
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(15, 159, 110, 0.24), rgba(236, 253, 245, 0.92)),
    url("assets/hero-ticket-buyback.png") center / cover;
}

.brand-visual .flash-icon {
  width: 48px;
  height: 48px;
}

.brand-visual .flash-wordmark {
  max-height: 34px;
}

.card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.rank-chip,
.label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.rank-chip {
  color: #fff;
  background: var(--orange);
}

.rank-card:nth-child(2) .rank-chip {
  background: var(--teal);
}

.rank-card:nth-child(3) .rank-chip {
  background: var(--green-dark);
}

.label {
  color: var(--green-dark);
  background: #e9f9ef;
}

.rank-card p {
  color: var(--muted);
}

.reason-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.reason-list li {
  position: relative;
  padding-left: 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.reason-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
}

.rank-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.mini-badges {
  margin: auto 0 18px;
}

.mini-badges span {
  color: var(--navy);
  background: var(--blue-soft);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid var(--line);
}

.article-grid a {
  display: grid;
  gap: 6px;
  min-height: auto;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-weight: 900;
  box-shadow: none;
}

.article-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(36, 54, 75, 0.14);
  list-style: none;
}

.flow-steps li {
  display: grid;
  gap: 8px;
  min-height: auto;
  align-content: center;
  justify-items: start;
  padding: 12px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid rgba(36, 54, 75, 0.14);
  border-radius: 0;
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.flow-steps li:last-child {
  border-right: 0;
}

.flow-steps span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-dark);
}

.legal-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  border-top: 1px solid var(--line);
}

.legal-box > div,
.alert-box,
.criteria-panel,
.risk-benefit article,
.rate-reason {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-box > div {
  padding: 18px 0;
  border-left: 0;
}

.legal-box h3,
.criteria-panel h3,
.risk-benefit h3,
.rate-reason h3 {
  margin-bottom: 10px;
}

.legal-box p,
.rate-reason p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.mini-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 0 0 3px;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  color: var(--teal);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.mini-label.green {
  color: var(--green-dark);
  background: transparent;
}

.mini-label.red {
  color: var(--orange-dark);
  background: transparent;
}

.alert-box {
  display: grid;
  align-content: center;
  padding: 15px 0 18px 18px;
  border-color: rgba(216, 59, 45, 0.28);
  border-left: 3px solid var(--orange);
  color: #4c241f;
  background: transparent;
}

.criteria-panel,
.rate-reason {
  margin-top: 0;
  padding: 20px 0;
}

.criteria-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 14px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: criteria;
}

.criteria-list li {
  counter-increment: criteria;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 3px 12px;
  min-height: auto;
  align-content: start;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.criteria-list li::before {
  content: counter(criteria);
  display: grid;
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.criteria-list b,
.risk-benefit b {
  color: var(--navy);
}

.criteria-list span {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.risk-benefit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 0;
  border-bottom: 1px solid var(--line);
}

.risk-benefit article {
  padding: 20px 0;
  border-bottom: 0;
}

.risk-benefit ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.reason-grid span {
  display: grid;
  min-height: auto;
  place-items: start;
  padding: 11px 13px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--teal);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.reason-grid span:last-child {
  border-right: 0;
}

.other-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  border-top: 1px solid rgba(36, 54, 75, 0.12);
}

.other-links a {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(249, 115, 22, 0.22), transparent 28%),
    linear-gradient(135deg, var(--deep, #0b2239), var(--navy) 58%, var(--teal));
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-cta p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 0;
  border-top: 1px solid rgba(36, 54, 75, 0.14);
}

details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 0 15px;
  color: var(--muted);
}

details p a {
  display: inline-block;
  margin-left: 4px;
  color: #9d5b12;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
  margin-top: 16px;
}

.faq-cta-note {
  max-width: 900px;
  margin: 14px 0 0;
  color: #374656;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.faq-actions .button {
  min-height: 42px;
  color: var(--navy);
  border-color: rgba(36, 54, 75, 0.16);
  background: transparent;
  box-shadow: none;
  font-size: 13px;
}

.final-cta .button.primary {
  color: var(--navy);
  background: #fff;
  box-shadow: none;
}

.source-note {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 46px;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 13px;
}

.source-note p {
  margin: 0;
}

.source-note p + p {
  margin-top: 5px;
}

.review-page {
  background: #fff;
}

.company-review {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 62px) 0 clamp(54px, 7vw, 86px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: #6d7581;
  font-size: 12px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--navy);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: #a0a8b2;
}

.review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 2px solid rgba(36, 54, 75, 0.16);
}

.review-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #101923;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.16;
}

.review-hero .lead {
  max-width: 680px;
  margin-bottom: 0;
  color: #3f4b59;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 760;
  line-height: 1.85;
}

.review-logo {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(36, 54, 75, 0.13);
  border-bottom: 1px solid rgba(36, 54, 75, 0.13);
}

.review-logo img {
  max-width: 230px;
  max-height: 78px;
  object-fit: contain;
}

.review-logo.ticket-center-logo img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
}

.review-logo.text-logo span {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 950;
  line-height: 1.3;
}

.review-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin: clamp(24px, 4vw, 38px) 0;
  padding-bottom: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(36, 54, 75, 0.14);
}

.review-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
  border-top: 1px solid rgba(36, 54, 75, 0.14);
}

.review-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(36, 54, 75, 0.14);
}

.review-summary dt {
  color: #657183;
  font-size: 13px;
  font-weight: 850;
}

.review-summary dd {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
  text-align: right;
}

.review-actions {
  display: grid;
  gap: 12px;
}

.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.review-body-section {
  padding: clamp(22px, 3.4vw, 34px) 0;
  border-bottom: 1px solid rgba(36, 54, 75, 0.13);
}

.review-body-section h2 {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: clamp(23px, 2.8vw, 32px);
}

.review-body-section p {
  max-width: 760px;
  margin-bottom: 12px;
  color: #424d5c;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.85;
}

.guide-hero {
  display: block;
}

.guide-hero h1 {
  max-width: 820px;
}

.guide-hero .article-meta {
  margin-top: 18px;
}

.guide-link-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(24px, 4vw, 38px) 0 4px;
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(36, 54, 75, 0.14);
}

.guide-link-band a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(36, 54, 75, 0.15);
  border-radius: 8px;
  color: var(--navy);
  background: #fff7eb;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.guide-list-section {
  background: #fff;
}

.guide-category-list {
  display: grid;
  gap: 16px;
}

.guide-category-block,
.guide-category-section {
  display: grid;
  gap: 12px;
}

.guide-category-head {
  display: grid;
  gap: 4px;
}

.guide-category-head h2,
.guide-category-head h3 {
  margin: 0;
  color: #172a3d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
}

.guide-category-head p {
  margin: 0;
  color: #566372;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.65;
}

.guide-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guide-category-links a {
  display: grid;
  min-height: 88px;
  align-content: center;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(36, 74, 112, 0.12);
  border-radius: 8px;
  background: #fbfcfd;
  color: #172a3d;
  text-decoration: none;
}

.guide-category-links span {
  color: #0c7b80;
  font-size: 10px;
  font-weight: 950;
}

.guide-category-links b {
  font-size: 13px;
  line-height: 1.4;
}

.guide-list-grid a,
.guide-related-grid a {
  align-content: start;
}

.guide-list-grid em {
  display: block;
  margin-top: 4px;
  color: #596474;
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
  line-height: 1.65;
}

.guide-index-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-faq {
  max-width: 820px;
}

.guide-source-note {
  padding-bottom: 0;
}

.review-point-list,
.review-flow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(36, 54, 75, 0.14);
}

.review-point-list li,
.review-flow li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(36, 54, 75, 0.14);
  color: #263449;
  font-size: 15px;
  font-weight: 850;
}

.sticky {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(19, 41, 71, 0.2);
}

@media (max-width: 1180px) {
  .hero-grid-ad {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
    margin-inline: auto;
    text-align: left;
  }

  .hero-copy h1,
  .lead,
  .evidence-note {
    margin-right: auto;
  }

  .secure-note {
    margin-right: auto;
  }

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

  .ranking-card {
    min-height: 430px;
  }

  .ranking-card.featured-rank {
    min-height: 0;
  }

  .ranking-card:not(.featured-rank) {
    min-height: 400px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .pick-grid,
  .rank-cards,
  .article-grid,
  .compare-guide,
  .faq-actions,
  .review-grid,
  .legal-box,
  .ticket-center-focus-grid,
  .criteria-list,
  .risk-benefit,
  .reason-grid,
  .trust-strip,
  .decision-strip,
  .priority-box,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .fv-lower {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(247, 243, 234, 0.94));
  }

  .hero-grid {
    min-height: auto;
  }

  .ranking-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .ranking-card {
    min-height: 430px;
  }

  .ranking-card.featured-rank {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-rank-side {
    grid-column: auto;
  }

  .ranking-card:not(.featured-rank) {
    min-height: 400px;
  }

  .compare-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 76px 1fr;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(19, 41, 71, 0.06);
  }

  .table-row > *:not(.rank) {
    grid-column: 2;
  }

  .table-row .rank {
    grid-row: 1 / span 6;
    align-self: stretch;
  }

  .guide-card,
  .flow-steps li,
  .reason-grid span {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  html,
  body {
    padding-bottom: 0;
    overflow-x: hidden;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .topbar nav {
    width: 100%;
    gap: 8px 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .hero,
  .section {
    padding-inline: 16px;
    overflow-x: hidden;
  }

  .review-policy {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .review-policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    margin-bottom: 10px;
  }

  .hero-proof-chips span {
    justify-content: center;
    min-height: 26px;
    padding: 4px 8px;
    font-size: 11px;
    text-align: center;
    white-space: normal;
  }

  .focus-check-list {
    grid-template-columns: 1fr;
  }

  #compare {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .flow,
  #other-services,
  #faq {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .safety-guide {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .flow .section-title h2,
  #other-services .section-title h2,
  #faq .section-title h2 {
    font-size: 24px;
    line-height: 1.28;
  }

  .flow .section-title,
  #other-services .section-title,
  #faq .section-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  summary {
    padding: 13px 0;
  }

  details p {
    padding: 0 0 14px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy,
  .lead {
    max-width: none;
    text-align: left;
  }

  .hero-copy,
  .hero-actions {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .hero-grid,
  .hero-grid-ad,
  .hero-ranking,
  .ranking-card,
  .brand-plate,
  .card-fit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-ranking {
    overflow: hidden;
  }

  .lead {
    width: 100%;
    max-width: none;
  }

  .top3-panel {
    width: 100%;
    max-width: 358px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.14;
  }

  .mobile-break {
    display: block;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(29px, 8.5vw, 36px);
    margin-bottom: 12px;
  }

  h1 span {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    max-width: calc(100vw - 32px);
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-actions,
  .hero-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-apply-band {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin: 12px 0 14px;
    min-height: 188px;
    padding: 14px 12px 12px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 50%, rgba(255, 255, 255, 0.58) 75%, rgba(255, 255, 255, 0.2) 100%),
      url("assets/pr-realistic-man-banner-v189.jpg") 73% center / cover no-repeat,
      linear-gradient(135deg, #eefbfb 0%, #fff7dc 100%);
  }

  .hero-apply-label {
    max-width: calc(100% - 16px);
    font-size: 11px;
  }

  .hero-apply-copy b {
    max-width: 240px;
    font-size: 18px;
  }

  .hero-apply-copy {
    width: min(100%, 252px);
    transform: none;
  }

  .hero-apply-button {
    width: min(100%, 236px);
    min-height: 46px;
    padding-right: 36px;
    font-size: 16px;
  }

  .hero-apply-note {
    width: min(100%, 245px);
  }

  .hero-apply-button {
    width: 100%;
    max-width: 330px;
    min-height: 58px;
    padding: 0 48px 0 20px;
    font-size: 22px;
  }

  .hero-apply-note {
    max-width: 92%;
    font-size: 10px;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .assurance-grid div {
    min-height: 66px;
    padding: 10px 12px;
  }

  .mega-cta {
    min-height: 70px;
    gap: 9px;
    padding-inline: 12px;
    font-size: clamp(18px, 5vw, 21px);
  }

  .mega-cta span {
    flex: 0 0 58px;
    width: 58px;
    height: 48px;
    font-size: 12px;
  }

  .mega-cta::after {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
  }

  .hero-toc-panel {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-right: 0;
    margin-left: 0;
    padding: 10px 0 0;
    border-top: 1px solid rgba(36, 54, 75, 0.14);
    background: transparent;
    overflow: hidden;
  }

  .hero-toc-title {
    gap: 8px;
    font-size: 13px;
  }

  .hero-toc {
    gap: 5px 12px;
    margin-top: 0;
  }

  .hero-toc a {
    gap: 5px;
  }

  .hero-toc a b {
    padding-left: 0;
  }

  .hero-toc .toc-major {
    margin-top: 0;
  }

  .hero-toc .toc-major span {
    font-size: 12px;
  }

  .hero-toc .toc-major b {
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-toc .toc-sub span {
    font-size: 15px;
  }

  .hero-toc .toc-sub b {
    font-size: 14px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .ranking-title {
    display: grid;
    flex-wrap: wrap;
    gap: 5px 10px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    justify-items: center;
    text-align: center;
  }

  .ranking-title span,
  .ranking-title b {
    min-width: 0;
    max-width: 100%;
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .card-fit,
  .brand-plate,
  .ranking-card li {
    max-width: 100%;
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .ranking-title::before,
  .ranking-title::after {
    display: none;
  }

  .ranking-cards {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
    gap: 14px;
  }

  .ranking-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    min-height: auto;
    padding: 20px 16px 16px;
  }

  .ranking-card.featured-rank {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding: 22px 16px 18px;
    transform: none;
  }

  .feature-rank-side {
    grid-column: auto;
  }

  .featured-rank .feature-rank-main,
  .featured-rank .feature-rank-side {
    grid-template-columns: 1fr;
  }

  .featured-rank .brand-plate {
    min-height: auto;
  }

  .featured-rank .ticket-center-logo strong {
    font-size: 30px;
  }

  .ranking-card:not(.featured-rank) {
    min-height: auto;
    padding-top: 20px;
  }

  .rank-editorial-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 12px;
  }

  .rank-editorial-badge {
    width: fit-content;
    margin-left: 0;
    padding: 8px 12px;
    font-size: 12px;
  }

  .featured-rank .rank-editorial-badge {
    margin-left: 0;
  }

  .score-line {
    margin-left: 52px;
    font-size: 13px;
  }

  .score-line b {
    font-size: 23px;
  }

  .ranking-card dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-rank dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ranking-card:not(.featured-rank) dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ranking-card dl div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 40px;
    padding: 8px 0;
  }

  .featured-rank dl div {
    min-height: 54px;
    padding: 9px 0;
  }

  .ranking-card:not(.featured-rank) dl div {
    min-height: 52px;
    padding: 8px 0;
  }

  .ranking-card dt {
    font-size: 11px;
  }

  .ranking-card dd {
    max-width: 100%;
    font-size: 18px;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .ranking-card dd span {
    display: inline;
    margin-left: 2px;
    font-size: 0.72em;
    line-height: 1.2;
  }

  .lower-ranking {
    margin-top: 16px;
    padding-top: 16px;
  }

  .lower-ranking-head {
    display: grid;
    gap: 7px;
    margin-bottom: 10px;
  }

  .lower-ranking-head h3 {
    font-size: 21px;
  }

  .lower-ranking-head p {
    max-width: none;
    font-size: 12px;
  }

  .lower-rank-row {
    grid-template-columns: 42px minmax(0, 1fr) 120px;
    gap: 8px 10px;
    min-height: 168px;
    padding: 12px;
  }

  .lower-rank-number {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .lower-rank-service {
    grid-column: 2;
    grid-row: 1;
  }

  .lower-rank-service b {
    font-size: 15px;
  }

  .lower-rank-row p {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
  }

  .lower-rank-logo {
    grid-column: 3;
    grid-row: 1;
    width: 120px;
    height: 50px;
  }

  .lower-rank-official {
    grid-column: 3;
    grid-row: 2;
    width: 100%;
    min-height: 38px;
    padding: 7px 10px;
  }

  .lower-rank-meta {
    min-height: 54px;
    padding: 9px 10px;
  }

  .lower-rank-meta:nth-of-type(3) {
    grid-column: 1 / 3;
    grid-row: 4;
  }

  .lower-rank-meta:nth-of-type(4) {
    grid-column: 3 / 4;
    grid-row: 4;
  }

  .lower-rank-meta:nth-of-type(5) {
    grid-column: 1 / 4;
    grid-row: 5;
  }

  .lower-rank-meta b {
    font-size: 13px;
    white-space: normal;
  }

  .fv-lower {
    padding-inline: 16px;
  }

  .quick-compare,
  .safety-panel {
    width: 100%;
    padding: 16px;
  }

  .safety-panel {
    padding: 16px 0 0;
  }

  .mini-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ranking-return-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .ranking-return-cta .button {
    width: 100%;
  }

  .compact-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-radius: 8px;
  }

  .compact-row {
    grid-template-columns: 166px 104px 116px 92px 110px;
    min-width: 588px;
  }

  .compact-row > * {
    padding: 9px 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .compact-row > *:first-child {
    white-space: normal;
  }

  .compact-row strong {
    font-size: 16px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 66px;
  }

  .top3-panel {
    padding: 18px;
  }

  .hero-service-list a {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .hero-service-list em {
    grid-column: 2;
    grid-row: auto;
    min-width: 0;
    text-align: left;
  }

  .decision-strip {
    padding-inline: 16px;
  }

  .trust-strip div {
    min-height: 70px;
    padding-inline: 16px;
  }

  .priority-box {
    padding: 16px;
  }

  .priority-box .button {
    width: 100%;
  }

  .badges span,
  .mini-badges span {
    width: 100%;
    justify-content: center;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row .rank,
  .table-row > *:not(.rank) {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky {
    display: none;
  }
}

@media (max-width: 760px) {
  .company-review {
    width: min(100% - 32px, 920px);
    padding-top: 24px;
  }

  .review-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-hero h1 {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .review-logo {
    min-height: 100px;
    justify-content: start;
    padding: 14px 0;
  }

  .review-logo img {
    max-width: 190px;
    max-height: 58px;
  }

  .review-logo.ticket-center-logo img {
    width: 58px;
    height: 58px;
  }

  .review-summary {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-summary dl {
    grid-template-columns: 1fr;
  }

  .review-actions .button,
  .review-actions .text-link {
    width: 100%;
  }
}

/* Section 5 ranking redesign: image first, then rank/name/details. */
.visual-ranking-card.ranking-card {
  --rank-card-side: clamp(22px, 2.4vw, 28px);
  gap: 14px;
  padding: 0 0 clamp(20px, 2.4vw, 26px);
  border-color: rgba(37, 74, 112, 0.14);
  background: #fff;
  box-shadow: 0 16px 30px rgba(27, 45, 69, 0.1);
}

.visual-ranking-card .service-visual {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #eaf4f8;
}

.visual-ranking-card .service-visual > img {
  display: block;
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.visual-ranking-card .service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 252, 255, 0.02), rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.86));
  pointer-events: none;
}

.service-visual-copy {
  position: absolute;
  top: 50%;
  right: clamp(14px, 2vw, 24px);
  z-index: 1;
  display: grid;
  width: min(58%, 300px);
  gap: 8px;
  transform: translateY(-50%);
  padding: clamp(15px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(26, 61, 89, 0.12);
}

.service-visual-copy span {
  color: #0c5faa;
  font-size: 12px;
  font-weight: 950;
}

.service-visual-copy b {
  color: #073a56;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.2;
}

.service-visual-copy em {
  color: #17465e;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.45;
}

.visual-ranking-card .rank-editorial-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 var(--rank-card-side);
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(36, 54, 75, 0.12);
}

.rank-image-badge {
  display: block;
  width: clamp(68px, 7vw, 88px);
  height: clamp(78px, 8vw, 102px);
  flex: 0 0 auto;
}

.rank-image-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.seo-comparison {
  background: #fff;
}

.comparison-lead,
.review-links-lead {
  max-width: 900px;
  margin: 0 0 18px;
  color: #485462;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(36, 74, 112, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(31, 50, 75, 0.08);
}

.seo-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  font-size: 13px;
}

.seo-table th,
.seo-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(36, 74, 112, 0.1);
  text-align: left;
  vertical-align: middle;
}

.seo-table th {
  background: #f6f9fb;
  color: #293847;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.seo-table td {
  color: #324050;
  font-weight: 760;
  line-height: 1.45;
}

.seo-table td:nth-child(1),
.seo-table td:nth-child(3) {
  color: #bd2e21;
  font-weight: 950;
}

.seo-table td:nth-child(2) {
  color: #172a3d;
  font-weight: 950;
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #fff3df;
  color: #8a510d;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.consultation-box {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(14, 121, 124, 0.18);
  border-radius: 8px;
  background: #f4fbfa;
}

.consultation-box h3 {
  margin: 8px 0 8px;
  color: #172a3d;
  font-size: 20px;
}

.consultation-box p {
  margin: 0;
  color: #435362;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.consultation-box ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-box a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(14, 121, 124, 0.18);
  border-radius: 7px;
  background: #fff;
  color: #096f73;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.review-links {
  background: #fff;
}

.review-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.review-link-grid a {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(36, 74, 112, 0.12);
  border-radius: 8px;
  background: #fbfcfd;
  color: #172a3d;
  text-decoration: none;
}

.review-link-grid span {
  color: #0c7b80;
  font-size: 10px;
  font-weight: 950;
}

.review-link-grid b {
  font-size: 13px;
  line-height: 1.4;
}

.visual-ranking-card .brand-plate {
  min-height: auto;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.visual-ranking-card .card-fit,
.visual-ranking-card .check-title,
.visual-ranking-card dl,
.visual-ranking-card ul,
.visual-ranking-card .button {
  margin-right: var(--rank-card-side);
  margin-left: var(--rank-card-side);
}

.visual-ranking-card dl {
  border-color: rgba(36, 54, 75, 0.15);
}

.visual-ranking-card .card-fit,
.visual-ranking-card .check-title {
  text-align: center;
}

.visual-ranking-card .check-title {
  justify-content: center;
}

.visual-ranking-card .check-title::before,
.visual-ranking-card .check-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(174, 119, 31, 0.26);
}

.visual-ranking-card dl div {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.visual-ranking-card dt,
.visual-ranking-card dd {
  text-align: center;
}

.visual-ranking-card ul {
  gap: 7px;
  margin-top: 0;
  padding-top: 0;
  justify-items: center;
  text-align: center;
}

.rank-reason {
  display: grid;
  gap: 5px;
  margin: 0 var(--rank-card-side) 2px;
  padding: 12px 13px;
  border: 1px solid rgba(190, 38, 28, 0.18);
  border-radius: 8px;
  background: #fff8f3;
  text-align: center;
}

.rank-reason p {
  margin: 0;
  color: #b92018;
  font-size: 12px;
  font-weight: 950;
}

.rank-reason span {
  color: #374656;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.55;
}

.visual-ranking-card li {
  padding-left: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
}

.visual-ranking-card li::before {
  content: none;
}

.visual-ranking-card dl div:nth-child(1) dd,
.visual-ranking-card dl div:nth-child(2) dd {
  color: #c0271c;
}

.visual-ranking-card .top-service-cta {
  align-self: center;
  width: min(calc(100% - (var(--rank-card-side) * 2)), 320px);
  min-height: 58px;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #e13b2f, #b92018);
  box-shadow: 0 12px 24px rgba(190, 38, 28, 0.22);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 950;
}

@media (max-width: 900px) {
  .service-visual-copy {
    width: min(62%, 270px);
  }

  .review-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .visual-ranking-card.ranking-card {
    --rank-card-side: 20px;
  }

  .visual-ranking-card .service-visual,
  .visual-ranking-card .service-visual > img {
    min-height: 190px;
    height: 190px;
  }

  .service-visual-copy {
    right: 12px;
    width: min(64%, 220px);
    padding: 12px;
  }

  .service-visual-copy b {
    font-size: 21px;
  }

  .service-visual-copy em {
    display: none;
  }

  .visual-ranking-card .rank-editorial-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .rank-image-badge {
    width: 70px;
    height: 82px;
  }

  .consultation-box {
    grid-template-columns: 1fr;
  }

  .review-link-grid {
    grid-template-columns: 1fr;
  }

  .guide-category-links {
    grid-template-columns: 1fr;
  }
}
