:root {
  --ink: #18201f;
  --muted: #5b6662;
  --paper: #f7f5ee;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0a4f49;
  --red: #d4492e;
  --gold: #d8a83f;
  --line: rgba(24, 32, 31, 0.14);
  --shadow: 0 22px 60px rgba(24, 32, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 245, 238, 0.93);
  box-shadow: 0 8px 28px rgba(24, 32, 31, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.site-nav {
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: url("assets/sticker-hero.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 27, 26, 0.88) 0%, rgba(9, 27, 26, 0.7) 35%, rgba(9, 27, 26, 0.14) 75%),
    linear-gradient(0deg, rgba(9, 27, 26, 0.46), rgba(9, 27, 26, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 13vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(212, 73, 46, 0.32);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 56px 0 0;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stats div {
  padding: 18px;
  background: rgba(8, 28, 27, 0.52);
}

.hero-stats dt {
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section,
.pain-band,
.contact-section {
  position: relative;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.pain-band {
  background: var(--teal-dark);
  color: var(--white);
}

.section-summary {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.pain-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
}

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

.section-heading.compact {
  max-width: 620px;
}

.section-heading p:not(.section-kicker),
.split p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
}

.accent-section .split p,
.contact-section .contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 20px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 390px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 32, 31, 0.08);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-body {
  padding: 22px;
}

.icon-chip {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.product-card h3,
.flow-list h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

.product-card p,
.flow-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-section {
  background: rgba(255, 255, 255, 0.48);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.guide-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 32, 31, 0.07);
}

.guide-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.compare-table {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 32, 31, 0.07);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.15fr;
  gap: 1px;
  background: var(--line);
}

.compare-row + .compare-row {
  border-top: 1px solid var(--line);
}

.compare-row span {
  padding: 16px;
  background: var(--white);
}

.compare-head span {
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 900;
}

.industry-hero {
  min-height: 760px;
}

.use-case-grid,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.use-case-card,
.mini-card,
.price-note,
.cta-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 32, 31, 0.07);
}

.use-case-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(24, 32, 31, 0.12);
}

.use-case-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.use-case-card strong,
.mini-card h3,
.cta-panel h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.use-case-card p,
.mini-card p,
.price-note span,
.cta-panel p,
.material-list li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.mini-card .icon-chip {
  margin-bottom: 6px;
}

.material-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-list li {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inline-cta {
  margin-top: 24px;
}

.price-note .button,
.cta-panel .button {
  margin-top: 12px;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.accent-section,
.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(216, 168, 63, 0.11), transparent 34%),
    linear-gradient(90deg, var(--teal-dark), #153331);
}

.strength-list {
  display: grid;
  gap: 14px;
}

.strength-list div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.strength-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.strength-list span {
  color: rgba(255, 255, 255, 0.76);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.flow-list li {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.flow-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.faq-section {
  background: rgba(255, 255, 255, 0.48);
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
}

.contact-copy {
  position: sticky;
  top: 100px;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
}

.contact-note span {
  font-size: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 32, 31, 0.2);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.2);
  border-color: var(--teal);
}

.full,
.form-status,
.full-button {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--teal);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.8);
  background: #101817;
  font-size: 14px;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(216, 168, 63, 0.13), transparent 34%),
    linear-gradient(90deg, var(--teal-dark), #153331);
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thanks-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-brand {
  margin-bottom: 36px;
}

.thanks-panel h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
}

.thanks-panel p:not(.section-kicker) {
  margin: 18px 0 30px;
  color: var(--muted);
}

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

  .hero {
    min-height: 860px;
    background-position: 63% center;
  }

  .pain-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .flow-list,
  .guide-grid,
  .use-case-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 820px;
    background-position: 70% center;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    padding-bottom: 92px;
  }

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

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-stats,
  .product-grid,
  .flow-list,
  .guide-grid,
  .use-case-grid,
  .mini-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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


/* Readability and mobile line-break hardening */
h1, h2, h3, summary, .section-heading, .card-title, .use-case-card strong, .mini-card h3, .cta-panel h3, .contact-copy h2 {
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(36px, 6.2vw, 72px);
  line-height: 1.14;
}

.section-heading,
.section-heading.compact {
  max-width: 980px;
}

.nowrap {
  white-space: nowrap;
}

.product-card,
.use-case-card,
.mini-card,
.guide-grid article,
.flow-list li {
  height: 100%;
}

.consult-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 2;
  margin: 24px 0 28px;
}

.consult-list span {
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.button.primary {
  min-height: 54px;
  box-shadow: 0 18px 38px rgba(212, 73, 46, 0.38);
}

summary {
  line-height: 1.55;
}

.landing-page .industry-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.16;
}

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

.landing-page .pain-band h2,
.landing-page .section-heading h2,
.landing-page .accent-section h2,
.landing-page .faq-section h2,
.landing-page .contact-copy h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.18;
}

.landing-page .section-heading {
  max-width: 1120px;
}

.landing-page .price-note strong,
.landing-page .price-note span {
  display: block;
}

.landing-page .cta-panel {
  justify-items: start;
}

.landing-page .cta-panel .full-button {
  width: auto;
  min-width: 220px;
}

.landing-page .cta-panel .text-link {
  display: inline-flex;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(32px, 10vw, 38px);
    line-height: 1.18;
    max-width: 10.5em;
  }

  h2 {
    font-size: clamp(24px, 7.4vw, 32px);
    line-height: 1.25;
  }

  .product-card h3,
  .flow-list h3,
  .guide-grid h3,
  .use-case-card strong,
  .mini-card h3,
  .cta-panel h3 {
    font-size: 19px;
    line-height: 1.45;
  }

  .section,
  .pain-band,
  .contact-section {
    padding: 62px 0;
  }

  .cta-points li {
    font-size: 12px;
  }

  .contact-form {
    gap: 14px;
  }

  .consult-list {
    grid-column: auto;
  }

  .landing-page .industry-hero {
    min-height: 740px;
  }

  .landing-page .industry-hero h1 {
    max-width: 8.5em;
    font-size: clamp(34px, 12vw, 46px);
    line-height: 1.14;
  }

  .landing-page .pain-band h2,
  .landing-page .section-heading h2,
  .landing-page .accent-section h2,
  .landing-page .faq-section h2,
  .landing-page .contact-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.22;
  }

  .landing-page .cta-panel .full-button {
    width: 100%;
  }
}

/* Corporate site inspired by the NEWING company brochure */
.corporate-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(98, 200, 224, 0.28), transparent 32%),
    radial-gradient(circle at 92% 6%, rgba(50, 119, 181, 0.18), transparent 30%),
    linear-gradient(180deg, #f4fbfe 0%, #ffffff 46%, #f5fbf7 100%);
}

.corp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(31, 138, 186, 0.14);
  backdrop-filter: blur(16px);
}

.corp-brand,
.corp-header nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.corp-brand {
  color: #103d55;
  font-weight: 900;
  text-decoration: none;
}

.corp-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1f8aba, #35a66d);
  border-radius: 16px 16px 6px 16px;
  box-shadow: 0 12px 26px rgba(31, 138, 186, 0.24);
}

.corp-header nav a {
  color: #18465b;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.corp-nav-cta {
  padding: 10px 16px;
  color: #fff !important;
  background: linear-gradient(135deg, #1f8aba, #35a66d);
  border-radius: 999px;
}

.corp-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 120px 0 90px;
  background:
    linear-gradient(135deg, rgba(213, 242, 249, 0.95), rgba(255, 255, 255, 0.84)),
    linear-gradient(120deg, rgba(74, 181, 203, 0.2) 0 1px, transparent 1px 120px);
}

.corp-hero.lp {
  min-height: 620px;
}

.corp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(31, 138, 186, 0.08) 0 1px, transparent 1px 120px),
    linear-gradient(34deg, transparent 0 53%, rgba(68, 183, 111, 0.16) 53% 62%, transparent 62%),
    linear-gradient(128deg, transparent 0 58%, rgba(31, 87, 150, 0.14) 58% 68%, transparent 68%);
}

.corp-shape {
  position: absolute;
  border-radius: 999px 999px 120px 999px;
  transform: rotate(24deg);
  opacity: 0.9;
}

.corp-shape.one {
  width: 260px;
  height: 760px;
  right: 16%;
  top: -160px;
  background: linear-gradient(180deg, rgba(42, 132, 191, 0.36), rgba(42, 132, 191, 0.08));
}

.corp-shape.two {
  width: 160px;
  height: 500px;
  right: 44%;
  top: -80px;
  background: linear-gradient(180deg, rgba(62, 174, 108, 0.28), rgba(62, 174, 108, 0.04));
}

.corp-hero-inner,
.corp-section-inner {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.corp-hero-inner {
  padding: clamp(34px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 138, 186, 0.16);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(24, 80, 110, 0.14);
}

.corp-kicker {
  margin: 0 0 16px;
  color: #1f8aba;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.corp-hero h1,
.corp-section h2 {
  color: #123746;
}

.corp-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.04;
}

.corp-hero p:not(.corp-kicker) {
  max-width: 720px;
  color: #426272;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
}

.corp-secondary {
  color: #123746 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(18, 55, 70, 0.28);
  box-shadow: 0 16px 36px rgba(24, 80, 110, 0.1);
}

.hero:not(.industry-hero) h1 {
  max-width: 820px;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.12;
}

.corporate-lp-page .corp-hero h1 {
  max-width: 880px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.12;
}

.corp-section {
  padding: clamp(76px, 10vw, 128px) 0;
}

.corp-section.soft {
  background: rgba(226, 246, 250, 0.52);
}

.corp-lead {
  margin: 0;
  color: #4f6870;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 2;
}

.corp-muted {
  color: #66808a;
}

.corp-card-grid,
.corp-three {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.corp-card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.corp-card,
.corp-three article,
.company-table,
.timeline div {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: #123746;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 138, 186, 0.15);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(24, 80, 110, 0.1);
  text-decoration: none;
}

.corp-card strong,
.corp-three h3 {
  font-size: 20px;
  line-height: 1.35;
}

.corp-card span,
.corp-three p,
.timeline span {
  color: #5b7178;
  font-size: 15px;
  line-height: 1.75;
}

.corp-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.corp-three span,
.corp-flow li::before {
  color: #1f8aba;
  font-weight: 950;
}

.corp-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.corp-flow.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.corp-flow li {
  position: relative;
  padding: 22px 18px;
  color: #123746;
  background: #fff;
  border: 1px solid rgba(31, 138, 186, 0.16);
  border-radius: 18px;
  font-weight: 900;
  text-align: center;
}

.company-table {
  margin: 0;
  gap: 0;
  padding: 10px 24px;
}

.company-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31, 138, 186, 0.13);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: #1f8aba;
  font-weight: 950;
}

.company-table dd {
  margin: 0;
  color: #2e4d59;
  font-weight: 700;
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.timeline time {
  color: #1f8aba;
  font-weight: 950;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-grid span {
  padding: 12px 16px;
  color: #123746;
  background: #fff;
  border: 1px solid rgba(31, 138, 186, 0.16);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(24, 80, 110, 0.08);
}

.corp-contact {
  background:
    radial-gradient(circle at 20% 0%, rgba(84, 191, 214, 0.14), transparent 36%),
    linear-gradient(135deg, #123746, #1c5d6b);
}

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

  .corp-card-grid,
  .corp-card-grid.five,
  .corp-three,
  .corp-flow,
  .corp-flow.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .corp-header {
    padding: 14px 18px;
  }

  .corp-brand span:last-child {
    font-size: 14px;
  }

  .corp-hero {
    min-height: auto;
    padding: 86px 0 56px;
  }

  .corp-hero-inner {
    padding: 28px;
    border-radius: 22px;
  }

  .corp-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.08;
  }

  .corp-card-grid,
  .corp-card-grid.five,
  .corp-three,
  .corp-flow,
  .corp-flow.six {
    grid-template-columns: 1fr;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* 2026-06-19 NEWING brochure redesign overrides */
:root {
  --newing-bg: #f3fbff;
  --newing-bg-soft: #f8fdff;
  --newing-bg-blue: #eaf8fc;
  --newing-blue: #1d8fcb;
  --newing-blue-2: #2fa7d8;
  --newing-blue-3: #3bafda;
  --newing-green: #28a98b;
  --newing-text: #1f2933;
  --newing-muted: #334155;
  --newing-border: #d6eaf5;
}

body.corporate-page,
body.service-page,
body.landing-page {
  color: var(--newing-text);
  background:
    linear-gradient(rgba(47, 167, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 167, 216, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--newing-bg-soft), var(--newing-bg));
  background-size: 64px 64px, 64px 64px, auto;
}

.corp-header,
.service-page .site-header,
.landing-page .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(214, 234, 245, 0.95);
  box-shadow: 0 12px 38px rgba(29, 143, 203, 0.08);
  backdrop-filter: blur(18px);
}

.corp-brand,
.service-page .brand,
.landing-page .brand,
.service-page .site-nav a,
.landing-page .site-nav a {
  color: var(--newing-text);
}

.corp-mark,
.service-page .brand-mark,
.landing-page .brand-mark {
  background: linear-gradient(135deg, var(--newing-blue-2), var(--newing-green));
  color: #fff;
  border: 0;
}

.corp-nav-cta,
.service-page .nav-cta,
.landing-page .nav-cta,
.button.primary,
.corporate-form .button.primary,
.full-button {
  background: linear-gradient(135deg, var(--newing-blue-2), var(--newing-blue));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(29, 143, 203, 0.22);
}

.button.primary:hover,
.corp-nav-cta:hover,
.service-page .nav-cta:hover,
.landing-page .nav-cta:hover {
  background: var(--newing-blue);
}

.button.secondary,
.corp-secondary {
  color: var(--newing-blue) !important;
  background: #fff !important;
  border-color: var(--newing-border) !important;
}

.corp-hero,
.corp-hero.lp,
.service-page .hero,
.landing-page .industry-hero {
  min-height: auto;
  padding: clamp(112px, 12vw, 164px) 0 clamp(68px, 9vw, 120px);
  background:
    radial-gradient(circle at 84% 18%, rgba(59, 175, 218, 0.24), transparent 30%),
    radial-gradient(circle at 10% 16%, rgba(40, 169, 139, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3fbff 48%, #eaf8fc 100%);
  overflow: hidden;
}

.corp-hero::before,
.service-page .hero::before,
.landing-page .industry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(29, 143, 203, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 143, 203, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.corp-hero-inner,
.brochure-hero-grid {
  position: relative;
  max-width: 1180px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(214, 234, 245, 0.92);
  box-shadow: 0 24px 70px rgba(29, 143, 203, 0.13);
}

.brochure-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.corp-hero-copyblock {
  min-width: 0;
}

.brochure-visual {
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--newing-border);
  border-radius: 30px;
  box-shadow: 0 20px 48px rgba(29, 143, 203, 0.16);
  transform: rotate(1.5deg);
}

.brochure-visual img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.corp-kicker,
.section-kicker,
.eyebrow {
  color: var(--newing-blue);
}

.corp-hero h1,
.corp-section h2,
.service-page .hero h1,
.landing-page .industry-hero h1,
.section-heading h2,
.pain-grid h2,
.accent-section h2,
.faq-section h2,
.contact-copy h2 {
  color: var(--newing-text);
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

.corp-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
}

.corp-hero-sub,
.corp-hero-lead,
.corp-hero p:not(.corp-kicker),
.service-page .hero-copy,
.landing-page .hero-copy,
.section-summary,
.section-heading p,
.corp-lead,
.corp-muted {
  color: var(--newing-muted);
}

.corp-hero-lead {
  max-width: 720px;
  font-size: clamp(16px, 1.7vw, 19px) !important;
  line-height: 1.9;
  font-weight: 700 !important;
}

.corp-section.soft,
.pain-band,
.guide-section,
.faq-section {
  background: rgba(234, 248, 252, 0.66);
}

.corp-card,
.corp-three article,
.about-grid article,
.company-table,
.timeline div,
.product-card,
.mini-card,
.faq-list details,
.cta-panel,
.price-note,
.strength-list div,
.corporate-form,
.contact-note {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--newing-border);
  box-shadow: 0 16px 42px rgba(29, 143, 203, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.about-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
}

.about-grid strong {
  color: var(--newing-text);
  font-size: 19px;
  line-height: 1.35;
}

.about-grid span {
  color: var(--newing-muted);
  line-height: 1.75;
  font-weight: 700;
}

.company-table.large {
  max-width: none;
  width: 100%;
  padding: 16px 28px;
  border-radius: 28px;
}

.company-table.large div {
  grid-template-columns: minmax(150px, 0.26fr) 1fr;
  padding: 20px 0;
}

.timeline.long {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline.long div {
  min-height: 112px;
}

.history-lead {
  max-width: 780px;
  margin: 0 0 28px;
}

.corp-flow li {
  border-color: var(--newing-border);
  box-shadow: 0 14px 32px rgba(29, 143, 203, 0.08);
}

.corp-flow li::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--newing-blue-2);
}

.corp-flow li:last-child::after,
.corp-flow.six li:last-child::after {
  display: none;
}

.light-contact,
.corp-contact,
.service-page .contact-section,
.landing-page .contact-section {
  color: var(--newing-text);
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 167, 216, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fdff, #eaf8fc) !important;
}

.light-contact .contact-copy,
.corp-contact .contact-copy,
.service-page .contact-copy,
.landing-page .contact-copy,
.light-contact .contact-copy p,
.corp-contact .contact-copy p,
.service-page .contact-copy p,
.landing-page .contact-copy p {
  color: var(--newing-muted) !important;
}

.light-contact .contact-copy h2,
.corp-contact .contact-copy h2,
.service-page .contact-copy h2,
.landing-page .contact-copy h2 {
  color: var(--newing-text) !important;
}

.contact-note {
  color: var(--newing-text);
  background: #fff8dc;
  border-color: rgba(47, 167, 216, 0.22);
}

.corporate-form {
  color: var(--newing-text);
  border-radius: 28px;
}

.corporate-form input,
.corporate-form select,
.corporate-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border-color: var(--newing-border);
  color: var(--newing-text);
}

.service-page .hero-overlay,
.landing-page .hero-overlay {
  background: transparent;
}

.service-page .hero-inner,
.landing-page .hero-inner {
  position: relative;
  color: var(--newing-text);
}

.service-page .cta-points li,
.landing-page .cta-points li,
.service-page .hero-stats,
.landing-page .hero-stats {
  color: var(--newing-text);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--newing-border);
}

.service-page .hero h1,
.service-page .eyebrow,
.service-page .hero-copy,
.service-page .hero-stats dt,
.service-page .hero-stats dd,
.landing-page .industry-hero h1,
.landing-page .eyebrow,
.landing-page .hero-copy {
  color: var(--newing-text);
  text-shadow: none;
}

.landing-page .industry-hero h1,
.service-page .hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 6.4vw, 78px);
  line-height: 1.12;
}

.landing-page .section-heading h2,
.landing-page .pain-grid h2,
.landing-page .accent-section h2,
.landing-page .faq-section h2 {
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.14;
}

.landing-page .accent-section {
  color: var(--newing-text);
  background: linear-gradient(180deg, #f8fdff, #eaf8fc);
}

.landing-page .accent-section h2,
.landing-page .accent-section .section-kicker,
.landing-page .accent-section p,
.landing-page .strength-list strong,
.landing-page .strength-list span {
  color: var(--newing-text);
}

.landing-page .strength-list div {
  color: var(--newing-text);
  background: #fff;
}

.price-note {
  align-items: start;
  background: #fff;
}

.service-page .site-footer,
.landing-page .site-footer,
.corp-footer {
  background: #fff;
  color: var(--newing-muted);
  border-top: 1px solid var(--newing-border);
}

@media (max-width: 920px) {
  .brochure-hero-grid,
  .about-grid,
  .timeline.long {
    grid-template-columns: 1fr;
  }

  .brochure-visual {
    transform: none;
  }

  .corp-flow li::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .corp-hero,
  .corp-hero.lp,
  .service-page .hero,
  .landing-page .industry-hero {
    padding: 92px 0 56px;
  }

  .corp-hero-inner,
  .brochure-hero-grid {
    padding: 24px;
  }

  .corp-hero h1,
  .service-page .hero h1,
  .landing-page .industry-hero h1 {
    font-size: clamp(36px, 12vw, 50px);
    line-height: 1.12;
  }

  .landing-page .section-heading h2,
  .landing-page .pain-grid h2,
  .landing-page .accent-section h2,
  .landing-page .faq-section h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.18;
  }

  .company-table.large div {
    grid-template-columns: 1fr;
  }
}

/* Heading wrap fix after visual QA */
.corp-hero h1,
.corp-section h2,
.service-page .hero h1,
.landing-page .industry-hero h1,
.section-heading h2,
.pain-grid h2,
.accent-section h2,
.faq-section h2,
.contact-copy h2 {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.brochure-hero-grid {
  grid-template-columns: minmax(560px, 1.08fr) minmax(300px, 0.72fr);
}

.corp-hero h1 {
  max-width: none;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.08;
}

.corp-hero-sub {
  max-width: 700px;
}

@media (max-width: 1040px) {
  .brochure-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .corp-hero h1,
  .service-page .hero h1,
  .landing-page .industry-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }
}

/* Corporate hero balance: keep company name elegant without overlapping the brochure visual */
.brochure-page .corp-hero h1 {
  font-size: clamp(40px, 4.8vw, 58px);
  letter-spacing: -0.055em;
}

/* 2026-06-19 final brochure-first corporate redesign */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

.brochure-v2 {
  background:
    linear-gradient(rgba(47, 167, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 167, 216, 0.045) 1px, transparent 1px),
    #f8fdff;
  background-size: 72px 72px, 72px 72px, auto;
}

.logo-lockup,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-lockup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(29, 143, 203, 0.16);
}

.logo-lockup .corp-mark {
  display: none;
}

.brochure-header {
  padding-block: 14px;
}

.company-hero {
  position: relative;
  padding: clamp(112px, 11vw, 160px) 24px clamp(70px, 9vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.94), transparent 22%),
    radial-gradient(circle at 15% 12%, rgba(40, 169, 139, 0.13), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(59, 175, 218, 0.25), transparent 30%),
    linear-gradient(180deg, #f8fdff 0%, #f3fbff 46%, #eaf8fc 100%);
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(29, 143, 203, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 143, 203, 0.052) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.company-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo img {
  width: clamp(92px, 10vw, 132px);
  height: auto;
  margin-bottom: 22px;
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(29, 143, 203, 0.18);
}

.company-hero h1 {
  margin: 0;
  color: #1f2933;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.company-hero-sub {
  max-width: 760px;
  margin: 26px auto 0;
  color: #334155;
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 900;
  line-height: 1.65;
}

.company-hero-lead {
  max-width: 820px;
  margin: 24px auto 0;
  color: #334155;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 2;
}

.hero-actions.centered {
  justify-content: center;
  margin-top: 34px;
}

.company-hero-visual {
  max-width: 980px;
  margin: clamp(38px, 5vw, 64px) auto 0;
  padding: clamp(10px, 1.4vw, 16px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d6eaf5;
  border-radius: 42px;
  box-shadow: 0 28px 80px rgba(29, 143, 203, 0.16);
}

.company-hero-visual img,
.section-visual img,
.company-logo-card figure img {
  display: block;
  width: 100%;
  height: auto;
}

.company-hero-visual img {
  border-radius: 32px;
}

.page-anchor-nav {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: -36px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d6eaf5;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(29, 143, 203, 0.13);
}

.page-anchor-nav a {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px;
  color: #1f2933;
  background: #f8fdff;
  border: 1px solid rgba(214, 234, 245, 0.9);
  border-radius: 18px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.page-anchor-nav a:hover {
  color: #fff;
  background: #2fa7d8;
}

.brochure-v2 .corp-section {
  padding: clamp(118px, 12vw, 172px) 0;
}

.section-white {
  background: #fff;
}

.section-blue {
  background: linear-gradient(180deg, #f3fbff 0%, #eaf8fc 100%);
}

.section-heading.center {
  max-width: 880px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.section-heading.center h2 {
  margin-bottom: 18px;
}

.section-heading.center p:not(.corp-kicker) {
  margin-inline: auto;
}

.centered-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.message-card {
  max-width: 1050px;
  padding: clamp(36px, 5vw, 64px);
  background: #fff;
  border: 1px solid #d6eaf5;
  border-radius: 36px;
  box-shadow: 0 24px 64px rgba(29, 143, 203, 0.1);
}

.section-visual {
  max-width: 900px;
  margin: 0 auto clamp(34px, 4vw, 56px);
  padding: 12px;
  background: #fff;
  border: 1px solid #d6eaf5;
  border-radius: 36px;
  box-shadow: 0 22px 58px rgba(29, 143, 203, 0.12);
}

.section-visual img {
  border-radius: 28px;
}

.brochure-cards,
.equal-cards,
.about-grid {
  align-items: stretch;
}

.brochure-cards .corp-card,
.equal-cards article,
.about-grid article {
  min-height: 190px;
}

.equal-cards article {
  text-align: center;
  justify-items: center;
}

.equal-cards article span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: linear-gradient(135deg, #2fa7d8, #28a98b);
  border-radius: 50%;
}

.visual-flow {
  max-width: 980px;
  margin-inline: auto;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.company-logo-card {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid #d6eaf5;
  border-radius: 34px;
  box-shadow: 0 24px 64px rgba(29, 143, 203, 0.12);
}

.company-logo-card > img {
  width: min(220px, 70%);
  margin: 0 auto;
  border-radius: 26px;
}

.company-logo-card figure {
  margin: 0;
}

.company-table.large {
  text-align: left;
}

.brochure-timeline {
  max-width: 980px;
  margin-inline: auto;
}

.brochure-timeline div {
  position: relative;
  padding-left: 34px;
  text-align: left;
}

.brochure-timeline div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 32px;
  bottom: 28px;
  width: 3px;
  background: #2fa7d8;
  opacity: 0.3;
  border-radius: 999px;
}

.light-contact.section-white {
  background: #fff !important;
}

.brochure-footer {
  justify-content: space-between;
}

.footer-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 1100px) {
  .page-anchor-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-inline: 24px;
  }
}

@media (max-width: 920px) {
  .company-profile {
    grid-template-columns: 1fr;
  }

  .company-logo-card {
    position: static;
  }

  .brochure-v2 .corp-section {
    padding: clamp(88px, 14vw, 128px) 0;
  }
}

@media (max-width: 640px) {
  .logo-lockup img {
    width: 44px;
    height: 44px;
  }

  .logo-lockup span {
    font-size: 14px;
  }

  .company-hero {
    padding: 92px 18px 76px;
  }

  .company-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .company-hero-sub br {
    display: none;
  }

  .page-anchor-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
  }

  .page-anchor-nav a {
    min-height: 48px;
    font-size: 13px;
  }

  .message-card {
    padding: 28px 20px;
  }

  .section-visual,
  .company-hero-visual {
    border-radius: 24px;
  }

  .section-visual img,
  .company-hero-visual img {
    border-radius: 18px;
  }

  .brochure-footer {
    gap: 18px;
    align-items: flex-start;
  }
}

/* Final hero visibility tuning: keep the key visual visible on first view */
.brochure-v2 .company-hero {
  padding: clamp(78px, 8vw, 118px) 24px clamp(54px, 7vw, 86px);
}

.brochure-v2 .hero-logo img {
  width: clamp(74px, 7vw, 104px);
  margin-bottom: 16px;
}

.brochure-v2 .company-hero h1 {
  font-size: clamp(44px, 6.2vw, 78px);
}

.brochure-v2 .company-hero-sub {
  margin-top: 18px;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.55;
}

.brochure-v2 .company-hero-lead {
  margin-top: 16px;
  line-height: 1.75;
}

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

.brochure-v2 .company-hero-visual {
  max-width: 820px;
  margin-top: 30px;
}

@media (min-width: 1180px) and (max-height: 780px) {
  .brochure-v2 .company-hero {
    padding-top: 70px;
  }

  .brochure-v2 .company-hero h1 {
    font-size: clamp(42px, 5.5vw, 70px);
  }

  .brochure-v2 .company-hero-visual {
    max-width: 700px;
    margin-top: 22px;
  }
}

/* 2026-06-19 corporate-solid redesign: BtoB manufacturing site, not LP */
.corporate-solid {
  color: #1f2933;
  background: #fff;
}

.corporate-solid .solid-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(24px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d6eaf5;
  box-shadow: 0 10px 26px rgba(31, 41, 51, 0.08);
  backdrop-filter: blur(14px);
}

.solid-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #1f2933;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.solid-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.solid-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.solid-nav a {
  color: #1f2933;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.solid-nav a:hover {
  color: #1d8fcb;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  color: #1f2933;
  background: #fff;
  border: 1px solid #d6eaf5;
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1f2933;
}

.menu-toggle em {
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

.solid-hero {
  position: relative;
  min-height: 720px;
  padding-top: 76px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #f8fdff;
}

.solid-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.86) 38%, rgba(255,255,255,0.36) 68%, rgba(255,255,255,0.08) 100%),
    url("assets/corporate-machine-hero.jpg") center right / cover no-repeat;
}

.solid-hero-panel {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin: auto auto auto clamp(24px, 8vw, 112px);
  padding: clamp(34px, 5vw, 58px) 0;
}

.solid-hero-logo {
  width: 86px;
  height: auto;
  margin-bottom: 26px;
  border-radius: 10px;
}

.solid-eyebrow {
  margin: 0 0 18px;
  color: #1d8fcb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solid-hero h1,
.solid-section h2,
.stickerworks-panel h2 {
  margin: 0;
  color: #1f2933;
  font-weight: 950;
  letter-spacing: -0.035em;
  word-break: keep-all;
  line-height: 1.16;
}

.solid-hero h1 {
  font-size: clamp(48px, 6.4vw, 88px);
}

.solid-subcopy {
  margin: 26px 0 0;
  color: #1f2933;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.65;
}

.solid-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.solid-section {
  padding: clamp(96px, 10vw, 140px) 0;
  background: #fff;
}

.section-tint {
  background: #f8fdff;
}

.solid-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.solid-container.narrow {
  width: min(920px, calc(100% - 48px));
}

.solid-section-head {
  max-width: 760px;
  margin: 0 0 44px;
}

.solid-section-head.left {
  margin-bottom: 34px;
}

.solid-section-head h2,
.message-section h2,
.stickerworks-panel h2 {
  font-size: clamp(32px, 4.6vw, 58px);
}

.solid-section-head p:not(.solid-eyebrow),
.message-section p,
.solid-card-grid p,
.strength-layout p,
.process-table span,
.compact-company dd,
.stickerworks-panel p {
  color: #334155;
  line-height: 1.85;
  font-weight: 650;
}

.message-section {
  border-top: 1px solid #d6eaf5;
}

.message-section .narrow {
  border-left: 5px solid #2fa7d8;
  padding-left: clamp(22px, 4vw, 42px);
}

.business-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.solid-photo {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d6eaf5;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.09);
}

.solid-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.solid-photo figcaption {
  padding: 14px 16px;
  color: #1f2933;
  background: #fff;
  border-top: 1px solid #d6eaf5;
  font-weight: 900;
}

.solid-card-grid {
  display: grid;
  gap: 16px;
}

.solid-card-grid.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solid-card-grid article,
.strength-layout article,
.process-table div,
.compact-company,
.solid-form,
.stickerworks-panel {
  background: #fff;
  border: 1px solid #d6eaf5;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
}

.solid-card-grid article {
  padding: 26px;
}

.solid-card-grid h3,
.strength-layout h3,
.process-table strong {
  margin: 0 0 12px;
  color: #1f2933;
  font-size: 20px;
  line-height: 1.5;
}

.strength-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strength-layout article {
  padding: 30px;
  min-height: 260px;
}

.strength-layout span {
  display: block;
  margin-bottom: 22px;
  color: #1d8fcb;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.production-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.process-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-table div {
  padding: 22px;
}

.process-table strong,
.process-table span {
  display: block;
}

.history-container {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.vertical-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 34px;
}

.vertical-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #2fa7d8;
}

.vertical-timeline div {
  position: relative;
  padding: 0 0 34px 24px;
}

.vertical-timeline div::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid #2fa7d8;
  border-radius: 50%;
}

.vertical-timeline time {
  display: block;
  color: #1d8fcb;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.vertical-timeline p {
  margin: 8px 0 0;
  color: #1f2933;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
}

.compact-company {
  grid-column: 2;
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 10px 24px;
}

.compact-company div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #d6eaf5;
}

.compact-company div:last-child {
  border-bottom: 0;
}

.compact-company dt {
  color: #1d8fcb;
  font-weight: 950;
}

.compact-company dd {
  margin: 0;
}

.contact-solid .contact-grid {
  align-items: start;
}

.solid-form {
  border-color: #d6eaf5;
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.08);
}

.solid-form input,
.solid-form select,
.solid-form textarea {
  background: #fff;
  border-color: #d6eaf5;
}

.solid-form .button.primary,
.contact-solid .button.primary,
.stickerworks-panel .button.primary {
  background: #2fa7d8;
  border-radius: 6px;
}

.solid-form .button.primary:hover,
.contact-solid .button.primary:hover,
.stickerworks-panel .button.primary:hover {
  background: #1d8fcb;
}

.stickerworks-link {
  background: #fff;
  padding-top: clamp(56px, 7vw, 90px);
}

.stickerworks-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  border-left: 5px solid #2fa7d8;
}

.solid-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 4vw, 64px);
  color: #334155;
  background: #fff;
  border-top: 1px solid #d6eaf5;
  font-weight: 700;
}

.solid-footer .footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

@media (max-width: 1020px) {
  .solid-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid #d6eaf5;
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.15);
  }

  .solid-nav.is-open {
    display: flex;
  }

  .solid-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid #eaf8fc;
  }

  .solid-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .business-layout,
  .history-container {
    grid-template-columns: 1fr;
  }

  .compact-company {
    grid-column: auto;
  }

  .production-grid,
  .process-table,
  .strength-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .corporate-solid .solid-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .solid-logo img {
    width: 42px;
    height: 42px;
  }

  .solid-logo span {
    font-size: 14px;
  }

  .solid-hero {
    min-height: 680px;
    padding-top: 68px;
  }

  .solid-hero-bg {
    inset: 68px 0 0;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.35) 100%),
      url("assets/corporate-machine-hero.jpg") center / cover no-repeat;
  }

  .solid-hero-panel {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 58px;
  }

  .solid-hero-logo {
    width: 70px;
  }

  .solid-hero h1 {
    font-size: clamp(32px, 10vw, 46px);
    overflow-wrap: anywhere;
  }

  .solid-subcopy {
    font-size: 20px;
  }

  .solid-lead {
    font-size: 16px;
  }

  .solid-section {
    padding: 76px 0;
  }

  .solid-container,
  .solid-container.narrow {
    width: min(100% - 32px, 1120px);
  }

  .solid-card-grid.four,
  .compact-company div {
    grid-template-columns: 1fr;
  }

  .stickerworks-panel,
  .solid-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .equipment-feature h2,
  .stickerworks-panel h2 {
    font-size: clamp(28px, 8.5vw, 40px);
    overflow-wrap: anywhere;
  }
}

/* Hamburger icon polish */
@media (max-width: 1020px) {
  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 22px auto;
    grid-template-rows: repeat(3, 4px);
    column-gap: 8px;
    row-gap: 3px;
    align-items: center;
  }

  .menu-toggle span {
    grid-column: 1;
    width: 22px;
  }

  .menu-toggle span:nth-child(1) { grid-row: 1; }
  .menu-toggle span:nth-child(2) { grid-row: 2; }
  .menu-toggle span:nth-child(3) { grid-row: 3; }

  .menu-toggle em {
    grid-column: 2;
    grid-row: 1 / 4;
  }
}

/* 2026-06-19 corporate/service separation polish */
.corporate-solid .solid-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, #1d8fcb, #3bafda 52%, #28a98b);
}

.corporate-solid .solid-nav a:last-child {
  padding: 10px 16px;
  color: #fff;
  background: #2fa7d8;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(47, 167, 216, 0.22);
}

.corporate-solid .solid-nav a:last-child:hover {
  color: #fff;
  background: #1d8fcb;
}

.corporate-solid .solid-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, #1d8fcb, #3bafda, #28a98b);
}

.corporate-solid .solid-section-head::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, #1d8fcb, #3bafda);
}

.corporate-solid .solid-card-grid article,
.corporate-solid .strength-layout article,
.corporate-solid .process-table div {
  border-top: 4px solid #3bafda;
}

.corporate-solid .solid-photo {
  border-top: 5px solid #2fa7d8;
}

.corporate-solid .vertical-timeline::before {
  box-shadow: 0 0 0 5px rgba(47, 167, 216, 0.1);
}

.corporate-solid .contact-solid .contact-note {
  border-left: 5px solid #2fa7d8;
  background: #f3fbff;
}

.corporate-solid .solid-form {
  border-top: 5px solid #2fa7d8;
}

.service-page .footer-corporate-link {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 28px;
  padding: clamp(24px, 4vw, 34px);
  color: #1f2933;
  background: #f8fdff;
  border: 1px solid #d6eaf5;
  border-top: 5px solid #2fa7d8;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
}

.service-page .footer-corporate-link .footer-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #1d8fcb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-page .footer-corporate-link strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
}

.service-page .footer-corporate-link p {
  margin: 10px 0 18px;
  color: #334155;
  font-weight: 700;
}

.service-page .footer-corporate-link .button {
  border-radius: 6px;
  background: #2fa7d8;
}

.service-page .footer-corporate-link .button:hover {
  background: #1d8fcb;
}

@media (max-width: 640px) {
  .service-page .footer-corporate-link {
    width: min(100% - 32px, 1120px);
  }
}

.service-page .site-footer {
  display: block;
  padding: 36px clamp(18px, 4vw, 48px) 28px;
  text-align: center;
}

.service-page .site-footer > span {
  display: inline-block;
  margin: 0 10px;
}

/* Real equipment photo section */
.equipment-section {
  background: #fff;
}

.equipment-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 46px);
  padding: clamp(20px, 3vw, 30px);
  background: #f8fdff;
  border: 1px solid #d6eaf5;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.07);
}

.equipment-feature .solid-photo img {
  min-height: clamp(340px, 38vw, 520px);
}

.equipment-feature h3,
.equipment-grid h3 {
  margin: 0 0 14px;
  color: #1f2933;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.equipment-feature p,
.equipment-grid p {
  margin: 0;
  color: #334155;
  font-weight: 700;
  line-height: 1.85;
}

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

.equipment-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d6eaf5;
  border-top: 5px solid #2fa7d8;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.07);
}

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

.equipment-grid h3,
.equipment-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.equipment-grid h3 {
  padding-top: 22px;
  font-size: 22px;
}

.equipment-grid p {
  padding-bottom: 24px;
}

@media (max-width: 920px) {
  .equipment-feature,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .equipment-feature {
    padding: 16px;
  }

  .equipment-feature .solid-photo img,
  .equipment-grid img {
    min-height: 0;
    height: 240px;
  }
}

/* Sticker Works visual restore: keep service pages separate from corporate redesign */
body.service-page,
body.landing-page {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.service-page .site-header,
.landing-page .site-header {
  color: var(--white);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.service-page .site-header.is-scrolled,
.landing-page .site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 245, 238, 0.93);
  box-shadow: 0 8px 28px rgba(24, 32, 31, 0.12);
  backdrop-filter: blur(14px);
}

.service-page .brand,
.landing-page .brand,
.service-page .site-nav a,
.landing-page .site-nav a {
  color: inherit;
}

.service-page .brand-mark,
.landing-page .brand-mark {
  color: inherit;
  background: transparent;
  border: 2px solid currentColor;
}

.service-page .nav-cta,
.landing-page .nav-cta {
  color: inherit !important;
  background: transparent;
  border: 1px solid currentColor;
  box-shadow: none;
}

.service-page .nav-cta:hover,
.landing-page .nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.service-page .hero,
.landing-page .industry-hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 0;
  color: var(--white);
  background: url("assets/sticker-hero.webp") center / cover no-repeat;
  overflow: hidden;
}

.landing-page .industry-hero {
  background-position: center;
}

.service-page .hero::before,
.landing-page .industry-hero::before {
  display: none;
}

.service-page .hero::after,
.landing-page .industry-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.service-page .hero-overlay,
.landing-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 27, 26, 0.88) 0%, rgba(9, 27, 26, 0.7) 35%, rgba(9, 27, 26, 0.14) 75%),
    linear-gradient(0deg, rgba(9, 27, 26, 0.46), rgba(9, 27, 26, 0.08));
}

.service-page .hero-inner,
.landing-page .hero-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 13vh;
  color: var(--white);
}

.service-page .hero h1,
.service-page .eyebrow,
.service-page .hero-copy,
.service-page .hero-stats dt,
.service-page .hero-stats dd,
.landing-page .industry-hero h1,
.landing-page .eyebrow,
.landing-page .hero-copy {
  color: var(--white);
  text-shadow: none;
}

.service-page .eyebrow,
.landing-page .eyebrow,
.service-page .section-kicker,
.landing-page .section-kicker {
  color: var(--gold);
}

.service-page .hero-copy,
.landing-page .hero-copy {
  color: rgba(255, 255, 255, 0.9);
}

.service-page .cta-points li,
.landing-page .cta-points li {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.service-page .hero-stats,
.landing-page .hero-stats {
  color: var(--white);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.service-page .hero-stats div,
.landing-page .hero-stats div {
  background: rgba(8, 28, 27, 0.52);
}

.service-page .hero-stats dd,
.landing-page .hero-stats dd {
  color: rgba(255, 255, 255, 0.78);
}

.service-page .button.primary,
.landing-page .button.primary {
  background: var(--red);
  color: var(--white) !important;
  box-shadow: 0 18px 38px rgba(212, 73, 46, 0.38);
}

.service-page .button.primary:hover,
.landing-page .button.primary:hover {
  background: #c43f28;
}

.service-page .hero .button.secondary,
.landing-page .hero .button.secondary,
.landing-page .industry-hero .button.secondary {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}

.service-page .pain-band,
.landing-page .pain-band,
.service-page .accent-section,
.landing-page .accent-section {
  background: var(--teal-dark);
  color: var(--white);
}

.service-page .accent-section .section-kicker,
.landing-page .accent-section .section-kicker {
  color: var(--gold);
}

.service-page .site-footer,
.landing-page .site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 0;
}

.service-page .footer-corporate-link {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
}

.service-page .footer-corporate-link .footer-label {
  color: var(--teal);
}

.service-page .footer-corporate-link .button {
  background: var(--red);
}

@media (max-width: 920px) {
  .service-page .hero,
  .landing-page .industry-hero {
    min-height: 860px;
    background-position: 63% center;
  }
}

@media (max-width: 640px) {
  .service-page .hero,
  .landing-page .industry-hero {
    min-height: 820px;
    background-position: 70% center;
  }

  .service-page .hero-inner,
  .landing-page .hero-inner {
    width: min(100% - 28px, 1120px);
    padding: 132px 0 92px;
  }
}

/* Responsive containment fixes */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

main,
section,
header,
footer,
.solid-container,
.section-inner,
.hero-inner,
.contact-grid,
.business-layout,
.production-grid,
.equipment-grid,
.equipment-feature,
.stickerworks-panel,
.corp-container,
.brochure-hero-grid,
.corp-hero-inner {
  max-width: 100%;
  min-width: 0;
}

.solid-card-grid > *,
.product-grid > *,
.use-case-grid > *,
.mini-grid > *,
.guide-grid > *,
.flow-list > *,
.strength-layout > *,
.production-grid > *,
.equipment-grid > *,
.business-layout > *,
.contact-grid > *,
.stickerworks-panel > *,
.brochure-hero-grid > * {
  min-width: 0;
}

.solid-photo img,
.product-image img,
.equipment-grid img,
.section-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
p,
a,
li,
dd,
dt,
span,
strong {
  overflow-wrap: anywhere;
}

/* Preserve natural Japanese line breaking for major headings while preventing viewport overflow */
h1,
h2,
h3,
.section-heading,
.solid-section-head,
.hero h1,
.solid-hero h1 {
  max-width: 100%;
  overflow-wrap: normal;
}

@media (max-width: 1180px) {
  .corporate-lp-page .brochure-hero-grid,
  .corporate-lp-page .cta-panel,
  .corp-hero-inner {
    grid-template-columns: 1fr;
  }

  .solid-hero-panel {
    width: min(720px, calc(100% - 72px));
    margin-left: 36px;
    margin-right: 36px;
  }

  .solid-hero h1 {
    font-size: clamp(36px, 5.5vw, 52px);
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 920px) {
  .business-layout,
  .contact-grid,
  .equipment-feature,
  .stickerworks-panel,
  .history-container,
  .solid-card-grid.four,
  .production-grid,
  .equipment-grid,
  .strength-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solid-container,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .solid-hero-panel {
    width: calc(100% - 36px);
    margin-left: auto;
    margin-right: auto;
  }

  .site-nav,
  .solid-nav {
    max-width: calc(100vw - 32px);
  }

  .solid-hero h1,
  .equipment-feature h3,
  .stickerworks-panel h2 {
    overflow-wrap: anywhere;
  }

  .equipment-feature h3,
  .stickerworks-panel h2 {
    font-size: clamp(28px, 8.5vw, 40px);
  }
}

/* Strong Sticker Works restoration after responsive fixes */
body.service-page,
body.landing-page {
  background-color: var(--paper) !important;
  background-image:
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
}

body.service-page .hero,
body.landing-page .industry-hero {
  background-image: url("assets/sticker-hero.webp") !important;
  background-color: var(--teal-dark) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: var(--white) !important;
}

body.service-page .hero-overlay,
body.landing-page .hero-overlay {
  display: block !important;
  background:
    linear-gradient(90deg, rgba(9, 27, 26, 0.88) 0%, rgba(9, 27, 26, 0.7) 35%, rgba(9, 27, 26, 0.14) 75%),
    linear-gradient(0deg, rgba(9, 27, 26, 0.46), rgba(9, 27, 26, 0.08)) !important;
}

body.service-page .hero-inner,
body.landing-page .hero-inner,
body.service-page .hero h1,
body.landing-page .industry-hero h1,
body.service-page .hero-copy,
body.landing-page .hero-copy {
  color: var(--white) !important;
}

/* Final service-site layout guard */
html,
body {
  overflow-x: hidden;
}

p,
a,
li,
dd,
dt,
span,
strong {
  overflow-wrap: break-word;
  word-break: normal;
}

body.service-page .hero h1 {
  max-width: 820px !important;
  font-size: clamp(38px, 5.4vw, 68px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em;
}

body.landing-page .industry-hero h1 {
  max-width: 760px !important;
  font-size: clamp(42px, 5vw, 68px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.02em;
}

body.service-page .hero-copy {
  max-width: 640px !important;
  font-size: clamp(16px, 2vw, 19px) !important;
}

body.landing-page .hero-copy {
  max-width: 760px !important;
}

body.service-page .hero-inner,
body.landing-page .hero-inner {
  max-width: 1120px !important;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}

body.service-page .section,
body.service-page .contact-section,
body.landing-page .section,
body.landing-page .contact-section {
  background-color: transparent;
}

body.service-page .pain-band,
body.service-page .accent-section,
body.landing-page .pain-band,
body.landing-page .accent-section {
  background-color: var(--teal-dark) !important;
}

body.service-page .section-inner,
body.landing-page .section-inner {
  width: min(1120px, calc(100% - 36px));
}

body.service-page .site-footer,
body.landing-page .site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 4vw, 48px);
  text-align: left;
}

body.service-page .footer-corporate-link {
  display: block;
}

@media (max-width: 920px) {
  body.service-page .site-nav a:not(.nav-cta),
  body.landing-page .site-nav a:not(.nav-cta) {
    display: none;
  }

  body.service-page .split,
  body.service-page .contact-grid,
  body.landing-page .split,
  body.landing-page .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.service-page .hero h1 {
    max-width: 10.5em !important;
    font-size: clamp(34px, 11vw, 42px) !important;
  }

  body.landing-page .industry-hero h1 {
    max-width: 9.5em !important;
    font-size: clamp(34px, 10.5vw, 44px) !important;
  }

  body.service-page .site-footer,
  body.landing-page .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* 2026-06-23 Sticker Works LP layout fix
   Scope: Sticker Works TOP and industry LPs only. Keeps the original dark service design
   while fixing overflow, unreadable text, two-column collisions, and mobile wrapping. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body.service-page *,
body.service-page *::before,
body.service-page *::after,
body.landing-page *,
body.landing-page *::before,
body.landing-page *::after {
  box-sizing: border-box;
}

body.service-page,
body.landing-page {
  background-color: var(--paper) !important;
  background-image:
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
  color: var(--ink) !important;
  max-width: 100%;
  overflow-x: clip;
}

body.service-page img,
body.service-page svg,
body.service-page video,
body.landing-page img,
body.landing-page svg,
body.landing-page video {
  display: block;
  max-width: 100%;
  height: auto;
}

body.service-page .section-inner,
body.service-page .container,
body.service-page .lp-container,
body.service-page .hero-inner,
body.landing-page .section-inner,
body.landing-page .container,
body.landing-page .lp-container,
body.landing-page .hero-inner {
  width: min(100% - 32px, 1200px) !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
  min-width: 0 !important;
}

body.service-page main,
body.service-page section,
body.service-page header,
body.service-page footer,
body.service-page div,
body.service-page article,
body.service-page ul,
body.service-page ol,
body.service-page li,
body.landing-page main,
body.landing-page section,
body.landing-page header,
body.landing-page footer,
body.landing-page div,
body.landing-page article,
body.landing-page ul,
body.landing-page ol,
body.landing-page li {
  min-width: 0;
}

body.service-page h1,
body.service-page h2,
body.service-page h3,
body.service-page .section-title,
body.service-page .section-heading,
body.service-page .card-title,
body.service-page .faq-title,
body.service-page p,
body.service-page li,
body.service-page a,
body.service-page span,
body.service-page strong,
body.landing-page h1,
body.landing-page h2,
body.landing-page h3,
body.landing-page .section-title,
body.landing-page .section-heading,
body.landing-page .card-title,
body.landing-page .faq-title,
body.landing-page p,
body.landing-page li,
body.landing-page a,
body.landing-page span,
body.landing-page strong {
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

body.service-page .section-heading h2,
body.service-page .pain-grid h2,
body.service-page .split h2,
body.service-page .faq-section h2,
body.service-page .contact-copy h2,
body.landing-page .section-heading h2,
body.landing-page .pain-grid h2,
body.landing-page .split h2,
body.landing-page .faq-section h2,
body.landing-page .contact-copy h2 {
  font-size: clamp(2rem, 5vw, 4.5rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  max-width: 100% !important;
}

body.service-page .hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  max-width: 12.5em !important;
}

body.landing-page .industry-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.03em !important;
  max-width: 13em !important;
}

body.service-page .pain-grid,
body.service-page .split,
body.service-page .contact-grid,
body.service-page .faq-layout,
body.service-page .consult-layout,
body.service-page .recommend-layout,
body.landing-page .pain-grid,
body.landing-page .split,
body.landing-page .contact-grid,
body.landing-page .faq-layout,
body.landing-page .consult-layout,
body.landing-page .recommend-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  gap: clamp(32px, 5vw, 80px) !important;
  align-items: start !important;
}

body.service-page .pain-grid > *,
body.service-page .split > *,
body.service-page .contact-grid > *,
body.service-page .faq-layout > *,
body.service-page .consult-layout > *,
body.service-page .recommend-layout > *,
body.landing-page .pain-grid > *,
body.landing-page .split > *,
body.landing-page .contact-grid > *,
body.landing-page .faq-layout > *,
body.landing-page .consult-layout > *,
body.landing-page .recommend-layout > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

body.service-page .product-grid,
body.service-page .use-case-grid,
body.service-page .mini-grid,
body.service-page .guide-grid,
body.service-page .flow-list,
body.service-page .strength-list,
body.landing-page .product-grid,
body.landing-page .use-case-grid,
body.landing-page .mini-grid,
body.landing-page .guide-grid,
body.landing-page .flow-list,
body.landing-page .strength-list {
  min-width: 0 !important;
  max-width: 100% !important;
}

body.service-page .pain-band,
body.service-page .accent-section,
body.landing-page .pain-band,
body.landing-page .accent-section {
  background: var(--teal-dark) !important;
  color: #ffffff !important;
}

body.service-page .pain-band h2,
body.service-page .pain-band h3,
body.service-page .pain-band p,
body.service-page .pain-band li,
body.service-page .accent-section h2,
body.service-page .accent-section h3,
body.service-page .accent-section p,
body.service-page .accent-section li,
body.landing-page .pain-band h2,
body.landing-page .pain-band h3,
body.landing-page .pain-band p,
body.landing-page .pain-band li,
body.landing-page .accent-section h2,
body.landing-page .accent-section h3,
body.landing-page .accent-section p,
body.landing-page .accent-section li {
  color: rgba(255, 255, 255, 0.86) !important;
}

body.service-page .pain-band h2,
body.service-page .pain-band h3,
body.service-page .accent-section h2,
body.service-page .accent-section h3,
body.landing-page .pain-band h2,
body.landing-page .pain-band h3,
body.landing-page .accent-section h2,
body.landing-page .accent-section h3 {
  color: #ffffff !important;
}

body.service-page .section-kicker,
body.landing-page .section-kicker {
  color: var(--gold) !important;
}

body.service-page .product-card,
body.service-page .mini-card,
body.service-page .guide-grid article,
body.service-page .faq-list details,
body.service-page .cta-panel,
body.service-page .price-note,
body.service-page .strength-list > *,
body.service-page .material-list li,
body.service-page .check-list li,
body.service-page .flow-list li,
body.service-page .use-case-card,
body.landing-page .product-card,
body.landing-page .mini-card,
body.landing-page .guide-grid article,
body.landing-page .faq-list details,
body.landing-page .cta-panel,
body.landing-page .price-note,
body.landing-page .strength-list > *,
body.landing-page .material-list li,
body.landing-page .check-list li,
body.landing-page .flow-list li,
body.landing-page .use-case-card {
  background: #ffffff !important;
  color: #1f2a33 !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.service-page .product-card h3,
body.service-page .mini-card h3,
body.service-page .guide-grid article h3,
body.service-page .faq-list summary,
body.service-page .cta-panel h3,
body.service-page .price-note strong,
body.service-page .strength-list > * h3,
body.service-page .material-list li strong,
body.service-page .check-list li strong,
body.service-page .flow-list li h3,
body.service-page .use-case-card h3,
body.landing-page .product-card h3,
body.landing-page .mini-card h3,
body.landing-page .guide-grid article h3,
body.landing-page .faq-list summary,
body.landing-page .cta-panel h3,
body.landing-page .price-note strong,
body.landing-page .strength-list > * h3,
body.landing-page .material-list li strong,
body.landing-page .check-list li strong,
body.landing-page .flow-list li h3,
body.landing-page .use-case-card h3 {
  color: #1f2a33 !important;
}

body.service-page .product-card p,
body.service-page .mini-card p,
body.service-page .guide-grid article p,
body.service-page .faq-list p,
body.service-page .cta-panel p,
body.service-page .price-note span,
body.service-page .strength-list > * p,
body.service-page .material-list li,
body.service-page .check-list li,
body.service-page .flow-list li p,
body.service-page .use-case-card p,
body.landing-page .product-card p,
body.landing-page .mini-card p,
body.landing-page .guide-grid article p,
body.landing-page .faq-list p,
body.landing-page .cta-panel p,
body.landing-page .price-note span,
body.landing-page .strength-list > * p,
body.landing-page .material-list li,
body.landing-page .check-list li,
body.landing-page .flow-list li p,
body.landing-page .use-case-card p {
  color: #4f5f5d !important;
}

body.service-page .site-header,
body.landing-page .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 76px !important;
  padding: 18px clamp(18px, 4vw, 56px) !important;
  color: #ffffff !important;
  overflow: visible !important;
}

body.service-page .brand,
body.landing-page .brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

body.service-page .site-nav,
body.landing-page .site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 10px 18px !important;
  min-width: 0 !important;
  max-width: min(720px, 64vw) !important;
}

body.service-page .site-nav a,
body.landing-page .site-nav a {
  color: #ffffff !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.2 !important;
}

body.service-page .nav-cta,
body.landing-page .nav-cta {
  flex: 0 0 auto !important;
  max-width: 100% !important;
  white-space: nowrap !important;
}

body.service-page .hero,
body.landing-page .industry-hero {
  min-height: min(760px, 100svh) !important;
  overflow: hidden !important;
}

body.service-page .hero-inner,
body.landing-page .hero-inner {
  position: relative !important;
  z-index: 2 !important;
  padding-top: clamp(118px, 12vw, 160px) !important;
  padding-bottom: clamp(78px, 10vw, 130px) !important;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}

body.service-page .hero-actions,
body.landing-page .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px !important;
  max-width: 100% !important;
}

body.service-page .button,
body.landing-page .button {
  max-width: 100% !important;
  text-align: center !important;
}

body.service-page .site-footer,
body.landing-page .site-footer {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: clip !important;
}

@media (max-width: 1024px) {
  body.service-page .site-nav,
  body.landing-page .site-nav {
    max-width: min(560px, 58vw) !important;
    gap: 8px 12px !important;
  }
}

@media (max-width: 900px) {
  body.service-page .pain-grid,
  body.service-page .split,
  body.service-page .contact-grid,
  body.service-page .faq-layout,
  body.service-page .consult-layout,
  body.service-page .recommend-layout,
  body.landing-page .pain-grid,
  body.landing-page .split,
  body.landing-page .contact-grid,
  body.landing-page .faq-layout,
  body.landing-page .consult-layout,
  body.landing-page .recommend-layout {
    grid-template-columns: 1fr !important;
  }

  body.service-page .site-header,
  body.landing-page .site-header {
    position: absolute;
    min-height: 72px !important;
    padding: 14px 18px !important;
  }

  body.service-page .site-nav,
  body.landing-page .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(247, 245, 238, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(24, 32, 31, 0.16);
    color: var(--ink);
    max-width: calc(100vw - 190px) !important;
  }

  body.service-page .site-nav.is-open,
  body.landing-page .site-nav.is-open {
    display: flex;
    max-width: calc(100vw - 36px) !important;
  }

  body.service-page .site-nav a,
  body.landing-page .site-nav a,
  body.service-page .site-nav a:not(.nav-cta),
  body.landing-page .site-nav a:not(.nav-cta) {
    display: block !important;
    padding: 13px 12px !important;
    border-bottom: 1px solid rgba(15, 118, 110, 0.1);
    color: var(--ink);
  }

  body.service-page .site-nav a:last-child,
  body.landing-page .site-nav a:last-child {
    border-bottom: 0;
  }

  body.service-page .nav-cta,
  body.landing-page .nav-cta {
    padding: 11px 14px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 767px) {
  body.service-page .section-inner,
  body.service-page .container,
  body.service-page .lp-container,
  body.service-page .hero-inner,
  body.landing-page .section-inner,
  body.landing-page .container,
  body.landing-page .lp-container,
  body.landing-page .hero-inner {
    width: min(100% - 24px, 100%) !important;
  }

  body.service-page .section-heading h2,
  body.service-page .pain-grid h2,
  body.service-page .split h2,
  body.service-page .faq-section h2,
  body.service-page .contact-copy h2,
  body.landing-page .section-heading h2,
  body.landing-page .pain-grid h2,
  body.landing-page .split h2,
  body.landing-page .faq-section h2,
  body.landing-page .contact-copy h2 {
    font-size: clamp(1.8rem, 9vw, 3rem) !important;
    line-height: 1.18 !important;
  }

  body.service-page .hero h1,
  body.landing-page .industry-hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.05rem) !important;
    line-height: 1.16 !important;
    max-width: 100% !important;
  }

  body.service-page .hero-inner,
  body.landing-page .hero-inner {
    padding-top: 110px !important;
    padding-bottom: 72px !important;
  }

  body.service-page .hero-actions,
  body.landing-page .hero-actions,
  body.service-page .inline-cta,
  body.landing-page .inline-cta {
    align-items: stretch !important;
  }

  body.service-page .hero-actions .button,
  body.landing-page .hero-actions .button,
  body.service-page .full-button,
  body.landing-page .full-button {
    width: 100% !important;
  }

  body.service-page .mini-grid,
  body.service-page .product-grid,
  body.service-page .use-case-grid,
  body.service-page .flow-list,
  body.landing-page .mini-grid,
  body.landing-page .product-grid,
  body.landing-page .use-case-grid,
  body.landing-page .flow-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 430px) {
  body.service-page .brand span,
  body.landing-page .brand span {
    font-size: 18px !important;
  }

  body.service-page .site-nav,
  body.landing-page .site-nav {
    max-width: calc(100vw - 150px) !important;
  }

  body.service-page .nav-cta,
  body.landing-page .nav-cta {
    padding: 10px 11px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 375px) {
  body.service-page .brand span,
  body.landing-page .brand span {
    display: none !important;
  }

  body.service-page .site-nav,
  body.landing-page .site-nav {
    max-width: calc(100vw - 88px) !important;
  }
}

/* 2026-06-23 Sticker Works contact/header final restore */
body.service-page .contact-section,
body.landing-page .contact-section {
  background: var(--teal-dark) !important;
  color: #ffffff !important;
}

body.service-page .contact-copy,
body.service-page .contact-copy h2,
body.service-page .contact-copy p,
body.landing-page .contact-copy,
body.landing-page .contact-copy h2,
body.landing-page .contact-copy p {
  color: #ffffff !important;
}

body.service-page .contact-copy p,
body.landing-page .contact-copy p {
  color: rgba(255, 255, 255, 0.84) !important;
}

body.service-page .contact-note,
body.landing-page .contact-note {
  background: var(--gold) !important;
  border: 0 !important;
  color: #1f2a33 !important;
}

body.service-page .contact-note strong,
body.service-page .contact-note span,
body.landing-page .contact-note strong,
body.landing-page .contact-note span {
  color: #1f2a33 !important;
}

body.service-page .cta-panel,
body.landing-page .cta-panel {
  background: #ffffff !important;
  color: #1f2a33 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

body.service-page .cta-panel .text-link,
body.landing-page .cta-panel .text-link {
  color: var(--teal) !important;
}

body.service-page .site-header,
body.landing-page .site-header {
  isolation: isolate;
}

body.service-page .site-header .brand-mark,
body.landing-page .site-header .brand-mark {
  flex: 0 0 auto;
}

body.service-page .hero-overlay,
body.landing-page .hero-overlay {
  z-index: 1 !important;
}

body.service-page .site-header,
body.landing-page .site-header,
body.service-page .hero-inner,
body.landing-page .hero-inner {
  z-index: 3 !important;
}

/* 2026-06-23 Sticker Works tablet single-column hard guard */
@media screen and (max-width: 900px) {
  body.service-page .section-inner.pain-grid,
  body.service-page .section-inner.split,
  body.service-page .section-inner.contact-grid,
  body.service-page .pain-grid,
  body.service-page .split,
  body.service-page .contact-grid,
  body.landing-page .section-inner.pain-grid,
  body.landing-page .section-inner.split,
  body.landing-page .section-inner.contact-grid,
  body.landing-page .pain-grid,
  body.landing-page .split,
  body.landing-page .contact-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* 2026-06-23 Sticker Works strength section explicit grid */
body.service-page #strength .section-inner.split {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
}

body.service-page #strength .section-inner.split > div:first-child {
  grid-row: 1 / span 2;
  min-width: 0 !important;
}

body.service-page #strength .consult-list,
body.service-page #strength .strength-list {
  grid-column: 2;
  min-width: 0 !important;
  max-width: 100% !important;
}

@media screen and (max-width: 900px) {
  body.service-page #strength .section-inner.split {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.service-page #strength .section-inner.split > div:first-child,
  body.service-page #strength .consult-list,
  body.service-page #strength .strength-list {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
  }
}

/* 2026-06-25 Works pages */
body.works-page {
  background: #f8fdff;
  color: #1f2933;
}

body.works-page .solid-header {
  background: rgba(255, 255, 255, 0.94);
}

.works-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}

.works-breadcrumb a {
  color: #1d8fcb;
  text-decoration: none;
}

.works-hero,
.works-detail-hero {
  padding: clamp(120px, 12vw, 170px) 0 clamp(72px, 8vw, 120px);
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 167, 216, 0.18), transparent 28%),
    linear-gradient(135deg, #f3fbff 0%, #ffffff 48%, #eaf8fc 100%);
}

.works-hero-inner {
  max-width: 920px;
}

.works-hero h1,
.works-detail-hero h1 {
  margin: 0;
  color: #1f2933;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
  line-break: strict;
}

.works-hero p,
.works-detail-hero p {
  max-width: 760px;
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 2;
}

.works-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.works-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d6eaf5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(29, 143, 203, 0.09);
}

.works-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf8fc;
}

.works-card-image img,
.works-main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-card-body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.works-category {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 167, 216, 0.12);
  color: #1d8fcb;
  font-size: 0.8rem;
  font-weight: 800;
}

.works-card h2 {
  margin: 0;
  color: #1f2933;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

.works-card p,
.works-card dd {
  color: #475569;
}

.works-card-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works-card-points li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.65;
}

.works-card-points li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2fa7d8;
}

.works-mini-spec {
  display: grid;
  gap: 10px;
  margin: 0;
}

.works-mini-spec div {
  display: grid;
  grid-template-columns: 4.5em minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.works-mini-spec dt {
  color: #1d8fcb;
  font-weight: 800;
}

.works-mini-spec dd {
  min-width: 0;
  margin: 0;
}

.works-link {
  color: #1d8fcb;
  font-weight: 900;
  text-decoration: none;
}

.works-link::after {
  content: " ->";
}

.works-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.works-main-visual {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid #d6eaf5;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(29, 143, 203, 0.16);
}

.works-main-visual img {
  aspect-ratio: 4 / 3;
}

.works-main-visual figcaption {
  padding: 12px 16px 16px;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
}

.works-detail-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.works-detail-aside {
  min-width: 0;
}

.works-detail-aside h2 {
  margin: 0 0 16px;
  color: #1f2933;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.works-detail-aside p {
  color: #475569;
  line-height: 1.9;
}

.works-context-section {
  background: #ffffff;
}

.works-context-grid,
.works-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.works-context-grid h2,
.works-flow-layout h2 {
  margin: 0 0 18px;
  color: #1f2933;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  line-break: strict;
}

.works-context-grid p,
.works-flow-layout p {
  color: #475569;
  line-height: 1.9;
}

.works-consult-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works-consult-list li {
  position: relative;
  min-width: 0;
  padding: 20px 22px 20px 54px;
  border: 1px solid #d6eaf5;
  border-radius: 14px;
  background: #f8fdff;
  color: #334155;
  font-weight: 800;
  line-height: 1.75;
}

.works-consult-list li::before {
  content: "✓";
  position: absolute;
  top: 20px;
  left: 22px;
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #28a98b;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
}

.works-spec-list {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d6eaf5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(29, 143, 203, 0.08);
}

.works-spec-list div {
  display: grid;
  grid-template-columns: 10em minmax(0, 1fr);
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid #e5f3fa;
}

.works-spec-list div:last-child {
  border-bottom: 0;
}

.works-spec-list dt {
  color: #1d8fcb;
  font-weight: 900;
}

.works-spec-list dd {
  min-width: 0;
  margin: 0;
  color: #334155;
  line-height: 1.85;
}

.works-story-section {
  background: #eaf8fc;
}

.works-point-section {
  background: linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
}

.works-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.works-point-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid #d6eaf5;
  border-top: 5px solid #2fa7d8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(29, 143, 203, 0.08);
}

.works-point-grid h3 {
  margin: 0 0 12px;
  color: #1f2933;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.35;
}

.works-point-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.85;
}

.works-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.works-story-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(29, 143, 203, 0.18);
  border-radius: 16px;
  background: #ffffff;
}

.works-story-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2fa7d8;
  color: #ffffff;
  font-weight: 900;
}

.works-story-grid h2 {
  margin: 18px 0 12px;
  color: #1f2933;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.works-story-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.9;
}

.works-flow-section {
  background: #ffffff;
}

.works-flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: works-flow;
}

.works-flow-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid #d6eaf5;
  border-radius: 14px;
  background: #f8fdff;
}

.works-flow-list span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: #1d8fcb;
  color: #ffffff;
  font-weight: 900;
}

.works-flow-list p {
  margin: 0;
  color: #334155;
  font-weight: 800;
}

.works-cta-card {
  padding: clamp(36px, 6vw, 68px);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f3fbff 100%);
  box-shadow: 0 22px 56px rgba(29, 143, 203, 0.12);
  text-align: center;
}

.works-cta-card h2 {
  max-width: 880px;
  margin: 0 auto 18px;
  color: #1f2933;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.works-cta-card p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #475569;
  line-height: 1.9;
}

@media screen and (max-width: 1024px) {
  .works-grid,
  .works-story-grid,
  .works-point-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-detail-hero-grid,
  .works-detail-layout,
  .works-context-grid,
  .works-flow-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width: 700px) {
  .works-hero,
  .works-detail-hero {
    padding-top: 104px;
  }

  .works-grid,
  .works-story-grid,
  .works-point-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .works-card-body,
  .works-story-grid article,
  .works-point-grid article {
    padding: 22px;
  }

  .works-mini-spec div,
  .works-spec-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .works-hero-actions .button {
    width: 100%;
  }
}

/* Column / Blog pages - scoped only to .column-page */
body.column-page {
  background: #f8fdff;
  color: #1f2933;
}

.column-page *,
.column-page *::before,
.column-page *::after {
  box-sizing: border-box;
}

.column-page h1,
.column-page h2,
.column-page h3,
.column-page p,
.column-page a,
.column-page li,
.column-page summary,
.column-page span {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

.column-container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  min-width: 0;
}

.column-hero,
.column-article-header {
  padding: clamp(112px, 13vw, 176px) 0 clamp(64px, 8vw, 104px);
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 167, 216, 0.18), transparent 34%),
    linear-gradient(135deg, #f8fdff 0%, #eaf8fc 58%, #ffffff 100%);
  border-bottom: 1px solid rgba(29, 143, 203, 0.13);
}

.column-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: #64748b;
  font-size: 0.92rem;
}

.column-breadcrumb a {
  color: #1d8fcb;
  text-decoration: none;
}

.column-breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #94a3b8;
}

.column-eyebrow {
  margin: 0 0 14px;
  color: #1d8fcb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.column-hero h1,
.column-article-header h1 {
  max-width: 980px;
  margin: 0;
  color: #1f2933;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.column-lead {
  max-width: 860px;
  margin: 24px 0 0;
  color: #475569;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.95;
}

.column-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.column-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.column-main,
.column-sidebar,
.column-card,
.column-side-card,
.column-body,
.column-toc,
.column-related-card {
  min-width: 0;
}

.column-section-head {
  margin-bottom: 28px;
}

.column-section-head h2,
.column-side-card h2,
.column-body h2,
.column-related-lp h2,
.column-cta h2,
.column-toc h2 {
  margin: 0;
  color: #1f2933;
  font-size: clamp(1.7rem, 3.8vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.column-list {
  display: grid;
  gap: 22px;
}

.column-card,
.column-side-card,
.column-toc,
.column-related-lp,
.column-cta {
  border: 1px solid rgba(29, 143, 203, 0.14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.column-card {
  position: relative;
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
}

.column-card::before,
.column-side-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #2fa7d8, #28a98b);
}

.column-card-category,
.column-card-meta,
.column-meta,
.column-tags,
.column-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.column-card-category {
  margin: 0 0 12px;
  color: #1d8fcb;
  font-size: 0.88rem;
  font-weight: 800;
}

.column-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.column-card h2 a,
.column-featured a,
.column-popular a,
.column-related-card,
.column-related-lp a {
  color: #1f2933;
  text-decoration: none;
}

.column-card h2 a:hover,
.column-featured a:hover,
.column-popular a:hover,
.column-related-card:hover,
.column-related-lp a:hover {
  color: #1d8fcb;
}

.column-card p {
  margin: 0;
  color: #475569;
  line-height: 1.85;
}

.column-card-meta {
  margin-top: 18px;
  color: #64748b;
  font-size: 0.9rem;
}

.column-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 96px;
}

.column-side-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.column-side-card h2 {
  margin-bottom: 18px;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.column-category-list,
.column-tag-list,
.column-lp-links,
.column-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.column-category,
.column-tag-list span,
.column-tags span,
.column-lp-links a,
.column-featured a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eaf8fc;
  color: #1d8fcb;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.column-tags {
  margin-top: 16px;
}

.column-tags span {
  background: rgba(40, 169, 139, 0.12);
  color: #0f766e;
}

.column-popular {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #1d8fcb;
  font-weight: 800;
}

.column-section-block {
  margin-top: clamp(52px, 7vw, 88px);
}

.column-lp-links a,
.column-featured a {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(29, 143, 203, 0.16);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.column-cta-section {
  padding: clamp(56px, 8vw, 104px) 0;
  background: linear-gradient(135deg, #eaf8fc, #ffffff);
}

.column-cta {
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.column-cta p:not(.column-eyebrow) {
  max-width: 680px;
  margin: 18px auto 28px;
  color: #475569;
  line-height: 1.85;
}

.column-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #2fa7d8;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(47, 167, 216, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.column-button:hover {
  background: #1d8fcb;
  transform: translateY(-2px);
}

.column-article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 780px);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  padding: clamp(54px, 8vw, 96px) 0;
}

.column-meta {
  margin-top: 22px;
  color: #64748b;
  font-size: 0.94rem;
}

.column-toc {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.column-toc h2 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.column-toc ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.column-toc a {
  color: #334155;
  font-weight: 800;
  text-decoration: none;
}

.column-body {
  display: grid;
  gap: clamp(36px, 5vw, 58px);
}

.column-body > section:not(.column-cta):not(.column-related-lp),
.column-faq,
.column-related {
  padding-bottom: clamp(34px, 5vw, 52px);
  border-bottom: 1px solid rgba(29, 143, 203, 0.13);
}

.column-body h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
}

.column-body p {
  margin: 0;
  color: #334155;
  font-size: 1.04rem;
  line-height: 2.05;
}

.column-faq details {
  border: 1px solid rgba(29, 143, 203, 0.16);
  border-radius: 14px;
  background: #ffffff;
  padding: 18px 20px;
}

.column-faq details + details {
  margin-top: 12px;
}

.column-faq summary {
  cursor: pointer;
  color: #1f2933;
  font-weight: 900;
  line-height: 1.6;
}

.column-faq p {
  margin-top: 12px;
  color: #475569;
}

.column-related > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.column-related-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(29, 143, 203, 0.14);
  border-radius: 16px;
  background: #ffffff;
}

.column-related-card span {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.column-related-lp {
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(135deg, #ffffff, #f3fbff);
}

.column-related-lp p {
  margin: 12px 0 20px;
}

.column-related-lp a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: #eaf8fc;
  color: #1d8fcb;
  font-weight: 900;
}

.column-footer {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .column-list-layout,
  .column-article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .column-sidebar,
  .column-toc {
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .column-container {
    width: min(100% - 24px, 100%);
  }

  .column-hero,
  .column-article-header {
    padding-top: 104px;
  }

  .column-hero h1,
  .column-article-header h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
    line-height: 1.16;
  }

  .column-related > div {
    grid-template-columns: minmax(0, 1fr);
  }

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

/* Shared footer navigation links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
  margin: 14px 0 8px;
  min-width: 0;
}

.footer-links a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  opacity: 0.88;
}

.footer-links a:hover {
  color: #2fa7d8;
  opacity: 1;
}

.footer-column-link {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-column-link p {
  margin: 0;
}

.footer-column-link .button.secondary {
  justify-self: center;
}

@media screen and (max-width: 700px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}


/* SEO Phase2 additions */
.column-search, .rank-panel { border: 1px solid rgba(29,143,203,.14); border-radius: 18px; background: #fff; padding: clamp(22px,4vw,34px); box-shadow: 0 18px 46px rgba(15,23,42,.07); margin-bottom: 34px; }
.column-search label { display:block; font-weight:900; margin-bottom:10px; color:#1f2933; }
.column-search input { width:100%; min-height:54px; border:1px solid #d6eaf5; border-radius:14px; padding:12px 16px; font-size:1rem; }
.column-search p { color:#64748b; margin:12px 0 0; }
.column-category-list button, .column-tag-list button { border:0; cursor:pointer; }
.column-checklist { display:grid; gap:12px; margin:18px 0 0; padding:0; list-style:none; }
.column-checklist li { padding:14px 16px; border-left:4px solid #2fa7d8; background:#f3fbff; border-radius:10px; color:#334155; font-weight:700; }
.seo-lp-hero { padding: clamp(112px,13vw,176px) 0 clamp(64px,8vw,104px); background: linear-gradient(135deg,#f8fdff 0%,#eaf8fc 70%,#fff 100%); border-bottom:1px solid rgba(29,143,203,.13); }
.seo-lp-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.column-button.secondary { background:#fff; color:#1d8fcb; border:1px solid rgba(29,143,203,.3); box-shadow:none; }
.seo-lp-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:22px; }
.seo-lp-grid article { min-width:0; border:1px solid rgba(29,143,203,.14); border-radius:18px; background:#fff; padding:clamp(24px,4vw,34px); box-shadow:0 18px 46px rgba(15,23,42,.06); }
.seo-lp-grid h2 { margin:0 0 16px; font-size:clamp(1.45rem,3vw,2.2rem); line-height:1.25; }
.seo-lp-grid p { color:#475569; line-height:1.9; }
.rank-panel { overflow-x:auto; }
.rank-panel table { width:100%; border-collapse:collapse; min-width:720px; }
.rank-panel th, .rank-panel td { padding:14px; border-bottom:1px solid #d6eaf5; text-align:left; }
.rank-panel input { width:100%; min-height:42px; border:1px solid #d6eaf5; border-radius:10px; padding:8px 10px; }
.rank-panel .column-button { margin-top:22px; }
@media screen and (max-width: 820px) { .seo-lp-grid { grid-template-columns:1fr; } .seo-lp-actions .column-button { width:100%; } }


/* SEO Phase3 additions */
.eeat-section { background: linear-gradient(180deg, #f8fdff 0%, #eef9fd 100%); }
.eeat-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:18px; }
.eeat-grid article { min-width:0; padding:26px; border:1px solid #d6eaf5; background:#fff; box-shadow:0 16px 36px rgba(29,143,203,.08); }
.eeat-grid h3 { margin:0 0 10px; color:#1d8fcb; font-size:clamp(20px,2vw,24px); line-height:1.35; }
.eeat-grid p { margin:0; color:#334155; line-height:1.9; }
.column-roadmap-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:18px; }
.column-roadmap-card { min-width:0; padding:22px; border:1px solid rgba(29,143,203,.16); border-radius:16px; background:#fff; }
.column-roadmap-card h3 { margin:0 0 8px; color:#1f2933; }
.column-roadmap-card p { margin:0; color:#475569; line-height:1.8; }
@media (max-width: 900px) { .eeat-grid, .column-roadmap-grid { grid-template-columns: 1fr; } }


/* Public column list cleanup */
.column-list-page .column-card-thumb {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 0 18px;
  aspect-ratio: 16 / 9;
  background: #eaf8fc;
}
.column-list-page .column-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.column-list-page .column-card:hover .column-card-thumb img {
  transform: scale(1.035);
}
.column-list-page .column-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #1d8fcb;
  font-weight: 800;
  text-decoration: none;
}
.column-list-page .column-read-more::after {
  content: "→";
}
.column-list-page .column-section-head h2,
.column-list-page .column-side-card h2 {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}


/* Public column related articles */
.column-list-page .column-related-list {
  display: grid;
  gap: 12px;
}
.column-list-page .column-related-list a {
  display: block;
  padding: 16px 18px;
  border: 1px solid #d6eaf5;
  border-radius: 10px;
  background: #fff;
  color: #1f2933;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.column-list-page .column-related-list a:hover {
  border-color: #2fa7d8;
  color: #1d8fcb;
  transform: translateY(-1px);
}
