/* ── Services & Pricing shared styles ── */

/* ====== LAYOUT ====== */
.svp-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ====== PAGE HERO ====== */
.svp-hero {
  text-align: center;
  padding: 48px 24px 40px;
}
.svp-hero__eyebrow {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: var(--ft-font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(43, 127, 147, 0.08);
  color: #2b7f93;
  border: 1px solid rgba(43, 127, 147, 0.2);
}
.svp-hero__title {
  margin: 14px 0 12px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ft-color-text);
  line-height: 1.2;
}
.svp-hero__desc {
  margin: 0 auto;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ft-color-text-soft);
}

/* ====== SECTION ====== */
.svp-section {
  margin-top: 48px;
}
.svp-section__head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ft-color-line-strong);
}
.svp-section__head h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  color: var(--ft-color-text);
}
.svp-section__head p {
  margin: 0;
  color: var(--ft-color-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ====== CARD GRID ====== */
.svp-card-grid {
  display: grid;
  gap: 20px;
}
.svp-card-grid--2 { grid-template-columns: 1fr 1fr; }
.svp-card-grid--3 { grid-template-columns: 1fr 1fr 1fr; }

/* ====== SERVICE CARD ====== */
.svp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--ft-color-line-strong);
  background: var(--ft-color-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svp-card:hover {
  border-color: var(--ft-color-cyan);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.svp-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 14px;
}
.svp-card__icon--blue  { background: rgba(43, 127, 147, 0.10); color: #2b7f93; }
.svp-card__icon--green { background: rgba(22, 163, 74, 0.10); color: #16a34a; }
.svp-card__icon--amber { background: rgba(217, 119, 6, 0.10); color: #d97706; }

.svp-card__badge {
  align-self: flex-start;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svp-card__badge--blue  { background: rgba(43, 127, 147, 0.12); color: #2b7f93; }
.svp-card__badge--green { background: rgba(34,197,94,0.1); color: #4ade80; }
.svp-card__badge--amber { background: rgba(245,158,11,0.1); color: #fbbf24; }

.svp-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ft-color-text);
}
.svp-card p {
  margin: 0 0 14px;
  color: var(--ft-color-text-soft);
  font-size: 14px;
  line-height: 1.65;
}
.svp-card ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  flex: 1;
}
.svp-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ft-color-text-soft);
  font-size: 13.5px;
  line-height: 1.55;
}
.svp-card li::before {
  content: "→";
  position: absolute; left: 0;
  color: #2b7f93;
  font-size: 11px;
}
.svp-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ft-color-line);
}

/* ====== PRICE CARD (pricing page) ====== */
.svp-price-card {
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid var(--ft-color-line-strong);
  background: var(--ft-color-surface);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svp-price-card:hover {
  border-color: var(--ft-color-cyan);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.svp-price-card--highlight {
  border-color: #2b7f93;
  box-shadow: 0 0 0 1px rgba(43, 127, 147,0.25), 0 6px 28px rgba(43, 127, 147,0.10);
}
.svp-price-card--highlight:hover { border-color: #2b7f93; }

.svp-price-card__head {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ft-color-line);
  margin-bottom: 18px;
}
.svp-price-card__head h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ft-color-text);
}
.svp-price-card__head p {
  margin: 0;
  color: var(--ft-color-text-soft);
  font-size: 13px;
  line-height: 1.5;
}
.svp-price-card__amount {
  text-align: center;
  margin: 18px 0;
}
.svp-price-card__amount .big {
  font-size: 38px;
  font-weight: 800;
  color: var(--ft-color-text);
  line-height: 1;
}
.svp-price-card__amount .per {
  display: block;
  margin-top: 4px;
  color: var(--ft-color-text-faint);
  font-size: 13px;
}
.svp-price-card__amount .yen {
  display: block;
  margin-top: 4px;
  color: var(--ft-color-text-faint);
  font-size: 12px;
  font-family: var(--ft-font-mono, monospace);
}

.svp-price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  flex: 1;
}
.svp-price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ft-color-text-soft);
  font-size: 13.5px;
  line-height: 1.55;
}
.svp-price-card li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
}

.svp-price-card__action {
  margin-top: 20px;
  text-align: center;
}

/* ====== BUTTONS (reuse site-global .ft-button) ====== */
.svp-price-card__action .ft-button { width: 100%; }

/* ====== DIVIDER ====== */
.svp-divider {
  margin: 48px 0;
  border: none;
  border-top: 1px solid var(--ft-color-line);
}

/* ====== NOTE ROW ====== */
.svp-note {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--ft-color-surface-soft);
  border-left: 3px solid #2b7f93;
  color: var(--ft-color-text-soft);
  font-size: 13px;
  line-height: 1.6;
}

/* ====== SCENARIO TABLE ====== */
.svp-scenario-box {
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--ft-color-surface-soft);
  border: 1px solid var(--ft-color-line);
  margin-top: 14px;
}
.svp-scenario-box h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-color-text);
}
.svp-scenario-box p {
  margin: 0;
  color: var(--ft-color-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 860px) {
  .svp-card-grid--2,
  .svp-card-grid--3 { grid-template-columns: 1fr; }
  .svp-hero__title { font-size: 28px; }
}
@media (max-width: 560px) {
  .svp-shell { padding: 24px 16px 48px; }
  .svp-hero__title { font-size: 24px; }
}
