/* ══════════════════════════════════════════════════
   Water Server LP – styles.css
   https://vpscomparehub.com/water-server/
   ══════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────── */
:root {
  --navy:       #0c2d5a;
  --navy-mid:   #174076;
  --blue:       #1565c0;
  --blue-lt:    #bbdefb;
  --water:      #e3f2fd;
  --teal:       #0d9488;
  --teal-dk:    #0f766e;
  --teal-lt:    #ccfbf1;
  --white:      #ffffff;
  --bg:         #f8fafc;
  --bg-muted:   #f1f5f9;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --good:       #16a34a;
  --warn:       #d97706;
  --radius:     8px;
  --shadow:     0 2px 8px rgba(12,45,90,.08);
  --shadow-md:  0 4px 16px rgba(12,45,90,.12);
  --max:        900px;
  --font: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ─────────────────────────────────────── */
.ws-container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* ── Header / Nav ───────────────────────────────── */
.ws-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.ws-header-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px; padding: 0 1.25rem; gap: 1rem;
}
.ws-logo {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: .95rem; color: var(--navy);
  flex-shrink: 0; text-decoration: none;
}
.ws-logo:hover { text-decoration: none; }
.ws-logo-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; flex-shrink: 0;
}
.ws-nav { display: flex; gap: .1rem; flex-wrap: wrap; }
.ws-nav a {
  font-size: .76rem; font-weight: 600; color: var(--muted);
  padding: .28rem .5rem; border-radius: 5px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.ws-nav a:hover { color: var(--navy); background: var(--water); text-decoration: none; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, #1a5276 45%, var(--teal-dk) 100%);
  padding: 3rem 1.25rem 5.5rem;
  text-align: center; color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(255,255,255,.04) 0%, transparent 45%);
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
}
.hero-wave svg { width: 100%; height: 100%; display: block; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: 1.6rem; align-items: center;
}
.hero-copy { max-width: 560px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 5px 14px;
  font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.92);
  margin-bottom: 1.1rem; backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 900; line-height: 1.25;
  letter-spacing: 0; margin-bottom: .9rem;
}
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem;
  max-width: 520px;
  margin: -.2rem auto 1rem;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-sub {
  font-size: .95rem; line-height: 1.8;
  color: rgba(255,255,255,.85);
  max-width: 520px; margin: 0 auto 1.1rem;
}
.hero-price-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
  max-width: 520px;
  margin: 0 auto 1.15rem;
}
.hero-price-point {
  min-width: 0;
  padding: .55rem .45rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
}
.hero-price-point b {
  display: block;
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.2;
}
.hero-price-point small {
  display: block;
  margin-top: .12rem;
  color: rgba(255,255,255,.78);
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.25;
}
.hero-ctas {
  display: flex; flex-direction: column; gap: .55rem;
  align-items: center; max-width: 320px; margin: 0 auto;
}
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; padding: .82rem 1.5rem;
  background: var(--teal); color: #fff;
  font-weight: 800; font-size: .95rem; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(13,148,136,.45);
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--teal-dk); transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13,148,136,.55);
  text-decoration: none; color: #fff;
}
.btn-ghost {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; padding: .68rem 1.5rem;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.92);
  font-weight: 700; font-size: .88rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.28);
  transition: background .2s; text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.2); text-decoration: none; color: #fff; }
.hero-media {
  max-width: 430px; margin: 0 auto;
}
.hero-media-card {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  padding: .55rem;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.hero-media-card img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
}

/* ── PR Disclosure Bar ──────────────────────────── */
.pr-bar {
  max-width: var(--max);
  margin: .3rem auto 0;
  padding: .15rem 1.25rem;
  font-size: .67rem; color: #b0bac6; line-height: 1.5;
  text-align: center;
}
@media (min-width: 860px) {
  .pr-bar { padding: .15rem 2rem; }
}

/* ── Section common ─────────────────────────────── */
.ws-section { padding: 2.75rem 1.25rem; }
.ws-section + .ws-section { padding-top: 0; }
.section-white { background: var(--white); }
.section-head { text-align: center; margin-bottom: 1.75rem; }
.kicker {
  display: inline-block; font-size: .7rem; font-weight: 800;
  letter-spacing: .14em; color: var(--teal); background: var(--teal-lt);
  padding: 3px 11px; border-radius: 999px; margin-bottom: .5rem;
}
.section-head h2 {
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  font-weight: 900; color: var(--navy); line-height: 1.3; margin-bottom: .35rem;
}
.section-head p { font-size: .86rem; color: var(--muted); }

/* ── Price Quick View ─────────────────────────── */
.price-quick-section { background: var(--bg); padding-top: 2.2rem; }
.price-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.price-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}
.price-quick-card-primary {
  border-color: #99f6e4;
  box-shadow: 0 4px 18px rgba(13,148,136,.12);
}
.price-quick-label {
  display: inline-flex;
  color: var(--teal-dk);
  background: var(--teal-lt);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 8px;
  margin-bottom: .5rem;
}
.price-quick-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: .45rem;
}
.price-quick-card p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
  margin-bottom: .75rem;
}
.price-quick-card a,
.price-caution a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: var(--teal-dk);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.price-quick-card a::after,
.price-caution a::after {
  content: "›";
  margin-left: .35rem;
  font-size: 1rem;
  line-height: 1;
}
.price-quick-card a:hover,
.price-caution a:hover { color: var(--navy); text-decoration: none; }
.price-actions {
  display: grid;
  gap: .45rem;
  margin-top: .3rem;
}
.price-quick-card .price-direct {
  width: 100%;
  min-height: 40px;
  padding: .55rem .85rem;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: .8rem;
  box-shadow: 0 3px 10px rgba(13,148,136,.22);
}
.price-quick-card .price-direct:hover {
  background: var(--teal-dk);
  color: #fff;
}
.price-quick-card .price-detail {
  color: var(--muted);
  min-height: 28px;
}
.price-quick-card .price-detail:hover { color: var(--navy); }
.price-caution {
  display: grid;
  gap: .6rem;
  align-items: center;
  margin-top: .85rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 3px solid var(--warn);
  border-radius: var(--radius);
  padding: .85rem 1rem;
}
.price-caution strong {
  display: block;
  color: #9a3412;
  font-size: .86rem;
  font-weight: 900;
  margin-bottom: .15rem;
}
.price-caution p {
  color: #7c2d12;
  font-size: .78rem;
  line-height: 1.55;
}
.price-decision {
  display: grid;
  gap: .85rem;
  margin-top: .85rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #99f6e4;
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 68%);
  box-shadow: var(--shadow);
}
.price-decision-copy span {
  display: inline-flex;
  color: var(--teal-dk);
  background: var(--teal-lt);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
  padding: 2px 8px;
  margin-bottom: .45rem;
}
.price-decision-copy strong {
  display: block;
  color: var(--navy);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: .3rem;
}
.price-decision-copy p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
}
.price-decision-actions {
  display: grid;
  gap: .45rem;
}
.price-decision-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .55rem .85rem;
  border-radius: 7px;
  font-size: .8rem;
  font-weight: 900;
  text-decoration: none;
}
.price-decision-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 3px 10px rgba(13,148,136,.22);
}
.price-decision-primary:hover {
  background: var(--teal-dk);
  color: #fff;
  text-decoration: none;
}
.price-decision-secondary {
  color: var(--teal-dk);
  border: 1px solid #99f6e4;
  background: #fff;
}
.price-decision-secondary:hover {
  color: var(--navy);
  text-decoration: none;
}
.choice-shortcut {
  margin-top: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}
.choice-shortcut-head {
  display: grid;
  gap: .2rem;
  margin-bottom: .85rem;
}
.choice-shortcut-head span {
  color: var(--teal-dk);
  font-size: .72rem;
  font-weight: 900;
}
.choice-shortcut-head strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}
.choice-shortcut-grid {
  display: grid;
  gap: .75rem;
}
.choice-card {
  display: grid;
  gap: .45rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: .9rem;
}
.choice-card-primary { border-color: #99f6e4; }
.choice-label {
  justify-self: start;
  color: var(--teal-dk);
  background: var(--teal-lt);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 8px;
}
.choice-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}
.choice-card p {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}
.choice-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  padding: .55rem .85rem;
}
.choice-card a:hover {
  background: var(--teal-dk);
  color: #fff;
  text-decoration: none;
}
.choice-card a::after {
  content: "›";
  margin-left: .35rem;
  font-size: 1rem;
  line-height: 1;
}
.choice-note {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.55;
}
.precheck-panel {
  margin-top: .85rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 1rem;
}
.precheck-head {
  display: grid;
  gap: .18rem;
  margin-bottom: .75rem;
}
.precheck-head span {
  color: var(--teal-dk);
  font-size: .7rem;
  font-weight: 900;
}
.precheck-head strong {
  color: var(--navy);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.35;
}
.precheck-list {
  display: grid;
  gap: .48rem;
}
.precheck-list li {
  display: grid;
  gap: .15rem;
  padding-bottom: .48rem;
  border-bottom: 1px dashed var(--border);
}
.precheck-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.precheck-list b {
  color: var(--navy);
  font-size: .8rem;
}
.precheck-list span {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}
.precheck-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .85rem;
}
.precheck-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  color: var(--teal-dk);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
  padding: .48rem .65rem;
}
.precheck-actions a:hover {
  border-color: #99f6e4;
  background: var(--teal-lt);
  color: var(--navy);
  text-decoration: none;
}

/* ── Intent Guide ──────────────────────────────── */
.intent-section { padding-bottom: 2.2rem; }
.intent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .85rem;
}
.intent-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.intent-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}
.intent-label {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 800;
  color: var(--teal-dk);
  background: var(--teal-lt);
  border: 1px solid #99f6e4;
  border-radius: 999px;
  padding: 2px 8px;
  margin-bottom: .55rem;
}
.intent-card strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: .35rem;
}
.intent-card p {
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.6;
  margin-bottom: .8rem;
}
.intent-services {
  display: flex;
  flex-wrap: wrap;
  gap: .28rem;
  margin-top: auto;
}
.intent-services span {
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy-mid);
  background: var(--water);
  border: 1px solid var(--blue-lt);
  border-radius: 999px;
  padding: 2px 7px;
}
.intent-note {
  margin-top: .85rem;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}

/* ── Quick Guide (3秒) ──────────────────────────── */
.quick-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
}
.quick-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.1rem;
  box-shadow: var(--shadow);
}
.quick-icon {
  width: 42px; height: 42px; border-radius: 9px;
  background: var(--water); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: .7rem;
}
.quick-card h3 { font-size: .92rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.quick-card p { font-size: .81rem; color: var(--muted); line-height: 1.6; }
.quick-card .tags { display: flex; flex-wrap: wrap; gap: .25rem; margin-top: .5rem; }
.qtag {
  font-size: .68rem; font-weight: 700;
  background: var(--bg-muted); color: var(--muted);
  border: 1px solid var(--border); padding: 2px 7px; border-radius: 999px;
}

/* ── Compare Table ──────────────────────────────── */
.monthly-pick {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  margin-bottom: 1rem;
}
.monthly-pick-head {
  display: grid;
  gap: .25rem;
  margin-bottom: .8rem;
}
.monthly-pick-head strong {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 900;
}
.monthly-pick-head p {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.monthly-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
.monthly-pick-grid a {
  display: grid;
  gap: .18rem;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .85rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.monthly-pick-grid a:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
  text-decoration: none;
}
.monthly-label {
  justify-self: flex-start;
  color: var(--teal-dk);
  background: var(--teal-lt);
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 800;
  padding: 2px 8px;
  margin-bottom: .15rem;
}
.monthly-pick-grid strong {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
}
.monthly-pick-grid em {
  color: var(--accent);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}
.monthly-pick-grid small {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}
.compare-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 0 -1.25rem; padding: 0 1.25rem;
}
.compare-table {
  border-collapse: collapse; min-width: 800px; width: 100%;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  font-size: .8rem;
}
.compare-table thead th {
  background: var(--navy); color: #fff; font-weight: 700;
  padding: .55rem .45rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap; vertical-align: top; font-size: .75rem;
}
.compare-table thead th:first-child {
  text-align: left; padding-left: .75rem; min-width: 90px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.th-name { font-size: .82rem; font-weight: 900; display: block; }
.th-type { font-size: .64rem; font-weight: 500; opacity: .75; display: block; margin-top: 2px; }
.th-pri {
  display: inline-block; font-size: .6rem; font-weight: 800;
  background: #fbbf24; color: #78350f;
  padding: 1px 5px; border-radius: 3px; margin-bottom: 2px;
}
.th-focus-note {
  display: inline-flex;
  margin-top: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fef3c7;
  font-size: .62rem;
  font-weight: 900;
  line-height: 1.25;
}
.compare-table-cost-focus thead th:nth-child(2) {
  background: linear-gradient(180deg, #0f766e 0%, #0c2d5a 100%);
  box-shadow: inset 2px 0 0 #fbbf24, inset -2px 0 0 #fbbf24;
}
.compare-table tbody tr:nth-child(even) { background: var(--bg); }
.compare-table tbody tr:hover { background: var(--water); }
.compare-table tbody td {
  padding: .45rem .45rem; border: 1px solid var(--border);
  text-align: center; vertical-align: middle; line-height: 1.3;
}
.compare-table-cost-focus tbody td:nth-child(2) {
  background: #f0fdfa;
  border-left: 2px solid #99f6e4;
  border-right: 2px solid #99f6e4;
}
.compare-table-cost-focus tbody tr:nth-child(even) td:nth-child(2) {
  background: #ecfeff;
}
.compare-table-cost-focus tbody tr:hover td:nth-child(2) {
  background: #ccfbf1;
}
.compare-table tbody td:first-child {
  text-align: left; font-weight: 700; color: var(--navy);
  padding-left: .75rem; background: var(--bg-muted);
  white-space: nowrap; border-left: none;
  font-size: .78rem;
}
.compare-cost-cell {
  font-size: .74rem;
}
.compare-cost-main {
  display: block;
  color: var(--teal-dk);
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.25;
}
.compare-cost-sub {
  display: block;
  color: var(--text);
  font-weight: 800;
  margin-top: 2px;
}
.compare-cost-note {
  display: block;
  color: var(--muted);
  font-size: .63rem;
  margin-top: 2px;
}
.compare-table .cta-cell { padding: .35rem; }
.compare-btn {
  display: inline-block; padding: .28rem .55rem;
  background: var(--teal); color: #fff;
  font-size: .69rem; font-weight: 700; border-radius: 5px;
  text-decoration: none; transition: background .15s; white-space: nowrap;
}
.compare-btn:hover { background: var(--teal-dk); text-decoration: none; color: #fff; }
.compare-btn-primary {
  background: var(--warn);
  box-shadow: 0 2px 8px rgba(217,119,6,.22);
}
.compare-btn-primary:hover {
  background: #b45309;
}
.compare-pending {
  color: var(--muted);
  font-weight: 800;
}
.ok  { color: var(--good); font-weight: 700; }
.tri { color: var(--warn); font-weight: 700; }
.chk { color: var(--warn); font-size: .72rem; }
.na  { color: var(--muted); font-size: .72rem; }
.compare-note {
  font-size: .72rem; color: var(--muted); margin-top: .55rem; text-align: right;
}

/* ── Condition Recommendations ──────────────────── */
.cond-list { display: flex; flex-direction: column; gap: .7rem; }
.cond-item {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .95rem 1.1rem;
  box-shadow: var(--shadow);
}
.cond-item-focus {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 68%);
}
.cond-item-solo {
  border-color: #ddd6fe;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 68%);
}
.cond-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--water); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0; margin-top: 1px;
}
.cond-body strong {
  display: block; font-size: .88rem; font-weight: 800;
  color: var(--navy); margin-bottom: .25rem;
}
.cond-copy {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
  margin-bottom: .55rem;
}
.cond-tags { display: flex; flex-wrap: wrap; gap: .28rem; }
.ctag {
  font-size: .72rem; font-weight: 700;
  background: var(--teal-lt); color: var(--teal-dk);
  border: 1px solid #99f6e4; padding: 2px 8px; border-radius: 999px;
}
.cond-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .65rem;
}
.cond-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  color: var(--teal-dk);
  background: #fff;
  border: 1px solid #99f6e4;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  padding: 0 .75rem;
  text-decoration: none;
}
.cond-actions a:hover {
  color: #fff;
  background: var(--teal);
  text-decoration: none;
}

/* ── Service Cards ──────────────────────────────── */
.service-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .15s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card.featured { border-color: var(--teal); border-width: 2px; }
.card-head {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.05rem 1.2rem .85rem;
  border-bottom: 1px solid var(--border);
}
.svc-emblem {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.15rem; flex-shrink: 0;
}
.card-meta { flex: 1; min-width: 0; }
.svc-type {
  display: inline-block; font-size: .67rem; font-weight: 700;
  padding: 2px 7px; border-radius: 4px; margin-bottom: 3px;
}
.type-j { background: var(--water); color: var(--blue); }
.type-t { background: #fef3c7; color: #92400e; }
.type-n { background: #d1fae5; color: #065f46; }
.svc-name { font-weight: 900; font-size: .98rem; color: var(--navy); line-height: 1.2; }
.svc-priority {
  font-size: .68rem; font-weight: 800;
  background: var(--teal); color: #fff;
  padding: 2px 8px; border-radius: 999px; flex-shrink: 0; align-self: flex-start;
}
.card-body { padding: .95rem 1.2rem; }
.svc-image-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  margin-bottom: .35rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.svc-image-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.svc-image-static {
  cursor: default;
}
.svc-image-static:hover {
  transform: none;
  box-shadow: none;
}
.svc-image-link img {
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: contain;
  background: #fff;
  display: block;
}
.a8-pixel {
  width: 1px;
  height: 1px;
  display: block;
}
.svc-cost-summary {
  margin: .85rem 0;
  padding: .9rem;
  border-radius: var(--radius);
  border: 1px solid #99f6e4;
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 70%);
}
.svc-cost-summary-head {
  margin-bottom: .7rem;
}
.svc-cost-summary-head span {
  display: inline-flex;
  color: var(--teal-dk);
  background: var(--teal-lt);
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 900;
  padding: 2px 8px;
  margin-bottom: .38rem;
}
.svc-cost-summary-head strong {
  display: block;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.45;
}
.svc-cost-summary-grid {
  display: grid;
  gap: .45rem;
  margin-bottom: .7rem;
}
.svc-cost-summary-grid div {
  padding: .62rem .7rem;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: #fff;
}
.svc-cost-summary-grid small {
  display: block;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 800;
  margin-bottom: .12rem;
}
.svc-cost-summary-grid b {
  display: block;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 900;
  line-height: 1.3;
}
.svc-cost-summary-grid em {
  display: block;
  margin-top: .14rem;
  color: var(--muted);
  font-size: .66rem;
  font-style: normal;
  line-height: 1.35;
}
.svc-cost-summary a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .58rem .85rem;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(13,148,136,.22);
}
.svc-cost-summary a:hover {
  background: var(--teal-dk);
  color: #fff;
  text-decoration: none;
}
.svc-tagline {
  font-size: .83rem; font-weight: 700; color: var(--muted);
  padding: .48rem .7rem; background: var(--bg);
  border-radius: 5px; border-left: 3px solid var(--teal);
  margin-bottom: .85rem;
}
.svc-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; margin-bottom: .85rem;
}
.svc-spec {
  background: var(--bg-muted); border-radius: 5px; padding: .45rem .6rem;
}
.svc-spec-lbl { font-size: .65rem; color: var(--muted); font-weight: 600; margin-bottom: 1px; }
.svc-spec-val { font-size: .82rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.svc-points { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .9rem; }
.svc-point {
  display: flex; align-items: flex-start; gap: .38rem;
  font-size: .82rem; color: var(--text);
}
.svc-point-ck { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-cta {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; padding: .82rem 1.25rem;
  background: var(--teal); color: #fff;
  font-weight: 800; font-size: .93rem; border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(13,148,136,.3);
  transition: background .2s, transform .15s;
}
.svc-cta:hover { background: var(--teal-dk); transform: translateY(-1px); text-decoration: none; color: #fff; }
.svc-cta-note { text-align: center; font-size: .7rem; color: var(--muted); margin-top: .38rem; }
.svc-for {
  margin-top: .7rem; padding-top: .7rem;
  border-top: 1px dashed var(--border);
  font-size: .78rem; color: var(--muted);
}
.svc-for strong { color: var(--navy); font-weight: 700; }

/* ── Fee Guide ──────────────────────────────────── */
.fee-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .85rem;
}
.fee-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow);
}
.fee-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; margin-bottom: .55rem;
}
.fee-card strong { font-size: .88rem; font-weight: 800; color: var(--navy); display: block; margin-bottom: .28rem; }
.fee-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ── Checklist ──────────────────────────────────── */
.checklist-grid { display: flex; flex-direction: column; gap: .55rem; }
.check-item {
  display: flex; align-items: center; gap: .7rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .7rem .95rem;
}
.check-box {
  width: 20px; height: 20px; border-radius: 4px;
  border: 2px solid var(--border); flex-shrink: 0; background: var(--bg);
}
.check-label { font-size: .86rem; font-weight: 600; color: var(--text); }
.checklist-note { font-size: .78rem; color: var(--muted); margin-top: .7rem; }

/* ── FAQ ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .55rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: flex-start; gap: .7rem;
  padding: .85rem 1rem; text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q-badge {
  width: 21px; height: 21px; border-radius: 5px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .74rem; font-weight: 900; flex-shrink: 0;
}
.faq-q-text { flex: 1; font-size: .88rem; font-weight: 700; color: var(--navy); line-height: 1.5; text-align: left; }
.faq-chevron { font-size: .7rem; color: var(--muted); padding-top: 3px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 350px; }
.faq-a-inner {
  display: flex; gap: .7rem;
  padding: .75rem 1rem .9rem; border-top: 1px dashed var(--border);
}
.faq-a-badge {
  width: 21px; height: 21px; border-radius: 5px;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .74rem; font-weight: 900; flex-shrink: 0;
}
.faq-a-text { font-size: .83rem; color: var(--muted); line-height: 1.8; }

/* ── Page Meta / Disclosure ─────────────────────── */
.page-meta {
  font-size: .7rem; color: #b0bac6; line-height: 1.7;
}
.page-meta strong { color: #b0bac6; font-weight: 600; }

/* ── Footer ─────────────────────────────────────── */
.ws-footer {
  background: var(--navy); color: rgba(255,255,255,.6);
  padding: 2rem 1.25rem 2.5rem;
}
.ws-footer-inner { max-width: var(--max); margin: 0 auto; }
.ws-footer-logo {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .65rem;
}
.ws-footer-logo-icon {
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff;
}
.ws-footer-name { font-weight: 800; color: #fff; font-size: .92rem; }
.ws-footer-text { font-size: .76rem; line-height: 1.75; margin-bottom: .65rem; }
.ws-footer-links {
  display: flex; gap: 1rem; flex-wrap: wrap; font-size: .75rem;
  padding-top: .65rem; border-top: 1px solid rgba(255,255,255,.1);
}
.ws-footer-links a { color: rgba(255,255,255,.5); }
.ws-footer-links a:hover { color: rgba(255,255,255,.88); text-decoration: none; }
.ws-footer-copy { margin-top: .65rem; font-size: .7rem; opacity: .45; }

/* ── Sticky CTA ─────────────────────────────────── */
.sticky-cta-bar {
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: max(.75rem, env(safe-area-inset-bottom));
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: .75rem .85rem;
  border: 1px solid #99f6e4;
  border-radius: 10px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 30px rgba(12,45,90,.18);
  transform: translateY(calc(100% + 1.25rem));
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.sticky-cta-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-label {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
}
.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  padding: .5rem .75rem;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-btn:hover {
  background: var(--teal-dk);
  color: #fff;
  text-decoration: none;
}
.sticky-close {
  position: absolute;
  top: -.55rem;
  right: -.45rem;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

/* ── Utilities ──────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Responsive ─────────────────────────────────── */
@media (min-width: 600px) {
  .hero { padding: 3.5rem 1.5rem 5.5rem; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: none; }
  .btn-primary, .btn-ghost { width: auto; }
  .svc-specs { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 860px) {
  .hero { padding: 4.5rem 2rem 6rem; text-align: left; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr); }
  .hero-copy { margin: 0; }
  .hero-sub { margin-left: 0; margin-right: 0; }
  .hero-trust-badges { justify-content: flex-start; margin-left: 0; margin-right: 0; }
  .hero-price-points { margin-left: 0; margin-right: 0; }
  .hero-ctas { justify-content: flex-start; }
  .hero-media { margin: 0 0 0 auto; }
  .ws-section { padding: 3.25rem 2rem; }
  .pr-bar { margin-left: 2rem; margin-right: 2rem; max-width: calc(var(--max) - 4rem); }
  .price-quick-grid { grid-template-columns: repeat(3, 1fr); }
  .price-caution { grid-template-columns: 1fr auto; }
  .price-decision { grid-template-columns: 1fr auto; align-items: center; }
  .price-decision-actions { min-width: 220px; }
  .choice-shortcut { padding: 1.15rem; }
  .choice-shortcut-head {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: .75rem;
  }
  .choice-shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .precheck-list {
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
  }
  .precheck-list li {
    border-bottom: 0;
    border-right: 1px dashed var(--border);
    padding: 0 .6rem 0 0;
  }
  .precheck-list li:last-child {
    border-right: 0;
    padding-right: 0;
  }
  .precheck-actions {
    display: flex;
    justify-content: flex-end;
  }
  .precheck-actions a { min-width: 124px; }
  .monthly-pick { padding: 1.15rem; }
  .monthly-pick-head { grid-template-columns: 1fr 1.35fr; align-items: end; }
  .monthly-pick-grid { grid-template-columns: repeat(3, 1fr); }
  .compare-scroll { margin: 0; padding: 0; }
  .cond-list { display: grid; grid-template-columns: 1fr 1fr; }
  .svc-cost-summary-grid { grid-template-columns: repeat(3, 1fr); }
  .service-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .fee-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Campaign badge ─────────────────────────────── */
.campaign-badges {
  display: flex; flex-direction: column; gap: .35rem; margin-bottom: .65rem;
}
.campaign-badge {
  display: block;
  background: #fff7ed; border: 1px solid #fed7aa;
  border-left: 3px solid #f97316;
  border-radius: 0 6px 6px 0;
  padding: .45rem .75rem; margin-bottom: .45rem;
  font-size: .77rem; font-weight: 700; color: #9a3412; line-height: 1.4;
}
.campaign-badge .cb-note {
  font-size: .68rem; font-weight: 400; color: #c2410c; display: block; margin-top: .15rem;
}

/* ── Plan table inside card ─────────────────────── */
.plan-table {
  width: 100%; border-collapse: collapse;
  font-size: .75rem; margin: .85rem 0;
}
.plan-table th {
  background: var(--navy); color: #fff;
  padding: .35rem .5rem; text-align: left; font-weight: 700; font-size: .7rem;
}
.plan-table td {
  padding: .35rem .5rem; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: top; line-height: 1.4;
}
.plan-table tr:last-child td { border-bottom: none; }
.plan-table .td-price { font-weight: 800; color: var(--navy); }
