:root {
  --primary: #23769A;
  --primary-dark: #165A78;
  --primary-deep: #10465E;
  --primary-soft: #EAF4F8;

  --bg: #F6F9FB;
  --white: #FFFFFF;
  --text: #24323A;
  --text-soft: #5F7079;
  --border: #D8E4E9;
  --border-strong: #BED2DB;

  --shadow:
    0 16px 42px rgba(25, 70, 92, 0.08);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section--soft {
  background: var(--bg);
}

.section-header {
  margin-bottom: 52px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--primary);
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.section-lead {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 2;
}

.text-primary {
  color: var(--primary);
}

.small-note {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

/* ----------------------------------------
   Header
---------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 228, 233, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: #41525B;
  font-size: 13px;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-cta {
  padding: 11px 20px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--primary);
}

.header-cta:hover {
  background: var(--primary-dark);
}

/* ----------------------------------------
   Hero
---------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 78px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    #FFFFFF 0%,
    #FFFFFF 26%,
    #EDF5F9 44%,
    #BBDAE7 68%,
    #6FADC8 88%,
    #4E97B6 100%
  );
}

.hero-banner {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.split img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.hero::after {
  content: "";
  position: absolute;
  top: 85px;
  right: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(35, 118, 154, 0.11);
  border-radius: 50%;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  align-items: center;
  gap: 72px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.hero-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--primary);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.24;
  letter-spacing: -0.055em;
}

.hero h1 strong {
  color: var(--primary);
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #4E6069;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 9px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--white);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--primary);
}

.btn-arrow::after {
  content: "→";
  font-size: 18px;
}

.hero-side {
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-side-label {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-checks {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--border);
}

.hero-check {
  position: relative;
  padding: 16px 16px 16px 43px;
  background: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-check::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 17px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

.hero-side-note {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 76px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
}

.trust-item {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: 1px solid var(--border);
}

.trust-number {
  color: var(--primary);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.trust-label {
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ----------------------------------------
   Audience
---------------------------------------- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.audience-card {
  position: relative;
  min-height: 258px;
  padding: 32px 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.audience-number {
  position: absolute;
  top: 21px;
  right: 26px;
  color: #D6E7ED;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.audience-card h3 {
  position: relative;
  margin: 0 0 13px;
  padding-right: 55px;
  font-size: 21px;
  line-height: 1.5;
}

.audience-card p {
  position: relative;
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.audience-signal {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 700;
}

/* ----------------------------------------
   Care principles
---------------------------------------- */

.care-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(125deg, #165A78 0%, #23769A 62%, #2F87AB 100%);
}

.care-section::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.care-section .section-kicker {
  color: #D8F0FA;
}

.care-section .section-kicker::before {
  background: #FFFFFF;
}

.care-section .section-header {
  position: relative;
  z-index: 2;
}

.care-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.care-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.care-item {
  min-height: 250px;
  padding: 30px 27px;
  background: rgba(10, 61, 82, 0.19);
}

.care-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.care-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ----------------------------------------
   Service details
---------------------------------------- */

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

.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.service-no {
  margin-bottom: 17px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 11px;
  font-size: 18px;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
}

/* ----------------------------------------
   Monthly report sample
---------------------------------------- */

.report-sample {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.report-sample-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--primary-soft);
}

.report-sample-head h3 {
  margin: 0;
  font-size: 16px;
}

.report-sample-head .report-month {
  margin-left: auto;
  color: var(--text-soft);
  font-size: 12px;
}

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

.report-row {
  display: grid;
  grid-template-columns: 96px 1fr 1.1fr auto;
  gap: 0 20px;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
}

.report-row:last-child {
  border-bottom: 0;
}

.report-date {
  color: var(--text-soft);
  font-size: 12px;
}

.report-what {
  font-size: 15px;
  font-weight: 700;
}

.report-detail {
  color: var(--text-soft);
  font-size: 14px;
}

.report-state {
  justify-self: end;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.report-state.is-none {
  background: #EEF2F4;
  color: var(--text-soft);
}

.report-sample-foot {
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-soft);
  font-size: 14px;
}

.flow-item.is-free {
  border-color: var(--primary);
  border-width: 2px;
}

.flow-free {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  vertical-align: 2px;
  white-space: nowrap;
}

/* ----------------------------------------
   Handoff links to /recovery/ /update/
---------------------------------------- */

.handoff-notes {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 720px) {
  .handoff-notes { grid-template-columns: 1fr; }
}

.handoff-note {
  margin: 0;
  padding: 16px 20px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.9;
}

.handoff-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 700;
}

.handoff-note a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.handoff-note a:hover { text-decoration: underline; }

.risk-summary .section-lead strong { color: var(--text); }

.handoff-band {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.handoff-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.handoff-band-text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.85;
}

.handoff-band-text strong { color: var(--text); }

@media (max-width: 720px) {
  .handoff-band .container { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------
   Scope of the free check
---------------------------------------- */

.scope-note {
  margin-top: 26px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.scope-note-title {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
}

.scope-note-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.scope-note-list dt {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.scope-note-list dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.95;
}

.scope-note-list dd strong { color: var(--text); }

.scope-free,
.scope-paid {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  vertical-align: 2px;
  white-space: nowrap;
}

.scope-free {
  background: var(--primary);
  color: var(--white);
}

.scope-paid {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* ----------------------------------------
   Non-WordPress plan
---------------------------------------- */

.nonwp-plan {
  margin-top: 22px;
  padding: 24px 22px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  background: var(--white);
}

.nonwp-plan-label {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.nonwp-plan h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.nonwp-plan-fee {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0 0 4px;
}

.nonwp-plan-fee b {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}

.nonwp-plan-fee span {
  color: var(--text);
  font-size: 13px;
}

.nonwp-plan-init {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
}

.nonwp-plan-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 14px;
}

.nonwp-plan-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.nonwp-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--primary);
}

.nonwp-plan-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.9;
}

.nonwp-plan-note strong { color: var(--text); }

@media (max-width: 720px) {
  .scope-note { padding: 22px 20px; }
  .nonwp-plan { padding: 22px 18px; }
}

/* ----------------------------------------
   Consultation topics (main section)
---------------------------------------- */

.consult-groups {
  display: grid;
  gap: 18px;
}

@media (min-width: 981px) {
  .consult-groups { grid-template-columns: repeat(2, 1fr); align-items: start; }
}

.consult-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.consult-group.is-urgent {
  border-color: var(--primary);
  border-width: 2px;
}

.consult-head {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.consult-group.is-urgent .consult-head {
  background: var(--primary-soft);
}

.consult-label {
  margin: 0;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

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

.consult-items li {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.consult-items li:last-child { border-bottom: 0; }

.consult-items b {
  display: block;
  margin-bottom: 7px;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.consult-items b::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary);
  border-radius: 4px;
}

.consult-items span {
  display: block;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.95;
}

.consult-cta {
  margin: 26px 0 0;
  padding: 20px 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--text-soft);
  font-size: 15px;
}

.consult-cta a {
  color: var(--primary-dark);
  font-weight: 700;
}

/* ----------------------------------------
   Foldable sections
---------------------------------------- */

.foldable details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.foldable summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 24px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.foldable summary::-webkit-details-marker { display: none; }

.foldable summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform .2s;
}

.foldable details[open] summary::after {
  transform: rotate(-135deg);
  top: calc(50% - 2px);
}

.foldable-body {
  padding: 4px 24px 26px;
  border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .consult-items li { padding: 16px 18px; }
  .foldable summary { padding: 19px 48px 19px 20px; font-size: 15px; }
  .foldable-body { padding: 4px 20px 22px; }
}

/* ----------------------------------------
   Risk of leaving a site unmaintained
---------------------------------------- */

.risk-groups {
  display: grid;
  gap: 18px;
}

@media (min-width: 981px) {
  .risk-groups { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

.risk-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.risk-group.is-key {
  border-color: var(--primary);
  border-width: 2px;
}

.risk-head {
  padding: 20px 22px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.risk-group.is-key .risk-head {
  background: var(--primary-soft);
}

.risk-label {
  margin: 0 0 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.risk-head h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

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

.risk-items li {
  padding: 17px 22px;
  border-bottom: 1px solid var(--border);
}

.risk-items li:last-child { border-bottom: 0; }

.risk-items b {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.6;
}

.risk-items span {
  display: block;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.9;
}

.risk-items span em {
  font-style: normal;
  color: var(--text);
  font-weight: 700;
}

.risk-note {
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.95;
}

.risk-note strong {
  color: var(--text);
}

/* ----------------------------------------
   Terms / notices / info feed
---------------------------------------- */

.terms-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.terms-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.terms-no {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.terms-item h3 {
  margin: 2px 0 6px;
  font-size: 15.5px;
  line-height: 1.65;
}

.terms-item p {
  grid-column: 2;
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.9;
}

.notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.notice-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.95;
}

.notice-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.notice-list li strong {
  color: var(--text);
}

.info-feeds {
  display: grid;
  gap: 18px;
}

@media (min-width: 981px) {
  .info-feeds { grid-template-columns: 1fr 1fr; }
}

.info-feed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.info-feed-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--primary-soft);
}

.info-feed-head h3 {
  margin: 0;
  font-size: 15px;
}

.info-feed-head .info-count {
  margin-left: auto;
  color: var(--text-soft);
  font-size: 12px;
}

.info-feed ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-feed li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0 14px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.info-feed li:last-child { border-bottom: 0; }

.info-feed .info-date {
  color: var(--text-soft);
  font-size: 12px;
}

.info-feed li a {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  text-decoration: none;
}

.info-feed li a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.info-feed-foot {
  padding: 14px 22px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
}

@media (max-width: 720px) {
  .terms-item { padding: 20px; }
  .info-feed li { grid-template-columns: 1fr; gap: 3px; padding: 13px 18px; }
  .info-feed-head, .info-feed-foot { padding-left: 18px; padding-right: 18px; }
}

/* ----------------------------------------
   Plans
---------------------------------------- */

.plan-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.plan-intro .section-header {
  margin-bottom: 0;
}

.plan-rule {
  max-width: 340px;
  padding: 18px 20px;
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
}

.plan--standard {
  border: 2px solid var(--primary);
  box-shadow: 0 18px 50px rgba(35, 118, 154, 0.12);
}

.plan-head {
  padding: 29px 28px 24px;
  border-bottom: 1px solid var(--border);
}

.plan--standard .plan-head {
  padding: 28px 27px 23px;
}

.plan-name {
  margin: 0;
  font-size: 22px;
}

.plan-summary {
  min-height: 49px;
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}

.plan-price {
  margin-top: 23px;
}

.price-main {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  color: var(--primary-dark);
}

.price-main strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.price-main span {
  padding-bottom: 3px;
  font-size: 13px;
  font-weight: 700;
}

.price-tax {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 11px;
}

.initial-price {
  margin-top: 14px;
  color: var(--text);
  font-size: 13px;
}

.initial-price strong {
  font-size: 15px;
}

.plan-body {
  flex: 1;
  padding: 23px 28px 28px;
}

.plan-specs {
  margin: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #E7EEF1;
}

.spec-row dt {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.spec-row dd {
  margin: 0;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
}

.plan-notice {
  margin-top: 20px;
  padding: 15px 16px;
  border-radius: 9px;
  color: #53666F;
  background: #F5F8FA;
  font-size: 12px;
  line-height: 1.75;
}

.plan-notice strong {
  color: var(--primary-dark);
}

.common-services {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.common-services h3 {
  margin: 0 0 20px;
  font-size: 18px;
}

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

.common-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 10px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.full-extra {
  margin-top: 18px;
  padding: 19px 23px;
  border: 1px solid #B8D9E6;
  border-radius: 10px;
  background: #EDF7FA;
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1.8;
}

.full-extra strong {
  font-weight: 800;
}

/* ----------------------------------------
   Comparison
---------------------------------------- */

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
}

.compare-table thead th {
  color: var(--primary-dark);
  background: #F1F7F9;
  font-weight: 800;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 26%;
  text-align: left;
  font-weight: 700;
}

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

.compare-yes {
  color: var(--primary);
  font-weight: 800;
}

.compare-none {
  color: #87969D;
}

/* ----------------------------------------
   Handover / agency
---------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 60px;
  align-items: center;
}

.split.split--with-header {
  margin-bottom: 52px;
}

.split-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.split-copy p {
  margin: 20px 0 0;
  color: var(--text-soft);
}

.handover-list {
  display: grid;
  gap: 12px;
}

.handover-item {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--white);
}

.handover-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.handover-item span {
  color: var(--text-soft);
  font-size: 13px;
}

.agency-band {
  margin-top: 30px;
  padding: 28px 30px;
  border-radius: 16px;
  color: var(--white);
  background: var(--primary-dark);
}

.agency-band h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.agency-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

/* ----------------------------------------
   Non WordPress
---------------------------------------- */

.nonwp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.nonwp-panel {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.nonwp-panel h3 {
  margin: 0 0 19px;
  font-size: 20px;
}

.nonwp-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nonwp-list li {
  position: relative;
  padding: 15px 0 15px 26px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

.nonwp-list li:last-child {
  border-bottom: 0;
}

.nonwp-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* ----------------------------------------
   Flow
---------------------------------------- */

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 44px;
}

.flow-item {
  position: relative;
  padding: 0 26px;
}

.flow-item:nth-child(3n+1) {
  padding-left: 0;
}

.flow-item:nth-child(3n) {
  padding-right: 0;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -5px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  transform: rotate(45deg);
}

.flow-item:nth-child(3n)::after {
  display: none;
}

.flow-no {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.flow-item h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.flow-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

/* ----------------------------------------
   Company
---------------------------------------- */

.company-box {
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.company-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.company-year {
  color: var(--primary);
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.company-year span {
  margin-left: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.company-caption {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 13px;
}

.company-copy h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.5;
}

.company-copy p {
  margin: 16px 0 0;
  color: var(--text-soft);
}

.company-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.company-services span {
  padding: 7px 11px;
  border-radius: 6px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 700;
}

/* ----------------------------------------
   FAQ
---------------------------------------- */

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.faq summary {
  position: relative;
  padding: 21px 58px 21px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 23px;
  color: var(--text-soft);
  font-size: 14.5px;
}

.faq-answer p {
  margin: 0;
}

/* ----------------------------------------
   Contact
---------------------------------------- */

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--primary-deep);
}

.contact::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 76px;
  align-items: start;
}

.contact-copy .section-kicker {
  color: #C9E8F3;
}

.contact-copy .section-kicker::before {
  background: #FFFFFF;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.contact-copy > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-points {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.contact-point {
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.contact-point::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7FC4E0;
}

.contact-form {
  padding: 36px;
  border-radius: 20px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14.5px;
  font-weight: 700;
}

.required {
  margin-left: 5px;
  color: var(--primary);
  font-size: 10px;
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #CAD8DE;
  border-radius: 8px;
  outline: 0;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 118, 154, 0.11);
}

.form-help {
  color: var(--text-soft);
  font-size: 12px;
}

.contact-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.type-option {
  position: relative;
}

.type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-option label {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid #CAD8DE;
  border-radius: 8px;
  cursor: pointer;
  color: #50616A;
  font-size: 12px;
  font-weight: 600;
}

.type-option input:checked + label {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.form-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  border-radius: 9px;
  cursor: pointer;
  color: var(--white);
  background: var(--primary);
  font-weight: 800;
}

.form-submit:hover {
  background: var(--primary-dark);
}

.form-privacy {
  margin: 13px 0 0;
  color: var(--text-soft);
  font-size: 10px;
  text-align: center;
}

/* ----------------------------------------
   Footer
---------------------------------------- */

.footer {
  padding: 34px 0;
  color: #6C7B82;
  background: #F5F8F9;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-company {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.footer-meta {
  margin-top: 4px;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 11px;
}

/* ----------------------------------------
   Responsive
---------------------------------------- */

@media (max-width: 980px) {
  .header-nav a:not(.header-cta) {
    display: none;
  }

  .hero-inner,
  .contact-inner,
  .split,
  .nonwp,
  .company-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-side {
    max-width: 650px;
  }

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

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .plan-summary {
    min-height: 0;
  }

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

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

  .common-item:last-child {
    grid-column: 1 / -1;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-item,
  .flow-item:first-child,
  .flow-item:last-child {
    padding: 0 0 28px 58px;
  }

  .flow-no {
    position: absolute;
    top: 0;
    left: 0;
  }

  .flow-item:not(:last-child)::after {
    top: 44px;
    right: auto;
    bottom: 7px;
    left: 20px;
    width: 1px;
    height: auto;
    border: 0;
    background: var(--border-strong);
    transform: none;
  }

  .contact-inner {
    gap: 45px;
  }
}

@media (max-width: 720px) {

  .report-row {
    grid-template-columns: 1fr auto;
    gap: 4px 14px;
    padding: 16px 20px;
  }

  .report-date { grid-column: 1; grid-row: 1; }
  .report-what { grid-column: 1; grid-row: 2; }
  .report-detail { grid-column: 1; grid-row: 3; }
  .report-state { grid-column: 2; grid-row: 1 / span 3; align-self: start; }

  .report-sample-head,
  .report-sample-foot {
    padding-left: 20px;
    padding-right: 20px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

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

  .section-lead {
    font-size: 15px;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 11px !important;
  }

  .hero {
    padding: 64px 0 0;
  }

  .hero-inner {
    gap: 42px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.3;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .btn {
    width: 100%;
  }

  .hero-side {
    padding: 23px;
  }

  .trust-strip {
    margin-top: 54px;
  }

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

  .trust-item,
  .trust-item:first-child {
    min-height: 94px;
    padding: 15px 17px;
    border-left: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-number {
    font-size: 22px;
  }

  .trust-label {
    font-size: 10px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 0;
    padding: 27px;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-item {
    min-height: 0;
    padding: 27px;
  }

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

  .plan-intro {
    display: block;
  }

  .plan-rule {
    max-width: none;
    margin-top: 24px;
  }

  .plan-head,
  .plan-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .plan--standard .plan-head {
    padding-left: 21px;
    padding-right: 21px;
  }

  .spec-row {
    grid-template-columns: 90px 1fr;
  }

  .common-services {
    padding: 22px;
  }

  .common-grid {
    grid-template-columns: 1fr;
  }

  .common-item:last-child {
    grid-column: auto;
  }

  .split {
    gap: 38px;
  }

  .split-copy h2 {
    font-size: 30px;
  }

  .nonwp {
    gap: 30px;
  }

  .nonwp-panel {
    padding: 26px;
  }

  .company-box {
    gap: 28px;
    padding: 30px 26px;
  }

  .company-year {
    font-size: 60px;
  }

  .company-copy h2 {
    font-size: 25px;
  }

  .contact {
    padding-top: 75px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-grid,
  .contact-types {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .brand-sub {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .trust-number {
    font-size: 20px;
  }

  .price-main strong {
    font-size: 32px;
  }
}

.is-current { color: var(--primary-dark) !important; font-weight: 700; }
