:root {
  --color-ecforce-cyan: #31CCEC;
  --color-ecforce-blue: #1937C5;
  --color-navy: #0B1F3A;
  --color-aigate-red: #E60012;
  --color-aigate-red-dark: #B0000E;
  --color-aigate-red-light: #FFEAEA;
  --color-white: #FFFFFF;
  --color-bg-gray: #F5F7FA;
  --color-bg-blue: #EAFBFE;
  --color-bg-beige: #F8F4EF;
  --color-border: #D9E2EC;
  --color-text: #1F2937;
  --color-text-muted: #667085;
  --ink: var(--color-text);
  --ink-soft: #334155;
  --muted: var(--color-text-muted);
  --line: var(--color-border);
  --line-strong: #B9C7D6;
  --bg: var(--color-bg-gray);
  --white: var(--color-white);
  --navy: var(--color-ecforce-blue);
  --blue: var(--color-ecforce-blue);
  --blue-dark: var(--color-ecforce-blue);
  --blue-soft: var(--color-bg-blue);
  --cyan-soft: var(--color-bg-blue);
  --green-soft: var(--color-bg-beige);
  --shadow: 0 14px 36px rgba(11, 31, 58, .08);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 126px;
  height: 42px;
  object-fit: contain;
}

.brand-service {
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: var(--ink-soft);
}

.nav a.button {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  font-weight: 900;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(18, 104, 214, .22);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.button:hover {
  background: var(--blue-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, .94);
  border-color: #c9d7ef;
  box-shadow: 0 8px 20px rgba(25, 55, 197, .08);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(18, 104, 214, .12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(18, 104, 214, .08);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 80px;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.22;
}

.hero h1 span {
  display: block;
}

.keep-inline {
  display: inline-block;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
}

.sublead {
  margin-top: 8px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-trust-chips span {
  padding: 6px 10px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.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;
}

.section {
  padding: 88px 0;
}

.proof-section {
  padding: 28px 0 76px;
  background: var(--white);
}

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

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

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}

.heading-line {
  display: block;
}

.card-grid,
.reason-grid,
.article-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.card,
.reason,
.article-card,
.price-box,
.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.reason,
.article-card {
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.card:hover,
.reason:hover,
.article-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(16, 32, 51, .08);
  transform: translateY(-2px);
  text-decoration: none;
}

.icon-badge,
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #cfe2fb;
  border-radius: var(--radius);
}

.icon-badge svg,
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.proof-copy,
.partner-proof,
.proof-card,
.conversion-panel,
.conversion-card,
.calendar-placeholder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-copy {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(231, 241, 255, .72), rgba(255, 255, 255, .92)),
    var(--white);
}

.proof-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
}

.partner-proof {
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(18, 104, 214, .34), transparent 42%),
    var(--navy);
  box-shadow: 0 18px 42px rgba(7, 26, 53, .18);
}

.partner-proof span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 800;
}

.partner-proof strong {
  display: block;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
}

.partner-proof p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1fr;
  gap: 16px;
}

.proof-card {
  min-height: 338px;
  padding: 20px;
  color: var(--ink);
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.proof-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(16, 32, 51, .08);
  transform: translateY(-2px);
  text-decoration: none;
}

.proof-card h3 {
  margin-top: 16px;
  font-size: 17px;
  line-break: strict;
  overflow-wrap: anywhere;
}

.proof-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.proof-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-media-contain img {
  object-fit: contain;
}

.proof-media-product {
  background: var(--white);
}

.proof-media-product img {
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  min-height: 160px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-list li strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.problem-list li span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.solution-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(18, 104, 214, .12), transparent 34%),
    linear-gradient(135deg, #f7fbff, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 32, 51, .07);
}

.solution-diagram::before {
  content: "";
  position: absolute;
  inset: 50% 120px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9d3f4, transparent);
}

.solution-core {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 360px);
  margin-bottom: 6px;
  padding: 24px 28px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .2), transparent 40%),
    var(--navy);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(7, 26, 53, .18);
}

.solution-core span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.solution-core strong {
  display: block;
  margin-top: 4px;
  font-family: inherit;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.25;
}

.solution-core p {
  margin: 10px auto 0;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  line-height: 1.7;
}

.solution-node {
  position: relative;
  z-index: 1;
  min-height: 232px;
  padding: 22px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.solution-node::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 1px;
  height: 18px;
  background: #b9d3f4;
}

.solution-node small {
  display: block;
  margin: 12px 0 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.solution-node h3 {
  font-size: 20px;
  line-height: 1.45;
}

.solution-node p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  min-height: 188px;
  padding: 22px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p,
.reason p,
.faq-item p,
.article-card p {
  color: var(--ink-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

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

.reason {
  padding: 28px;
}

.reason-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-weight: 900;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process li::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 900;
}

.price-box {
  padding: 32px;
  box-shadow: var(--shadow);
}

.price-factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.price-note {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--color-bg-blue);
  border: 1px solid var(--line);
  border-left: 5px solid var(--color-ecforce-cyan);
  border-radius: var(--radius);
}

.price-note strong {
  color: var(--blue);
}

.price-note p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.conversion-section {
  padding: 0 0 88px;
  background: var(--white);
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(7, 26, 53, .98), rgba(14, 77, 159, .92)),
    var(--navy);
  box-shadow: var(--shadow);
}

.conversion-panel .eyebrow,
.conversion-panel h2,
.conversion-panel p {
  color: var(--white);
}

.conversion-panel .eyebrow::before {
  background: rgba(255, 255, 255, .82);
}

.conversion-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .82);
}

.conversion-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.conversion-card {
  min-height: 148px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-color: transparent;
  transition: transform .15s ease, background .15s ease;
}

.conversion-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.conversion-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
}

.conversion-card span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.conversion-card.primary {
  color: var(--white);
  background: #16a36f;
  border-color: #16a36f;
  box-shadow: 0 18px 34px rgba(22, 163, 111, .26);
}

.conversion-card.primary span {
  color: rgba(255, 255, 255, .86);
}

.conversion-card.primary::after,
.conversion-card.material::after {
  content: "おすすめ";
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}

.conversion-card.material {
  background: #fff7d8;
  border-color: #f2cc59;
}

.conversion-card.material::after {
  content: "資料請求";
  background: #0f3264;
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16, 32, 51, .06);
}

.faq-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.55;
}

.faq-item p {
  max-width: 840px;
  font-size: 15px;
  line-height: 1.8;
}

.form-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-placeholder {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-steps {
  display: grid;
  grid-template-columns: 28px 1fr 28px 1fr;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-steps span:nth-child(odd) {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.form-steps span.form-step-current {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.is-hidden {
  display: none !important;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.required,
.optional {
  flex: none;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.4;
}

.required {
  color: #fff;
  background: var(--blue);
}

.optional {
  color: var(--muted);
  background: var(--bg);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

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

.checkbox-grid label,
.privacy-field label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.checkbox-grid input,
.privacy-field input {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.privacy-field {
  display: grid;
  gap: 6px;
}

.optional-fields {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.optional-fields summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.optional-fields-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.privacy-field em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
}

.form-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}

.formrun .form-error:not(:empty) {
  margin-top: 2px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-next {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-back {
  width: max-content;
  padding: 0;
  color: var(--blue-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.form-assurance {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, .78);
  background: var(--navy);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner a {
  color: var(--white);
}

.article-hero {
  padding: 64px 0 32px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 820px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.3;
}

.article-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 48px;
  align-items: end;
}

.article-hero-simple {
  display: block;
  max-width: var(--max);
}

.article-hero-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.article-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.article-author img {
  width: 30px;
  height: 30px;
  max-width: 30px;
  min-width: 30px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.article-author span {
  color: var(--ink-soft);
  font-weight: 800;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 20px;
}

.article-meta-row .meta {
  margin-top: 0;
}

.article-hero + .section {
  padding-top: 34px;
}

.article-visual-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.column-index-hero {
  padding-bottom: 64px;
}

.column-index-hero .column-hero-content {
  display: block;
  max-width: var(--max);
}

.column-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 48px;
  align-items: end;
}

.column-hero-content .breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.column-hero-main {
  min-width: 0;
}

.column-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.column-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.column-topic-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.column-topic-links a::after {
  content: "/";
  margin-left: 10px;
  color: var(--line-strong);
}

.column-topic-links a:last-child::after {
  content: "";
  margin-left: 0;
}

.column-hero-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid #c7d8f4;
  border-top: 5px solid var(--color-ecforce-cyan);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.column-hero-panel strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.column-hero-panel p {
  margin: 12px 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.column-hero-panel .button {
  width: 100%;
}

.article-visual-card .card-icon {
  margin-bottom: 18px;
}

.article-visual-card p {
  color: var(--ink-soft);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 56px;
  align-items: start;
}

.article-body {
  font-size: 17px;
}

.article-intro {
  padding: 0 0 26px;
  border-bottom: 1px solid var(--line);
}

.article-intro p {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.article-intro p + p {
  margin-top: 12px;
}

.article-answer {
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.article-answer strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.article-answer p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.article-summary {
  margin: 28px 0 18px;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.article-summary ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.article-summary li {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.article-toc {
  margin: 0 0 38px;
  padding: 18px 20px;
  background: #f8fafc;
  border: 0;
  border-radius: 8px;
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.article-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc li {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.article-toc a {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}

.author-profile {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 40px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.author-profile img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.author-profile-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.author-profile strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.author-profile-role {
  margin: 4px 0 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.author-profile p:not(.author-profile-label):not(.author-profile-role) {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.article-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}

.article-point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-point .card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}

.article-point strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.45;
}

.article-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.article-body h2 {
  margin-top: 56px;
  margin-bottom: 16px;
  font-size: 30px;
}

.article-body h3 {
  margin-top: 32px;
  margin-bottom: 10px;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 16px 0 0;
}

.article-body li {
  margin-top: 8px;
}

.article-mini-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 34px 0 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid #c7d8f4;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 31, 58, .07);
}

.article-mini-cta strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.article-mini-cta p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
}

.sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-sidebar {
  box-shadow: none;
}

.article-sidebar p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.article-sidebar .button {
  width: 100%;
  margin-top: 18px;
  min-height: 50px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
}

.sidebar-toc {
  display: grid;
  gap: 0;
  margin: 18px 0;
  padding: 0;
  border: 0;
}

.sidebar-toc a {
  padding: 8px 0;
  color: var(--ink-soft);
  background: transparent;
  border-top: 0;
  font-size: 13px;
  font-weight: 800;
}

.sidebar-toc a:first-child {
  border-top: 0;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  color: var(--muted);
  content: "/";
  margin-left: 8px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
}

.meta {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  margin-top: 56px;
  padding: 32px;
  color: var(--white);
  background: var(--color-ecforce-blue);
  border-radius: var(--radius);
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
  margin-top: 10px;
}

.cta-band-title {
  display: block;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  word-break: keep-all;
}

.cta-band .button {
  margin-top: 20px;
}

.article-check {
  margin: 34px 0 0;
  padding: 24px 26px;
  background: var(--color-bg-beige);
  border: 1px solid var(--line);
  border-left: 5px solid var(--color-ecforce-cyan);
  border-radius: var(--radius);
}

.article-check h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.55;
}

.article-check ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-check li {
  position: relative;
  margin-top: 10px;
  padding-left: 34px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.article-check li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid var(--color-ecforce-blue);
  border-radius: 4px;
}

.article-check li::after {
  content: "";
  position: absolute;
  top: calc(.42em + 4px);
  left: 5px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--color-ecforce-blue);
  border-bottom: 2px solid var(--color-ecforce-blue);
  transform: rotate(-45deg);
}

.article-check strong {
  color: var(--ink);
  font-weight: 900;
}

.related-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.related-links strong {
  color: var(--ink);
}

.related-links a {
  color: var(--blue);
  font-weight: 800;
}

.column-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  background: var(--color-bg-blue);
  border: 1px solid var(--line);
  border-left: 6px solid var(--color-ecforce-cyan);
  border-radius: var(--radius);
}

.column-cta h2 {
  margin-top: 6px;
  line-height: 1.35;
  word-break: keep-all;
}

.column-cta-title-tail {
  white-space: nowrap;
}

.column-cta p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--ink-soft);
}

.column-cta-actions {
  display: grid;
  justify-items: start;
}

.article-card {
  color: inherit;
  display: block;
  min-height: 100%;
  padding: 26px;
  text-decoration: none;
}

.article-card article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.article-card-meta {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--blue);
  background: #eef6ff;
  border: 1px solid #cfe2fb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.article-card-title {
  display: block;
  color: var(--blue);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.article-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.article-card-action::after {
  content: "→";
  font-size: 16px;
}

.article-card:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(25, 55, 197, .16);
  outline: none;
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.compact h2 {
  margin-top: 6px;
}

.section-heading.compact p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--ink-soft);
}

.thanks {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 96px 0;
  background: var(--bg);
}

.thanks-box {
  max-width: 720px;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calendar-placeholder {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg);
}

.calendar-placeholder h2 {
  font-size: 24px;
}

.calendar-placeholder p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--ink-soft);
}

.calendar-mock {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.calendar-mock span {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

/* ecforce BPO LP refresh */
.button {
  background: var(--color-aigate-red);
  border-color: var(--color-aigate-red);
  box-shadow: 0 14px 30px rgba(230, 0, 18, .20);
}

.button:hover {
  background: var(--color-aigate-red-dark);
}

.button.secondary {
  color: var(--color-ecforce-blue);
  background: rgba(255, 255, 255, .94);
  border-color: #c9d7ef;
  box-shadow: 0 8px 20px rgba(25, 55, 197, .08);
}

.hero-actions .button {
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 18px 34px rgba(230, 0, 18, .24), 0 3px 0 rgba(145, 0, 12, .18);
}

.hero-actions .button.secondary {
  border: 2px solid #c8d7f4;
  box-shadow: 0 14px 28px rgba(25, 55, 197, .12), 0 3px 0 rgba(25, 55, 197, .08);
}

.hero {
  color: var(--color-navy);
  background:
    radial-gradient(circle at 86% 30%, rgba(49, 204, 236, .16), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #eef6ff 100%);
}

.hero::before {
  display: none;
}

.hero-inner {
  min-height: 690px;
  width: min(1220px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 540px);
  column-gap: 44px;
  row-gap: 18px;
  align-content: center;
  padding: 76px 0 70px;
}

.hero h1,
.hero .lead {
  color: var(--color-navy);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 3.35vw, 46px);
  line-height: 1.28;
}

.hero .lead {
  max-width: 660px;
  color: #263a56;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.consult-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.consult-points div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid #c8d7f4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 28px rgba(25, 55, 197, .08);
}

.consult-points dt {
  color: var(--color-ecforce-blue);
  font-size: 13px;
  font-weight: 900;
}

.consult-points dd {
  margin: 4px 0 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.5;
}

.hero-trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, .94);
  border-color: #b9ccf0;
  box-shadow: 0 12px 26px rgba(25, 55, 197, .10);
}

.hero-trust-chips span::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--color-ecforce-blue);
  border-radius: 999px;
}

.hero-art {
  display: block;
  align-self: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  filter: drop-shadow(0 26px 34px rgba(25, 55, 197, .16));
}

@media (min-width: 981px) and (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
    min-height: 650px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(31px, 3.2vw, 35px);
  }

  .hero-art {
    max-width: 430px;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

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

  .hero-art {
    grid-column: auto;
    grid-row: auto;
    max-width: 620px;
  }

  .hero-support {
    grid-column: auto;
    grid-row: auto;
  }
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1070 / 961;
  object-fit: contain;
}

.hero-support {
  grid-column: 1 / 2;
  grid-row: 2;
  width: 100%;
  max-width: 700px;
}

.proof-section {
  padding: 34px 0 58px;
}

.proof-hero-compact {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: center;
  gap: 18px;
}

.proof-hero-compact .proof-copy {
  padding: 28px 32px;
}

.proof-hero-compact .proof-copy h2 {
  max-width: 640px;
  font-size: clamp(25px, 2.6vw, 32px);
}

.proof-hero-compact .proof-copy p {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.8;
}

.proof-hero-compact .partner-proof {
  min-height: 0;
  padding: 24px 26px;
}

.proof-hero-compact .partner-proof span {
  margin-bottom: 8px;
  font-size: 13px;
}

.proof-hero-compact .partner-proof strong {
  font-size: clamp(26px, 2.8vw, 36px);
}

.proof-hero-compact .partner-proof p {
  margin-top: 12px;
  font-size: 13px;
}

.proof-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.proof-link-grid a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-ecforce-cyan);
  border-radius: var(--radius);
}

.proof-link-grid strong {
  color: var(--color-ecforce-blue);
  font-size: 15px;
  line-height: 1.5;
}

.proof-link-grid span {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.proof-image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.proof-image-grid .proof-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: auto;
  padding: 14px;
}

.proof-image-grid .proof-media {
  height: 150px;
  aspect-ratio: auto;
  background: #f8fbff;
}

.proof-image-grid .proof-card h3 {
  margin-top: 12px;
  color: var(--color-ecforce-blue);
  font-size: 15px;
}

.proof-image-grid .proof-card p {
  font-size: 12px;
  line-height: 1.65;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--color-bg-blue);
}

.process li::before {
  background: var(--color-ecforce-blue);
}

.proof-copy {
  background: var(--color-bg-blue);
}

.partner-proof {
  background: var(--color-ecforce-blue);
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.reason-visual {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reason-visual img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.reason-visual figcaption {
  padding: 18px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.price-box,
.form-shell,
.conversion-panel {
  box-shadow: none;
}

.conversion-panel {
  background: var(--color-ecforce-blue);
}

.conversion-card.primary {
  background: var(--color-aigate-red);
  border-color: var(--color-aigate-red);
  box-shadow: none;
}

.conversion-card.material {
  background: var(--color-bg-blue);
  border-color: var(--color-border);
}

.conversion-card.material::after {
  background: var(--color-ecforce-blue);
}

.faq-mark,
.form-steps span.form-step-current,
.required,
.privacy-field em {
  background: var(--color-aigate-red);
}

.form-assurance {
  margin-bottom: 16px;
  background: var(--color-aigate-red-light);
  color: var(--color-text);
}

.form-submit {
  margin-top: 16px;
}

.site-footer {
  background: var(--color-ecforce-blue);
}

.section-head h2 {
  color: var(--color-ecforce-blue);
  max-width: 760px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.38;
}

.section:not(.alt) .section-head .eyebrow {
  color: var(--color-ecforce-blue);
}

.section.alt .section-head .eyebrow {
  color: var(--color-ecforce-blue);
}

.section-head .eyebrow::before,
.proof-copy .eyebrow::before {
  background: var(--color-ecforce-cyan);
}

.problem-list li,
.card,
.reason,
.proof-card {
  border-color: var(--color-border);
  border-top: 4px solid var(--color-ecforce-cyan);
}

.problem-list li strong,
.card h3,
.reason h3 {
  color: var(--color-ecforce-blue);
}

.problem-list li span,
.card p,
.reason p {
  color: var(--color-text-muted);
}

.card-icon,
.icon-badge {
  color: var(--color-ecforce-blue);
  background: var(--color-bg-blue);
  border-color: rgba(49, 204, 236, .48);
}

.solution-diagram {
  background: var(--color-bg-blue);
  border-color: rgba(49, 204, 236, .5);
  box-shadow: none;
}

.solution-core {
  background: var(--color-ecforce-blue);
  box-shadow: none;
}

.solution-core::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--color-ecforce-cyan);
  border-radius: 999px;
}

.solution-node {
  border-top: 4px solid var(--color-ecforce-cyan);
}

.solution-node small,
.reason-number,
.text-link,
.tag-list span {
  color: var(--color-ecforce-blue);
}

.tag-list span {
  background: var(--color-bg-blue);
  border-color: rgba(49, 204, 236, .42);
}

.proof-section {
  border-top: 6px solid var(--color-ecforce-cyan);
}

.partner-proof {
  border-left: 6px solid var(--color-ecforce-cyan);
}

.price-box {
  border-top: 4px solid var(--color-ecforce-cyan);
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
  }

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

  .hero-art {
    grid-column: auto;
    grid-row: auto;
    max-width: 620px;
  }

  .hero-support {
    grid-column: auto;
    grid-row: auto;
  }

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

  .column-hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .column-hero-content .breadcrumb {
    margin-bottom: 0;
  }

  .proof-hero,
  .conversion-panel,
  .form-shell,
  .reason-layout,
  .article-layout,
  .article-hero-inner {
    grid-template-columns: 1fr;
  }

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

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

  .solution-core {
    grid-column: 1 / -1;
  }

  .solution-diagram::before,
  .solution-node::before {
    display: none;
  }

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

  .conversion-options {
    grid-template-columns: 1fr;
  }

  .article-points {
    grid-template-columns: 1fr;
  }

  .article-mini-cta {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 64px;
  }

  .brand-service {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.28;
  }

  .hero-inner {
    gap: 28px;
    padding: 56px 0 48px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .lead {
    font-size: 16px;
  }

  .hero .lead {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 15px;
    line-height: 1.85;
    white-space: normal;
    word-break: break-all;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 14px 26px rgba(230, 0, 18, .20);
    font-size: 15px;
    font-weight: 700;
  }

  .button.secondary {
    color: var(--color-ecforce-blue);
    background: rgba(255, 255, 255, .98);
    border: 1px solid #b8c9ef;
    box-shadow: 0 10px 22px rgba(25, 55, 197, .10);
  }

  .hero-trust-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-trust-chips span {
    padding: 10px 12px;
    color: var(--blue-dark);
    background: #f1f7ff;
    border-color: #cfe2fb;
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(16, 32, 51, .06);
  }

  .proof-grid,
  .solution-diagram,
  .problem-list,
  .card-grid,
  .reason-grid,
  .article-grid,
  .price-factors {
    grid-template-columns: 1fr;
  }

  .faq-item {
    grid-template-columns: 34px 1fr;
    padding: 18px;
  }

  .form-shell,
  .price-box,
  .thanks-box,
  .proof-copy,
  .partner-proof,
  .conversion-panel,
  .column-cta,
  .cta-band,
  .column-hero-panel,
  .article-intro,
  .article-mini-cta {
    padding: 24px;
  }

  .proof-hero-compact .proof-copy {
    padding: 24px;
  }

  .proof-hero-compact .partner-proof {
    padding: 24px;
  }

  .proof-image-grid .proof-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .reason-visual img {
    height: 220px;
  }

  .column-cta {
    grid-template-columns: 1fr;
  }

  .column-cta-title-tail {
    white-space: normal;
  }

  .article-hero {
    padding: 54px 0 32px;
  }

  .article-hero h1 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.38;
  }

  .column-topic-links {
    gap: 12px;
  }

  .column-topic-links a {
    justify-content: flex-start;
    min-height: auto;
  }

  .column-hero-panel strong {
    font-size: 18px;
  }

  .article-card {
    padding: 22px;
  }

  .article-card-title {
    font-size: 17px;
    line-height: 1.55;
  }

  .article-intro p {
    font-size: 16px;
    line-height: 1.85;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: none;
  }

  .article-mini-cta .button,
  .cta-band .button,
  .column-cta .button {
    width: 100%;
  }

  .sidebar-toc a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

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

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .hero-inner {
    padding: 42px 0 48px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .consult-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .consult-points div:nth-child(3) {
    display: none;
  }

  .consult-points div {
    min-height: auto;
    padding: 17px 18px;
    background: rgba(255, 255, 255, .92);
    border-color: #b8c9ef;
    box-shadow: none;
  }

  .consult-points dt {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
  }

  .consult-points dd {
    margin-top: 4px;
    color: #233047;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
  }

  .hero-trust-chips {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, .58);
    border: 1px solid #c8d7f4;
    border-radius: 10px;
  }

  .hero-trust-chips span {
    position: relative;
    padding: 10px 12px 10px 34px;
    color: #24324a;
    background: rgba(255, 255, 255, .86);
    border: 1px solid #d7e2f6;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(25, 55, 197, .05);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.65;
  }

  .hero-trust-chips span::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    display: block;
    width: 9px;
    height: 9px;
    background: var(--color-ecforce-blue);
    border-radius: 999px;
    transform: translateY(-50%);
  }

  .hero-trust-chips span + span {
    border-top: 1px solid #d7e2f6;
  }

  .hero-art {
    max-width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: var(--color-white);
  background: var(--color-aigate-red);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(11, 31, 58, .22);
  font-weight: 900;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.mobile-sticky-cta:hover {
  background: var(--color-aigate-red-dark);
  text-decoration: none;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 641px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* EC no inu no te series LP */
.inu-page {
  --inu-navy: #062b55;
  --inu-blue: #0077d9;
  --inu-red: #e3132c;
  --inu-red-dark: #b90f22;
  --inu-yellow: #f5b71b;
  --inu-pink: #fff4f5;
  --inu-pink-line: rgba(227, 19, 44, .16);
  --inu-cream: #fffaf0;
  --inu-text: #182235;
  --inu-muted: #5f6b7a;
  --navy: var(--inu-navy);
  --blue: var(--inu-blue);
  --blue-dark: var(--inu-navy);
  --blue-soft: #eaf5ff;
  --color-ecforce-blue: var(--inu-navy);
  --color-ecforce-cyan: var(--inu-blue);
  --color-aigate-red: var(--inu-red);
  --color-aigate-red-dark: var(--inu-red-dark);
  --color-aigate-red-light: #fff0f2;
  color: var(--inu-text);
}

.inu-page .site-header {
  background: rgba(255, 255, 255, .96);
}

.inu-page .inu-brand-logo {
  width: 142px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.inu-page .button {
  background: var(--inu-red);
  border-color: var(--inu-red);
  box-shadow: 0 12px 24px rgba(227, 19, 44, .18);
}

.inu-page .button:hover {
  background: var(--inu-red-dark);
}

.inu-page .button.secondary {
  color: var(--inu-navy);
  background: var(--white);
  border-color: rgba(6, 43, 85, .22);
  box-shadow: none;
}

.inu-page .eyebrow {
  color: var(--inu-blue);
}

.inu-page .eyebrow::before {
  background: var(--inu-red);
}

.inu-hero {
  color: var(--inu-text);
  background:
    linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
    linear-gradient(180deg, var(--inu-pink) 0%, #fff 100%);
  background-size: 52px 52px, 52px 52px, auto;
  border-top: 16px solid var(--inu-red);
}

.inu-page .inu-hero::before {
  display: none;
}

.inu-hero-inner {
  min-height: 660px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 48px;
}

.inu-page .inu-hero .eyebrow,
.inu-page .inu-hero h1,
.inu-page .inu-hero .lead {
  color: var(--inu-text);
}

.inu-page .inu-hero h1 {
  max-width: 660px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 950;
}

.inu-page .inu-hero h1 span:last-child {
  color: var(--inu-red);
  -webkit-text-stroke: 1px #fff;
  text-shadow:
    2px 2px 0 #fff,
    4px 4px 0 rgba(6, 43, 85, .14);
}

.inu-page .inu-hero .lead {
  max-width: 620px;
  font-size: 20px;
  font-weight: 850;
}

.inu-page .inu-hero .sublead {
  color: var(--inu-muted);
  font-size: 16px;
  font-weight: 700;
}

.inu-sticker {
  padding: 7px 12px;
  background: var(--white);
  border: 2px solid var(--inu-navy);
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(6, 43, 85, .12);
}

.inu-sticker::before {
  width: 8px;
  height: 8px;
  background: var(--inu-red);
  border-radius: 50%;
}

.inu-page .hero-trust-chips span {
  color: var(--inu-navy);
  background: var(--white);
  border: 2px solid rgba(6, 43, 85, .14);
  border-left: 6px solid var(--inu-blue);
  border-radius: 8px;
}

.inu-hero-visual {
  position: relative;
  min-height: 500px;
}

.inu-hero-image2 {
  display: grid;
  align-self: center;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
    rgba(255, 255, 255, .86);
  background-size: 32px 32px;
  border: 4px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(6, 43, 85, .16);
}

.inu-hero-image2 img {
  width: 100%;
  aspect-ratio: 1100 / 733;
  object-fit: cover;
}

.inu-hero-image2 figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: min(82%, 340px);
  padding: 12px 16px;
  color: var(--inu-red);
  background: rgba(255, 255, 255, .94);
  border: 2px solid var(--inu-navy);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(6, 43, 85, .12);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.5;
}

.inu-grid-bg {
  position: absolute;
  inset: 32px 0 38px 28px;
  background:
    linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
    rgba(255, 255, 255, .62);
  background-size: 34px 34px;
  border: 3px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 43, 85, .11);
}

.inu-dog-main {
  position: absolute;
  right: 10px;
  bottom: 26px;
  z-index: 3;
  width: min(92%, 420px);
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: drop-shadow(0 18px 24px rgba(6, 43, 85, .13));
}

.inu-css-paw {
  position: absolute;
  z-index: 2;
  opacity: .9;
  pointer-events: none;
}

.inu-paw-one {
  left: -28px;
  top: 54px;
  width: 92px;
  height: 78px;
  background: var(--inu-blue);
  border-radius: 46% 46% 50% 50%;
  transform: rotate(-10deg);
  box-shadow:
    -34px -18px 0 -18px var(--inu-blue),
    -12px -34px 0 -18px var(--inu-blue),
    16px -36px 0 -18px var(--inu-blue),
    38px -18px 0 -18px var(--inu-blue);
}

.inu-task-card,
.inu-speech {
  position: absolute;
  z-index: 4;
  padding: 12px 14px;
  background: var(--white);
  border: 2px solid var(--inu-navy);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(6, 43, 85, .12);
}

.inu-task-card strong {
  display: block;
  color: var(--inu-navy);
  font-size: 15px;
  line-height: 1.35;
}

.inu-task-card span {
  color: var(--inu-muted);
  font-size: 12px;
  font-weight: 800;
}

.task-ad {
  left: 18px;
  top: 190px;
}

.task-shop {
  right: 22px;
  top: 112px;
  border-color: var(--inu-blue);
}

.task-crm {
  left: 34px;
  bottom: 70px;
  border-color: var(--inu-red);
}

.inu-speech {
  right: 52px;
  bottom: 18px;
  max-width: 230px;
  color: var(--inu-red);
  font-weight: 950;
  line-height: 1.45;
}

.inu-speech::after {
  content: "";
  position: absolute;
  right: 38px;
  bottom: -12px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-right: 2px solid var(--inu-navy);
  border-bottom: 2px solid var(--inu-navy);
  transform: rotate(45deg);
}

.inu-dark-band {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .1), transparent 24%),
    linear-gradient(135deg, #30343b, #151a22);
}

.inu-dark-band .eyebrow,
.inu-dark-band h2,
.inu-dark-band p {
  color: var(--white);
}

.inu-dark-band .eyebrow::before {
  background: var(--inu-yellow);
}

.inu-band-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.inu-band-dog {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
    radial-gradient(circle at 50% 74%, rgba(255, 255, 255, .24), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  background-size: 30px 30px, 30px 30px, auto, auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
}

.inu-band-dog img {
  position: relative;
  z-index: 2;
  width: min(88%, 420px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .3));
}

.inu-band-dog::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 1;
  width: 68%;
  height: 32px;
  background: rgba(0, 0, 0, .22);
  border-radius: 50%;
  filter: blur(10px);
  transform: translateX(-50%);
}

.inu-band-dog::after {
  content: "手が足りない...";
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  padding: 10px 14px;
  color: var(--inu-navy);
  background: rgba(255, 255, 255, .94);
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .14);
  font-size: 13px;
  font-weight: 950;
}

.inu-band-chip {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  min-width: 78px;
  min-height: 44px;
  padding: 8px 12px;
  color: #fff;
  background: var(--inu-blue);
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
  font-size: 14px;
  font-weight: 950;
  transform: rotate(-6deg);
}

.chip-ad {
  left: 22px;
  top: 42px;
  background: var(--inu-red);
}

.chip-crm {
  right: 24px;
  bottom: 62px;
  background: var(--inu-blue);
  transform: rotate(7deg);
}

.chip-stock {
  left: 34px;
  bottom: 52px;
  color: var(--inu-navy);
  background: var(--inu-yellow);
  transform: rotate(5deg);
}

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

.inu-check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.inu-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 17px;
  height: 17px;
  background: var(--inu-yellow);
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    -7px -4px 0 -3px var(--inu-yellow),
    0 -8px 0 -3px var(--inu-yellow),
    7px -4px 0 -3px var(--inu-yellow);
}

.inu-overview-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.inu-logo-card,
.inu-priority {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inu-logo-card {
  display: grid;
  align-content: center;
  background:
    linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
    var(--inu-pink);
  background-size: 30px 30px;
  border: 3px solid var(--white);
  box-shadow: 0 14px 32px rgba(6, 43, 85, .08);
}

.inu-logo-card img {
  width: min(100%, 300px);
  margin: 0 auto;
}

.inu-logo-card p {
  margin-top: 14px;
  color: var(--inu-navy);
  font-weight: 850;
  text-align: center;
}

.inu-priority {
  border-top: 5px solid var(--inu-red);
}

.inu-priority span {
  display: inline-flex;
  color: var(--inu-blue);
  font-size: 13px;
  font-weight: 950;
}

.inu-priority strong {
  display: block;
  margin-top: 10px;
  color: var(--inu-navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.inu-priority p {
  margin-top: 14px;
  color: var(--inu-muted);
  font-size: 16px;
}

.inu-page .section.alt {
  background:
    linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
    #fff9fa;
  background-size: 44px 44px;
}

.inu-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.inu-page .card,
.inu-page .reason {
  border-top: 0;
  box-shadow: 0 10px 24px rgba(6, 43, 85, .05);
}

.inu-page .card h3,
.inu-page .reason h3,
.inu-page .section-head h2 {
  color: var(--inu-navy);
}

.inu-mini-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--inu-blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.inu-page .card:nth-child(3n) .inu-mini-icon,
.inu-page .reason:nth-child(3n) .reason-number {
  color: var(--inu-red);
}

.inu-page .tag-list span {
  color: var(--inu-navy);
  background: var(--white);
  border-color: rgba(6, 43, 85, .18);
}

.inu-reason-grid .reason {
  min-height: 210px;
}

.inu-page .reason-number {
  color: var(--inu-blue);
}

.inu-process li::before {
  background: var(--inu-red);
}

.inu-conversion {
  padding-top: 0;
}

.inu-page .conversion-panel {
  background:
    linear-gradient(135deg, rgba(6, 43, 85, .97), rgba(0, 119, 217, .88)),
    var(--inu-navy);
  border: 0;
}

.inu-page .conversion-card.material {
  background: #fff7d8;
  border-color: #f0ce64;
}

.inu-page .faq-mark,
.inu-page .form-steps span.form-step-current,
.inu-page .required,
.inu-page .privacy-field em {
  background: var(--inu-red);
}

.inu-page .form-assurance {
  background: #fff0f2;
  border-left: 5px solid var(--inu-red);
}

.inu-page .form-shell {
  border-top: 6px solid var(--inu-red);
}

.inu-page .site-footer {
  background: var(--inu-navy);
}

.inu-page .mobile-sticky-cta {
  background: var(--inu-red);
}

@media (max-width: 980px) {
  .inu-hero-inner,
  .inu-band-layout,
  .inu-overview-panel {
    grid-template-columns: 1fr;
  }

  .inu-hero-visual {
    max-width: 560px;
    min-height: 0;
  }

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

@media (min-width: 821px) and (max-width: 980px) {
  .inu-hero-inner {
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    gap: 28px;
    align-items: center;
  }

  .inu-page .inu-hero h1 {
    font-size: clamp(38px, 4.8vw, 46px);
  }

  .inu-page .inu-hero .lead {
    font-size: 17px;
  }

  .inu-page .inu-hero .sublead {
    font-size: 14px;
  }

  .inu-page .hero-trust-chips span {
    font-size: 12px;
  }

  .inu-hero-image2 figcaption {
    left: 14px;
    bottom: 14px;
    max-width: 300px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .inu-page .inu-brand-logo {
    width: 126px;
    height: 42px;
  }

  .inu-hero {
    border-top-width: 10px;
    background-size: 34px 34px, 34px 34px, auto;
  }

  .inu-page .inu-hero h1 {
    font-size: clamp(29px, 8.8vw, 36px);
  }

  .inu-page .inu-hero .lead {
    font-size: 18px;
  }

  .inu-page .inu-hero .sublead {
    font-size: 15px;
  }

  .inu-hero-visual {
    min-height: 0;
    margin-top: 4px;
  }

  .inu-hero-image2 {
    max-width: 100%;
    border-width: 3px;
  }

  .inu-hero-image2 img {
    min-height: 270px;
    object-position: 52% 50%;
  }

  .inu-hero-image2 figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 10px 12px;
    font-size: 13px;
  }

  .inu-grid-bg {
    inset: 24px 0 22px;
  }

  .inu-dog-main {
    right: -18px;
    bottom: 34px;
    width: 90%;
    height: auto;
  }

  .inu-paw-one {
    left: -24px;
    top: 38px;
    transform: rotate(-10deg) scale(.78);
  }

  .inu-task-card {
    padding: 9px 10px;
  }

  .task-ad {
    left: 6px;
    top: 132px;
  }

  .task-shop {
    right: 2px;
    top: 74px;
  }

  .task-crm {
    left: 14px;
    bottom: 78px;
  }

  .inu-speech {
    right: 18px;
    bottom: 8px;
    max-width: 210px;
    font-size: 14px;
  }

  .inu-band-dog {
    min-height: 240px;
  }

  .inu-check-list li {
    font-size: 15px;
  }

  .inu-logo-card,
  .inu-priority {
    padding: 22px;
  }

  .inu-scope-grid {
    grid-template-columns: 1fr;
  }
}

/* EC logistics dog-service LP */
.logistics-page {
  --dog-navy: #15194a;
  --dog-blue: #0f74d5;
  --dog-red: #e0182d;
  --dog-orange: #f4a51c;
  --dog-cream: #fff8e8;
  --dog-line: #d6dbe8;
  --dog-shadow: 0 18px 40px rgba(18, 25, 74, .12);
  --navy: var(--dog-navy);
  --blue: var(--dog-blue);
  --blue-dark: var(--dog-navy);
  --color-ecforce-blue: var(--dog-navy);
  --color-ecforce-cyan: var(--dog-blue);
  --color-aigate-red: var(--dog-red);
  color: #1f2937;
  background: var(--color-white);
}

.logistics-page .button {
  background: var(--dog-red);
  border-color: var(--dog-red);
  box-shadow: 0 10px 22px rgba(224, 24, 45, .18);
}

.logistics-page .button:hover {
  background: #bd1022;
}

.logistics-page .button.secondary {
  color: var(--dog-navy);
  background: var(--color-white);
  border-color: var(--dog-line);
  box-shadow: none;
}

.dog-service-header .brand-service,
.logistics-page .nav a {
  color: var(--dog-navy);
}

.logistics-hero {
  position: relative;
  overflow: hidden;
  color: var(--dog-navy);
  background:
    radial-gradient(circle at 78% 48%, rgba(15, 116, 213, .1), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 232, .98), rgba(255, 255, 255, .98) 58%, rgba(238, 247, 255, .84)),
    var(--dog-cream);
  border-top: 8px solid var(--dog-red);
}

.logistics-hero::before,
.logistics-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.logistics-hero::before {
  right: -180px;
  top: 92px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(21, 25, 74, .07);
}

.logistics-hero::after {
  left: 7%;
  top: 112px;
  width: 210px;
  height: 170px;
  opacity: .42;
  background: rgba(244, 165, 28, .28);
  clip-path: polygon(18% 35%, 30% 15%, 44% 33%, 58% 9%, 70% 34%, 92% 37%, 73% 55%, 80% 81%, 55% 67%, 33% 86%, 36% 60%, 8% 57%);
}

.logistics-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .9fr);
  gap: 62px;
  align-items: center;
  padding: 58px 0 68px;
}

.logistics-logo-lockup {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 8px 14px 8px 10px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(21, 25, 74, .12);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(21, 25, 74, .07);
}

.logistics-service-logo {
  width: 184px;
  height: auto;
  object-fit: contain;
}

.logistics-logo-lockup span {
  color: var(--dog-navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}

.dog-kicker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 8px 13px;
  color: var(--color-white);
  background: var(--dog-navy);
  border: 2px solid var(--dog-navy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  box-shadow: 7px 7px 0 rgba(244, 165, 28, .24);
}

.logistics-hero h1 {
  max-width: 660px;
  color: var(--dog-navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
}

.logistics-hero h1 span {
  display: block;
}

.logistics-hero h1 span:last-child {
  color: var(--dog-red);
}

.logistics-hero .lead {
  max-width: 650px;
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}

.logistics-trust-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 640px;
  margin: 26px 0 0;
}

.logistics-trust-chips div {
  padding: 13px 14px;
  background: var(--color-white);
  border: 1px solid var(--dog-line);
  border-left: 5px solid var(--dog-blue);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(21, 25, 74, .06);
}

.logistics-trust-chips dt {
  color: var(--dog-red);
  font-size: 13px;
  font-weight: 900;
}

.logistics-trust-chips dd {
  margin: 4px 0 0;
  color: #334155;
  font-size: 12px;
  line-height: 1.5;
}

.logistics-hero-visual {
  position: relative;
  min-height: 558px;
}

.logistics-hero-panel {
  position: absolute;
  inset: 20px 0 88px;
  overflow: hidden;
  background:
    linear-gradient(rgba(224, 24, 45, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 24, 45, .11) 1px, transparent 1px),
    rgba(255, 255, 255, .82);
  background-size: 34px 34px, 34px 34px, auto;
  border: 2px solid rgba(21, 25, 74, .16);
  border-radius: 18px;
  box-shadow: var(--dog-shadow);
}

.logistics-hero-panel::before {
  content: "";
  position: absolute;
  right: -74px;
  top: 38px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(21, 25, 74, .08);
}

.hero-dog {
  position: absolute;
  z-index: 4;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(21, 25, 74, .16));
}

.hero-dog-main {
  left: -38px;
  bottom: -8px;
  width: 48%;
}

.hero-dog-sub {
  right: 22px;
  top: 24px;
  width: 44%;
}

.parcel-stage {
  position: absolute;
  left: 22%;
  bottom: 58px;
  z-index: 2;
  width: 54%;
  padding: 18px;
  background: var(--color-white);
  border: 2px solid rgba(21, 25, 74, .14);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(21, 25, 74, .1);
  transform: rotate(-3deg);
}

.parcel-stage img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 76px;
  padding: 12px 14px;
  color: var(--color-white);
  border: 3px solid var(--color-white);
  border-radius: 8px;
  box-shadow: var(--dog-shadow);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.sticker-urgent {
  left: 24px;
  top: 74px;
  background: var(--dog-red);
  transform: rotate(-8deg);
}

.sticker-calm {
  right: 22px;
  bottom: 106px;
  background: var(--dog-blue);
  transform: rotate(6deg);
}

.sticker-processing {
  left: 44%;
  top: 30px;
  color: var(--dog-navy);
  background: #ffe6a6;
  transform: rotate(4deg);
}

.hero-speech {
  position: absolute;
  left: 28px;
  bottom: 124px;
  z-index: 5;
  max-width: 180px;
  padding: 13px 15px;
  color: var(--dog-navy);
  background: var(--color-white);
  border: 2px solid var(--dog-navy);
  border-radius: 18px 18px 18px 4px;
  box-shadow: 6px 6px 0 rgba(15, 116, 213, .16);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.mini-truck {
  position: absolute;
  right: 24px;
  top: 206px;
  z-index: 3;
  width: 74px;
  height: 38px;
  color: var(--color-white);
  background: var(--dog-navy);
  border-radius: 6px 10px 6px 6px;
  box-shadow: 0 12px 24px rgba(21, 25, 74, .14);
}

.mini-truck::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 24px;
  height: 26px;
  background: var(--dog-navy);
  border-radius: 4px 7px 4px 0;
}

.mini-truck::after,
.mini-truck span::before {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--dog-red);
  border: 3px solid var(--color-white);
  border-radius: 50%;
}

.mini-truck::after {
  left: 10px;
}

.mini-truck span::before {
  right: -11px;
}

.hero-check-note {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  width: 142px;
  padding: 12px;
  background: var(--color-white);
  border: 2px solid rgba(21, 25, 74, .16);
  border-radius: 10px;
  box-shadow: var(--dog-shadow);
  transform: rotate(3deg);
}

.hero-check-note i {
  display: block;
  height: 8px;
  margin: 7px 0;
  background: var(--dog-line);
  border-radius: 999px;
}

.hero-check-note i:first-child {
  width: 92%;
  background: var(--dog-blue);
}

.hero-check-note i:nth-child(2) {
  width: 68%;
}

.hero-check-note i:nth-child(3) {
  width: 82%;
}

.logistics-mini-board {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  z-index: 4;
  padding: 18px 20px;
  color: var(--dog-navy);
  background: rgba(255, 255, 255, .95);
  border: 2px solid var(--dog-navy);
  border-radius: var(--radius);
  box-shadow: var(--dog-shadow);
}

.logistics-mini-board strong,
.logistics-mini-board span {
  display: block;
}

.logistics-mini-board strong {
  margin-bottom: 8px;
  color: var(--dog-red);
  font-size: 20px;
  line-height: 1.35;
}

.logistics-mini-board span {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.dog-section-head .eyebrow,
.dog-section-head h2,
.logistics-page .section-head h2 {
  color: var(--dog-navy);
}

.dog-section-head .eyebrow::before,
.logistics-page .section-head .eyebrow::before {
  background: var(--dog-red);
}

.logistics-page .section.alt {
  background: #eef7ff;
}

.dog-problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dog-problem-list li {
  position: relative;
  min-height: 120px;
  padding: 20px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--dog-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(21, 25, 74, .05);
}

.dog-problem-list li::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 26px;
  background: rgba(15, 116, 213, .18);
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    -14px -7px 0 -6px rgba(15, 116, 213, .18),
    0 -13px 0 -6px rgba(15, 116, 213, .18),
    14px -7px 0 -6px rgba(15, 116, 213, .18);
  transform: rotate(-12deg);
}

.dog-problem-list span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--dog-red);
  font-size: 13px;
  font-weight: 900;
}

.dog-problem-list strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--dog-navy);
  font-size: 18px;
  line-height: 1.55;
}

.logistics-issue-band {
  color: var(--color-white);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, .11), transparent 24%),
    radial-gradient(circle at 88% 88%, rgba(15, 116, 213, .24), transparent 26%),
    linear-gradient(135deg, #17203a 0%, #0d1832 58%, #0f315c 100%);
}

.logistics-issue-layout {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.logistics-issue-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    rgba(255, 255, 255, .08);
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .22);
}

.logistics-issue-visual::before,
.logistics-issue-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 31px;
  background: rgba(255, 255, 255, .24);
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    -16px -8px 0 -7px rgba(255, 255, 255, .24),
    0 -15px 0 -7px rgba(255, 255, 255, .24),
    16px -8px 0 -7px rgba(255, 255, 255, .24);
}

.logistics-issue-visual::before {
  right: 28px;
  top: 28px;
  transform: rotate(18deg);
}

.logistics-issue-visual::after {
  left: 28px;
  bottom: 28px;
  transform: rotate(-16deg) scale(.82);
}

.logistics-issue-visual picture,
.logistics-issue-visual img {
  display: block;
  width: 100%;
}

.logistics-issue-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.logistics-issue-copy .eyebrow,
.logistics-issue-copy h2,
.logistics-issue-copy p {
  color: var(--color-white);
}

.logistics-issue-copy .eyebrow {
  color: #8fc5ff;
}

.logistics-issue-copy .eyebrow::before {
  background: var(--dog-red);
}

.logistics-issue-copy h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.16;
}

.logistics-issue-copy h2 span {
  display: inline-block;
  white-space: nowrap;
}

.logistics-issue-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.85;
}

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

.logistics-check-list li {
  position: relative;
  min-height: 56px;
  padding: 15px 18px 15px 64px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.55;
}

.logistics-check-list li::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 28px;
  width: 18px;
  height: 15px;
  background: #ffd84d;
  border-radius: 58% 58% 48% 48%;
  transform: rotate(-10deg);
}

.logistics-check-list li::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 9px;
  height: 10px;
  background: #ffd84d;
  border-radius: 50%;
  box-shadow:
    9px -5px 0 1px #ffd84d,
    20px -5px 0 1px #ffd84d,
    29px 0 0 0 #ffd84d;
  transform: rotate(-10deg);
}

.logistics-overview {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: center;
}

.overview-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: #334155;
  font-size: 17px;
}

.overview-media {
  position: relative;
  padding: 24px;
  background: var(--dog-cream);
  border: 1px solid #ead9b5;
  border-radius: var(--radius);
  box-shadow: var(--dog-shadow);
}

.overview-media::before {
  content: "EC / D2C";
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 6px 10px;
  color: var(--color-white);
  background: var(--dog-navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.dog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dog-card,
.dog-reason,
.dog-group-note,
.dog-form-shell,
.dog-thanks-box {
  border-color: var(--dog-line);
  border-top: 4px solid var(--dog-blue);
}

.dog-card {
  min-height: 204px;
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--dog-line);
  border-top: 4px solid var(--dog-blue);
  border-radius: var(--radius);
}

.dog-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--color-white);
  background: var(--dog-navy);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.dog-card h3,
.dog-reason h3 {
  color: var(--dog-navy);
}

.dog-card p,
.dog-reason p {
  margin-top: 10px;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.dog-reason .reason-number {
  color: var(--dog-red);
}

.dog-group-note {
  margin-top: 18px;
  padding: 22px;
  background: var(--dog-cream);
  border: 1px solid #ead9b5;
  border-left: 6px solid var(--dog-orange);
  border-radius: var(--radius);
}

.dog-group-note strong {
  color: var(--dog-navy);
  font-size: 18px;
}

.dog-group-note p {
  margin-top: 8px;
  color: #475569;
}

.dog-process li::before {
  background: var(--dog-navy);
}

.dog-conversion-panel {
  background:
    linear-gradient(135deg, rgba(21, 25, 74, .98), rgba(15, 116, 213, .9)),
    var(--dog-navy);
}

.dog-conversion-panel .conversion-card.primary {
  background: var(--dog-red);
  border-color: var(--dog-red);
}

.dog-conversion-panel .conversion-card.material {
  background: #fff8e0;
  border-color: #f1cf6b;
}

.dog-conversion-panel .conversion-card.material::after {
  content: "診断";
}

.logistics-page .faq-mark,
.logistics-page .form-steps span.form-step-current,
.logistics-page .required,
.logistics-page .privacy-field em {
  background: var(--dog-red);
}

.dog-form-shell .form-assurance {
  background: var(--dog-cream);
  border: 1px solid #ead9b5;
}

.dog-service-footer,
.logistics-page .site-footer {
  background: var(--dog-navy);
}

.logistics-page .mobile-sticky-cta {
  background: var(--dog-red);
}

@media (max-width: 980px) {
  .logistics-hero-inner,
  .logistics-overview {
    grid-template-columns: 1fr;
  }

  .logistics-hero-inner {
    min-height: auto;
    gap: 28px;
  }

  .logistics-hero-visual {
    min-height: 440px;
    max-width: 560px;
  }

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

@media (max-width: 640px) {
  .logistics-hero-inner {
    padding: 34px 0 44px;
  }

  .logistics-service-logo {
    width: 132px;
    margin-bottom: 0;
  }

  .logistics-logo-lockup {
    grid-template-columns: 132px 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 18px;
    padding: 8px 10px;
    border-radius: 18px;
  }

  .logistics-logo-lockup span {
    font-size: 11px;
    white-space: normal;
  }

  .dog-kicker {
    align-items: flex-start;
    border-radius: var(--radius);
    transform: none;
  }

  .logistics-hero h1 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .logistics-trust-chips,
  .dog-problem-list,
  .dog-card-grid {
    grid-template-columns: 1fr;
  }

  .logistics-hero-visual {
    min-height: 430px;
  }

  .hero-dog-main {
    left: -22px;
    bottom: 4px;
    width: 49%;
  }

  .hero-dog-sub {
    right: -18px;
    top: 26px;
    width: 50%;
  }

  .logistics-hero-panel {
    inset: 10px 0 96px;
  }

  .parcel-stage {
    left: 25%;
    bottom: 76px;
    width: 54%;
    padding: 12px;
  }

  .hero-sticker {
    min-width: 92px;
    min-height: 58px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .sticker-urgent {
    left: 12px;
    top: 34px;
  }

  .sticker-calm {
    right: 8px;
    bottom: 118px;
  }

  .sticker-processing,
  .mini-truck,
  .hero-check-note {
    display: none;
  }

  .hero-speech {
    left: 12px;
    bottom: 104px;
    max-width: 156px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .logistics-mini-board {
    left: 0;
    right: 0;
    padding: 14px;
  }

  .logistics-mini-board strong {
    font-size: 18px;
  }

  .overview-media {
    padding: 16px;
  }
}

/* image-2 first-view implementation refinement */
.logistics-page .site-header {
  background: rgba(255, 255, 255, .96);
}

.logistics-hero {
  min-height: calc(100vh - 70px);
  background:
    radial-gradient(circle at 88% 36%, rgba(174, 207, 239, .44), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(174, 207, 239, .28), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 58%, #edf6ff 100%);
  border-top: 0;
}

.logistics-hero::before {
  right: -80px;
  top: 82px;
  width: 640px;
  height: 640px;
  background:
    linear-gradient(rgba(15, 116, 213, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 116, 213, .08) 1px, transparent 1px),
    rgba(221, 237, 253, .78);
  background-size: 10px 10px, 10px 10px, auto;
  border-radius: 48% 52% 46% 54%;
}

.logistics-hero::after {
  left: auto;
  right: 3%;
  top: 88px;
  width: 160px;
  height: 140px;
  background: rgba(15, 116, 213, .13);
  opacity: .8;
}

.logistics-hero-inner {
  width: min(1380px, calc(100% - 48px));
  min-height: calc(100vh - 70px);
  grid-template-columns: minmax(650px, 1fr) minmax(620px, .95fr);
  gap: 34px;
  align-items: start;
  padding: 34px 0 54px;
}

.logistics-logo-lockup {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 14px;
  align-items: center;
  width: min(100%, 590px);
  margin-bottom: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.logistics-service-logo {
  width: 250px;
}

.logistics-logo-lockup span {
  align-self: start;
  padding-top: 16px;
  color: var(--dog-navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}

.dog-kicker {
  min-height: 58px;
  margin-bottom: 28px;
  padding: 12px 26px;
  color: var(--color-white);
  background: var(--dog-navy);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(21, 25, 74, .18);
  font-size: 22px;
  font-weight: 900;
}

.logistics-hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 4.2vw, 62px);
  line-height: 1.18;
  font-weight: 900;
}

.logistics-hero h1 span {
  display: block;
}

.logistics-hero h1 mark {
  position: relative;
  display: inline-block;
  padding: 0 .04em;
  color: #0b63d8;
  background: transparent;
}

.logistics-hero h1 mark::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -8px;
  bottom: .04em;
  z-index: -1;
  height: .16em;
  background: #ffd51c;
  border-radius: 999px;
}

.logistics-hero .lead {
  max-width: 690px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .02em;
}

.logistics-hero .hero-actions {
  gap: 18px;
  margin-top: 28px;
}

.logistics-hero .button {
  min-width: 300px;
  min-height: 66px;
  padding: 16px 26px;
  border-radius: 18px;
  font-size: 21px;
}

.logistics-hero .button.secondary {
  min-width: 250px;
  color: var(--dog-navy);
  border: 3px solid var(--dog-navy);
  box-shadow: none;
}

.cta-mail,
.cta-chat {
  position: relative;
  flex: none;
  width: 30px;
  height: 24px;
}

.cta-mail {
  border: 3px solid currentColor;
  border-radius: 4px;
}

.cta-mail::before,
.cta-mail::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 16px;
  height: 3px;
  background: currentColor;
}

.cta-mail::before {
  left: 1px;
  transform: rotate(34deg);
}

.cta-mail::after {
  right: 1px;
  transform: rotate(-34deg);
}

.cta-chat {
  width: 32px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.cta-chat::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -8px;
  width: 10px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: var(--color-white);
  transform: rotate(-25deg);
}

.logistics-trust-chips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 690px;
  margin-top: 28px;
}

.logistics-trust-chips div {
  min-height: 84px;
  padding: 14px 16px 14px 66px;
  border: 2px solid #bed0e5;
  border-left: 2px solid #bed0e5;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(21, 25, 74, .05);
}

.logistics-trust-chips div::before {
  content: "";
  position: absolute;
}

.logistics-trust-chips div {
  position: relative;
}

.logistics-trust-chips div:nth-child(1)::before {
  left: 18px;
  top: 24px;
  width: 26px;
  height: 26px;
  border: 4px solid var(--dog-navy);
  border-radius: 50%;
  box-shadow: -14px 9px 0 -6px var(--dog-navy), 14px 9px 0 -6px var(--dog-navy);
}

.logistics-trust-chips div:nth-child(2)::before {
  left: 17px;
  top: 26px;
  width: 32px;
  height: 26px;
  border: 4px solid var(--dog-navy);
  border-radius: 5px;
  transform: rotate(6deg);
}

.logistics-trust-chips div:nth-child(3)::before {
  left: 18px;
  top: 29px;
  width: 36px;
  height: 30px;
  background:
    linear-gradient(to top, var(--dog-navy) 0 50%, transparent 50% 100%) 0 100% / 7px 100% no-repeat,
    linear-gradient(to top, var(--dog-navy) 0 68%, transparent 68% 100%) 12px 100% / 7px 100% no-repeat,
    linear-gradient(to top, var(--dog-navy) 0 86%, transparent 86% 100%) 24px 100% / 7px 100% no-repeat;
}

.logistics-trust-chips dt {
  color: var(--dog-navy);
  font-size: 15px;
  line-height: 1.45;
}

.logistics-trust-chips dd {
  color: var(--dog-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.logistics-hero-visual {
  min-height: 650px;
}

.logistics-hero-panel {
  inset: 0 0 42px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.logistics-hero-panel::before {
  right: -44px;
  top: 72px;
  width: 640px;
  height: 540px;
  background:
    linear-gradient(rgba(15, 116, 213, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 116, 213, .08) 1px, transparent 1px),
    rgba(221, 237, 253, .9);
  background-size: 10px 10px, 10px 10px, auto;
  border-radius: 48% 52% 47% 53%;
}

.hero-dog-main {
  left: 170px;
  bottom: 190px;
  z-index: 4;
  width: 34%;
}

.hero-dog-sub {
  right: -8px;
  top: 250px;
  z-index: 4;
  width: 38%;
}

.parcel-stage {
  left: 250px;
  bottom: 192px;
  z-index: 5;
  width: 230px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.parcel-stage img {
  aspect-ratio: auto;
  filter: drop-shadow(0 14px 18px rgba(21, 25, 74, .14));
}

.shipping-box {
  position: absolute;
  right: 104px;
  bottom: 94px;
  z-index: 6;
  display: grid;
  justify-items: center;
  width: 370px;
  height: 152px;
  padding-top: 54px;
  color: var(--dog-navy);
  background: linear-gradient(180deg, #d8a36b, #bf8650);
  border: 4px solid rgba(104, 69, 36, .38);
  border-radius: 8px 8px 14px 14px;
  box-shadow: 0 20px 30px rgba(21, 25, 74, .16);
}

.shipping-box::before,
.shipping-box::after {
  content: "";
  position: absolute;
  top: -34px;
  width: 52%;
  height: 66px;
  background: #d8a36b;
  border: 4px solid rgba(104, 69, 36, .28);
}

.shipping-box::before {
  left: -6px;
  transform: skewY(-8deg);
}

.shipping-box::after {
  right: -6px;
  transform: skewY(8deg);
}

.box-paw {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 35px;
  margin-bottom: 7px;
  background: var(--dog-navy);
  border-radius: 50% 50% 44% 44%;
}

.box-paw::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -13px;
  width: 13px;
  height: 15px;
  background: var(--dog-navy);
  border-radius: 50%;
  box-shadow: 15px -5px 0 var(--dog-navy), 31px -2px 0 var(--dog-navy), 46px 7px 0 var(--dog-navy);
}

.shipping-box strong,
.shipping-box small {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
}

.shipping-box strong {
  font-size: 27px;
  letter-spacing: .04em;
}

.shipping-box small {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.hero-speech {
  left: 258px;
  top: 22px;
  bottom: auto;
  width: 264px;
  max-width: none;
  min-height: 132px;
  padding: 25px 22px 18px;
  border-width: 4px;
  border-radius: 50%;
  box-shadow: 7px 7px 0 rgba(21, 25, 74, .12);
  color: #0b63d8;
  font-size: 20px;
  text-align: center;
}

.hero-speech::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -26px;
  width: 48px;
  height: 42px;
  background: var(--color-white);
  border-left: 4px solid var(--dog-navy);
  border-bottom: 4px solid var(--dog-navy);
  transform: rotate(-18deg);
}

.sticker-urgent {
  left: 38px;
  top: 100px;
  min-width: 140px;
  min-height: 82px;
  font-size: 19px;
}

.sticker-calm {
  right: 10px;
  top: 152px;
  bottom: auto;
  min-width: 164px;
  min-height: 80px;
  font-size: 19px;
}

.sticker-processing {
  right: 6px;
  left: auto;
  top: auto;
  bottom: 120px;
  min-width: 190px;
  min-height: 80px;
  color: var(--color-white);
  background: var(--dog-red);
  font-size: 18px;
}

.sticker-storage {
  left: 98px;
  bottom: 62px;
  min-width: 200px;
  min-height: 78px;
  background: #5c94dc;
  font-size: 18px;
  transform: rotate(-7deg);
}

.mini-truck {
  left: 18px;
  right: auto;
  top: 210px;
  width: 86px;
  height: 48px;
  background: var(--color-white);
  border: 5px solid #5c94dc;
}

.mini-truck::before {
  right: -23px;
  width: 28px;
  height: 32px;
  background: var(--color-white);
  border-top: 5px solid #5c94dc;
  border-right: 5px solid #5c94dc;
  border-bottom: 5px solid #5c94dc;
}

.mini-truck::after,
.mini-truck span::before {
  bottom: -13px;
  width: 21px;
  height: 21px;
  background: var(--dog-navy);
  border: 4px solid var(--color-white);
}

.mini-truck span::before {
  right: -15px;
}

.hero-check-note {
  left: 226px;
  bottom: 62px;
  width: 98px;
  height: 126px;
  border: 4px solid #8da9c7;
  border-radius: 7px;
  transform: rotate(-2deg);
}

.hero-check-note::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -14px;
  width: 48px;
  height: 24px;
  background: #9aaec4;
  border-radius: 8px 8px 0 0;
}

.logistics-mini-board {
  display: none;
}

@media (max-width: 1180px) {
  .logistics-hero-inner {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 36px));
  }

  .logistics-hero-visual {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .logistics-hero {
    min-height: auto;
  }

  .logistics-hero-inner {
    width: min(100% - 32px, 420px);
    padding: 34px 0 62px;
  }

  .logistics-logo-lockup {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-bottom: 18px;
  }

  .logistics-service-logo {
    width: 208px;
  }

  .logistics-logo-lockup span {
    padding-top: 0;
    font-size: 12px;
  }

  .dog-kicker {
    min-height: 0;
    margin-bottom: 22px;
    padding: 11px 15px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 12px;
  }

  .logistics-hero h1 {
    font-size: clamp(34px, 10.2vw, 45px);
    line-height: 1.23;
  }

  .logistics-hero .lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .logistics-hero .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .logistics-hero .button,
  .logistics-hero .button.secondary {
    min-width: 0;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 17px;
  }

  .logistics-trust-chips {
    gap: 10px;
    margin-top: 24px;
  }

  .logistics-trust-chips div {
    min-height: 78px;
    padding: 13px 16px 13px 62px;
  }

  .logistics-hero-visual {
    min-height: 470px;
    margin-top: 4px;
  }

  .logistics-hero-panel::before {
    right: -132px;
    top: 28px;
    width: 520px;
    height: 420px;
  }

  .hero-speech {
    left: 118px;
    top: 6px;
    width: 190px;
    min-height: 98px;
    padding: 20px 18px 14px;
    font-size: 15px;
  }

  .hero-speech::after {
    left: 26px;
    bottom: -20px;
    width: 34px;
    height: 30px;
  }

  .hero-dog-main {
    left: 58px;
    bottom: 166px;
    width: 34%;
  }

  .hero-dog-sub {
    right: -16px;
    top: 170px;
    width: 42%;
  }

  .parcel-stage {
    left: 116px;
    bottom: 156px;
    width: 150px;
  }

  .shipping-box {
    right: 34px;
    bottom: 72px;
    width: 252px;
    height: 118px;
    padding-top: 42px;
  }

  .shipping-box::before,
  .shipping-box::after {
    top: -25px;
    height: 49px;
  }

  .box-paw {
    width: 34px;
    height: 26px;
    margin-bottom: 6px;
  }

  .box-paw::before {
    left: -4px;
    top: -10px;
    width: 10px;
    height: 11px;
    box-shadow: 11px -4px 0 var(--dog-navy), 24px -1px 0 var(--dog-navy), 36px 6px 0 var(--dog-navy);
  }

  .shipping-box strong {
    font-size: 20px;
  }

  .shipping-box small {
    font-size: 8px;
  }

  .sticker-urgent {
    left: 8px;
    top: 92px;
    min-width: 92px;
    min-height: 62px;
    font-size: 14px;
  }

  .sticker-calm {
    right: 0;
    top: 120px;
    min-width: 112px;
    min-height: 62px;
    font-size: 13px;
  }

  .sticker-processing {
    right: 4px;
    bottom: 78px;
    min-width: 130px;
    min-height: 62px;
    font-size: 13px;
  }

  .sticker-storage {
    left: 10px;
    bottom: 42px;
    min-width: 132px;
    min-height: 62px;
    font-size: 13px;
  }

  .mini-truck {
    left: 8px;
    top: 176px;
    width: 58px;
    height: 34px;
    border-width: 3px;
  }

  .mini-truck::before {
    right: -16px;
    width: 20px;
    height: 24px;
    border-width: 3px;
  }

  .mini-truck::after,
  .mini-truck span::before {
    bottom: -9px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .mini-truck span::before {
    right: -11px;
  }

  .hero-check-note {
    display: block;
    left: 100px;
    bottom: 38px;
    width: 70px;
    height: 88px;
    padding: 8px;
    border-width: 3px;
  }
}

/* EC logistics image-based first view */
.logistics-hero-art {
  min-height: 0;
  overflow: hidden;
  padding: 22px 0 28px;
  background:
    linear-gradient(rgba(15, 116, 213, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 116, 213, .045) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
  border-top: 0;
}

.logistics-hero-art::before,
.logistics-hero-art::after {
  display: none;
}

.logistics-hero-art-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .96fr);
  gap: clamp(18px, 2.6vw, 42px);
  align-items: center;
  overflow: visible;
  background: #fff;
}

.logistics-hero-picture,
.logistics-hero-picture img {
  display: block;
  width: 100%;
}

.logistics-hero-picture img {
  height: auto;
}

.logistics-hero-art-frame::after {
  content: none;
}

.logistics-hero-copy-panel {
  position: relative;
  z-index: 2;
}

.logistics-hero-visual-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: -16px -22px -16px -28px;
}

.logistics-hero-visual-panel picture,
.logistics-hero-visual-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.logistics-formal-logo {
  display: block;
  width: min(100%, 470px);
  margin-bottom: 20px;
}

.logistics-formal-logo span {
  display: block;
  color: var(--dog-navy);
  font-size: clamp(13px, 1.18vw, 19px);
  font-weight: 900;
  line-height: 1.2;
}

.logistics-formal-logo picture,
.logistics-formal-logo img {
  display: block;
  width: min(100%, 430px);
  height: auto;
}

.logistics-formal-logo picture {
  margin-top: 6px;
}

.logistics-hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 24px;
  padding: 0 24px;
  color: #fff;
  background: var(--dog-navy);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(21, 25, 74, .12);
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 900;
  line-height: 1.25;
}

.logistics-page .logistics-hero-art h1 {
  max-width: 590px;
  margin: 0;
  color: var(--dog-navy);
  font-size: clamp(38px, 3.82vw, 60px);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
}

.logistics-page .logistics-hero-art h1 mark {
  position: relative;
  display: inline-block;
  color: var(--dog-blue);
  background: transparent;
}

.logistics-page .logistics-hero-art h1 mark::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: .03em;
  z-index: -1;
  height: .18em;
  background: #ffd318;
  border-radius: 999px;
}

.logistics-hero-lead-overlay {
  position: static;
  width: min(100%, 590px);
  margin: 18px 0 0;
  padding: 0;
  color: var(--dog-navy);
  background: transparent;
  font-size: clamp(16px, 1.34vw, 21px);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: .03em;
}

.logistics-hero-lead-overlay::before {
  content: none;
}

.logistics-image-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 590px);
  margin-top: 24px;
}

.logistics-image-actions::before {
  content: none;
}

.logistics-image-actions .button,
.logistics-image-actions .button.secondary {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  height: clamp(56px, 4.4vw, 70px);
  padding: 0 clamp(16px, 1.5vw, 26px);
  border-radius: clamp(13px, 1.3vw, 20px);
  font-size: clamp(15px, 1.42vw, 22px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.logistics-image-actions .button {
  flex: 0 0 52.7%;
  color: #fff;
  background: linear-gradient(180deg, #ff2c2c 0%, var(--dog-red) 100%);
  border-color: var(--dog-red);
  box-shadow: 0 8px 18px rgba(224, 24, 45, .2);
}

.logistics-image-actions .button.secondary {
  flex: 0 0 44.4%;
  color: var(--dog-navy);
  background: #fff;
  border: 3px solid var(--dog-navy);
  box-shadow: none;
}

.logistics-hero-trust-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(100%, 590px);
  margin: 16px 0 0;
}

.logistics-hero-trust-chips div {
  position: relative;
  min-height: 62px;
  padding: 10px 10px 10px 44px;
  background: rgba(255, 255, 255, .96);
  border: 2px solid rgba(21, 25, 74, .16);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(21, 25, 74, .06);
}

.logistics-hero-trust-chips div::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 22px;
  height: 18px;
  color: var(--dog-navy);
  background: currentColor;
  border-radius: 4px;
}

.logistics-hero-trust-chips div:nth-child(2)::before {
  color: var(--dog-blue);
  clip-path: polygon(50% 0, 100% 32%, 100% 100%, 0 100%, 0 32%);
}

.logistics-hero-trust-chips div:nth-child(3)::before {
  color: var(--dog-red);
  width: 24px;
  height: 24px;
  border-radius: 2px 2px 4px 4px;
  clip-path: polygon(0 74%, 18% 74%, 18% 42%, 40% 42%, 40% 18%, 62% 18%, 62% 42%, 84% 42%, 84% 74%, 100% 74%, 100% 100%, 0 100%);
}

.logistics-hero-trust-chips dt {
  margin: 0 0 4px;
  color: var(--dog-navy);
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 950;
  line-height: 1.35;
}

.logistics-hero-trust-chips dd {
  margin: 0;
  color: #374154;
  font-size: clamp(10px, .72vw, 12px);
  font-weight: 800;
  line-height: 1.4;
}

.logistics-image-actions .cta-mail,
.logistics-image-actions .cta-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(24px, 2.25vw, 34px);
  height: clamp(20px, 1.85vw, 28px);
  border: 0;
  background: transparent;
}

.logistics-image-actions .cta-chat {
  width: clamp(25px, 2.35vw, 35px);
}

.logistics-image-actions .cta-mail::before,
.logistics-image-actions .cta-mail::after,
.logistics-image-actions .cta-chat::after {
  content: none;
}

.logistics-image-actions svg {
  display: block;
  width: 108%;
  height: 108%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .logistics-hero-art-frame {
    display: block;
    width: min(100%, 520px);
  }

  .logistics-formal-logo {
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
    text-align: center;
  }

  .logistics-formal-logo span {
    font-size: clamp(12px, 3.1vw, 15px);
  }

  .logistics-formal-logo picture,
  .logistics-formal-logo img {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .logistics-formal-logo picture {
    margin-top: 7px;
  }

  .logistics-hero-art-frame::after {
    height: 0;
  }

  .logistics-hero-pill {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 12px;
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .logistics-page .logistics-hero-art h1 {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.17;
  }

  .logistics-hero-lead-overlay {
    width: 100%;
    margin-top: 14px;
    padding: 0;
    font-size: clamp(14px, 3.75vw, 16px);
    line-height: 1.55;
    letter-spacing: .03em;
  }

  .logistics-hero-lead-overlay::before {
    inset: -7px -9px -6px -2px;
    border-radius: 6px;
  }

  .logistics-image-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 14px;
  }

  .logistics-image-actions::before {
    inset: -7px -7px 1px;
    border-radius: 18px;
  }

  .logistics-image-actions .button,
  .logistics-image-actions .button.secondary {
    width: 100%;
    height: clamp(48px, 13.2vw, 58px);
    padding: 0 clamp(8px, 2.4vw, 12px);
    border-radius: 13px;
    font-size: clamp(14px, 3.8vw, 17px);
  }

  .logistics-image-actions .button {
    flex-basis: 49.8%;
  }

  .logistics-image-actions .button.secondary {
    flex-basis: 47.2%;
    border-width: 2px;
  }

  .logistics-image-actions .cta-mail,
  .logistics-image-actions .cta-chat {
    width: 23px;
    height: 19px;
  }

  .logistics-image-actions .cta-chat {
    width: 24px;
  }

  .logistics-hero-visual-panel {
    width: min(100%, 420px);
    margin: 8px auto 0;
  }

  .logistics-hero-trust-chips {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
  }

  .logistics-hero-trust-chips div {
    min-height: 0;
    padding: 10px 12px 10px 44px;
  }

  .logistics-hero-trust-chips div::before {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* EC logistics FV with user-provided right-side visual */
.logistics-hero-art {
  padding: 0;
}

.logistics-hero-art-frame {
  display: block;
  min-height: min(690px, calc((100vw - 32px) * 941 / 1672));
  background: transparent;
}

.logistics-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.logistics-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.logistics-hero-copy-panel {
  width: min(45.5%, 610px);
  padding: clamp(22px, 2.5vw, 42px) 0 clamp(18px, 2vw, 32px);
}

.logistics-hero-visual-panel {
  display: none;
}

.logistics-formal-logo {
  margin-bottom: clamp(16px, 1.45vw, 22px);
}

.logistics-hero-pill {
  min-height: clamp(38px, 3.1vw, 48px);
  margin-bottom: clamp(16px, 1.8vw, 24px);
  padding: 0 clamp(16px, 1.6vw, 26px);
  font-size: clamp(14px, 1.25vw, 20px);
}

.logistics-page .logistics-hero-art h1 {
  max-width: 610px;
  font-size: clamp(34px, 3.05vw, 44px);
}

.logistics-page .logistics-hero-art h1 span {
  display: block;
  color: var(--dog-navy);
}

@media (min-width: 641px) {
  .logistics-page .logistics-hero-art h1 span {
    white-space: nowrap;
  }
}

.logistics-hero-lead-overlay {
  width: min(100%, 610px);
  margin-top: clamp(14px, 1.4vw, 20px);
  font-size: clamp(15px, 1.25vw, 20px);
}

.logistics-image-actions {
  width: min(100%, 610px);
  margin-top: clamp(18px, 2vw, 28px);
}

.logistics-hero-trust-chips {
  width: min(100%, 610px);
  margin-top: 14px;
}

.logistics-hero-trust-chips div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 10px 12px;
}

.logistics-hero-trust-chips div::before {
  content: none;
}

.hero-chip-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--dog-navy);
}

.logistics-hero-trust-chips div:nth-child(2) .hero-chip-icon {
  color: var(--dog-blue);
}

.logistics-hero-trust-chips div:nth-child(3) .hero-chip-icon {
  color: var(--dog-red);
}

.hero-chip-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logistics-hero-trust-chips dt,
.logistics-hero-trust-chips dd {
  min-width: 0;
}

@media (max-width: 1180px) {
  .logistics-hero-art {
    padding: 18px 0 28px;
  }

  .logistics-hero-art-frame {
    display: flex;
    flex-direction: column;
    width: min(720px, calc(100% - 32px));
    min-height: 0;
  }

  .logistics-hero-copy-panel {
    order: 1;
    width: 100%;
    padding: 0;
  }

  .logistics-page .logistics-hero-art h1 {
    max-width: 760px;
    font-size: clamp(32px, 5.2vw, 50px);
  }

  .logistics-hero-lead-overlay,
  .logistics-image-actions,
  .logistics-hero-trust-chips {
    width: min(100%, 760px);
  }

  .logistics-hero-bg {
    position: relative;
    order: 2;
    width: min(100%, 560px);
    aspect-ratio: 1.22 / 1;
    margin: 16px auto 0;
    border-radius: 0;
  }

  .logistics-hero-bg img {
    object-fit: cover;
    object-position: 72% center;
  }
}

@media (max-width: 640px) {
  .logistics-hero-art-frame {
    width: min(520px, calc(100% - 32px));
  }

  .logistics-page .logistics-hero-art h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.1vw, 34px);
    line-height: 1.2;
  }

  .logistics-hero-bg {
    width: min(100%, 420px);
    aspect-ratio: 941 / 1672;
    margin-top: 12px;
  }

  .logistics-hero-bg img {
    object-fit: contain;
    object-position: center top;
  }

  .hero-chip-icon {
    width: 30px;
    height: 30px;
  }

  .hero-chip-icon svg {
    width: 26px;
    height: 26px;
  }
}

/* EC operation image-based first view */
.inu-hero-art {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-top: 0;
}

.inu-hero-art::before,
.inu-hero-art::after {
  display: none;
}

.inu-hero-art-frame {
  position: relative;
  width: min(100%, 1672px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.inu-hero-picture,
.inu-hero-picture img {
  display: block;
  width: 100%;
}

.inu-hero-picture img {
  height: auto;
}

.inu-hero-logo-lockup {
  position: absolute;
  left: 2.45%;
  top: 2.6%;
  z-index: 3;
  display: grid;
  align-content: start;
  width: 34.5%;
  height: 15.8%;
  padding: 10px 22px 12px;
  background: #fff;
  border-radius: 18px;
}

.inu-hero-logo-lockup span {
  display: block;
  color: var(--inu-navy);
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 900;
  line-height: 1.2;
}

.inu-hero-logo-lockup img {
  display: block;
  width: min(86%, 370px);
  height: auto;
  margin-top: 3px;
}

.inu-hero-copy {
  position: absolute;
  left: 2.8%;
  top: 18.4%;
  z-index: 3;
  width: 43.8%;
  color: var(--inu-navy);
}

.inu-hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 0 0 28px;
  padding: 0 28px;
  color: #fff;
  background: var(--inu-navy);
  border-radius: 999px;
  box-shadow: 0 9px 18px rgba(6, 43, 85, .12);
  font-size: clamp(15px, 1.45vw, 25px);
  font-weight: 900;
  letter-spacing: 0;
}

.inu-page .inu-hero-art h1 {
  max-width: 650px;
  margin: 0;
  color: var(--inu-navy);
  font-size: clamp(40px, 4.28vw, 68px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
}

.inu-page .inu-hero-art h1 span {
  display: block;
}

.inu-page .inu-hero-art h1 span:last-child {
  color: var(--inu-navy);
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.inu-page .inu-hero-art h1 mark {
  position: relative;
  display: inline-block;
  color: var(--inu-blue);
  background: transparent;
}

.inu-page .inu-hero-art h1 mark::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: .05em;
  z-index: -1;
  height: .18em;
  background: var(--inu-yellow);
  border-radius: 999px;
}

.inu-page .inu-hero-art .lead {
  max-width: 620px;
  margin-top: 22px;
  color: var(--inu-navy);
  font-size: clamp(20px, 1.62vw, 27px);
  font-weight: 900;
  line-height: 1.55;
}

.inu-page .inu-hero-art .sublead {
  max-width: 570px;
  margin-top: 14px;
  color: #303846;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 750;
  line-height: 1.75;
}

.inu-image-actions {
  position: absolute;
  left: 2.8%;
  top: 61.8%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1.2%;
  width: 45.9%;
}

.inu-image-actions::before {
  content: "";
  position: absolute;
  inset: -9px -10px -10px;
  z-index: 0;
  background: #fff;
  border-radius: clamp(18px, 2vw, 32px);
}

.inu-image-actions .button,
.inu-image-actions .button.secondary {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  height: clamp(58px, 4.9vw, 83px);
  padding: 0 clamp(16px, 1.65vw, 28px);
  border-radius: clamp(12px, 1.5vw, 22px);
  font-size: clamp(16px, 1.75vw, 27px);
  line-height: 1;
  white-space: nowrap;
}

.inu-image-actions .button {
  flex: 0 0 52.7%;
  color: #fff;
  background: linear-gradient(180deg, #ff3030 0%, var(--inu-red) 100%);
  border-color: var(--inu-red);
  box-shadow: 0 8px 18px rgba(227, 19, 44, .2);
}

.inu-image-actions .button.secondary {
  flex: 0 0 44.4%;
  color: var(--inu-navy);
  background: #fff;
  border: 3px solid var(--inu-navy);
  box-shadow: none;
}

.inu-image-actions .cta-mail,
.inu-image-actions .cta-chat {
  width: clamp(20px, 2vw, 30px);
  height: clamp(16px, 1.65vw, 24px);
}

.inu-image-actions .cta-chat {
  width: clamp(22px, 2.2vw, 32px);
}

.inu-hero-trust-chips {
  position: absolute;
  left: 2.8%;
  top: 73.5%;
  bottom: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 45.9%;
  margin: 0;
}

.inu-hero-trust-chips div {
  position: relative;
  min-height: 66px;
  padding: 11px 12px 10px 50px;
  background: rgba(255, 255, 255, .96);
  border: 2px solid rgba(6, 43, 85, .18);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(6, 43, 85, .08);
}

.inu-hero-trust-chips div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 25px;
  height: 20px;
  color: var(--inu-blue);
  background: currentColor;
  border-radius: 3px;
  box-shadow: 0 12px 0 -8px currentColor;
}

.inu-hero-trust-chips div:nth-child(2)::before {
  color: var(--inu-navy);
  border-radius: 50% 50% 46% 46%;
  box-shadow:
    -9px -7px 0 -6px currentColor,
    0 -12px 0 -7px currentColor,
    9px -7px 0 -6px currentColor;
}

.inu-hero-trust-chips div:nth-child(3)::before {
  color: var(--inu-red);
  border-radius: 999px;
}

.inu-hero-trust-chips dt {
  margin: 0 0 3px;
  color: var(--inu-navy);
  font-size: clamp(11px, .82vw, 14px);
  font-weight: 950;
  line-height: 1.25;
}

.inu-hero-trust-chips dd {
  margin: 0;
  color: #374154;
  font-size: clamp(10px, .72vw, 12px);
  font-weight: 800;
  line-height: 1.35;
}

.inu-image-actions .cta-mail,
.inu-image-actions .cta-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.inu-image-actions .cta-mail::before,
.inu-image-actions .cta-mail::after,
.inu-image-actions .cta-chat::after {
  content: none;
}

.inu-image-actions svg,
.inu-trust-icon svg {
  display: block;
  width: 108%;
  height: 108%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inu-hero-trust-chips div::before {
  content: none;
}

.inu-trust-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--inu-blue);
}

.inu-hero-trust-chips div:nth-child(2) .inu-trust-icon {
  color: var(--inu-navy);
}

.inu-hero-trust-chips div:nth-child(3) .inu-trust-icon {
  color: var(--inu-red);
}

.inu-band-dog.is-enhanced {
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  place-items: stretch;
  background: #1f2630;
}

.inu-band-dog.is-enhanced::before,
.inu-band-dog.is-enhanced::after,
.inu-band-dog.is-enhanced .inu-band-chip {
  display: none;
}

.inu-band-dog.is-enhanced img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

@media (max-width: 980px) {
  .inu-hero-art-frame {
    width: min(100%, 720px);
  }

  .inu-hero-logo-lockup {
    left: 4.4%;
    top: 2%;
    width: 91.2%;
    min-height: 0;
    padding: 8px 18px 6px;
    place-items: center;
    text-align: center;
    border-radius: 14px;
  }

  .inu-hero-logo-lockup span {
    font-size: clamp(12px, 2.3vw, 16px);
  }

  .inu-hero-logo-lockup img {
    display: none;
  }

  .inu-hero-copy {
    left: 5.2%;
    top: 11.7%;
    width: 89.6%;
    text-align: left;
  }

  .inu-hero-pill {
    min-height: 34px;
    margin-bottom: 14px;
    padding: 0 12px;
    font-size: clamp(11px, 2.4vw, 14px);
    box-shadow: 0 6px 14px rgba(6, 43, 85, .1);
  }

  .inu-page .inu-hero-art h1 {
    max-width: 100%;
    font-size: clamp(30px, 6.2vw, 42px);
    line-height: 1.18;
  }

  .inu-page .inu-hero-art .lead {
    display: none;
  }

  .inu-page .inu-hero-art .sublead {
    display: none;
  }

  .inu-image-actions {
    left: 5.2%;
    top: 33.4%;
    gap: 3%;
    width: 89.8%;
  }

  .inu-image-actions::before {
    inset: -7px -7px -8px;
    border-radius: 18px;
  }

  .inu-image-actions .button,
  .inu-image-actions .button.secondary {
    height: clamp(48px, 8.3vw, 60px);
    padding: 0 clamp(9px, 2.4vw, 14px);
    border-radius: 13px;
    font-size: clamp(14px, 2.7vw, 18px);
  }

  .inu-image-actions .button {
    flex-basis: 49.8%;
  }

  .inu-image-actions .button.secondary {
    flex-basis: 47.2%;
    border-width: 2px;
  }

  .inu-image-actions .cta-mail,
  .inu-image-actions .cta-chat {
    width: 21px;
    height: 17px;
  }

  .inu-image-actions .cta-chat {
    width: 22px;
  }

  .inu-hero-trust-chips {
    display: none;
  }
}

/* Stable stacked FV for tablet and narrow desktop widths */
@media (max-width: 980px) {
  .inu-hero-art-frame {
    display: flex;
    flex-direction: column;
    width: min(100%, 720px);
    padding-top: 16px;
    background:
      linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
      #fff;
    background-size: 34px 34px;
  }

  .inu-hero-logo-lockup,
  .inu-hero-copy,
  .inu-image-actions {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: min(89.6%, 620px);
    margin-inline: auto;
  }

  .inu-hero-logo-lockup {
    order: 1;
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: center;
  }

  .inu-hero-logo-lockup span {
    display: inline-block;
    text-align: center;
  }

  .inu-hero-logo-lockup span {
    font-size: clamp(12px, 2.4vw, 16px);
  }

  .inu-hero-logo-lockup img {
    display: none;
  }

  .inu-hero-copy {
    order: 2;
    margin-top: clamp(42px, 7vw, 72px);
    text-align: left;
  }

  .inu-hero-pill {
    min-height: 34px;
    margin-bottom: 18px;
    padding: 0 14px;
    font-size: clamp(11px, 2.25vw, 15px);
    white-space: normal;
  }

  .inu-page .inu-hero-art h1 {
    max-width: 100%;
    font-size: clamp(31px, 6vw, 45px);
    line-height: 1.18;
  }

  .inu-page .inu-hero-art .lead,
  .inu-page .inu-hero-art .sublead {
    display: none;
  }

  .inu-image-actions {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(40px, 8vw, 74px);
  }

  .inu-image-actions::before {
    inset: -7px;
    border-radius: 18px;
  }

  .inu-image-actions .button,
  .inu-image-actions .button.secondary {
    width: 100%;
    height: clamp(52px, 7.2vw, 62px);
    padding: 0 clamp(10px, 2.4vw, 18px);
    border-radius: 13px;
    font-size: clamp(14px, 2.45vw, 20px);
  }

  .inu-hero-picture {
    order: 4;
    margin-top: 10px;
  }

  .inu-hero-picture img {
    width: 100%;
    height: auto;
  }

  .inu-hero-trust-chips {
    display: none;
  }
}

@media (max-width: 520px) {
  .inu-hero-art-frame {
    width: min(100%, 520px);
    padding-top: 14px;
  }

  .inu-hero-copy {
    margin-top: 40px;
  }

  .inu-hero-pill {
    margin-bottom: 20px;
    font-size: clamp(11px, 3.1vw, 14px);
  }

  .inu-page .inu-hero-art h1 {
    font-size: clamp(30px, 8.9vw, 42px);
  }

  .inu-image-actions {
    gap: 10px;
    margin-top: 40px;
  }

  .inu-hero-picture {
    margin-top: -190px;
  }

  .inu-image-actions .button,
  .inu-image-actions .button.secondary {
    height: clamp(48px, 13.7vw, 60px);
    padding-inline: clamp(9px, 2.4vw, 14px);
    font-size: clamp(14px, 4vw, 18px);
  }
}

@media (max-width: 640px) {
  .inu-hero-art-frame {
    width: min(100%, 520px);
  }

  .inu-hero-logo-lockup {
    left: 4.4%;
    top: 2%;
    width: 91.2%;
    min-height: 0;
    padding: 8px 18px 6px;
    place-items: center;
    text-align: center;
    border-radius: 14px;
  }

  .inu-hero-logo-lockup span {
    font-size: clamp(12px, 3.4vw, 16px);
  }

  .inu-hero-logo-lockup img {
    display: none;
  }

  .inu-hero-copy {
    left: 5.2%;
    top: 11.7%;
    width: 89.6%;
    text-align: left;
  }

  .inu-hero-pill {
    min-height: 34px;
    margin-bottom: 14px;
    padding: 0 12px;
    font-size: clamp(11px, 3.1vw, 14px);
    box-shadow: 0 6px 14px rgba(6, 43, 85, .1);
  }

  .inu-page .inu-hero-art h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.9vw, 42px);
    line-height: 1.18;
  }

  .inu-page .inu-hero-art .lead {
    display: none;
  }

  .inu-page .inu-hero-art .sublead {
    display: none;
  }

  .inu-image-actions {
    left: 5.2%;
    top: 33.4%;
    gap: 3%;
    width: 89.8%;
  }

  .inu-image-actions::before {
    inset: -7px -7px -8px;
    border-radius: 18px;
  }

  .inu-image-actions .button,
  .inu-image-actions .button.secondary {
    height: clamp(48px, 13.7vw, 60px);
    padding: 0 clamp(9px, 2.4vw, 14px);
    border-radius: 13px;
    font-size: clamp(14px, 4vw, 18px);
  }

  .inu-image-actions .button {
    flex-basis: 49.8%;
  }

  .inu-image-actions .button.secondary {
    flex-basis: 47.2%;
    border-width: 2px;
  }

  .inu-image-actions .cta-mail,
  .inu-image-actions .cta-chat {
    width: 21px;
    height: 17px;
  }

  .inu-image-actions .cta-chat {
    width: 22px;
  }

  .inu-hero-trust-chips {
    display: none;
  }
}

/* Mobile FV readability fix */
@media (max-width: 980px) {
  .inu-hero-art-frame {
    display: flex;
    flex-direction: column;
    width: min(100%, 720px);
    padding-top: 14px;
    background:
      linear-gradient(var(--inu-pink-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--inu-pink-line) 1px, transparent 1px),
      #fff;
    background-size: 34px 34px;
  }

  .inu-hero-logo-lockup,
  .inu-hero-copy,
  .inu-image-actions {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(89.6%, 620px);
    margin-inline: auto;
  }

  .inu-hero-logo-lockup {
    order: 1;
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: center;
  }

  .inu-hero-logo-lockup span {
    display: inline-block;
    text-align: center;
  }

  .inu-hero-logo-lockup img {
    display: none;
  }

  .inu-hero-copy {
    order: 2;
    margin-top: clamp(30px, 5.8vw, 56px);
    text-align: left;
  }

  .inu-page .inu-hero-art .lead,
  .inu-page .inu-hero-art .sublead {
    display: block;
  }

  .inu-page .inu-hero-art .lead {
    margin-top: 14px;
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.55;
  }

  .inu-page .inu-hero-art .sublead {
    margin-top: 8px;
    font-size: clamp(12px, 2vw, 15px);
    line-height: 1.65;
  }

  .inu-image-actions {
    order: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
  }

  .inu-image-actions .button,
  .inu-image-actions .button.secondary {
    width: 100%;
  }

  .inu-hero-picture {
    order: 3;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    margin-top: 12px;
    overflow: visible;
  }

  .inu-hero-picture img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .inu-hero-trust-chips {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 3;
    order: 5;
    display: grid;
    width: min(89.6%, 620px);
    margin: -2px auto 24px;
  }
}

@media (max-width: 640px) {
  .inu-hero-art-frame {
    width: min(100%, 520px);
  }

  .inu-hero-logo-lockup span {
    font-size: clamp(12px, 3.4vw, 16px);
  }

  .inu-hero-copy {
    width: min(89.6%, 470px);
    margin-top: 28px;
  }

  .inu-hero-pill {
    margin-bottom: 16px;
    font-size: clamp(11px, 3.1vw, 14px);
  }

  .inu-page .inu-hero-art h1 {
    font-size: clamp(29px, 8.4vw, 39px);
    line-height: 1.16;
  }

  .inu-page .inu-hero-art .lead {
    font-size: clamp(15px, 4.1vw, 17px);
  }

  .inu-page .inu-hero-art .sublead {
    font-size: clamp(12px, 3.35vw, 14px);
  }

  .inu-image-actions {
    width: min(89.6%, 470px);
    gap: 8px;
    margin-top: 10px;
  }

  .inu-image-actions .button,
  .inu-image-actions .button.secondary {
    height: clamp(48px, 13.2vw, 58px);
    padding-inline: clamp(8px, 2.4vw, 12px);
    font-size: clamp(14px, 3.8vw, 17px);
  }

  .inu-image-actions .cta-mail,
  .inu-image-actions .cta-chat {
    width: 22px;
    height: 19px;
  }

  .inu-hero-picture {
    width: min(88%, 430px);
    margin: 10px auto 0;
  }

  .inu-hero-picture img {
    object-position: center;
  }

  .inu-hero-trust-chips {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(89.6%, 470px);
    margin-top: 14px;
  }

  .inu-hero-trust-chips div {
    min-height: 0;
    padding: 10px 12px 10px 44px;
    border-radius: 10px;
  }

  .inu-trust-icon {
    left: 12px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
  }

  .inu-hero-trust-chips dt {
    font-size: 13px;
  }

  .inu-hero-trust-chips dd {
    font-size: 11px;
    line-height: 1.45;
  }
}

@media (max-width: 900px) {
  .logistics-issue-band {
    padding: 58px 0 64px;
  }

  .logistics-issue-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .logistics-issue-copy {
    order: 1;
  }

  .logistics-issue-visual {
    order: 2;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .logistics-issue-copy h2 {
    font-size: clamp(29px, 8vw, 40px);
  }

  .logistics-issue-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .logistics-check-list {
    gap: 10px;
    margin-top: 20px;
  }

  .logistics-check-list li {
    min-height: 0;
    padding: 13px 14px 13px 62px;
    font-size: 14px;
    line-height: 1.55;
  }

  .logistics-check-list li::before {
    left: 18px;
    top: 25px;
  }

  .logistics-check-list li::after {
    left: 11px;
    top: 14px;
  }
}
