﻿:root {
  --bg: #f4f8f7;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #132128;
  --muted: #59707a;
  --line: rgba(89, 112, 122, 0.18);
  --primary: #0f766e;
  --accent: #7dd3fc;
  --accent-2: #115e59;
  --success: #0f766e;
  --shadow: 0 20px 60px rgba(19, 33, 40, 0.12);
  --shadow-soft: 0 10px 30px rgba(19, 33, 40, 0.08);
  --container: min(1200px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.16), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 248, 252, 0.78);
  border-bottom: 1px solid rgba(99, 114, 173, 0.1);
}

.header-inner,
.footer-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark {
  width: 160px;
  height: 38px;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text,
.hero-copy h1,
.section-heading h2,
.split-copy h2,
.contact-copy h2,
.price-block strong {
  font-family: "Outfit", sans-serif;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: #35515b;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #132128;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-2));
  color: #fff !important;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--surface-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero,
.section {
  padding: 88px 0;
}

.hero {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(125, 211, 252, 0.1), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(15, 118, 110, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 245, 255, 0.82));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/top-bg.jpg") center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.hero-grid,
.split-section,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.eyebrow,
.section-kicker,
.plan-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.12), rgba(15, 118, 110, 0.14));
  border: 1px solid rgba(17, 94, 89, 0.14);
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead,
.hero-subcopy,
.section-heading p,
.split-copy p,
.feature-card p,
.mini-card p,
.detail-card p,
.step-card p,
.faq-answer p,
.contact-copy p,
.contact-note p,
.footer-copy,
.plan-copy {
  color: var(--muted);
  line-height: 1.9;
}

.hero-lead {
  margin: 18px 0 0;
}

.hero-subcopy {
  margin-top: 28px;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #35515b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  border-color: rgba(86, 104, 169, 0.18);
}

.block {
  width: 100%;
}

.hero-points,
.price-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-list .price-list {
  margin-top: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(93, 107, 160, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-bubble {
  position: absolute;
  top: -40px;
  left: -52px;
  z-index: 3;
  width: min(250px, 42vw);
  height: auto;
  pointer-events: none;
}

.hero-card,
.feature-card,
.mini-card,
.detail-card,
.pricing-card,
.step-card,
.faq-item,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  border-radius: 28px;
  padding: 24px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.hero-window {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7e5e2;
}

.chat-bubble {
  max-width: 86%;
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.chat-bubble-user {
  margin-left: auto;
  background: linear-gradient(135deg, #0f766e, #115e59);
  color: #fff;
}

.chat-bubble-ai {
  background: linear-gradient(180deg, #ffffff, #edf3f1);
  border: 1px solid rgba(17, 94, 89, 0.2);
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.12);
}

.hero-chat-area {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 6px 0 14px;
}

.hero-input {
  width: 100%;
  border: 1px solid rgba(90, 104, 160, 0.22);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  padding: 12px 14px;
  color: var(--ink);
  resize: vertical;
  min-height: 58px;
}

.hero-send-btn {
  align-self: end;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #115e59);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 16px;
  cursor: pointer;
}

.hero-sample {
  border-top: 1px solid rgba(90, 104, 160, 0.14);
  padding-top: 12px;
}

.hero-sample-title {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-sample-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-sample-list li {
  margin: 0;
}

.hero-sample-question {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(90, 104, 160, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.hero-sample-question:hover {
  border-color: rgba(17, 94, 89, 0.42);
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.16);
  transform: translateY(-1px);
}

.hero-sample-question:active {
  transform: translateY(0);
}

.chat-stats,
.feature-grid,
.steps,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.chat-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(90, 104, 160, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.7rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  will-change: transform;
}

.hero-orb-a {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.28), transparent 70%);
  top: 20px;
  right: 10px;
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.24), transparent 72%);
  bottom: 30px;
  left: 0;
}


.section-muted {
  background: linear-gradient(180deg, rgba(240, 244, 255, 0.68), rgba(250, 250, 254, 0.92));
}

.section-dark {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 10% 10%, rgba(125, 211, 252, 0.24), transparent 25%),
    radial-gradient(circle at 85% 18%, rgba(96, 165, 250, 0.16), transparent 27%),
    linear-gradient(135deg, #34575f 0%, #3d7377 48%, #385d65 100%);
}

.section-dark-soft {
  background:
    radial-gradient(circle at 14% 12%, rgba(125, 211, 252, 0.2), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(96, 165, 250, 0.14), transparent 26%),
    linear-gradient(135deg, #426a73 0%, #4d8081 46%, #3d646c 100%);
}

.section-flow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 255, 0.92));
}

.section-flow::before,
.section-flow::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-flow::before {
  left: -10%;
  right: -10%;
  top: 20px;
  height: 180px;
  background:
    radial-gradient(circle at 20% 50%, rgba(125, 211, 252, 0.1), transparent 18%),
    radial-gradient(circle at 72% 50%, rgba(15, 118, 110, 0.12), transparent 18%);
  filter: blur(22px);
  animation: flow-drift-a 18s linear infinite;
}

.section-flow::after {
  left: -8%;
  right: -8%;
  bottom: 18px;
  height: 140px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(92, 98, 128, 0.05) 18%, transparent 36%, rgba(92, 98, 128, 0.05) 52%, transparent 70%, rgba(92, 98, 128, 0.05) 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent, black 25%, black 75%, transparent);
  animation: flow-drift-b 22s linear infinite;
}

.section-flow-soft::before {
  opacity: 0.7;
}

@keyframes flow-drift-a {
  from {
    transform: translateX(-3%);
  }

  to {
    transform: translateX(3%);
  }
}

@keyframes flow-drift-b {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-8%);
  }
}

.section-accent {
  background: linear-gradient(180deg, #edf3f1 0%, #e4efec 100%);
}

.logo-marquee-section {
  display: none;
  padding: 8px 0 18px;
  overflow: hidden;
}

.logo-marquee-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.logo-marquee-heading p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  text-transform: uppercase;
}

.logo-marquee-heading span {
  color: var(--muted);
  font-size: 0.92rem;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logo-marquee 26s linear infinite;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 78px;
  padding: 0 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 255, 0.9));
  border: 1px solid rgba(93, 107, 160, 0.14);
  box-shadow: var(--shadow-soft);
}

.logo-item span {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #59707a;
  white-space: nowrap;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.section-heading {  margin: 0 auto 40px 0;
}

.section-heading.centered,
.faq-wrap {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.section-dark .section-kicker,
.section-dark .eyebrow,
.section-dark .plan-label {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .section-heading p,
.section-dark .feature-card p,
.section-dark .plan-copy,
.section-dark .price-caption,
.section-dark .price-block strong span,
.section-dark .step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .section-heading h2,
.section-dark .feature-card h3,
.section-dark .pricing-card h3,
.section-dark .price-block strong,
.section-dark .step-card h3 {
  color: #fff;
}

.section-dark .feature-card,
.section-dark .pricing-card,
.section-dark .step-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.section-dark .price-list li {
  color: rgba(255, 255, 255, 0.88);
}

.section-dark .step-number {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.heading-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.heading-with-icon-center {
  justify-content: center;
  width: 100%;
}

.heading-with-icon h2 {
  margin: 0;
}

.heading-icon {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.16), rgba(15, 118, 110, 0.18));
  border: 1px solid rgba(17, 94, 89, 0.14);
  box-shadow: var(--shadow-soft);
}

.heading-icon::before,
.heading-icon::after {
  content: "";
  position: absolute;
}

.heading-icon-feature::before {
  inset: 14px;
  border-radius: 14px;
  border: 2px solid #5c6280;
}

.heading-icon-feature::after {
  left: 19px;
  right: 19px;
  top: 28px;
  height: 2px;
  background: #5c6280;
  box-shadow: 0 -8px 0 #5c6280, 0 8px 0 #5c6280;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.mini-card,
.pricing-card,
.step-card {
  border-radius: 22px;
  padding: 26px;
}

.feature-card h3 {
  margin: 0 0 10px;
  line-height: 1.45;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  align-items: stretch;
}

.process-heading {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-heading h2 {
  position: relative;
  padding-left: 0;
}

.process-heading h2::before {
  content: none;
}

.process-heading p {
  max-width: 760px;
}

main#top .section-heading.centered {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

main#top .heading-with-icon-center {
  justify-content: flex-start;
}

.process-flow {
  display: grid;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 76px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid rgba(75, 85, 99, 0.72);
}

.process-role {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding-right: 12px;
}

.process-role-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 24px 16px;
  color: #fff;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
}

.process-step-customer .process-role-label {
  background: linear-gradient(135deg, #0f9fb1, #0891b2);
}

.process-step-symmetric .process-role-label {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.process-body {
  position: relative;
  padding: 26px 30px 24px;
  border-radius: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(24, 39, 75, 0.06);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-body h3 {
  margin: 0 0 8px;
  color: #132128;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.process-body p {
  margin: 0;
  color: #425466;
  line-height: 1.85;
}

.steps::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.22), rgba(15, 118, 110, 0.24));
  pointer-events: none;
}

.mini-cards,
.detail-list,
.faq-list,
.contact-form {
  display: grid;
  gap: 18px;
}

.mini-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.mini-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.mini-card-wide {
  grid-column: 1 / -1;
}

.mini-card-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.16), rgba(15, 118, 110, 0.18));
  border: 1px solid rgba(17, 94, 89, 0.14);
  box-shadow: var(--shadow-soft);
}

.mini-card-icon::before,
.mini-card-icon::after {
  content: "";
  position: absolute;
}

.mini-card-icon-corporate::before {
  inset: 14px 18px;
  border: 2px solid #5c6280;
  border-bottom-width: 6px;
  border-radius: 8px 8px 4px 4px;
}

.mini-card-icon-corporate::after {
  inset: 22px 24px;
  border-left: 2px solid #5c6280;
  border-right: 2px solid #5c6280;
}

.mini-card-icon-public::before {
  left: 11px;
  right: 11px;
  top: 16px;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 12px solid #5c6280;
}

.mini-card-icon-public::after {
  left: 14px;
  right: 14px;
  bottom: 13px;
  height: 18px;
  border-top: 2px solid #5c6280;
  border-bottom: 2px solid #5c6280;
  box-shadow:
    inset 8px 0 0 -6px #5c6280,
    inset -8px 0 0 -6px #5c6280;
}

.mini-card-icon-product::before {
  inset: 14px;
  border-radius: 50%;
  border: 2px solid #5c6280;
}

.mini-card-icon-product::after {
  width: 22px;
  height: 2px;
  background: #5c6280;
  left: 18px;
  top: 27px;
  box-shadow: 0 -8px 0 #5c6280, 0 8px 0 #5c6280;
}

.mini-card-icon-ec::before {
  left: 14px;
  right: 14px;
  top: 20px;
  height: 14px;
  border: 2px solid #5c6280;
  border-radius: 6px;
}

.mini-card-icon-ec::after {
  left: 20px;
  right: 20px;
  top: 12px;
  height: 10px;
  border: 2px solid #5c6280;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.mini-card-icon-media::before {
  left: 15px;
  right: 15px;
  top: 16px;
  bottom: 16px;
  border: 2px solid #5c6280;
  border-radius: 10px;
}

.mini-card-icon-media::after {
  width: 18px;
  height: 18px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  border: 2px solid #5c6280;
  box-shadow: 16px 0 0 -7px #5c6280;
}

.detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  border-radius: 28px;
  padding: 28px;
}

.detail-card.reverse {
  grid-template-columns: 1fr;
}

.detail-card > div:first-child {
  max-width: 100%;
}

.detail-card h3 {
  margin-bottom: 14px;
}

.detail-card p {
  margin: 0;
}

.detail-visual {
  min-height: 260px;
  width: 100%;
  border-radius: 24px;
}

.detail-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}


.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.pricing-grid-triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1160px;
}

.pricing-structure-section {
  padding-top: 32px;
  background:
    linear-gradient(180deg, rgba(244, 248, 247, 0.98) 0%, rgba(237, 243, 241, 0.86) 100%),
    radial-gradient(circle at top center, rgba(125, 211, 252, 0.18), transparent 32%);
}

#pricing {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

#pricing::before,
#pricing::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

#pricing::before {
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(125, 211, 252, 0.12), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(15, 118, 110, 0.1), transparent 24%),
    linear-gradient(120deg, transparent 0%, rgba(15, 118, 110, 0.03) 24%, transparent 48%, rgba(125, 211, 252, 0.03) 72%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

#pricing::after {
  top: 46px;
  right: max(28px, calc((100vw - 1200px) / 2));
  width: 160px;
  height: 160px;
  border-radius: 32px;
  border: 1px solid rgba(15, 118, 110, 0.1);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    34px 34px 0 -16px rgba(125, 211, 252, 0.1),
    -14px 56px 0 -28px rgba(15, 118, 110, 0.06);
  transform: rotate(12deg);
}

#pricing .section-kicker {
  color: #0f766e;
}

#pricing .section-heading h2,
#pricing .pricing-card h3,
#pricing .pricing-card h4,
#pricing .pricing-detail-card h3,
#pricing .pricing-ops-note h3,
#pricing .pricing-ops-group h4,
#pricing .price-block strong {
  color: #132128;
}

#pricing .section-heading p,
#pricing .plan-copy,
#pricing .price-caption,
#pricing .price-block strong span,
#pricing .pricing-ops-note p,
#pricing .pricing-detail-card p {
  color: #59707a;
}

#pricing .pricing-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 18px 40px rgba(24, 39, 75, 0.08);
}

#pricing .price-list li {
  color: #132128;
}

#pricing .section-heading.centered {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

#pricing .pricing-ops-list,
#pricing .pricing-ops-list li,
#pricing .pricing-detail-card li,
#pricing .pricing-payment-item li,
#pricing .pricing-payment-item p {
  color: #132128;
}

#pricing .plan-label,
#pricing .pricing-ops-eyebrow {
  color: #115e59 !important;
}

#pricing .pricing-card h3 {
  font-size: 2rem;
  line-height: 1.1;
}

.pricing-structure-heading {
  max-width: 840px;
  margin: 0 0 36px;
  text-align: left;
}

.pricing-structure-heading p {
  max-width: 760px;
  margin: 0;
  color: #132128;
  font-size: 1.02rem;
  line-height: 1.95;
}

.pricing-structure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-structure-card {
  min-height: 100%;
  padding: 34px 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 18px 40px rgba(24, 39, 75, 0.1);
  text-align: center;
}

.pricing-structure-card h3 {
  margin: 0 0 16px;
  color: #0f766e;
  font-size: 1.5rem;
}

.pricing-structure-card p {
  margin: 0;
  color: #132128;
  line-height: 1.85;
}

.pricing-structure-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin-bottom: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(244, 248, 247, 0.92), rgba(237, 243, 241, 0.82));
  color: #4b5563;
}

.pricing-structure-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-structure-plus {
  color: #115e59;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  font-weight: 700;
  line-height: 1;
}


.pricing-ops-note {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 30px 32px;
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(15, 118, 110, 0.12), rgba(125, 211, 252, 0.12) 42%, rgba(255, 255, 255, 0.98) 100%),
    linear-gradient(180deg, #ffffff 0%, #edf3f1 100%);
  border: 1px solid rgba(15, 118, 110, 0.28);
  box-shadow: 0 20px 44px rgba(24, 39, 75, 0.14);
}

.pricing-ops-note h3 {
  margin: 8px 0 10px;
  color: #132128;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.pricing-ops-note p {
  margin: 0;
  color: #132128;
  line-height: 1.9;
}

.pricing-ops-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px !important;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: #115e59 !important;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-ops-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.pricing-ops-price {
  min-width: 200px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow: 0 10px 28px rgba(24, 39, 75, 0.08);
  text-align: center;
}

.pricing-ops-price span {
  display: block;
  margin-bottom: 6px;
  color: #59707a;
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing-ops-price strong {
  display: block;
  color: #0f766e;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.pricing-ops-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-ops-group {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.pricing-ops-group h4 {
  margin: 0 0 14px;
  color: #115e59;
  font-size: 1rem;
}

.pricing-ops-list {
  margin: 0;
  padding-left: 1.4rem;
  color: #132128;
  line-height: 1.9;
}

.pricing-ops-list li + li {
  margin-top: 6px;
}
.pricing-card-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 255, 0.92));
}

.price-block {
  margin-bottom: 18px;
}

.price-caption,
.form-helper {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-block strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1.1;
}

.price-block strong span {
  font-size: 1rem;
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.price-list li {
  position: relative;
  padding-left: 22px;
}

.price-list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-50%);
}

.price-list-plain {
  gap: 12px;
}

.price-list-plain li {
  color: #132128;
}

.pricing-detail-section {
  padding-top: 20px;
  background: #ffffff;
}

.pricing-detail-section-soft {
  background:
    linear-gradient(180deg, rgba(244, 248, 247, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-detail-grid-single {
  grid-template-columns: 1fr;
}

.pricing-option-notes {
  margin-top: 14px;
}

.pricing-option-heading {
  margin-top: 20px;
  margin-bottom: 14px;
}

.pricing-option-fees {
  margin-top: 10px;
}

.pricing-detail-card {
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 18px 40px rgba(24, 39, 75, 0.08);
}

.pricing-detail-card h3 {
  margin-bottom: 12px;
}

.pricing-note {
  margin: 18px 0 0;
  color: #59707a;
  font-size: 0.94rem;
  line-height: 1.8;
}

.pricing-payment-card {
  display: grid;
  gap: 10px;
}

.pricing-payment-item {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}

.pricing-payment-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-payment-item h3 {
  margin: 0 0 6px;
  color: #115e59;
  font-size: 1rem;
}

.pricing-payment-item p {
  margin: 0;
  color: #132128;
  line-height: 1.7;
}

.pricing-payment-item-list .price-list {
  margin-top: 0;
}

.pricing-option-notes .price-list,
.pricing-option-fees .price-list,
.pricing-payment-item-list .price-list {
  margin-bottom: 0;
  gap: 8px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 94, 89, 0.16);
}

.step-card {
  position: relative;
  min-height: 100%;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 44px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.34), rgba(15, 118, 110, 0.3));
}

.step-card:nth-child(odd)::before {
  right: -29px;
}

.step-card:nth-child(even)::before {
  left: -29px;
}

.faq-wrap {
  max-width: 860px;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-icon,
.faq-icon::before,
.faq-icon::after {
  display: block;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--accent-2);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.28s ease,
    opacity 0.22s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.contact-copy {
  padding-top: 18px;
}

.contact-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 104, 160, 0.14);
}

.contact-card {
  border-radius: 28px;
  padding: 26px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  color: #59707a;
}

.contact-form label > input:not([type="radio"]),
.contact-form label > textarea,
.contact-form label > .form-helper {
  display: block;
  margin-top: 10px;
}

.contact-form input:not([type="radio"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(99, 114, 173, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.form-helper.is-submitted {
  color: var(--success);
  font-weight: 700;
}

.site-footer {
  padding: 40px 0 28px;
  background: #132128;
  color: rgba(255, 255, 255, 0.78);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 20px 38px rgba(17, 94, 89, 0.24);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-inner,
.footer-bottom {
  align-items: flex-start;
}

.footer-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-section,
  .contact-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .mini-card-wide {
    grid-column: auto;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    left: 30px;
    top: 20px;
    bottom: 20px;
  }

  .step-card::before {
    left: -2px;
    right: auto;
    width: 18px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-step:not(:last-child)::after {
    left: 50%;
    margin-left: -10px;
    bottom: -12px;
  }

  .process-role {
    padding-right: 0;
  }

  .process-role-label,
  .process-body {
    border-radius: 22px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(99, 114, 173, 0.14);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      opacity 0.24s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(239, 243, 255, 0.88);
    transform: translateX(2px);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1200px);
  }

  .hero-title-break {
    display: none;
  }

  .hero,
  .section {
    padding: 72px 0;
  }


  .logo-marquee-section {
    padding-top: 0;
  }

  .logo-marquee-heading {
    display: grid;
    gap: 8px;
  }

  .logo-item {
    min-width: 152px;
    height: 64px;
    padding: 0 20px;
  }

  .heading-with-icon {
    gap: 12px;
  }

  .heading-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-card,
  .feature-card,
  .mini-card,
  .detail-card,
  .pricing-card,
  .step-card,
  .contact-card {
    padding: 20px;
  }

  .hero-bubble {
    top: -58px;
    left: 2px;
    width: min(220px, 50vw);
    transform: none;
  }

  .chat-stats {
    grid-template-columns: 1fr;
  }

  .hero-input-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    margin-bottom: 28px;
  }

  .hero-send-btn {
    width: 100%;
  }

  .hero-points,
  .footer-inner,
  .footer-bottom {
    display: grid;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}

.hero-subpage {
  padding-top: 112px;
  padding-bottom: 88px;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.subpage-hero-grid-wide {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.subpage-panel,
.feature-summary-card,
.detail-feature-card,
.feature-catalog-card,
.anchor-nav,
.subpage-points li {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(80, 91, 132, 0.12);
  box-shadow: var(--shadow-soft);
}

.subpage-panel {
  border-radius: 28px;
  padding: 28px;
}

.subpage-panel h3 {
  margin: 0 0 16px;
}

.subpage-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.subpage-points li {
  border-radius: 18px;
  padding: 14px 16px;
}

.feature-summary-grid,
.detail-feature-grid,
.feature-catalog-grid {
  display: grid;
  gap: 18px;
}

.feature-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-summary-card {
  border-radius: 24px;
  padding: 26px;
}

.feature-summary-card ul {
  margin: 16px 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.feature-summary-card li + li {
  margin-top: 8px;
}

.feature-summary-label,
.detail-feature-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.feature-summary-label {
  padding: 8px 12px;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-radius: 24px;
  padding: 18px;
}

.anchor-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.detail-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-feature-grid-dark .detail-feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.detail-feature-card {
  border-radius: 24px;
  padding: 24px;
}

.detail-feature-no {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.detail-feature-card dl {
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.detail-feature-card dl div {
  border-top: 1px solid rgba(80, 91, 132, 0.12);
  padding-top: 12px;
}

.detail-feature-card dt {
  font-weight: 800;
  margin-bottom: 6px;
}

.detail-feature-card dd {
  margin: 0;
  color: var(--muted);
}

.feature-catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-catalog-card {
  display: grid;
  gap: 10px;
  border-radius: 22px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-catalog-card:hover,
.feature-catalog-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.feature-catalog-card span {
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .subpage-hero-grid,
  .subpage-hero-grid-wide,
  .feature-summary-grid,
  .detail-feature-grid,
  .feature-catalog-grid,
  .compact-catalog,
  .feature-entry-grid {
    grid-template-columns: 1fr;
  }

  .hero-subpage-simple {
    padding-top: 96px;
    padding-bottom: 44px;
  }

  .subpage-simple-links {
    flex-direction: column;
    gap: 12px;
  }

  .pricing-structure-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 680px;
  }

  .pricing-grid-triple,
  .pricing-detail-grid,
  .pricing-ops-columns {
    grid-template-columns: 1fr;
  }

  .pricing-ops-header {
    flex-direction: column;
  }

  .pricing-ops-price {
    min-width: 0;
    width: 100%;
    text-align: left;
  }
}


.feature-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-entry-card {
  border-radius: 28px;
  padding: 28px;
}

.feature-entry-card h3 {
  margin-bottom: 12px;
}

.feature-entry-card p:not(.feature-entry-label) {
  margin-bottom: 22px;
  color: var(--muted);
}

.feature-entry-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}


.hero-subpage-simple {
  padding: 50px 0 60px;
  background:
    linear-gradient(180deg, rgba(244, 247, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 36%);
}

.subpage-simple-inner {
  max-width: var(--container);
}

.hero-subpage-simple h1 {
  margin: 8px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.subpage-simple-lead {  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.subpage-simple-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}


.terms-page .section {
  padding-top: 48px;
}

.terms-page .policy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 40px) !important;
  border-radius: 24px;
}

.terms-page .policy-content > p {
  margin: 0 0 26px;
  color: #59707a;
  line-height: 1.95;
}

.terms-page .policy-content section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(80, 91, 132, 0.14);
}

.terms-page .policy-content section:first-of-type {
  display: inline-block;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.terms-page .policy-content h2,
.terms-page .policy-content h3 {
  color: #132128;
  letter-spacing: 0.01em;
}

.terms-page .policy-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.terms-page .policy-content h3 {
  margin: 24px 0 12px;
  font-size: clamp(1.03rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.terms-page .policy-content p,
.terms-page .policy-content li {
  margin: 0;
  color: #59707a;
  line-height: 1.95;
  font-size: 0.98rem;
}

.terms-page .policy-content ol,
.terms-page .policy-content ul {
  margin: 12px 0 0;
  padding-left: 1.45rem;
  display: grid;
  gap: 10px;
}

.terms-page .policy-content li > ol,
.terms-page .policy-content li > ul {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .terms-page .section {
    padding-top: 32px;
  }

  .terms-page .policy-content {
    border-radius: 18px;
  }

  .terms-page .policy-content h2 {
    margin-bottom: 14px;
  }

  .pricing-structure-section {
    padding-top: 18px;
  }

  .pricing-structure-heading {
    margin-bottom: 28px;
  }

  .pricing-structure-card {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .pricing-structure-card h3 {
    font-size: 1.3rem;
  }

  .pricing-structure-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .pricing-structure-icon svg {
    width: 56px;
    height: 56px;
  }

  .pricing-structure-plus {
    justify-self: center;
    font-size: 2rem;
  }

  .pricing-detail-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .pricing-ops-note {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .pricing-ops-group {
    padding: 18px;
    border-radius: 18px;
  }
}







.feature-shot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: stretch;
  min-height: 620px;
}
.feature-shot-main {
  position: relative;
  min-height: 100%;
}
.feature-shot-panel { display: none; height: 100%; margin: 0; }
.feature-shot-panel.is-active { display: block; height: 100%; }
.feature-shot-rail {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-height: 100%;
}
.feature-shot-thumb { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.feature-shot-thumb.is-active .feature-shot-placeholder-thumb { border-color: rgba(17, 94, 89, 0.4); box-shadow: var(--shadow-soft); transform: translateY(-1px); }
.feature-shot-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(80, 91, 132, 0.12);
  background: linear-gradient(140deg, rgba(115, 142, 241, 0.14), rgba(255, 255, 255, 0.96) 42%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 255, 0.96));
  box-shadow: var(--shadow-soft);
}
.feature-shot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(115, 142, 241, 0.08) 1px, transparent 1px), linear-gradient(rgba(115, 142, 241, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}
.feature-shot-placeholder-main {
  min-height: 620px;
  height: 100%;
  padding: 36px;
  display: grid;
  align-content: end;
  gap: 12px;
}
.feature-shot-placeholder-thumb {
  min-height: 0;
  height: 100%;
  padding: 16px;
  display: grid;
  align-content: end;
  gap: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-shot-chip { display: inline-flex; width: fit-content; padding: 8px 12px; border-radius: 999px; background: rgba(15, 118, 110, 0.12); color: var(--primary); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.04em; }
.feature-shot-placeholder strong { position: relative; z-index: 1; font-size: 1.35rem; }
.feature-shot-placeholder p, .feature-shot-placeholder span { position: relative; z-index: 1; margin: 0; color: var(--muted); }
.feature-shot-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(80, 91, 132, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}
.feature-shot-image {
  display: block;
  width: 100%;
  height: auto;
}
.feature-info-table-wrap { border-radius: 28px; overflow: hidden; }
.feature-info-table { width: 100%; border-collapse: collapse; }
.feature-info-table th, .feature-info-table td { padding: 24px 28px; border-bottom: 1px solid rgba(80, 91, 132, 0.12); vertical-align: top; }
.feature-info-table tr:last-child th, .feature-info-table tr:last-child td { border-bottom: 0; }
.feature-info-table th { width: 220px; background: rgba(15, 118, 110, 0.05); text-align: left; font-size: 0.95rem; font-weight: 800; }
.feature-info-table td ul { margin: 0; padding-left: 1.2rem; }
.feature-info-table td li + li { margin-top: 0.35rem; }
.compact-catalog-detail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-catalog-card.is-current { border-color: rgba(17, 94, 89, 0.34); box-shadow: var(--shadow-soft); }
.detail-feature-link { margin-top: 18px; }
@media (max-width: 1024px) {
  .feature-shot-layout, .compact-catalog-detail { grid-template-columns: 1fr; }
  .feature-shot-layout { min-height: auto; }
  .feature-shot-placeholder-main { min-height: 420px; }
  .feature-shot-rail { grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .feature-info-table, .feature-info-table tbody, .feature-info-table tr, .feature-info-table th, .feature-info-table td { display: block; width: 100%; }
  .feature-info-table th, .feature-info-table td { padding: 18px 20px; }
}
@media (max-width: 640px) {
  .feature-shot-rail { grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .feature-shot-placeholder-main { min-height: 320px; padding: 24px; }
}




.feature-catalog-grid-single {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-catalog-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}

.feature-catalog-no {
  flex: 0 0 auto;
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.feature-catalog-title {
  flex: 1 1 auto;
  font-size: 1.05rem;
  line-height: 1.4;
}

.feature-catalog-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.feature-catalog-category-analytics {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}

.feature-catalog-category-quality {
  background: rgba(0, 168, 107, 0.12);
  color: #0d8c62;
}

.feature-catalog-category-settings {
  background: rgba(255, 140, 66, 0.14);
  color: #d0671d;
}

.feature-catalog-category-tuning {
  background: rgba(126, 87, 194, 0.14);
  color: #6a43b5;
}

.feature-catalog-category-ui {
  background: rgba(28, 141, 184, 0.14);
  color: #176b8e;
}

.feature-catalog-section + .feature-catalog-section {
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .feature-catalog-grid-single {
    grid-template-columns: 1fr;
  }
}



.footer-company {
  margin-bottom: 10px;
}

.footer-company-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-company-logo {
  width: 150px;
  height: auto;
  display: block;
}



.terms-page .policy-content .terms-meta,
.terms-page .policy-content .terms-end {
  text-align: right;
}






#features .detail-list {
  margin-top: 30px;
}

#features .detail-card {
  background: #ffffff;
  border-color: rgba(80, 91, 132, 0.16);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

#features .detail-card h3 {
  color: #132128;
  line-height: 1.5;
}

#features .detail-card p,
#features .detail-card li {
  color: #59707a;
}

#features .detail-card ul {
  margin-top: 12px;
  padding-left: 1.3rem;
  display: grid;
  gap: 8px;
}

#features .detail-card strong {
  color: #132128;
}


#features .detail-list {
  gap: 24px;
}

#features .detail-card h3 {
  margin: 2px 0 12px;
}

.pricing-grid .pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-grid .pricing-card .button.block {
  margin-top: auto;
}

.pricing-summary-section {
  background:
    radial-gradient(circle at 10% 14%, rgba(125, 211, 252, 0.1), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(15, 118, 110, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%);
}

.pricing-summary-layout {
  width: min(100vw - 48px, 1200px);
}

.pricing-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.pricing-summary-card {
  padding: 30px 30px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 16px 34px rgba(19, 33, 40, 0.06);
}

.pricing-summary-card h3 {
  margin: 0 0 14px;
  color: #132128;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.pricing-summary-card-accent {
  background: linear-gradient(180deg, #edf3f1 0%, #e4efec 100%);
}

.pricing-summary-price {
  margin: 0;
  color: #0f766e;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.pricing-summary-price span {
  display: block;
  margin-top: 10px;
  color: #35515b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-summary-points {
  margin: 26px 0 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 10px;
  color: #35515b;
  line-height: 1.85;
}

.pricing-summary-actions {
  margin-top: 28px;
}

.pricing-summary-ops {
  margin-top: 56px;
  padding: 36px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 16px 34px rgba(19, 33, 40, 0.05);
}

.pricing-summary-ops-copy {
  display: grid;
  gap: 16px;
}

.pricing-summary-ops-copy p {
  margin: 0;
  color: #35515b;
  font-size: 1.04rem;
  line-height: 1.95;
}

.pricing-summary-support {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 118, 110, 0.12);
}

.pricing-summary-support h3 {
  margin: 0 0 14px;
  color: #132128;
  font-size: 1.2rem;
}

.pricing-summary-support-list {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 10px;
  color: #35515b;
  line-height: 1.85;
}

/* Use-cases section */
#use-cases {
  background:
    radial-gradient(circle at 12% 18%, rgba(125, 211, 252, 0.1), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(15, 118, 110, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 248, 252, 0.96) 100%);
}

#use-cases .use-cases-layout {
  width: min(100vw - 48px, 1200px);
}

#use-cases .section-heading {
  margin-bottom: 34px;
}

#use-cases .section-heading h2 {
  color: #17343a;
  letter-spacing: -0.03em;
}

#use-cases .section-kicker {
  color: #5b6477;
}

#use-cases .mini-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

#use-cases .mini-card,
#use-cases .mini-card-wide {
  grid-column: auto;
  height: 100%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(80, 91, 132, 0.12);
  box-shadow: 0 18px 36px rgba(24, 39, 75, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 14px 14px 18px;
  align-content: start;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#use-cases .mini-card:hover,
#use-cases .mini-card-wide:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(24, 39, 75, 0.12);
  border-color: rgba(17, 94, 89, 0.2);
}

#use-cases .mini-card-icon {
  display: none;
}

#use-cases .mini-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(80, 91, 132, 0.1);
  box-shadow: 0 10px 24px rgba(24, 39, 75, 0.08);
  background: #e4efec;
}

#use-cases .mini-card h3 {
  margin: 0;
  color: #17343a;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}

#use-cases .mini-card p {
  margin: 0;
  color: #59707a;
  font-size: 0.92rem;
  line-height: 1.78;
  align-self: start;
}

#use-cases .use-cases-copy {
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  gap: 16px;
}

#use-cases .use-cases-copy p {
  margin: 0;
  color: #35515b;
  line-height: 1.9;
  text-align: left;
}

#use-cases .use-cases-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

#use-cases .use-cases-actions .button {
  min-width: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(80, 91, 132, 0.18);
  color: #17343a;
  box-shadow: 0 14px 28px rgba(24, 39, 75, 0.08);
}

@media (max-width: 1200px) {
  #use-cases .mini-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing-summary-grid {
    grid-template-columns: 1fr;
  }

  .pricing-summary-ops {
    padding: 24px;
  }

  #use-cases .use-cases-layout {
    width: min(100vw - 32px, 1200px);
  }

  #use-cases .mini-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #use-cases .use-cases-copy {
    margin-top: 24px;
  }
}

@media (max-width: 520px) {
  #use-cases .mini-cards {
    grid-template-columns: 1fr;
  }

  #use-cases .mini-card,
  #use-cases .mini-card-wide {
    grid-template-columns: 108px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 14px;
    row-gap: 8px;
    align-items: start;
    padding: 12px;
    border-radius: 20px;
  }

  #use-cases .mini-card-image {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  #use-cases .mini-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 1rem;
    line-height: 1.4;
  }

  #use-cases .mini-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.88rem;
    line-height: 1.72;
  }
}

.contact-radio-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 8px;
}

.contact-radio-group legend {
  margin-bottom: 4px;
  font-weight: 700;
  color: #59707a;
}

.contact-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #59707a;
}

.contact-radio-option span {
  line-height: 1.5;
}

.contact-radio-option input[type="radio"] {
  display: inline-block;
  margin-top: 0;
  flex: 0 0 auto;
}

.required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.14);
  border: 1px solid rgba(17, 94, 89, 0.3);
  color: #115e59;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  vertical-align: middle;
}















.faq-page .section .faq-page-card {
  padding: 28px;
}

.faq-page .section .faq-categories {
  display: grid;
  gap: 28px;
}

.faq-page .section .faq-category-block {
  display: grid;
  gap: 14px;
}

.faq-page .section .faq-category-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: #17343a;
}

.faq-page .section .faq-category-list {
  display: grid;
  gap: 10px;
}

.faq-page .section .faq-detail-item {
  border: 1px solid rgba(80, 98, 160, 0.18);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.faq-page .section .faq-detail-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: #35515b;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.faq-page .section .faq-detail-item summary::-webkit-details-marker {
  display: none;
}

.faq-page .section .faq-detail-answer {
  padding: 0 18px 16px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.faq-page .section .faq-detail-answer p {
  grid-column: 2;
  margin: 0;
  color: #59707a;
  line-height: 1.8;
}

.faq-page .section .faq-qa-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.faq-page .section .faq-qa-icon-q {
  background: rgba(15, 118, 110, 0.16);
  border: 1px solid rgba(17, 94, 89, 0.28);
  color: #115e59;
}

.faq-page .section .faq-qa-icon-a {
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: #35515b;
}

.faq-page .section .faq-question-text {
  display: block;
}

@media (max-width: 640px) {
  .faq-page .section .faq-page-card {
    padding: 18px;
  }

  .faq-page .section .faq-detail-item summary {
    padding: 14px;
    font-size: 0.95rem;
  }

  .faq-page .section .faq-detail-answer {
    padding: 0 14px 14px;
  }
}


/* Features section: alternating full-width layout */
#features {
  color: #132128;
  background: #ffffff;
}

#features .section-kicker {
  color: #0f766e;
}

#features .section-heading h2 {
  color: #132128;
}

#features .heading-icon {
  background: linear-gradient(135deg, rgba(134, 239, 172, 0.18), rgba(15, 118, 110, 0.12));
  border-color: rgba(15, 118, 110, 0.12);
}

#features .heading-icon-feature::before {
  border-color: #4f7a73;
}

#features .heading-icon-feature::after {
  background: #4f7a73;
  box-shadow: 0 -8px 0 #4f7a73, 0 8px 0 #4f7a73;
}

#features .container {
  width: min(100vw - 48px, 1200px);
}

#features .section-heading {
  margin-bottom: 56px;
}

#features .detail-list {
  margin-top: 30px;
  display: grid;
  gap: 88px;
}

#features .detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#features .detail-card.reverse {
  grid-template-columns: minmax(0, 1fr);
}

#features .detail-card > div:first-child {
  max-width: 100%;
}

#features .detail-card.reverse > div:first-child {
  grid-column: auto;
  justify-self: stretch;
}

#features .detail-card.reverse > .detail-visual {
  grid-column: auto;
  grid-row: auto;
}

#features .detail-card h3 {
  margin: 0 0 18px;
  color: #132128;
  line-height: 1.32;
  font-size: clamp(1.75rem, 2.7vw, 2.7rem);
  letter-spacing: -0.03em;
}

#features .detail-card p,
#features .detail-card li {
  color: #35515b;
  font-size: 1.12rem;
  line-height: 2;
}

#features .detail-card ul {
  margin-top: 18px;
  padding-left: 1.3rem;
  display: grid;
  gap: 10px;
}

#features .detail-card strong {
  color: #0f766e;
}

#features .detail-visual {
  min-height: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 0;
}

#features .detail-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: none;
}

#features .detail-visual-a img {
  width: 80%;
}

@media (max-width: 1024px) {
  #features .container {
    width: min(100vw - 32px, 1200px);
  }

  #features .detail-list {
    gap: 48px;
  }

  #features .detail-card,
  #features .detail-card.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  #features .detail-card.reverse > div:first-child {
    grid-column: auto;
    justify-self: start;
  }

  #features .detail-card.reverse > .detail-visual {
    grid-column: auto;
    grid-row: auto;
  }

  #features .detail-card > div:first-child {
    max-width: 100%;
  }

  #features .detail-card h3 {
    font-size: clamp(1.45rem, 4.6vw, 2rem);
  }

  #features .detail-card {
    padding: 0;
  }
}

/* Advantages section: match the feature-side-by-side layout */
#advantages {
  color: #132128;
  background: #ffffff;
}

#advantages .section-kicker {
  color: #0f766e;
}

#advantages .section-heading h2 {
  color: #132128;
}

#advantages .heading-icon {
  background: linear-gradient(135deg, rgba(134, 239, 172, 0.18), rgba(15, 118, 110, 0.12));
  border-color: rgba(15, 118, 110, 0.12);
}

#advantages .heading-icon-feature::before {
  border-color: #4f7a73;
}

#advantages .heading-icon-feature::after {
  background: #4f7a73;
  box-shadow: 0 -8px 0 #4f7a73, 0 8px 0 #4f7a73;
}

#advantages .container {
  width: min(100vw - 48px, 1200px);
}

#advantages .section-heading {
  margin-bottom: 56px;
}

#advantages .detail-list {
  margin-top: 30px;
  display: grid;
  gap: 0;
}

#advantages .detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#advantages .advantage-tone-a {
  background: #ffffff;
}

#advantages .advantage-tone-b {
  background: linear-gradient(180deg, #edf3f1 0%, #e4efec 100%);
}

#advantages .detail-card > h3,
#advantages .detail-card > .detail-visual,
#advantages .detail-card > .advantage-copy {
  width: min(100vw - 48px, 1200px);
  margin-left: auto;
  margin-right: auto;
}

#advantages .detail-card h3 {
  position: relative;
  width: min(100vw - 48px, 1200px);
  margin: 0 auto;
  padding-top: 28px;
  color: #132128;
  line-height: 1.32;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  letter-spacing: -0.03em;
}

#advantages .detail-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 10px;
  border-top: 3px solid rgba(15, 118, 110, 0.9);
  border-bottom: 1px solid rgba(125, 211, 252, 0.75);
}

#advantages .detail-card p,
#advantages .detail-card li {
  color: #35515b;
  font-size: 1.12rem;
  line-height: 2;
}

#advantages .advantage-copy {
  display: grid;
  gap: 16px;
}

#advantages .advantage-copy p {
  margin: 0;
}

#advantages .detail-card ul {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 12px;
}

#advantages .detail-card strong {
  color: #0f766e;
}

#advantages .detail-visual {
  min-height: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 0;
}

#advantages .detail-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(41, 72, 58, 0.12);
}

@media (max-width: 1024px) {
  #advantages .container {
    width: min(100vw - 32px, 1200px);
  }

  #advantages .detail-list {
    gap: 0;
  }

  #advantages .detail-card h3 {
    width: min(100vw - 32px, 1200px);
    font-size: clamp(1.45rem, 4.6vw, 2rem);
  }

  #advantages .detail-card {
    padding: 40px 0;
  }

  #advantages .detail-card > h3,
  #advantages .detail-card > .detail-visual,
  #advantages .detail-card > .advantage-copy {
    width: min(100vw - 32px, 1200px);
  }
}




