:root {
  --color-blue-950: #071b3f;
  --color-blue-900: #09245c;
  --color-blue-700: #135fc2;
  --color-blue-100: #eaf4ff;
  --color-blue-50: #f5faff;
  --color-orange: #f58220;
  --color-orange-dark: #d96708;
  --color-white: #ffffff;
  --color-text: #142033;
  --color-muted: #5c6b82;
  --color-line: #dbe7f5;
  --shadow-card: 0 20px 45px rgba(7, 27, 63, 0.09);
  --shadow-soft: 0 12px 28px rgba(7, 27, 63, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Inter", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  background: var(--color-white);
font-feature-settings:"palt";
}

body.is-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 231, 245, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

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

.header__logo {
  color: var(--color-blue-950);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.header__logo span {
  color: var(--color-blue-700);
  font-size: 1.18em;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.header__nav a,
.mobile-nav a {
  text-decoration: none;
}

.header__nav a:hover,
.mobile-nav a:hover {
  color: var(--color-blue-700);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--color-blue-950);
}

.mobile-nav {
  display: none;
}

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

.section--gradient {
  background:
    radial-gradient(circle at 15% 10%, rgba(19, 95, 194, 0.14), transparent 28%),
    linear-gradient(135deg, var(--color-white) 0%, var(--color-blue-50) 100%);
}

.section--soft {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-blue-50) 100%);
}

.section--curve::after {
  position: absolute;
  right: -8%;
  bottom: -120px;
  width: 52%;
  height: 260px;
  content: "";
  border-radius: 999px 0 0 999px;
  background: rgba(19, 95, 194, 0.1);
  transform: rotate(-8deg);
}

.section--curve::before {
  position: absolute;
  right: -18%;
  bottom: 12%;
  width: 62%;
  height: 150px;
  content: "";
  border-top: 3px solid rgba(19, 95, 194, 0.22);
  border-bottom: 1px solid rgba(19, 95, 194, 0.18);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.section-heading {
  max-width: 680px;
}

.section-heading--center {
  margin: 0 auto 48px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--color-blue-700);
  font-size: 14px;
  font-weight: 800;
}

.section-kicker::after {
  width: 140px;
  height: 1px;
  content: "";
  background: rgba(19, 95, 194, 0.35);
}

.section-kicker span {
  min-width: auto;
  height: auto;
  display: inline-block;
  color: var(--color-blue-700);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-blue-950);
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5.4vw, 68px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 48px);
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

p {
  margin-bottom: 18px;
  color: var(--color-muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button--sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

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

.button--primary:hover {
  background: var(--color-orange-dark);
}

.button--secondary {
  color: var(--color-blue-900);
  border-color: rgba(19, 95, 194, 0.35);
  background: var(--color-white);
}

.button--on-dark {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 116px 0 132px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.hero__lead {
  max-width: 620px;
  color: var(--color-text);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

.campaign-strip {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(120px, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(19, 95, 194, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.campaign-strip li {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(19, 95, 194, 0.18);
  padding: 12px 16px;
  color: var(--color-blue-950);
  background: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.campaign-strip li:first-child {
  position: relative;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-950));
  font-size: 18px;
}

.campaign-strip li:last-child {
  border-right: 0;
}

.hero__visual {
  position: relative;
  min-height: 540px;
}

.hero__visual::before {
  position: absolute;
  inset: 48px 0 0 56px;
  content: "";
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(19, 95, 194, 0.16), rgba(255, 255, 255, 0));
  transform: rotate(-5deg);
}

.media-placeholder,
.dashboard-mock {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px solid rgba(19, 95, 194, 0.16);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  background:
    linear-gradient(135deg, rgba(9, 36, 92, 0.04), rgba(19, 95, 194, 0.13)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 8px, rgba(255, 255, 255, 0.16) 8px 16px);
  box-shadow: var(--shadow-soft);
  text-align: center;
  overflow: hidden;
}

.media-placeholder::after,
.dashboard-mock::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  content: attr(data-image);
  color: rgba(20, 32, 51, 0.48);
  font-size: 11px;
}

.media-placeholder--photo {
  position: absolute;
  inset: 0 44px 84px 0;
  min-height: auto;
  border-radius: var(--radius-lg);
}

.media-placeholder--wide {
  min-height: 380px;
}

.chat-mock {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(82%, 400px);
  border: 1px solid rgba(19, 95, 194, 0.16);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.chat-mock__label {
  margin-bottom: 16px;
  color: var(--color-blue-900);
  font-size: 13px;
  font-weight: 800;
}

.chat-bubble {
  max-width: 88%;
  margin: 10px 0;
  border-radius: 18px;
  padding: 12px 14px;
  color: var(--color-text);
  background: var(--color-blue-50);
  font-size: 14px;
  font-weight: 700;
}

.chat-bubble--ad {
  margin-left: auto;
  color: var(--color-white);
  background: var(--color-blue-900);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 56px;
}

.problem .section-grid {
  align-items: start;
}

.section-grid--reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.chip-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.chip-panel span {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--color-blue-950);
  background: var(--color-blue-50);
  font-weight: 800;
}

.journey-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -20px;
  border: 1px solid rgba(19, 95, 194, 0.14);
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.journey-bar span {
  position: relative;
  min-height: 72px;
  display: grid;
  place-items: center;
  color: var(--color-blue-900);
  font-weight: 900;
}

.journey-bar span:not(:last-child)::after {
  position: absolute;
  right: -8px;
  content: ">";
  color: rgba(19, 95, 194, 0.55);
  font-size: 24px;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.image-card,
.offer-card,
.faq-item {
  border: 1px solid rgba(19, 95, 194, 0.13);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.image-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card {
  min-height: 132px;
  padding: 26px;
  color: var(--color-blue-950);
  font-size: 18px;
  font-weight: 800;
}

.card--issue {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 144px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 255, 0.66)),
    var(--color-white);
}

.card--issue span {
  color: var(--color-blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.card--numbered span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-blue-900);
  font-size: 14px;
}

.card--numbered p {
  margin-bottom: 0;
}

.flow-mock {
  display: grid;
  gap: 18px;
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--color-blue-950);
  box-shadow: var(--shadow-card);
}

.flow-step {
  position: relative;
  border-radius: 18px;
  padding: 18px 22px;
  color: var(--color-blue-950);
  background: var(--color-white);
  font-weight: 800;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  left: 34px;
  bottom: -18px;
  content: "";
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.45);
}

.image-card {
  overflow: hidden;
}

.image-card .media-placeholder {
  min-height: 230px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-card h3 {
  padding: 22px 24px 28px;
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.support-steps div {
  position: relative;
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19, 95, 194, 0.13);
  border-radius: 18px;
  color: var(--color-blue-950);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  text-align: center;
}

.support-steps div:not(:last-child)::after {
  position: absolute;
  right: -12px;
  z-index: 2;
  content: ">";
  color: var(--color-blue-700);
  font-size: 24px;
  font-weight: 900;
}

.dashboard-mock {
  min-height: 260px;
  border-radius: var(--radius-lg);
}

.offer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.offer-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
}

.offer-card::before {
  position: absolute;
  inset: -18px 24px auto auto;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.14);
}

.offer-card__label {
  margin: 0;
  padding: 18px 24px;
  color: var(--color-orange);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-950));
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.offer-card h3 {
  margin: 28px 28px 0;
  text-align: center;
}

.offer-card__rows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
}

.offer-card__rows div {
  display: grid;
  gap: 8px;
  min-height: 108px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, var(--color-white), var(--color-blue-50));
  text-align: center;
}

.offer-card__rows span {
  color: var(--color-muted);
  font-weight: 700;
}

.offer-card__rows strong {
  color: var(--color-blue-950);
  font-size: 20px;
  text-align: center;
}

.faq-list {
  max-width: 860px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 20px 24px;
  color: var(--color-blue-950);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-blue-900);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-answer p {
  margin-bottom: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-mark {
  background: var(--color-orange);
}

.faq-item.is-open .faq-mark::before {
  content: "-";
}

.faq-item.is-open .faq-mark {
  font-size: 0;
}

.faq-item.is-open .faq-mark::before {
  font-size: 18px;
}

.final-cta {
  color: var(--color-white);
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 130, 32, 0.22), transparent 30%),
    linear-gradient(135deg, var(--color-blue-950), var(--color-blue-900));
}

.final-cta h2,
.final-cta p,
.final-cta .section-kicker {
  color: var(--color-white);
}

.final-cta .section-kicker span {
  color: var(--color-white);
  background: transparent;
}

.final-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 40px;
  align-items: center;
}

.final-cta__box p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta__side {
  display: grid;
  gap: 18px;
}

.final-cta__visual {
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(19, 95, 194, 0.22)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 8px, rgba(255, 255, 255, 0.04) 8px 16px);
  color: rgba(255, 255, 255, 0.82);
}

.final-cta__side .button-row {
  margin-top: 0;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(219, 231, 245, 0.8);
  background: var(--color-white);
}

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

.footer__inner p,
.footer__inner small {
  margin: 0;
  color: var(--color-muted);
}

/* Detailed layout for sections 1-3 */
.hero {
  display: block;
  min-height: auto;
  padding: 86px 0 54px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(234, 244, 255, 0.66) 100%),
    radial-gradient(circle at 82% 28%, rgba(19, 95, 194, 0.16), transparent 34%);
}

.hero::after {
  right: -12%;
  bottom: -94px;
  width: 62%;
  height: 250px;
  background: rgba(19, 95, 194, 0.08);
}

.hero::before {
  right: -20%;
  bottom: 16%;
  width: 70%;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 1.07fr);
  gap: 34px;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 20px;
}

.hero__eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  border: 1px solid rgba(19, 95, 194, 0.45);
  border-radius: 999px;
  padding: 5px 18px;
  color: var(--color-blue-700);
  background: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 900;
  line-height: 1.34;
}

.hero__title-line {
  white-space: nowrap;
}

.hero__title-line span {
  color: var(--color-blue-700);
  font-size: 1.14em;
}

.text-nowrap {
  white-space: nowrap;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.9;
}

.hero__body {
  max-width: 590px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
}

.hero .button-row {
  margin-top: 34px;
}

.hero .button {
  min-width: 212px;
  min-height: 60px;
  padding-right: 28px;
}

.hero__visual {
  min-height: 584px;
  border-radius: 34px;
  isolation: isolate;
}

.hero__visual::before {
  inset: 18px -8px 28px 46px;
  z-index: 0;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(19, 95, 194, 0.16)),
    url("assets/images/hero-office-bg-v2.jpg?ver2") center / cover;
  filter: blur(0.2px);
  opacity: 0.9;
  transform: rotate(-3deg);
}

.hero__photo {
  position: absolute;
  inset: 30px 0 24px 108px;
  z-index: 1;
  width: calc(100% - 108px);
  height: calc(100% - 54px);
  border-radius: 32px 0 0 32px;
  object-fit: cover;
  box-shadow: 0 26px 54px rgba(7, 27, 63, 0.12);
}

.hero__chat-card {
  position: absolute;
  left: 8px;
  top: 86px;
  z-index: 2;
  width: min(42%, 270px);
  border: 1px solid rgba(19, 95, 194, 0.13);
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(7, 27, 63, 0.14);
  transform: rotate(-2deg);
}

.hero__chat-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.light-trails {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 3;
  width: 72%;
  height: 150px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 82% 62%, rgba(255, 255, 255, 0.86), transparent 16%),
    linear-gradient(165deg, transparent 35%, rgba(10, 98, 220, 0.82) 47%, transparent 50%),
    linear-gradient(159deg, transparent 40%, rgba(80, 197, 255, 0.88) 51%, transparent 54%),
    linear-gradient(153deg, transparent 50%, rgba(9, 36, 92, 0.6) 58%, transparent 61%);
  filter: drop-shadow(0 0 10px rgba(20, 132, 255, 0.34));
  opacity: 0.92;
}

.campaign-banner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.28fr repeat(4, minmax(120px, 1fr));
  margin: -2px auto 0;
  border: 1px solid rgba(19, 95, 194, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(7, 27, 63, 0.12);
  overflow: hidden;
}

.campaign-banner__label,
.campaign-banner div:not(.campaign-banner__label) {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  text-align: center;
}

.campaign-banner__label {
  position: relative;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-950));
  font-size: 22px;
  font-weight: 900;
}

.campaign-banner__label::after {
  position: absolute;
  top: 0;
  right: -30px;
  width: 60px;
  height: 100%;
  content: "";
  background: var(--color-white);
  transform: skewX(-18deg);
}

.campaign-banner div:not(.campaign-banner__label) {
  border-left: 1px solid rgba(19, 95, 194, 0.2);
}

.campaign-banner dt {
  margin-bottom: 4px;
  color: var(--color-blue-700);
  font-size: 12px;
  font-weight: 900;
}

.campaign-banner dd {
  margin: 0;
  color: var(--color-blue-700);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.problem {
  padding: 86px 0 78px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 248, 255, 0.86) 100%),
    url("assets/images/problem-wave-bg-v2.jpg?ver2") center / cover,
    radial-gradient(circle at 90% 26%, rgba(19, 95, 194, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
}

.problem::before {
  position: absolute;
  right: -12%;
  top: 80px;
  width: 62%;
  height: 430px;
  content: "";
  border: 1px solid rgba(19, 95, 194, 0.1);
  border-left: 0;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.problem .container {
  position: relative;
  z-index: 1;
}

.problem .section-heading {
  max-width: 820px;
}

.problem .section-heading p {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
}

.problem__chips {
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin: 34px auto 28px;
}

.problem__chips span {
  min-width: 230px;
  border: 1px solid rgba(19, 95, 194, 0.11);
  border-radius: 10px;
  padding: 15px 22px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(7, 27, 63, 0.08);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.problem__journey {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 32px auto 0;
  border: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(7, 27, 63, 0.11);
  overflow: hidden;
}

.problem__journey span {
  position: relative;
  min-height: 70px;
  display: grid;
  place-items: center;
  color: var(--color-blue-700);
  font-size: 18px;
  font-weight: 900;
}

.problem__journey span:not(:last-child)::after {
  position: absolute;
  right: -10px;
  z-index: 2;
  content: "→";
  color: rgba(19, 95, 194, 0.45);
  font-size: 28px;
}

.affinity {
  padding: 78px 0 88px;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 58%, rgba(234, 244, 255, 0.46) 100%),
    radial-gradient(circle at 82% 22%, rgba(19, 95, 194, 0.12), transparent 32%);
}

.affinity__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  align-items: end;
  gap: 30px;
}

.affinity__content {
  position: relative;
  z-index: 2;
}

.affinity__content .section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

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

.issue-card {
  position: relative;
  min-height: 146px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 12px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(7, 27, 63, 0.09);
  overflow: hidden;
}

.issue-card::after {
  position: absolute;
  right: -10px;
  bottom: -8px;
  width: 54%;
  height: 62%;
  content: "";
  background-position: center;
  background-size: cover;
  opacity: 0.24;
  filter: grayscale(0.2);
}

.issue-card--tower::after,
.issue-card--building::after {
  background-image: url("assets/images/affinity-building-tower-v2.jpg?ver2");
}

.issue-card--house::after {
  background-image: url("assets/images/affinity-building-house-v2.jpg?ver2");
}

.issue-card--office::after {
  background-image: url("assets/images/hero-office-bg-v2.jpg?ver2");
}

.issue-card--room::after {
  background-image: url("assets/images/affinity-room-v2.jpg?ver2");
}

.issue-card--city::after {
  background-image: url("assets/images/affinity-city-v2.jpg?ver2");
}

.issue-card span,
.issue-card strong {
  position: relative;
  z-index: 1;
}

.issue-card span {
  color: var(--color-blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.issue-card strong {
  color: var(--color-blue-950);
  font-size: 18px;
  line-height: 1.55;
}

.affinity__photo {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 520px;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}

.affinity__photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.affinity__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.affinity__message {
  position: relative;
  max-width: 1040px;
  margin: 34px auto 0;
  border-radius: 6px;
  padding: 22px 28px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-950));
  box-shadow: 0 18px 34px rgba(7, 27, 63, 0.18);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.affinity__message::after {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 44px;
  height: 22px;
  content: "";
  background: var(--color-blue-950);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}

.affinity__message span {
  color: #ffd84d;
}

/* Detailed layout for sections 4-6 */
.solution {
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 90% 8%, rgba(19, 95, 194, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.solution::before {
  position: absolute;
  right: -16%;
  bottom: 18%;
  width: 74%;
  height: 260px;
  content: "";
  border-top: 2px solid rgba(19, 95, 194, 0.16);
  border-bottom: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.solution::after {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -72px;
  height: 150px;
  content: "";
  background: #ffffff;
  border-radius: 50% 50% 0 0;
}

.solution .container {
  position: relative;
  z-index: 2;
}

.solution__visual-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: min(44vw, 610px);
  height: 360px;
  overflow: hidden;
  opacity: 0.72;
  border-bottom-left-radius: 120px;
}

.solution__visual-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.45) 36%, rgba(255, 255, 255, 0) 100%);
}

.solution__visual-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.solution__heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.solution__heading h2 span {
  color: var(--color-blue-700);
}

.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.solution-step {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  border: 1px solid rgba(19, 95, 194, 0.13);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(7, 27, 63, 0.11);
}

.solution-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 3;
  content: "›";
  color: var(--color-blue-700);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.step-number {
  margin: 0;
  color: var(--color-blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-style: italic;
  line-height: 1;
}

.solution-step h3 {
  min-height: 54px;
  margin: 0;
  font-size: 18px;
}

.step-media {
  border-radius: 12px;
  background: var(--color-blue-50);
  overflow: hidden;
}

.step-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
}

.step-media--chat img {
  object-position: center top;
}

.solution__message {
  max-width: 860px;
  margin: 28px auto 0;
  border: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 14px;
  padding: 20px 28px;
  color: var(--color-blue-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(7, 27, 63, 0.1);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  text-align: center;
}

.solution__message span {
  color: var(--color-blue-700);
  background: linear-gradient(transparent 62%, rgba(255, 216, 77, 0.72) 62%);
}

.comparison {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(77, 149, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 52%, #eef7ff 100%);
}

.comparison::before {
  position: absolute;
  inset: 10% -8% auto auto;
  width: 52%;
  height: 46%;
  content: "";
  border: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.comparison .container {
  position: relative;
  z-index: 1;
}

.comparison__heading {
  max-width: 940px;
}

.comparison__heading h2 span,
.comparison-summary span {
  color: var(--color-blue-700);
}

.comparison-table-wrap {
  margin-top: 34px;
  border: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(7, 27, 63, 0.1);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-blue-950);
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(19, 95, 194, 0.12);
  border-left: 1px solid rgba(19, 95, 194, 0.12);
  padding: 22px 20px;
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  border-left: 0;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  font-size: 17px;
  font-weight: 900;
  background: rgba(247, 251, 255, 0.92);
}

.comparison-table thead th:last-child,
.comparison-table tbody td:last-child {
  color: var(--color-blue-700);
  background: rgba(229, 241, 255, 0.58);
  font-weight: 800;
}

.comparison-table tbody th {
  width: 18%;
  font-weight: 900;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
}

.comparison-table tbody td {
  width: 27.3%;
  line-height: 1.65;
}

.comparison-summary {
  max-width: 980px;
  margin: 24px auto 0;
  border: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 16px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 36px rgba(7, 27, 63, 0.08);
  text-align: center;
}

.comparison-summary p {
  margin: 0;
  color: var(--color-blue-950);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.7;
}

.reason {
  position: relative;
  padding: 86px 0 76px;
  background:
    linear-gradient(105deg, #ffffff 0%, #ffffff 44%, rgba(234, 244, 255, 0.72) 100%);
}

.reason::after {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -74px;
  z-index: 1;
  height: 148px;
  content: "";
  background: #f1f8ff;
  border-radius: 50% 50% 0 0;
}

.reason .container {
  position: relative;
  z-index: 2;
}

.reason__photo {
  position: absolute;
  top: 50px;
  right: 0;
  width: min(43vw, 620px);
  height: 360px;
  overflow: hidden;
  border-bottom-left-radius: 110px;
  opacity: 0.86;
}

.reason__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.38) 42%, rgba(255, 255, 255, 0) 100%);
}

.reason__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reason__heading {
  max-width: 650px;
  margin-bottom: 40px;
}

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

.reason-card {
  min-height: 230px;
  border: 1px solid rgba(19, 95, 194, 0.13);
  border-radius: 14px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(7, 27, 63, 0.1);
}

.reason-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--color-blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-style: italic;
  line-height: 1;
}

.reason-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.reason-card p {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.scene {
  padding: 92px 0 122px;
  background:
    radial-gradient(circle at 92% 14%, rgba(19, 95, 194, 0.16), transparent 30%),
    linear-gradient(180deg, #f1f8ff 0%, #ffffff 58%, #eaf4ff 100%);
}

.scene::before {
  position: absolute;
  right: -16%;
  bottom: 10px;
  width: 78%;
  height: 210px;
  content: "";
  border-top: 2px solid rgba(19, 95, 194, 0.14);
  border-bottom: 1px solid rgba(19, 95, 194, 0.1);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.scene::after {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -78px;
  height: 145px;
  content: "";
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-950));
  border-radius: 50% 50% 0 0;
}

.scene .container {
  position: relative;
  z-index: 2;
}

.scene__heading {
  max-width: 880px;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.scene-card {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(19, 95, 194, 0.14);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 16px 34px rgba(7, 27, 63, 0.1);
  overflow: hidden;
}

.scene-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.scene-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0) 100%);
}

.scene-card div {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 1;
  max-width: 78%;
}

.scene-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-style: italic;
  line-height: 1;
}

.scene-card h3 {
  margin: 0;
  color: var(--color-blue-900);
  font-size: 21px;
  font-weight: 900;
}

/* Detailed layout for sections 7-10 */
.support {
  padding: 86px 0 74px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(234, 244, 255, 0.68) 100%),
    radial-gradient(circle at 86% 8%, rgba(19, 95, 194, 0.14), transparent 34%);
}

.support::after {
  position: absolute;
  left: -9%;
  right: -9%;
  bottom: -74px;
  height: 138px;
  content: "";
  background: #f2f8ff;
  border-radius: 50% 50% 0 0;
}

.support__inner {
  position: relative;
  z-index: 1;
}

.support__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 44px;
}

.support__intro .section-heading {
  max-width: 680px;
}

.support__media {
  min-height: 340px;
  margin: 0;
  border-radius: 0 0 0 86px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(7, 27, 63, 0.11);
}

.support__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
}

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

.support-step {
  position: relative;
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(19, 95, 194, 0.13);
  border-radius: 14px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(7, 27, 63, 0.09);
  text-align: center;
}

.support-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 3;
  content: ">";
  color: var(--color-blue-700);
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
}

.support-step span {
  color: var(--color-blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-style: italic;
  line-height: 1;
}

.support-step h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.offer {
  padding: 82px 0 86px;
  background:
    linear-gradient(90deg, rgba(242, 248, 255, 0.92), rgba(255, 255, 255, 0.82)),
    url("assets/images/soft-blue-bg.jpg?ver2") center / cover;
}

.offer::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 244, 255, 0.66) 100%);
}

.offer__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: 58px;
}

.offer__heading {
  max-width: 520px;
}

.offer-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 58px rgba(7, 27, 63, 0.16);
}

.offer-card::before {
  display: none;
}

.offer-card__label {
  padding: 18px 24px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(19, 95, 194, 0.88), rgba(7, 27, 63, 0.98)),
    linear-gradient(155deg, transparent 42%, rgba(48, 163, 255, 0.42) 44%, transparent 48%);
  font-size: 24px;
  font-weight: 900;
}

.offer-card__rows {
  padding: 24px 28px 14px;
}

.offer-card__rows div {
  min-height: 102px;
  background: linear-gradient(180deg, var(--color-white), #f7fbff);
}

.offer-card__rows span {
  color: var(--color-blue-900);
  font-size: 13px;
  font-weight: 900;
}

.offer-card__rows strong {
  color: var(--color-blue-700);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.2;
}

.offer-card__button {
  width: calc(100% - 56px);
  margin: 0 28px 16px;
  min-height: 60px;
}

.offer-card__note {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--color-muted);
  font-size: 12px;
  text-align: center;
}

.faq {
  padding: 86px 0 76px;
  background: linear-gradient(180deg, var(--color-white) 0%, #f7fbff 100%);
}

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

.faq-list {
  max-width: none;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 27, 63, 0.08);
}

.faq-question {
  min-height: 64px;
  padding: 16px 22px;
}

.faq-question span:first-child {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.faq-question b {
  color: var(--color-blue-700);
  font-size: 22px;
}

.faq-mark {
  color: var(--color-blue-700);
  background: transparent;
  font-size: 24px;
}

.faq-answer {
  padding: 0 22px 20px 68px;
}

.final-cta {
  /*min-height: 430px;*/
  display: flex;
  align-items: center;
  padding: 92px 0 86px;
  background:
    linear-gradient(90deg, rgba(7, 27, 63, 0.96) 0%, rgba(9, 36, 92, 0.9) 44%, rgba(9, 36, 92, 0.42) 100%),
    url("assets/images/final-city-night.jpg?ver2") center right / cover;
}

.final-cta::before {
  /*content: "";*/
  position: absolute;
  inset: auto -8% -70px -8%;
  height: 130px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50% 50% 0 0;
}

.final-cta::after {
  position: absolute;
  right: -8%;
  bottom: 24px;
  width: 62%;
  height: 120px;
  content: "";
  border-top: 2px solid rgba(82, 198, 255, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.final-cta__box {
  position: relative;
  z-index: 1;
  display: block;
}

.final-cta__content {
  max-width: 790px;
}

.final-cta h2 {
  max-width: 780px;
  font-size: clamp(34px, 4.4vw, 54px);
}

.final-cta__note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.final-cta .button-row {
  gap: 24px;
}

.final-cta .button {
  min-width: 260px;
}

.final-cta .button--on-dark {
  color: var(--color-blue-900);
  border-color: var(--color-white);
  background: var(--color-white);
}

.site-footer {
  padding: 34px 0 40px;
  background: var(--color-white);
}

.footer__inner {
  align-items: flex-start;
}

.footer__company {
  margin-bottom: 6px;
  color: var(--color-blue-950);
  font-weight: 900;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.footer__links a {
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--color-blue-700);
}

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

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    border-top: 1px solid var(--color-line);
    padding: 12px 24px 20px;
    background: var(--color-white);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .section-grid,
  .section-grid--reverse,
  .split-card,
  .offer__grid,
  .final-cta__box {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 460px;
  }

  .hero__photo {
    inset: 24px 0 20px 96px;
    width: calc(100% - 96px);
  }

  .hero__chat-card {
    width: min(38%, 230px);
    top: 68px;
  }

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

  .campaign-banner__label {
    grid-column: 1 / -1;
  }

  .campaign-banner__label::after {
    display: none;
  }

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

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

  .affinity__photo {
    min-height: 360px;
    border-radius: 24px;
  }

  .solution__visual-bg,
  .reason__photo {
    width: 48vw;
    opacity: 0.42;
  }

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

  .solution-step:nth-child(2)::after {
    display: none;
  }

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

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

  .campaign-strip li:first-child {
    grid-column: 1 / -1;
  }

  .journey-bar {
    margin-top: 0;
  }

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

  .support-steps div:nth-child(3)::after {
    display: none;
  }

  .final-cta__box .button-row {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 58px 0 64px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .header__inner {
    min-height: 68px;
  }

  .header__logo {
    max-width: 190px;
    white-space: normal;
    line-height: 1.35;
  }

  .header__actions .button {
    display: none;
  }

  .button-row,
  .campaign-strip,
  .journey-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(33px, 9.6vw, 44px);
    line-height: 1.26;
  }

  .hero__title-line span {
    font-size: 1.08em;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .hero__body {
    font-size: 14px;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__visual::before {
    inset: 12px 0 34px 0;
  }

  .hero__photo {
    inset: 20px 0 54px 58px;
    width: calc(100% - 58px);
    height: calc(100% - 74px);
    border-radius: 24px 0 0 24px;
  }

  .hero__chat-card {
    left: 0;
    top: 72px;
    width: min(48%, 176px);
    border-radius: 18px;
    padding: 7px;
  }

  .light-trails {
    right: -12px;
    bottom: 42px;
    width: 82%;
    height: 110px;
  }

  .campaign-banner {
    grid-template-columns: 1fr;
    margin-top: 8px;
    border-radius: 14px;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 66px;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-top: 1px solid rgba(19, 95, 194, 0.16);
    border-left: 0;
  }

  .campaign-banner dd {
    font-size: 23px;
  }

  .problem {
    padding: 64px 0;
  }

  .problem__chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .problem__chips span {
    min-width: 0;
    width: 100%;
  }

  .problem__journey {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .problem__journey span {
    min-height: 58px;
    border-top: 1px solid rgba(19, 95, 194, 0.12);
    font-size: 16px;
  }

  .problem__journey span:first-child {
    border-top: 0;
  }

  .problem__journey span::after {
    display: none;
  }

  .affinity {
    padding: 64px 0 76px;
  }

  .issue-grid {
    /*grid-template-columns: 1fr;*/
  }

  .issue-card {
    min-height: 124px;
  }

  .affinity__photo {
    min-height: 300px;
  }

  .affinity__message {
    padding: 18px;
    font-size: 21px;
    text-align: left;
  }

  .solution,
  .reason,
  .scene {
    padding-top: 64px;
  }

  .solution__visual-bg,
  .reason__photo {
    position: relative;
    width: 100%;
    height: 230px;
    margin-bottom: -38px;
    border-radius: 0 0 34px 34px;
    opacity: 0.72;
  }

  .solution__visual-bg::after,
  .reason__photo::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 100%);
  }

  .solution-flow,
  .reason-grid,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .solution-step {
    min-height: auto;
  }

  .solution-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -28px;
    transform: translateX(50%) rotate(90deg);
    font-size: 44px;
  }

  .solution-step:nth-child(2)::after {
    display: block;
  }

  .step-media img {
    min-height: 210px;
  }

  .solution__message {
    padding: 18px;
    font-size: 20px;
    text-align: left;
  }

  .reason-card {
    min-height: auto;
  }

  .scene-card,
  .scene-card img {
    min-height: 190px;
  }

  .scene-card div {
    max-width: 88%;
  }

  .media-placeholder--photo {
    inset: 0 0 96px 0;
  }

  .chat-mock {
    width: 94%;
  }

  .card-grid--compact,
  .card-grid--four,
  .card-grid--three,
  .support-steps {
    grid-template-columns: 1fr;
  }

  .section-kicker::after,
  .journey-bar span::after,
  .support-steps div::after {
    display: none;
  }

  .media-placeholder--wide {
    min-height: 260px;
  }

  .offer-card__rows {
    grid-template-columns: 1fr;
  }

  .offer-card__rows strong {
    text-align: center;
  }

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

/* Hero reference adjustment / 参考FVに合わせた最終調整 */
.site-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.97);
}

.site-header .container,
.hero > .container {
  width: min(100% - 56px, 1280px);
}

.header__inner {
  min-height: 86px;
}

.header__logo {
  color: var(--color-blue-950);
  font-size: 22px;
  font-weight: 900;
}

.header__logo span {
  color: #064bd6;
}

.header__nav {
  gap: 32px;
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
}

.header__actions {
  gap: 12px;
}

.header__actions .button {
  min-width: 158px;
  min-height: 52px;
  padding: 12px 24px;
  font-size: 15px;
}

.header__request {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.98);
}

.hero {
  isolation: isolate;
  padding-top: clamp(72px, 6.4vw, 96px);
  padding-bottom: 48px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 44%, rgba(232, 243, 255, 0.66) 100%),
    url("assets/images/hero-office-bg-v3.jpg?ver2") right center / auto 100% no-repeat;
}

.hero::before {
  position: absolute;
  inset: 86px 28% 78px auto;
  z-index: -1;
  width: min(330px, 24vw);
  height: auto;
  content: "";
  background: linear-gradient(110deg, transparent 0 30%, rgba(232, 243, 255, 0.9) 31% 60%, transparent 61% 100%);
  opacity: 0.92;
  transform: skewX(-14deg);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -88px;
  z-index: -1;
  width: 64%;
  height: 190px;
  content: "";
  border-radius: 50% 0 0 0;
  background: linear-gradient(180deg, rgba(232, 243, 255, 0.68), rgba(255, 255, 255, 0));
  transform: rotate(-4deg);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(530px, 1.04fr);
  gap: 34px;
  align-items: center;
}

.hero__content {
  padding-top: 12px;
}

.hero__eyebrow {
  margin-bottom: 26px;
  border: 2px solid rgba(15, 99, 214, 0.86);
  padding: 5px 24px;
  color: #064bd6;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #071226;
  font-size: clamp(48px, 5.75vw, 78px);
  line-height: 1.33;
}

.hero__title-line span {
  color: #064bd6;
  font-size: 1.18em;
}

.hero__lead {
  display: none;
}

.hero__body {
  max-width: 660px;
  color: #101828;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.85;
}

.hero .button-row {
  gap: 24px;
  margin-top: 40px;
}

.hero .button {
  min-width: 250px;
  min-height: 66px;
  padding-inline: 34px;
  font-size: 18px;
}

.hero__visual {
  min-height: 606px;
  margin-right: -42px;
  border-radius: 0;
}

.hero__visual::before {
  inset: 0 0 0 58px;
  z-index: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 38%, rgba(255, 255, 255, 0) 100%),
    url("assets/images/hero-office-bg-v3.jpg?ver2") center / cover no-repeat;
  filter: none;
  opacity: 1;
  transform: none;
}

.hero__photo {
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(47%, 360px);
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center right;
  box-shadow: none;
}

.hero__chat-card {
  left: clamp(18px, 7vw, 112px);
  top: 112px;
  z-index: 2;
  width: min(47%, 360px);
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  box-shadow: 0 26px 62px rgba(6, 26, 70, 0.18);
  transform: none;
}

.hero__chat-card img {
  border-radius: 24px;
}

.light-trails {
  right: -34px;
  bottom: 22px;
  z-index: 3;
  width: 90%;
  height: 214px;
  background: url("assets/images/hero-light-bg-v3.jpg?ver2") center / cover no-repeat;
  filter: none;
  mix-blend-mode: screen;
  opacity: 0.82;
}

.campaign-banner {
  width: min(100%, 1280px);
  grid-template-columns: 1.34fr repeat(4, minmax(130px, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 2px solid rgba(15, 99, 214, 0.48);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(6, 26, 70, 0.14);
  overflow: hidden;
}

.campaign-banner__label,
.campaign-banner div:not(.campaign-banner__label) {
  min-height: 92px;
  border-radius: 0;
  box-shadow: none;
}

.campaign-banner__label {
  z-index: 1;
  justify-items: start;
  padding-left: 40px;
  background: linear-gradient(135deg, #064bd6 0%, #062f83 100%);
  font-size: 24px;
  text-align: left;
}

.campaign-banner__label::after {
  display: block;
  right: -34px;
  width: 72px;
  background: var(--color-white);
  transform: skewX(-18deg);
}

.campaign-banner div:not(.campaign-banner__label) {
  border: 0;
  border-left: 1px solid rgba(15, 99, 214, 0.32);
  background: rgba(255, 255, 255, 0.98);
}

.campaign-banner dt {
  color: #064bd6;
  font-size: 13px;
  font-weight: 900;
}

.campaign-banner dd {
  color: #064bd6;
  font-size: 34px;
  letter-spacing: 0;
}

.footer__inner {
  justify-content: flex-start;
}

@media (max-width: 1120px) {
  .header__request {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 60px);
  }

  .hero .button {
    min-width: 216px;
  }
}

@media (max-width: 980px) {
  .site-header .container,
  .hero > .container {
    width: min(100% - 40px, 1280px);
  }

  .header__inner {
    min-height: 76px;
    gap: 12px;
  }

  .header__logo {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
    word-break: keep-all;
  }

  .hero {
    padding-top: 56px;
  }

  .hero::before {
    inset: 92px 4% auto auto;
    height: 420px;
    width: 190px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__lead {
    display: block;
    max-width: 680px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 800;
  }

  .hero__visual {
    min-height: 540px;
    margin-right: 0;
  }

  .hero__visual::before {
    inset: 0;
  }

  .hero__photo {
    width: min(48%, 330px);
  }

  .hero__chat-card {
    left: 28px;
    top: 82px;
    width: min(45%, 300px);
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
    justify-items: center;
    padding-left: 18px;
    text-align: center;
  }

  .campaign-banner__label::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .hero > .container {
    width: min(100% - 28px, 1280px);
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hero::after {
    bottom: -70px;
    width: 110%;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    padding: 4px 18px;
    font-size: 13px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.2vw, 45px);
    line-height: 1.34;
  }

  .hero__title-line {
    white-space: normal;
  }

  .hero__body {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero .button-row {
    gap: 12px;
    margin-top: 28px;
  }

  .hero .button {
    min-width: 0;
    min-height: 54px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .hero__visual {
    min-height: 438px;
  }

  .hero__photo {
    width: min(58%, 276px);
    height: calc(100% - 6px);
  }

  .hero__chat-card {
    left: 0;
    top: 72px;
    width: min(58%, 244px);
    border-radius: 18px;
  }

  .hero__chat-card img {
    border-radius: 18px;
  }

  .light-trails {
    right: -26px;
    bottom: 34px;
    width: 104%;
    height: 132px;
  }

  .campaign-banner {
    grid-template-columns: 1fr;
    margin-top: 18px;
    border-radius: 14px;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 66px;
  }

  .campaign-banner__label {
    font-size: 17px;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-left: 0;
    border-top: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner dt {
    font-size: 12px;
  }

  .campaign-banner dd {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .header__logo {
    font-size: 16px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__photo {
    width: 62%;
  }

  .hero__chat-card {
    top: 68px;
    width: 58%;
  }
}

/* Mobile FV hard compact / スマホFV最終圧縮 */
@media (max-width: 720px) {
  .header__inner {
    min-height: 64px;
    gap: 12px;
  }

  .header__logo {
    flex-shrink: 0;
    line-height: 1.1;
    white-space: nowrap;
    word-break: keep-all;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero__grid {
    gap: 22px;
  }

  .hero__eyebrow {
    margin-bottom: 12px;
    padding: 3px 14px;
    font-size: 12px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(27px, 7.4vw, 31px);
    line-height: 1.25;
  }

  .hero__lead {
    display: none;
  }

  .hero__body {
    font-size: 13px;
    line-height: 1.65;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero .button {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero__visual {
    min-height: 286px;
  }

  .hero__photo {
    width: min(56%, 218px);
    height: 100%;
  }

  .hero__chat-card {
    top: 42px;
    width: min(52%, 190px);
  }

  .light-trails {
    bottom: 12px;
    height: 92px;
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 54px;
    padding: 9px 10px;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-left: 0;
    border-top: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner div:nth-child(3),
  .campaign-banner div:nth-child(5) {
    border-left: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner__label {
    font-size: 15px;
  }

  .campaign-banner dt {
    font-size: 11px;
  }

  .campaign-banner dd {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .hero .button-row {
    grid-template-columns: 1fr;
  }
}

/* Latest overrides / requested final visual adjustments */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(7, 27, 63, 0.08);
}

.site-header .container,
.hero .container {
  width: min(100% - 56px, 1540px);
}

.header__logo {
  color: var(--color-blue-950);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 900;
}

.header__logo span {
  color: #084fc3;
}

.header__nav {
  gap: clamp(18px, 2vw, 38px);
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
}

.header__actions {
  gap: 16px;
}

.header-phone {
  color: #074fc5;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.header-phone span {
  display: block;
  font-size: clamp(18px, 1.7vw, 26px);
}

.header-phone small {
  display: block;
  color: rgba(7, 27, 63, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.header__actions .button {
  min-height: 50px;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 900;
}

.section-kicker {
  width: fit-content;
  justify-content: center !important;
  gap: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  color: var(--color-blue-700) !important;
  text-align: center !important;
}

.section-kicker::before,
.section-kicker::after {
  display: none !important;
  content: none !important;
}

.final-cta .section-kicker {
  color: #fff !important;
}

.hero {
  position: relative;
  min-height: auto !important;
  padding: clamp(42px, 4.2vw, 70px) 0 32px !important;
  background: url("assets/images/fv-blue-split-bg.png?ver2") center / cover no-repeat !important;
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero__visual::before {
  display: none !important;
}

.hero__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr) !important;
  align-items: center !important;
  gap: clamp(28px, 4vw, 70px) !important;
}

.hero__content {
  max-width: 700px !important;
  text-align: left !important;
}

.hero__eyebrow {
  width: fit-content !important;
  margin: 0 0 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 9px 24px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0a6eea 0%, #003d9c 100%) !important;
  box-shadow: 0 14px 28px rgba(8, 79, 195, 0.18);
  font-size: clamp(15px, 1.5vw, 22px) !important;
  font-weight: 900 !important;
}

.hero h1 {
  margin: 0 0 22px !important;
  color: #080f1f !important;
  font-size: clamp(46px, 5.4vw, 86px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.hero__title-blue {
  color: #064fc9;
}

.hero__lead {
  display: block !important;
  margin: 0 0 18px !important;
  color: #0756d8 !important;
  font-size: clamp(20px, 2.1vw, 33px) !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
}

.hero__body {
  max-width: 650px !important;
  margin: 0 !important;
  color: var(--color-blue-950) !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  font-weight: 800 !important;
  line-height: 1.9 !important;
}

.hero .button-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 22px !important;
  margin-top: 28px !important;
}

.hero .button {
  min-width: 260px !important;
  min-height: 70px !important;
  border-radius: 7px !important;
  font-size: clamp(16px, 1.3vw, 22px) !important;
  font-weight: 900 !important;
}

.hero__phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.hero__phone-row span {
  color: #064fc9;
  font-size: clamp(24px, 2vw, 34px);
}

.hero__phone-row small {
  font-size: 12px;
}

.hero__visual {
  min-height: clamp(440px, 45vw, 670px) !important;
  display: grid !important;
  place-items: center !important;
  background: none !important;
}

.hero__photo,
.hero__chat-card,
.light-trails {
  display: none !important;
}

.hero__tablet {
  width: min(100%, 760px);
  display: block;
  filter: drop-shadow(0 30px 42px rgba(7, 27, 63, 0.24));
}

.campaign-banner {
  position: relative;
  z-index: 2;
  max-width: 1520px;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(170px, 1fr)) !important;
  gap: 0;
  margin: 24px auto 0 !important;
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(135deg, #075ce0 0%, #003a9d 100%) !important;
  box-shadow: 0 22px 44px rgba(7, 27, 63, 0.18);
  overflow: hidden;
}

.campaign-banner__label,
.campaign-banner div:not(.campaign-banner__label) {
  min-height: 104px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  padding: 16px 20px !important;
  text-align: center;
}

.campaign-banner__label {
  color: #fff !important;
  background: transparent !important;
  font-size: clamp(20px, 1.8vw, 30px) !important;
  font-weight: 900;
}

.campaign-banner__label::after {
  display: none !important;
}

.campaign-banner div:not(.campaign-banner__label) {
  border-left: 1px solid rgba(19, 95, 194, 0.2) !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.campaign-banner dt {
  color: var(--color-blue-950) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.campaign-banner dd {
  color: #064fc9 !important;
  font-size: clamp(28px, 2.3vw, 42px) !important;
  font-weight: 900 !important;
}

.problem .section-kicker {
  color: var(--color-blue-700) !important;
}

.problem-ai-badge {
  display: none !important;
}

.issue-card {
  min-height: 158px !important;
  align-content: center !important;
  isolation: isolate;
}

.issue-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.issue-card::after {
  inset: 0 !important;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  opacity: 0.28 !important;
  filter: saturate(0.95);
}

.issue-card strong {
  z-index: 2;
}

.affinity__message {
  max-width: 1160px !important;
  white-space: nowrap;
  font-size: clamp(20px, 2vw, 30px) !important;
}

.about-mock--image {
  max-width: 1060px !important;
  padding: 24px clamp(14px, 2vw, 28px) 18px !important;
}

.about-mock__image {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(7, 27, 63, 0.1);
}

@media (max-width: 1280px) {
  .header-phone {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr) !important;
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 68px) !important;
  }
}

@media (max-width: 980px) {
  .site-header .container,
  .hero .container {
    width: min(100% - 36px, 760px);
  }

  .hero {
    padding: 34px 0 28px !important;
    background-position: 60% center !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .hero__content {
    max-width: none !important;
  }

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

  .hero__lead {
    display: block !important;
    font-size: clamp(17px, 4.4vw, 24px) !important;
  }

  .hero__visual {
    min-height: auto !important;
  }

  .hero__tablet {
    width: min(100%, 620px);
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 8px;
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-top: 1px solid rgba(19, 95, 194, 0.14) !important;
  }

  .affinity__message {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .hero .container {
    width: min(100% - 28px, 520px);
  }

  .header__actions .header__request {
    display: none;
  }

  .header__actions .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 26px !important;
  }

  .hero__eyebrow {
    margin-bottom: 16px !important;
    padding: 7px 16px !important;
    font-size: 13px !important;
  }

  .hero h1 {
    margin-bottom: 14px !important;
    font-size: clamp(31px, 8.8vw, 42px) !important;
    line-height: 1.2 !important;
  }

  .hero__lead {
    display: block !important;
    margin-bottom: 12px !important;
    font-size: clamp(17px, 4.5vw, 20px) !important;
  }

  .hero__body {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .hero .button-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .hero .button {
    min-width: 0 !important;
    min-height: 50px !important;
    padding-inline: 10px !important;
    font-size: 13px !important;
  }

  .hero__phone-row {
    gap: 5px;
    margin-top: 14px;
    font-size: 12px;
  }

  .hero__phone-row span {
    font-size: 22px;
  }

  .hero__phone-row small {
    display: block;
    width: 100%;
  }

  .hero__tablet {
    width: auto;
    max-width: 100%;
    max-height: 330px;
  }

  .campaign-banner {
    margin-top: 14px !important;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 60px !important;
    padding: 10px 8px !important;
  }

  .campaign-banner__label {
    font-size: 17px !important;
  }

  .campaign-banner dt {
    font-size: 11px !important;
  }

  .campaign-banner dd {
    font-size: 20px !important;
  }

  .about-mock--image {
    padding: 16px 12px 12px !important;
  }
}

@media (max-width: 380px) {
  .hero .button-row {
    grid-template-columns: 1fr !important;
  }
}

/* Final polish: latest assets and heading balance */
.hero__tablet,
.about-mock__image {
  object-fit: contain !important;
}

.hero__visual--tablet {
  align-items: center;
}

.hero__tablet {
  width: min(100%, 780px) !important;
  max-height: 560px !important;
  filter: drop-shadow(0 24px 44px rgba(5, 30, 80, 0.22));
}

.about-mock--image {
  overflow: hidden;
}

.about-mock__image {
  width: min(100%, 980px) !important;
  max-height: 620px !important;
}

.comparison-chart {
  margin: clamp(28px, 4vw, 48px) auto 0;
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid rgba(19, 95, 194, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 52px rgba(7, 27, 63, 0.1);
}

.comparison-chart img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-heading h2,
.hero h1,
.final-cta h2 {
  text-wrap: balance;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.section-heading p,
.hero__body,
.hero__lead,
.final-cta p {
  text-wrap: pretty;
}

.section-heading--center {
  margin-inline: auto;
}

.problem__heading,
.whynow__heading,
.affinity__heading,
.solution-renewed__heading,
.about__heading,
.comparison__heading,
.scene__heading,
.support-renewed__heading,
.faq__heading,
.final-cta__content {
  text-align: center;
}

@media (min-width: 961px) {
  .whynow__heading h2,
  .solution-renewed__heading h2,
  .support-renewed__heading h2,
  .final-cta h2 {
    max-width: 1120px;
    margin-inline: auto;
  }

  .comparison__heading h2 {
    max-width: 1040px;
    margin-inline: auto;
  }

  .scene__heading h2,
  .affinity__heading h2,
  .problem__heading h2 {
    max-width: 980px;
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .hero__tablet {
    max-height: 420px !important;
  }

  .about-mock__image {
    max-height: 460px !important;
  }

  .comparison-chart {
    overflow-x: auto;
    padding: 8px;
  }

  .comparison-chart img {
    min-width: 760px;
  }
}

@media (max-width: 720px) {
  .section-heading h2 br,
  .comparison__heading p br,
  .about__heading p br {
    display: none;
  }

  .section-heading h2 {
    font-size: clamp(27px, 7.4vw, 38px) !important;
    line-height: 1.42 !important;
  }

  .hero h1 {
    font-size: clamp(30px, 8.4vw, 42px) !important;
    line-height: 1.22 !important;
  }

  .hero__tablet {
    max-height: 300px !important;
  }

  .about-mock__image {
    max-height: 340px !important;
  }

  .comparison-chart img {
    min-width: 680px;
  }
}

/* FV hotfix: force the latest laptop visual to win the cascade */
.section-kicker {
  display: none !important;
}

.hero {
  min-height: calc(100vh - 82px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(80px, 8vw, 130px) 0 clamp(34px, 5vw, 64px) !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0.05) 100%),
    url("assets/images/fv-background-laptop.png?ver2") center right / cover no-repeat !important;
}

.hero::before,
.hero::after,
.hero__visual,
.hero__visual::before,
.hero__tablet {
  display: none !important;
}

.hero__grid {
  min-height: auto !important;
  grid-template-columns: minmax(0, 760px) !important;
}

.hero__content {
  max-width: 760px !important;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 80px) !important;
  line-height: 1.15 !important;
}

.campaign-banner {
  margin-top: clamp(34px, 5vw, 70px) !important;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto !important;
    padding-top: 62px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(255, 255, 255, 0.26) 100%),
      url("assets/images/fv-background-laptop.png?ver2") center bottom / cover no-repeat !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final visible-page tweaks / compact FV and heading alignment */
.hero {
  min-height: 620px !important;
  padding: 54px 0 28px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.48) 52%, rgba(255, 255, 255, 0.04) 72%, rgba(255, 255, 255, 0) 100%),
    url("assets/images/fv-background-laptop.png?ver2") 100% center / cover no-repeat !important;
}

.hero__grid {
  grid-template-columns: minmax(0, 620px) !important;
  align-items: center !important;
}

.hero__content {
  max-width: 620px !important;
}

.hero__eyebrow {
  margin-bottom: 18px !important;
  padding: 8px 18px !important;
  font-size: 15px !important;
}

.hero h1 {
  max-width: 620px !important;
  font-size: clamp(40px, 4.2vw, 64px) !important;
  line-height: 1.16 !important;
}

.hero__lead {
  margin-top: 22px !important;
  font-size: clamp(18px, 1.7vw, 26px) !important;
  line-height: 1.55 !important;
}

.hero__body {
  max-width: 590px !important;
  margin-top: 18px !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

.hero .button-row {
  margin-top: 24px !important;
  gap: 18px !important;
}

.hero .button {
  min-height: 54px !important;
  padding: 0 34px !important;
  font-size: 16px !important;
}

.hero__phone-row {
  margin-top: 16px !important;
  font-size: 14px !important;
}

.hero__phone-row span {
  font-size: 24px !important;
}

.campaign-banner {
  max-width: 1120px !important;
  margin-top: 22px !important;
}

.campaign-banner > div {
  min-height: 74px !important;
  padding: 16px 24px !important;
}

.campaign-banner__label {
  font-size: 22px !important;
}

.campaign-banner dd {
  font-size: clamp(22px, 2.1vw, 34px) !important;
}

.affinity__heading {
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.affinity__heading h2 {
  text-align: center !important;
}

.solution-renewed__heading h2 {
  font-size: clamp(34px, 3.3vw, 52px) !important;
  line-height: 1.35 !important;
  max-width: 1180px !important;
}

.solution-renewed__heading h2 br {
  display: block !important;
}

.solution-renewed__heading .heading-line {
  display: inline-block;
}

.solution-renewed__heading .heading-line--wide {
  white-space: nowrap;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto !important;
    padding: 42px 0 26px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.36) 100%),
      url("assets/images/fv-background-laptop.png?ver2") 76% bottom / cover no-repeat !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
  }

  .hero__content {
    max-width: 560px !important;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 46px) !important;
  }

  .hero__body {
    font-size: 15px !important;
  }

  .campaign-banner {
    max-width: 94% !important;
  }

  .solution-renewed__heading .heading-line--wide {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 34px !important;
  }

  .hero .button-row {
    gap: 12px !important;
  }

  .hero .button {
    width: 100% !important;
    min-height: 50px !important;
  }

  .solution-renewed__heading h2 br {
    display: block !important;
  }
}

/* Final requested tweaks / subcopy color and Solution alignment */
.section-heading p,
.section-heading > p,
.hero__lead,
.hero__body,
.problem .section-heading p,
.whynow__heading p,
.whynow__message,
.affinity__heading p,
.affinity__message,
.solution-renewed__heading p,
.about__heading p,
.about-mock__note,
.comparison__heading p,
.comparison-summary p,
.scene__heading p,
.support-renewed__heading p,
.faq .section-heading p {
  color: var(--color-text) !important;
}

.solution-renewed__heading,
.solution-renewed__heading h2 {
  text-align: center !important;
}

.solution-renewed__heading h2 {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.solution-renewed__heading .heading-line {
  display: block !important;
  width: 100%;
  text-align: center !important;
}

.solution-renewed__heading .heading-line--wide {
  white-space: nowrap;
}

.solution-renewed__cards {
  align-items: stretch !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.solution-renewed-card {
  display: grid !important;
  grid-template-rows: auto 190px 1fr !important;
  gap: 10px !important;
  height: 100% !important;
  align-content: start !important;
  padding-top: 22px !important;
}

.solution-renewed-card__head {
  min-height: 0 !important;
  margin-bottom: 2px !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.solution-renewed-card__head span {
  flex: 0 0 auto;
  line-height: 1 !important;
}

.solution-renewed-card__head h3 {
  margin: 0 !important;
  line-height: 1.35 !important;
  min-height: 0 !important;
}

.solution-renewed-card img {
  width: 100% !important;
  /*height: 190px !important;*/
  aspect-ratio: auto !important;
  object-fit: contain !important;
  align-self: start !important;
  margin-top: 0 !important;
}

.solution-renewed-card p {
  align-self: start !important;
  margin-top: 12px !important;
}

@media (max-width: 1120px) {
  .solution-renewed__heading .heading-line--wide {
    white-space: normal;
  }

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

@media (max-width: 720px) {
  .solution-renewed__cards {
    grid-template-columns: 1fr !important;
  }

  .solution-renewed-card {
    grid-template-rows: auto auto auto !important;
  }

  .solution-renewed-card__head {
    min-height: 0 !important;
  }

  .solution-renewed-card img {
    height: auto !important;
    /*max-height: 240px !important;*/
  }
}

/* Final requested adjustments: section gap, campaign band, support image */
.affinity {
  padding-bottom: 30px !important;
}

.affinity__message {
  margin-bottom: 0 !important;
}

.solution--renewed {
  padding-top: 34px !important;
}

.campaign-strip {
  padding: 22px 20px 34px !important;
  background: #fff !important;
}

.campaign-strip .container {
  width: min(100% - 40px, 980px) !important;
  max-width: 980px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.campaign-strip img {
  width: auto !important;
  height: clamp(118px, 8.5vw, 158px) !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 34px rgba(0, 52, 135, 0.18) !important;
}

.support-flow-image {
  max-width: 900px;
  margin: 36px auto 0;
}

.support-flow-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.support-orbit {
  display: none !important;
}

@media (max-width: 960px) {
  .affinity {
    padding-bottom: 24px !important;
  }

  .solution--renewed {
    padding-top: 30px !important;
  }

  .campaign-strip {
    padding: 16px 16px 28px !important;
  }

  .campaign-strip .container {
    width: min(100% - 24px, 760px) !important;
  }

  .campaign-strip img {
    height: clamp(82px, 17vw, 118px) !important;
  }

  .support-flow-image {
    /*max-width: 94%;*/
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .campaign-strip img {
    width: 100% !important;
    height: auto !important;
  }
}

/* Final requested fixes: campaign band sizing and Solution card spacing */
.campaign-strip {
  display: block !important;
  width: 100% !important;
  padding: 28px 20px 44px !important;
  margin: 0 !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.campaign-strip .container {
  display: block !important;
  width: min(1480px, calc(100vw - 48px)) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

.campaign-strip img {
  display: block !important;
  width: 100% !important;
  max-width: 1480px !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 38px rgba(12, 52, 126, .18) !important;
}

.solution-renewed-card {
  grid-template-rows: auto auto 1fr !important;
  align-content: start !important;
  row-gap: 10px !important;
  padding-top: 22px !important;
}

.solution-renewed-card__head {
  min-height: 0 !important;
  margin-bottom: 2px !important;
  align-items: center !important;
}

.solution-renewed-card img {
  align-self: start !important;
  /*height: 190px !important;*/
  margin-top: 0 !important;
  object-fit: contain !important;
}

.solution-renewed-card p {
  margin-top: 12px !important;
}

@media (max-width: 960px) {
  .campaign-strip {
    padding: 18px 14px 30px !important;
  }

  .campaign-strip .container {
    width: 100% !important;
  }

  .campaign-strip img {
    border-radius: 12px !important;
  }

  .solution-renewed-card img {
    height: auto !important;
    /*max-height: 220px !important;*/
  }
}

/* Latest requested header, campaign strip, affinity band, and solution card fixes */
.site-header .container.header__inner {
  max-width: 1480px !important;
}

.site-header .header__inner {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  min-height: 64px !important;
}

.site-header .header__logo {
  flex: 0 1 auto !important;
  max-width: 360px !important;
  gap: 8px !important;
  color: #111827 !important;
  font-size: clamp(16px, 1.2vw, 20px) !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.site-header .header__logo-mark {
  width: 32px !important;
  height: auto !important;
  flex: 0 0 auto !important;
}

.site-header .header__logo-text,
.site-header .header__logo span {
  color: #111827 !important;
  font-size: clamp(16px, 1.2vw, 20px) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.site-header .header__nav {
  display: flex !important;
  flex: 1 1 auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
  min-width: 0 !important;
}

.site-header .header__nav a {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  line-height: 1 !important;
  writing-mode: horizontal-tb !important;
  word-break: keep-all !important;
  white-space: nowrap !important;
}

.site-header .header__actions {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 14px !important;
}

.campaign-strip {
  display: block !important;
  width: 100% !important;
  padding: 28px 20px 44px !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.campaign-strip .container {
  display: block !important;
  width: min(1480px, calc(100vw - 48px)) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

.campaign-strip img {
  display: block !important;
  width: 100% !important;
  max-width: 1480px !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 38px rgba(12, 52, 126, 0.18) !important;
}

.affinity__message {
  background: linear-gradient(90deg, #f2f8ff 0%, #e6f1ff 100%) !important;
  border: 2px solid rgba(0, 83, 190, 0.18) !important;
  color: var(--color-blue-950) !important;
  box-shadow: 0 10px 24px rgba(9, 64, 154, 0.12) !important;
}

.affinity__message span {
  color: var(--color-blue-600) !important;
}

.solution-renewed-card {
  grid-template-rows: 86px 210px 1fr !important;
  gap: 16px !important;
  padding: 24px 22px 26px !important;
}

.solution-renewed-card__head {
  min-height: 86px !important;
  align-items: center !important;
}

.solution-renewed-card__head h3 {
  display: flex !important;
  align-items: center !important;
  min-height: 0 !important;
  line-height: 1.25 !important;
}

@media (max-width: 1280px) {
  .site-header .container.header__inner {
    max-width: 1180px !important;
  }

  .site-header .header__logo {
    max-width: 292px !important;
  }

  .site-header .header__logo-text,
  .site-header .header__logo span {
    font-size: 16px !important;
  }

  .site-header .header__nav {
    gap: 14px !important;
  }

  .site-header .header__actions {
    gap: 10px !important;
  }
}

@media (max-width: 960px) {
  .site-header .header__nav {
    display: none !important;
  }

  .site-header .header__logo {
    max-width: calc(100vw - 70px) !important;
  }

  .site-header .header__logo-text,
  .site-header .header__logo span {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 14px !important;
  }

  .site-header .header__logo-mark {
    width: 28px !important;
  }

  .campaign-strip {
    padding: 18px 0 30px !important;
  }

  .campaign-strip img {
    border-radius: 12px !important;
  }

  .solution-renewed-card {
    grid-template-rows: auto auto auto !important;
  }

  .solution-renewed-card__head {
    min-height: 0 !important;
  }
}

/* Latest requested header and heading fixes */
.header__logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
  font-size: clamp(14px, 1.05vw, 18px) !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.header__logo-mark {
  display: block !important;
  width: 38px !important;
  height: auto !important;
  flex: 0 0 auto !important;
}

.header__logo-text {
  color: var(--color-blue-950) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.solution-renewed__heading h2 {
  text-align: center !important;
  line-height: 1.28 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.solution-renewed__heading h2 br {
  display: none !important;
}

.solution-renewed__heading .heading-line {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
}

.solution-renewed__heading .heading-line + .heading-line {
  margin-top: 0.08em !important;
}

.solution-renewed__heading .heading-line--wide {
  white-space: nowrap !important;
}

.support-renewed__heading h2 {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  white-space: nowrap !important;
  line-height: 1.35 !important;
  font-size: clamp(34px, 3vw, 48px) !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.support-renewed__heading h2 br {
  display: block !important;
}

@media (max-width: 960px) {
  .header__logo {
    gap: 8px !important;
    font-size: 14px !important;
  }

  .header__logo-mark {
    width: 32px !important;
  }

  .solution-renewed__heading .heading-line--wide,
  .support-renewed__heading h2 {
    white-space: normal !important;
  }
}

/* Final sizing and alignment tweaks / 2026-07-07 */
.hero {
  min-height: 620px !important;
  padding: 54px 0 28px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.48) 52%, rgba(255, 255, 255, 0.04) 72%, rgba(255, 255, 255, 0) 100%),
    url("assets/images/fv-background-laptop.png?ver2") 100% center / cover no-repeat !important;
}

.hero__grid {
  grid-template-columns: minmax(0, 620px) !important;
  align-items: center !important;
}

.hero__content {
  max-width: 620px !important;
}

.hero__eyebrow {
  margin-bottom: 18px !important;
  padding: 8px 18px !important;
  font-size: 15px !important;
}

.hero h1 {
  max-width: 620px !important;
  font-size: clamp(40px, 4.2vw, 64px) !important;
  line-height: 1.16 !important;
}

.hero__lead {
  margin-top: 22px !important;
  font-size: clamp(18px, 1.7vw, 26px) !important;
  line-height: 1.55 !important;
}

.hero__body {
  max-width: 590px !important;
  margin-top: 18px !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

.hero .button-row {
  margin-top: 24px !important;
  gap: 18px !important;
}

.hero .button {
  min-height: 54px !important;
  padding: 0 34px !important;
  font-size: 16px !important;
}

.hero__phone-row {
  margin-top: 16px !important;
  font-size: 14px !important;
}

.hero__phone-row span {
  font-size: 24px !important;
}

.campaign-banner {
  max-width: 1120px !important;
  margin-top: 22px !important;
}

.campaign-banner > div {
  min-height: 74px !important;
  padding: 16px 24px !important;
}

.campaign-banner__label {
  font-size: 22px !important;
}

.campaign-banner dd {
  font-size: clamp(22px, 2.1vw, 34px) !important;
}

.affinity__heading {
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.affinity__heading h2 {
  text-align: center !important;
}

.solution-renewed__heading h2 {
  font-size: clamp(34px, 3.3vw, 52px) !important;
  line-height: 1.35 !important;
  max-width: 1180px !important;
}

.solution-renewed__heading h2 br {
  display: block !important;
}

.solution-renewed__heading .heading-line {
  display: inline-block;
}

.solution-renewed__heading .heading-line--wide {
  white-space: nowrap;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto !important;
    padding: 42px 0 26px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.36) 100%),
      url("assets/images/fv-background-laptop.png?ver2") 76% bottom / cover no-repeat !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
  }

  .hero__content {
    max-width: 560px !important;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 46px) !important;
  }

  .hero__body {
    font-size: 15px !important;
  }

  .campaign-banner {
    max-width: 94% !important;
  }

  .solution-renewed__heading .heading-line--wide {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 34px !important;
  }

  .hero .button-row {
    gap: 12px !important;
  }

  .hero .button {
    width: 100% !important;
    min-height: 50px !important;
  }

  .solution-renewed__heading h2 br {
    display: block !important;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 44px !important;
    background-position: 62% bottom !important;
  }

  .hero h1 {
    font-size: clamp(31px, 8.6vw, 42px) !important;
  }
}

/* Requested final adjustments */
.section-kicker {
  display: none !important;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 8vw, 130px) 0 clamp(34px, 5vw, 64px) !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 35%, rgba(255, 255, 255, 0.24) 62%, rgba(255, 255, 255, 0.05) 100%),
    url("assets/images/fv-background-laptop.png?ver2") center right / cover no-repeat !important;
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero__visual {
  display: none !important;
}

.hero__grid {
  min-height: auto !important;
  grid-template-columns: minmax(0, 760px) !important;
  align-items: center !important;
}

.hero__content {
  max-width: 760px !important;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 80px) !important;
  line-height: 1.15 !important;
}

.hero__lead {
  max-width: 760px !important;
}

.hero__body {
  max-width: 640px !important;
}

.campaign-banner {
  margin-top: clamp(34px, 5vw, 70px) !important;
}

.whynow__heading p,
.comparison__heading p {
  max-width: 980px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.whynow__heading p br,
.comparison__heading p br,
.solution-renewed__heading h2 br,
.support-renewed__heading h2 br {
  display: block !important;
}

.affinity__heading h2,
.affinity .section-heading h2 {
  max-width: none !important;
}

.solution-renewed__heading h2,
.support-renewed__heading h2 {
  max-width: 1120px !important;
  margin-inline: auto !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1.38 !important;
}

.comparison-chart {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  padding: clamp(6px, 1vw, 12px) !important;
  border-radius: 12px !important;
}

.comparison-chart img {
  width: 100% !important;
  min-width: 0 !important;
  margin-inline: auto !important;
}

.final-cta__box,
.final-cta__content,
.final-cta .button-row,
.site-footer,
.footer__inner {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

.final-cta__content {
  margin-inline: auto !important;
}

.footer__inner {
  display: flex !important;
}

@media (min-width: 961px) {
  .affinity .section-heading h2 {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-top: 62px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.32) 100%),
      url("assets/images/fv-background-laptop.png?ver2") center bottom / cover no-repeat !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
  }

  .hero__content {
    max-width: 680px !important;
  }

  .comparison-chart {
    overflow-x: auto;
  }

  .comparison-chart img {
    min-width: 760px !important;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 44px !important;
    background-position: 62% bottom !important;
  }

  .hero h1 {
    font-size: clamp(31px, 8.6vw, 42px) !important;
  }

  .hero__body {
    max-width: 92% !important;
  }

  .solution-renewed__heading h2,
  .support-renewed__heading h2 {
    font-size: clamp(27px, 7.4vw, 38px) !important;
    line-height: 1.44 !important;
  }

  .comparison-chart img {
    min-width: 680px !important;
  }
}

/* Final override / Solution and Support renewal */
.solution--renewed {
  overflow: hidden;
  padding: clamp(72px, 7vw, 112px) 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 248, 255, 0.78)),
    url("assets/images/solution-flow-bg.png?ver2") center / cover no-repeat !important;
}

.solution--renewed::before,
.solution--renewed .solution__visual-bg {
  display: none !important;
}

.solution-renewed__heading {
  max-width: 1120px;
  margin-inline: auto;
}

.solution-renewed__heading h2 {
  font-size: clamp(34px, 4vw, 64px) !important;
  line-height: 1.35 !important;
}

.solution-renewed__heading p {
  max-width: 980px;
  margin-inline: auto;
  color: var(--color-blue-950);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.9;
}

.solution-renewed__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.solution-renewed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(19, 95, 194, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(7, 27, 63, 0.1);
}

.solution-renewed-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -34px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #1469dc;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 14px 26px rgba(20, 105, 220, 0.26);
}

.solution-renewed-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
}

.solution-renewed-card__head span {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid #0a67d8;
  color: #0a67d8;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.solution-renewed-card__head h3 {
  margin: 0;
  color: var(--color-blue-950);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.35;
}

.solution-renewed-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.solution-renewed-card p {
  margin: 0;
  color: var(--color-blue-950);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.85;
  text-align: center;
}

.support--renewed {
  overflow: hidden;
  padding: clamp(72px, 7vw, 112px) 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 248, 255, 0.78)),
    url("assets/images/support-flow-bg.png?ver2") center / cover no-repeat !important;
}

.support-renewed__heading {
  max-width: 1120px;
  margin-inline: auto;
}

.support-renewed__heading h2 {
  font-size: clamp(32px, 3.5vw, 54px) !important;
  line-height: 1.45 !important;
}

.support-renewed__heading p {
  max-width: 960px;
  margin-inline: auto;
  color: var(--color-blue-950);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.85;
}

.support-orbit {
  position: relative;
  width: min(760px, 92vw);
  aspect-ratio: 1.25;
  margin: 34px auto 0;
}

.support-orbit::before {
  content: "";
  position: absolute;
  inset: 18% 16%;
  border: 2px dashed rgba(39, 149, 231, 0.36);
  border-radius: 50%;
}

.support-orbit__center,
.support-orbit__item {
  display: block;
  filter: drop-shadow(0 16px 24px rgba(16, 84, 174, 0.18));
}

.support-orbit__center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 30%;
  transform: translate(-50%, -50%);
}

.support-orbit__item {
  position: absolute;
  z-index: 3;
  width: 24%;
  border-radius: 50%;
}

.support-orbit__item--1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.support-orbit__item--2 {
  top: 20%;
  right: 5%;
}

.support-orbit__item--3 {
  right: 7%;
  bottom: 15%;
}

.support-orbit__item--4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.support-orbit__item--5 {
  bottom: 15%;
  left: 7%;
}

.support-orbit__item--6 {
  top: 20%;
  left: 5%;
}

.support-message {
  max-width: 1060px;
  margin: 34px auto 0;
}

.support-message img {
  display: block;
  width: 100%;
}

@media (max-width: 1080px) {
  .solution-renewed__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-renewed-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .solution--renewed,
  .support--renewed {
    padding: 56px 0 !important;
  }

  .solution-renewed__heading h2,
  .support-renewed__heading h2 {
    font-size: clamp(28px, 8vw, 38px) !important;
  }

  .solution-renewed__heading p,
  .support-renewed__heading p {
    font-size: 14px;
    line-height: 1.8;
  }

  .solution-renewed__cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .solution-renewed-card {
    padding: 18px;
  }

  .solution-renewed-card__head {
    min-height: auto;
  }

  .solution-renewed-card img {
    aspect-ratio: 1.35;
  }

  .solution-renewed-card p {
    font-size: 14px;
    text-align: left;
  }

  .support-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    aspect-ratio: auto;
    margin-top: 28px;
  }

  .support-orbit::before {
    display: none;
  }

  .support-orbit__center,
  .support-orbit__item {
    position: static;
    width: min(100%, 180px);
    margin: 0 auto;
    transform: none;
  }

  .support-orbit__center {
    grid-column: 1 / -1;
    width: min(100%, 200px);
  }

  .support-message {
    margin-top: 24px;
  }
}

@media (max-width: 420px) {
  .support-orbit {
    grid-template-columns: 1fr;
  }

  .support-orbit__center,
  .support-orbit__item {
    width: min(100%, 210px);
  }
}

/* Request update / FV redesign, labels, problem, affinity, about */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(7, 27, 63, 0.08);
}

.site-header .container,
.hero .container {
  width: min(100% - 56px, 1540px);
}

.header__logo {
  color: var(--color-blue-950);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 900;
}

.header__logo span {
  color: #084fc3;
}

.header__nav {
  gap: clamp(18px, 2vw, 38px);
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
}

.header__actions {
  gap: 16px;
}

.header-phone {
  color: #074fc5;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.header-phone span {
  display: block;
  font-size: clamp(18px, 1.7vw, 26px);
}

.header-phone small {
  display: block;
  color: rgba(7, 27, 63, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.header__actions .button {
  min-height: 50px;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 900;
}

.section-kicker {
  width: fit-content;
  justify-content: center !important;
  gap: 0;
  margin-right: auto !important;
  margin-left: auto !important;
  color: var(--color-blue-700) !important;
  text-align: center;
}

.section-kicker::before,
.section-kicker::after {
  display: none !important;
  content: none !important;
}

.final-cta .section-kicker {
  color: #fff !important;
}

.hero {
  position: relative;
  min-height: auto;
  padding: clamp(42px, 4.2vw, 70px) 0 32px;
  background: url("assets/images/fv-blue-split-bg.png?ver2") center / cover no-repeat !important;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
}

.hero__content {
  max-width: 700px;
  text-align: left;
}

.hero__eyebrow {
  width: fit-content;
  margin: 0 0 28px;
  border: 0;
  border-radius: 999px;
  padding: 9px 24px;
  color: #fff;
  background: linear-gradient(135deg, #0a6eea 0%, #003d9c 100%);
  box-shadow: 0 14px 28px rgba(8, 79, 195, 0.18);
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 900;
}

.hero h1 {
  margin: 0 0 22px;
  color: #080f1f;
  font-size: clamp(46px, 5.4vw, 86px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero__title-blue {
  color: #064fc9;
}

.hero__lead {
  display: block;
  margin: 0 0 18px;
  color: #0756d8;
  font-size: clamp(20px, 2.1vw, 33px);
  font-weight: 900;
  line-height: 1.5;
}

.hero__body {
  max-width: 650px;
  margin: 0;
  color: var(--color-blue-950);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 800;
  line-height: 1.9;
}

.hero .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.hero .button {
  min-width: 260px;
  min-height: 70px;
  border-radius: 7px;
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 900;
}

.hero__phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.hero__phone-row span {
  color: #064fc9;
  font-size: clamp(24px, 2vw, 34px);
}

.hero__phone-row small {
  font-size: 12px;
}

.hero__visual {
  min-height: clamp(440px, 45vw, 670px);
  display: grid;
  place-items: center;
  background: none !important;
}

.hero__visual::before {
  display: none !important;
}

.hero__tablet {
  width: min(100%, 760px);
  display: block;
  filter: drop-shadow(0 30px 42px rgba(7, 27, 63, 0.24));
}

.campaign-banner {
  position: relative;
  z-index: 2;
  max-width: 1520px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(170px, 1fr));
  gap: 0;
  margin: 24px auto 0;
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(135deg, #075ce0 0%, #003a9d 100%);
  box-shadow: 0 22px 44px rgba(7, 27, 63, 0.18);
  overflow: hidden;
}

.campaign-banner__label,
.campaign-banner div:not(.campaign-banner__label) {
  min-height: 104px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 16px 20px;
  text-align: center;
}

.campaign-banner__label {
  color: #fff;
  background: transparent;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 900;
}

.campaign-banner__label::after {
  display: none;
}

.campaign-banner div:not(.campaign-banner__label) {
  border-left: 1px solid rgba(19, 95, 194, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.campaign-banner dt {
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
}

.campaign-banner dd {
  color: #064fc9;
  font-size: clamp(28px, 2.3vw, 42px);
  font-weight: 900;
}

.problem .section-kicker {
  color: var(--color-blue-700) !important;
}

.problem-ai-badge {
  display: none !important;
}

.issue-card {
  min-height: 158px;
  align-content: center;
  isolation: isolate;
}

.issue-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.issue-card::after {
  inset: 0 !important;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  opacity: 0.28;
  filter: saturate(0.95);
}

.issue-card strong {
  z-index: 2;
}

.affinity__message {
  max-width: 1160px;
  white-space: nowrap;
  font-size: clamp(20px, 2vw, 30px);
}

.about-mock--image {
  max-width: 1060px;
  padding: 24px clamp(14px, 2vw, 28px) 18px;
}

.about-mock__image {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(7, 27, 63, 0.1);
}

@media (max-width: 1280px) {
  .header-phone {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 68px);
  }
}

@media (max-width: 980px) {
  .site-header .container,
  .hero .container {
    width: min(100% - 36px, 760px);
  }

  .hero {
    padding: 34px 0 28px;
    background-position: 60% center !important;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero__content {
    max-width: none;
  }

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

  .hero__lead {
    font-size: clamp(17px, 4.4vw, 24px);
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__tablet {
    width: min(100%, 620px);
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-top: 1px solid rgba(19, 95, 194, 0.14);
  }

  .affinity__message {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .hero .container {
    width: min(100% - 28px, 520px);
  }

  .header__actions .header__request {
    display: none;
  }

  .header__actions .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero__eyebrow {
    margin-bottom: 16px;
    padding: 7px 16px;
    font-size: 13px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(31px, 8.8vw, 42px);
    line-height: 1.2;
  }

  .hero__lead {
    margin-bottom: 12px;
    font-size: clamp(17px, 4.5vw, 20px);
  }

  .hero__body {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero .button-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .hero .button {
    min-width: 0;
    min-height: 50px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero__phone-row {
    gap: 5px;
    margin-top: 14px;
    font-size: 12px;
  }

  .hero__phone-row span {
    font-size: 22px;
  }

  .hero__phone-row small {
    display: block;
    width: 100%;
  }

  .hero__tablet {
    max-height: 330px;
    width: auto;
    max-width: 100%;
  }

  .campaign-banner {
    margin-top: 14px;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 60px;
    padding: 10px 8px;
  }

  .campaign-banner__label {
    font-size: 17px;
  }

  .campaign-banner dt {
    font-size: 11px;
  }

  .campaign-banner dd {
    font-size: 20px;
  }

  .about-mock--image {
    padding: 16px 12px 12px;
  }
}

/* Mobile FV compact / スマホ時のファーストビュー圧縮 */
@media (max-width: 720px) {
  .header__inner {
    min-height: 64px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    padding: 3px 14px;
    font-size: 12px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.3;
  }

  .hero__lead {
    display: none;
  }

  .hero__body {
    font-size: 13px;
    line-height: 1.72;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .hero .button {
    min-height: 50px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__photo {
    width: 58%;
    height: 100%;
  }

  .hero__chat-card {
    top: 52px;
    width: min(56%, 220px);
  }

  .light-trails {
    bottom: 18px;
    height: 104px;
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 58px;
    padding: 10px 12px;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-top: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner div:nth-child(odd):not(.campaign-banner__label) {
    border-left: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner__label {
    font-size: 15px;
  }

  .campaign-banner dd {
    font-size: 19px;
  }
}

@media (max-width: 360px) {
  .hero .button-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .support__intro {
    grid-template-columns: 1fr;
  }

  .support__media {
    border-radius: 28px;
  }

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

  .support-step:nth-child(3)::after {
    display: none;
  }

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

  .offer__heading {
    max-width: 720px;
  }

  .final-cta {
    background-position: center;
  }
}

@media (max-width: 720px) {
  .support {
    padding: 66px 0 58px;
  }

  .support__intro {
    gap: 26px;
    margin-bottom: 28px;
  }

  .support__media,
  .support__media img {
    min-height: 230px;
  }

  .support-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-step {
    min-height: 84px;
    justify-items: start;
    padding: 16px 20px;
    text-align: left;
  }

  .support-step:not(:last-child)::after,
  .support-step:nth-child(3)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    display: block;
    transform: translateX(50%) rotate(90deg);
  }

  .offer {
    padding: 66px 0;
  }

  .offer-card__label {
    font-size: 20px;
  }

  .offer-card__rows {
    grid-template-columns: 1fr;
    padding: 20px 18px 12px;
  }

  .offer-card__button {
    width: calc(100% - 36px);
    margin-right: 18px;
    margin-left: 18px;
  }

  .offer-card__note {
    padding-right: 18px;
    padding-left: 18px;
  }

  .faq {
    padding: 66px 0;
  }

  .faq-question {
    align-items: flex-start;
    padding: 16px;
  }

  .faq-question span:first-child {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .faq-answer {
    padding: 0 16px 18px 54px;
  }

  .final-cta {
    min-height: auto;
    padding: 74px 0 70px;
    background:
      linear-gradient(180deg, rgba(7, 27, 63, 0.96) 0%, rgba(9, 36, 92, 0.88) 68%, rgba(9, 36, 92, 0.78) 100%),
      url("assets/images/final-city-night.jpg?ver2") center / cover;
  }

  .final-cta::after {
    width: 92%;
    height: 80px;
  }

  .final-cta .button-row {
    gap: 14px;
  }

  .final-cta .button {
    min-width: 0;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Final UI polish / 全体デザイン調整 */
:root {
  --color-blue-950: #061a46;
  --color-blue-900: #07357f;
  --color-blue-700: #0f63d6;
  --color-blue-100: #e8f3ff;
  --color-blue-50: #f6fbff;
  --color-orange: #ff7a00;
  --color-orange-dark: #e86500;
  --color-text: #101828;
  --color-muted: #59677a;
  --color-line: #d7e6f5;
  --shadow-card: 0 18px 44px rgba(6, 26, 70, 0.11);
  --shadow-soft: 0 10px 26px rgba(6, 26, 70, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
}

body {
  line-height: 1.75;
}

.section,
.problem,
.affinity,
.solution,
.reason,
.scene,
.support,
.offer,
.faq {
  padding-top: clamp(72px, 8vw, 96px);
  padding-bottom: clamp(72px, 8vw, 96px);
}

.hero {
  padding-top: clamp(72px, 7vw, 92px);
  padding-bottom: clamp(54px, 6vw, 72px);
}

.scene {
  padding-bottom: clamp(86px, 9vw, 112px);
}

h1 {
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.24;
}

h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.34;
}

h3 {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
}

.section-heading {
  max-width: 720px;
}

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

.section-heading p {
  font-size: 16px;
  line-height: 1.9;
}

.section-kicker {
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.section-kicker span {
  font-size: 36px;
}

.section-kicker::after {
  width: 108px;
  background: rgba(15, 99, 214, 0.3);
}

.button {
  min-height: 56px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: none;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(6, 26, 70, 0.14);
}

.button--primary {
  background: linear-gradient(135deg, #ff8a00 0%, var(--color-orange) 58%, #f05d00 100%);
}

.button--secondary {
  border: 2px solid rgba(15, 99, 214, 0.7);
  color: var(--color-blue-900);
}

.hero .button,
.final-cta .button,
.offer-card__button {
  min-height: 58px;
}

.card,
.image-card,
.issue-card,
.solution-step,
.reason-card,
.scene-card,
.support-step,
.offer-card,
.faq-item,
.problem__chips span,
.problem__journey,
.solution__message,
.campaign-banner {
  border-color: rgba(15, 99, 214, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card:hover,
.image-card:hover,
.offer-card:hover,
.scene-card:hover,
.issue-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.issue-card,
.reason-card,
.support-step {
  padding: 22px;
}

.solution-step {
  padding: 18px;
}

.campaign-banner {
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.campaign-banner__label,
.campaign-banner div:not(.campaign-banner__label) {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.campaign-banner__label {
  background: linear-gradient(135deg, var(--color-blue-700), var(--color-blue-950));
}

.campaign-banner__label::after {
  display: none;
}

.campaign-banner div:not(.campaign-banner__label) {
  border: 1px solid rgba(15, 99, 214, 0.14);
}

.problem__chips span {
  border-radius: 999px;
  padding: 13px 20px;
}

.problem__journey {
  overflow: visible;
}

.problem__journey span,
.journey-bar span {
  font-size: 17px;
}

.solution-step:not(:last-child)::after,
.support-step:not(:last-child)::after {
  content: ">";
  color: rgba(15, 99, 214, 0.72);
  font-size: 28px;
}

.step-number,
.reason-card span,
.support-step span,
.scene-card span,
.issue-card span {
  color: var(--color-blue-700);
}

.reason-card p,
.solution-step h3,
.support-step h3 {
  font-weight: 800;
}

.offer-card__rows {
  gap: 14px;
}

.offer-card__rows div {
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.faq-question {
  min-height: 62px;
  font-weight: 800;
}

.faq-question b {
  font-size: 18px;
}

.faq-mark {
  font-size: 20px;
}

.final-cta h2 {
  font-size: clamp(32px, 3.7vw, 46px);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.footer__inner {
  align-items: flex-start;
  gap: 32px;
}

.footer__company {
  margin-bottom: 8px;
  color: var(--color-blue-950);
  font-size: 17px;
  font-weight: 900;
}

.footer__inner small {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.85;
}

.footer__links {
  padding-top: 4px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section,
  .problem,
  .affinity,
  .solution,
  .reason,
  .scene,
  .support,
  .offer,
  .faq {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  h1,
  .hero h1 {
    font-size: clamp(31px, 8.7vw, 40px);
    line-height: 1.28;
  }

  h2,
  .final-cta h2 {
    font-size: clamp(24px, 6.4vw, 31px);
    line-height: 1.42;
  }

  h3 {
    font-size: 18px;
  }

  .section-heading p,
  .hero__lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero__body,
  p {
    font-size: 14px;
  }

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

  .section-kicker span {
    font-size: 30px;
  }

  .button {
    min-height: 52px;
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero .button,
  .final-cta .button,
  .offer-card__button {
    min-height: 54px;
  }

  .campaign-banner {
    gap: 10px;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 62px;
  }

  .campaign-banner__label {
    font-size: 18px;
  }

  .campaign-banner dd {
    font-size: 20px;
  }

  .problem__chips span {
    padding: 12px 16px;
    font-size: 14px;
    text-align: left;
  }

  .problem__journey span {
    min-height: 54px;
    font-size: 15px;
  }

  .issue-card,
  .reason-card,
  .support-step,
  .solution-step {
    padding: 18px;
  }

  .issue-card strong,
  .scene-card h3 {
    font-size: 17px;
  }

  .reason-card span,
  .scene-card span,
  .support-step span,
  .issue-card span,
  .step-number {
    font-size: 30px;
  }

  .solution-step:not(:last-child)::after,
  .support-step:not(:last-child)::after,
  .support-step:nth-child(3)::after {
    display: none;
  }

  .solution__message,
  .affinity__message {
    font-size: 18px;
    line-height: 1.6;
  }

  .offer-card__label {
    font-size: 18px;
  }

  .offer-card__rows div {
    min-height: 86px;
  }

  .offer-card__rows strong {
    font-size: 22px;
  }

  .faq-question {
    min-height: auto;
    gap: 10px;
    font-size: 14px;
  }

  .faq-question b {
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 16px;
  }

  .final-cta__note {
    font-size: 14px;
  }

  .footer__inner {
    gap: 18px;
  }

  .footer__company {
    font-size: 16px;
  }

  .footer__inner small,
  .footer__links {
    font-size: 12px;
  }
}

/* Hero reference final override / FV参考デザインを最終優先 */
.site-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.97);
}

.site-header .container,
.hero > .container {
  width: min(100% - 56px, 1280px);
}

.header__inner {
  min-height: 86px;
}

.header__logo {
  color: var(--color-blue-950);
  font-size: 22px;
  font-weight: 900;
}

.header__logo span {
  color: #064bd6;
}

.header__nav {
  gap: 32px;
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
}

.header__actions {
  gap: 12px;
}

.header__actions .button {
  min-width: 158px;
  min-height: 52px;
  padding: 12px 24px;
  font-size: 15px;
}

.header__request {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.98);
}

.hero {
  isolation: isolate;
  padding-top: clamp(72px, 6.4vw, 96px);
  padding-bottom: 48px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 44%, rgba(232, 243, 255, 0.66) 100%),
    url("assets/images/hero-office-bg-v3.jpg?ver2") right center / auto 100% no-repeat;
}

.hero::before {
  position: absolute;
  inset: 86px 28% 78px auto;
  z-index: -1;
  width: min(330px, 24vw);
  height: auto;
  content: "";
  background: linear-gradient(110deg, transparent 0 30%, rgba(232, 243, 255, 0.9) 31% 60%, transparent 61% 100%);
  opacity: 0.92;
  transform: skewX(-14deg);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -88px;
  z-index: -1;
  width: 64%;
  height: 190px;
  content: "";
  border-radius: 50% 0 0 0;
  background: linear-gradient(180deg, rgba(232, 243, 255, 0.68), rgba(255, 255, 255, 0));
  transform: rotate(-4deg);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(530px, 1.04fr);
  gap: 34px;
  align-items: center;
}

.hero__content {
  padding-top: 12px;
}

.hero__eyebrow {
  margin-bottom: 26px;
  border: 2px solid rgba(15, 99, 214, 0.86);
  padding: 5px 24px;
  color: #064bd6;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #071226;
  font-size: clamp(48px, 5.75vw, 78px);
  line-height: 1.33;
}

.hero__title-line span {
  color: #064bd6;
  font-size: 1.18em;
}

.hero__lead {
  display: none;
}

.hero__body {
  max-width: 660px;
  color: #101828;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.85;
}

.hero .button-row {
  gap: 24px;
  margin-top: 40px;
}

.hero .button {
  min-width: 250px;
  min-height: 66px;
  padding-inline: 34px;
  font-size: 18px;
}

.hero__visual {
  min-height: 606px;
  margin-right: -42px;
  border-radius: 0;
}

.hero__visual::before {
  inset: 0 0 0 58px;
  z-index: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 38%, rgba(255, 255, 255, 0) 100%),
    url("assets/images/hero-office-bg-v3.jpg?ver2") center / cover no-repeat;
  filter: none;
  opacity: 1;
  transform: none;
}

.hero__photo {
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(47%, 360px);
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center right;
  box-shadow: none;
}

.hero__chat-card {
  left: clamp(18px, 7vw, 112px);
  top: 112px;
  z-index: 2;
  width: min(47%, 360px);
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  box-shadow: 0 26px 62px rgba(6, 26, 70, 0.18);
  transform: none;
}

.hero__chat-card img {
  border-radius: 24px;
}

.light-trails {
  right: -34px;
  bottom: 22px;
  z-index: 3;
  width: 90%;
  height: 214px;
  background: url("assets/images/hero-light-bg-v3.jpg?ver2") center / cover no-repeat;
  filter: none;
  mix-blend-mode: screen;
  opacity: 0.82;
}

.campaign-banner {
  width: min(100%, 1280px);
  grid-template-columns: 1.34fr repeat(4, minmax(130px, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 2px solid rgba(15, 99, 214, 0.48);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(6, 26, 70, 0.14);
  overflow: hidden;
}

.campaign-banner__label,
.campaign-banner div:not(.campaign-banner__label) {
  min-height: 92px;
  border-radius: 0;
  box-shadow: none;
}

.campaign-banner__label {
  z-index: 1;
  justify-items: start;
  padding-left: 40px;
  background: linear-gradient(135deg, #064bd6 0%, #062f83 100%);
  font-size: 24px;
  text-align: left;
}

.campaign-banner__label::after {
  display: block;
  right: -34px;
  width: 72px;
  background: var(--color-white);
  transform: skewX(-18deg);
}

.campaign-banner div:not(.campaign-banner__label) {
  border: 0;
  border-left: 1px solid rgba(15, 99, 214, 0.32);
  background: rgba(255, 255, 255, 0.98);
}

.campaign-banner dt {
  color: #064bd6;
  font-size: 13px;
  font-weight: 900;
}

.campaign-banner dd {
  color: #064bd6;
  font-size: 34px;
  letter-spacing: 0;
}

.footer__inner {
  justify-content: flex-start;
}

@media (max-width: 1120px) {
  .header__request {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 60px);
  }

  .hero .button {
    min-width: 216px;
  }
}

@media (max-width: 980px) {
  .site-header .container,
  .hero > .container {
    width: min(100% - 40px, 1280px);
  }

  .header__inner {
    min-height: 76px;
    gap: 12px;
  }

  .header__logo {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
    word-break: keep-all;
  }

  .hero {
    padding-top: 56px;
  }

  .hero::before {
    inset: 92px 4% auto auto;
    height: 420px;
    width: 190px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__lead {
    display: block;
    max-width: 680px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 800;
  }

  .hero__visual {
    min-height: 540px;
    margin-right: 0;
  }

  .hero__visual::before {
    inset: 0;
  }

  .hero__photo {
    width: min(48%, 330px);
  }

  .hero__chat-card {
    left: 28px;
    top: 82px;
    width: min(45%, 300px);
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
    justify-items: center;
    padding-left: 18px;
    text-align: center;
  }

  .campaign-banner__label::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .hero > .container {
    width: min(100% - 28px, 1280px);
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hero::after {
    bottom: -70px;
    width: 110%;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    padding: 4px 18px;
    font-size: 13px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.2vw, 45px);
    line-height: 1.34;
  }

  .hero__title-line {
    white-space: normal;
  }

  .hero__body {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero .button-row {
    gap: 12px;
    margin-top: 28px;
  }

  .hero .button {
    min-width: 0;
    min-height: 54px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .hero__visual {
    min-height: 438px;
  }

  .hero__photo {
    width: min(58%, 276px);
    height: calc(100% - 6px);
  }

  .hero__chat-card {
    left: 0;
    top: 72px;
    width: min(58%, 244px);
    border-radius: 18px;
  }

  .hero__chat-card img {
    border-radius: 18px;
  }

  .light-trails {
    right: -26px;
    bottom: 34px;
    width: 104%;
    height: 132px;
  }

  .campaign-banner {
    grid-template-columns: 1fr;
    margin-top: 18px;
    border-radius: 14px;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 66px;
  }

  .campaign-banner__label {
    font-size: 17px;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-left: 0;
    border-top: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner dt {
    font-size: 12px;
  }

  .campaign-banner dd {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .header__logo {
    font-size: 16px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__photo {
    width: 62%;
  }

  .hero__chat-card {
    top: 68px;
    width: 58%;
  }
}

@media (max-width: 980px) {
  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 18px 12px;
  }
}

@media (max-width: 720px) {
  .comparison {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .comparison::before {
    width: 86%;
    height: 24%;
    inset: 4% -28% auto auto;
  }

  .comparison__heading h2 br,
  .comparison__heading p br {
    display: none;
  }

  .comparison-table-wrap {
    margin-top: 24px;
    padding: 14px;
    border-radius: 16px;
    overflow: visible;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tr {
    margin-bottom: 14px;
    border: 1px solid rgba(19, 95, 194, 0.12);
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(7, 27, 63, 0.07);
  }

  .comparison-table tr:last-child {
    margin-bottom: 0;
  }

  .comparison-table tbody th {
    border: 0;
    padding: 0 0 12px;
    background: transparent;
    font-size: 16px;
    text-align: left;
  }

  .comparison-table tbody td {
    position: relative;
    border: 0;
    border-top: 1px solid rgba(19, 95, 194, 0.09);
    padding: 12px 0 12px 108px;
    background: transparent;
    text-align: left;
  }

  .comparison-table tbody td::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 92px;
    content: attr(data-label);
    color: var(--color-blue-700);
    font-size: 12px;
    font-weight: 900;
  }

  .comparison-table tbody td:last-child {
    margin-top: 4px;
    border-top: 0;
    border-radius: 10px;
    padding: 12px 10px 12px 108px;
    background: rgba(229, 241, 255, 0.72);
  }

  .comparison-summary {
    margin-top: 18px;
    padding: 18px;
    text-align: left;
  }

  .comparison-summary p {
    font-size: 18px;
  }
}

/* Section updates / Problem・Why now・About追加調整 */
.problem--visual {
  /*min-height: 760px;*/
  padding: 78px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 249, 255, 0.72)),
    url("assets/images/problem-bg-new.png?ver2") center / cover no-repeat;
  overflow: hidden;
}

.problem--visual::before {
  display: none;
}

.problem__inner {
  position: relative;
}

.problem__heading {
  max-width: 1040px;
}

.problem-visual {
  position: relative;
  min-height: 470px;
  margin-top: 34px;
}

.problem-people {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: min(520px, 44vw);
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 32px rgba(7, 27, 63, 0.12));
}

.problem-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 18px 28px 18px 20px;
  color: var(--color-blue-950);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(7, 27, 63, 0.1);
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 900;
  line-height: 1.45;
}

.problem-chip::before {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  content: "";
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(78, 161, 255, 0.95), rgba(0, 89, 224, 0.95)),
    url("assets/images/about-icon-chat.png?ver2") center / 23px 23px no-repeat;
}

.problem-chip--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.problem-chip--left {
  top: 88px;
  left: 6%;
}

.problem-chip--right {
  top: 88px;
  right: 6%;
}

.problem-chip--lower-left {
  top: 230px;
  left: 0;
}

.problem-chip--lower-right {
  top: 220px;
  right: 0;
}

.problem-ai-badge {
  position: absolute;
  left: 34%;
  bottom: 190px;
  z-index: 1;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(69, 151, 255, 0.25);
  border-radius: 50%;
  color: rgba(19, 95, 194, 0.68);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(19, 95, 194, 0.08);
  font-size: 34px;
  font-weight: 900;
}

.whynow {
  /*padding: 82px 0 68px;*/
  padding: 68px 0 68px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(238, 247, 255, 0.72)),
    url("assets/images/whynow-bg.png?ver2") center / cover no-repeat;
}

.whynow__heading {
  max-width: 1040px;
}

.whynow__chart {
  max-width: 880px;
  margin: 34px auto 30px;
}

.whynow__chart img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(7, 27, 63, 0.12);
}

.whynow__message {
  margin: 0 auto;
  color: var(--color-blue-950);
  font-size: clamp(20px, 2.0vw, 30px);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
color:#666;
}

.whynow__source {
  max-width: 1060px;
  margin: 28px auto 0;
  color: rgba(7, 27, 63, 0.72);
  font-size: 13px;
}

.about {
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 12% 18%, rgba(91, 163, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #f6fbff 0%, #ffffff 48%, #eaf5ff 100%);
  overflow: hidden;
}

.about__heading {
  max-width: 880px;
}

.about__heading h2 span {
  color: var(--color-blue-700);
}

.about-mock {
  max-width: 920px;
  margin: 28px auto 28px;
  border: 1px solid rgba(19, 95, 194, 0.12);
  border-radius: 22px;
  padding: 26px clamp(18px, 3vw, 40px) 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 52px rgba(7, 27, 63, 0.11);
}

.about-mock__label {
  margin: 0 0 18px;
  color: var(--color-blue-700);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.about-chat {
  border: 1px solid rgba(19, 95, 194, 0.14);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.about-chat__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(19, 95, 194, 0.1);
  padding: 12px 18px;
  color: var(--color-blue-950);
  font-weight: 900;
}

.about-chat__bar span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-chat__bar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.about-chat__body {
  padding: 18px;
}

.about-bubble {
  max-width: 78%;
  margin-bottom: 12px;
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.about-bubble--user {
  margin-left: auto;
  color: var(--color-blue-900);
  background: #e8f2ff;
}

.about-bubble--ai {
  color: var(--color-blue-950);
  background: #f4f6f9;
}

.about-ad {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(19, 95, 194, 0.14);
  border-radius: 14px;
  padding: 18px;
}

.about-ad__badge {
  position: absolute;
  top: 12px;
  left: 18px;
  border-radius: 999px;
  padding: 4px 12px;
  color: #fff;
  background: var(--color-blue-700);
  font-size: 12px;
  font-weight: 900;
}

.about-ad img {
  width: 100%;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.about-ad h3 {
  margin: 0 0 8px;
  color: var(--color-blue-950);
  font-size: 18px;
}

.about-ad p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
}

.about-ad a {
  border-radius: 8px;
  padding: 12px 20px;
  color: #fff;
  background: var(--color-blue-700);
  font-weight: 900;
  white-space: nowrap;
}

.about-mock__note {
  margin: 14px 0 0;
  color: rgba(7, 27, 63, 0.62);
  font-size: 13px;
  text-align: center;
}

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

.about-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(19, 95, 194, 0.1);
  border-radius: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(7, 27, 63, 0.08);
}

.about-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.about-card h3 {
  margin: 0 0 8px;
  color: var(--color-blue-950);
  font-size: 17px;
}

.about-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.7;
}

.affinity__content {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.affinity .issue-grid {
  max-width: 980px;
  margin: 28px auto 0;
}

.affinity__photo {
  display: none;
}

.faq .section-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 980px) {
  .problem--visual {
    min-height: auto;
    padding-bottom: 48px;
  }

  .problem-visual {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .problem-chip,
  .problem-chip--top,
  .problem-chip--left,
  .problem-chip--right,
  .problem-chip--lower-left,
  .problem-chip--lower-right {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    justify-self: center;
    width: min(100%, 560px);
  }

  .problem-people {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(520px, 88vw);
    margin: 8px auto 0;
    transform: none;
  }

  .problem-ai-badge {
    display: none;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-ad {
    grid-template-columns: 130px 1fr;
  }

  .about-ad a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .problem--visual,
  .whynow,
  .about {
    padding-top: 58px;
    padding-bottom: 56px;
  }

  .problem-visual {
    margin-top: 24px;
  }

  .problem-chip {
    padding: 13px 16px 13px 13px;
    font-size: 14px;
  }

  .problem-chip::before {
    width: 28px;
    height: 28px;
    background-size: 19px 19px;
  }

  .whynow__message {
    font-size: 21px;
    text-align: left;
  }

  .whynow__message br {
    display: none;
  }

  .whynow__source {
    font-size: 11px;
  }

  .about__heading p br {
    display: none;
  }

  .about-mock {
    padding: 18px 14px 14px;
  }

  .about-chat__body {
    padding: 14px;
  }

  .about-bubble {
    max-width: 100%;
    font-size: 13px;
  }

  .about-ad {
    grid-template-columns: 1fr;
  }

  .about-ad img {
    height: 150px;
  }

  .about-ad a {
    grid-column: auto;
    width: 100%;
    text-align: center;
  }

  .about-card {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }

  .about-card img {
    width: 58px;
    height: 58px;
  }
}

/* Mobile FV final compact / スマホFV最終圧縮 */
@media (max-width: 720px) {
  .header__inner {
    min-height: 64px;
    gap: 12px;
  }

  .header__logo {
    flex-shrink: 0;
    line-height: 1.1;
    white-space: nowrap;
    word-break: keep-all;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero__grid {
    gap: 22px;
  }

  .hero__eyebrow {
    margin-bottom: 12px;
    padding: 3px 14px;
    font-size: 12px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(27px, 7.4vw, 31px);
    line-height: 1.25;
  }

  .hero__lead {
    display: none;
  }

  .hero__body {
    font-size: 13px;
    line-height: 1.65;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero .button {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero__visual {
    min-height: 286px;
  }

  .hero__photo {
    width: min(56%, 218px);
    height: 100%;
  }

  .hero__chat-card {
    top: 42px;
    width: min(52%, 190px);
  }

  .light-trails {
    bottom: 12px;
    height: 92px;
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 54px;
    padding: 9px 10px;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-left: 0;
    border-top: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner div:nth-child(3),
  .campaign-banner div:nth-child(5) {
    border-left: 1px solid rgba(15, 99, 214, 0.22);
  }

  .campaign-banner__label {
    font-size: 15px;
  }

  .campaign-banner dt {
    font-size: 11px;
  }

  .campaign-banner dd {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .hero .button-row {
    grid-template-columns: 1fr;
  }
}

/* Final override / 2026-07-07 requested updates */
.site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 2px 18px rgba(7, 27, 63, 0.08);
}

.site-header .container,
.hero .container {
  width: min(100% - 56px, 1540px) !important;
}


.header__logo {
  color: var(--color-blue-950) !important;
  font-size: clamp(20px, 1.8vw, 30px) !important;
  font-weight: 900 !important;
}

.header__logo span {
  color: #084fc3 !important;
}

.header__nav {
  gap: clamp(18px, 2vw, 38px) !important;
  color: var(--color-blue-950) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.header__actions {
  gap: 16px !important;
}

.header-phone {
  color: #074fc5;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.header-phone span {
  display: block;
  font-size: clamp(18px, 1.7vw, 26px);
}

.header-phone small {
  display: block;
  color: rgba(7, 27, 63, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.header__actions .button {
  min-height: 50px !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.section-kicker {
  width: fit-content;
  justify-content: center !important;
  gap: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  color: var(--color-blue-700) !important;
  text-align: center !important;
}

.section-kicker::before,
.section-kicker::after {
  display: none !important;
  content: none !important;
}

.final-cta .section-kicker {
  color: #fff !important;
}

.hero {
  position: relative;
  min-height: auto !important;
  padding: clamp(42px, 4.2vw, 70px) 0 32px !important;
  background: url("assets/images/fv-blue-split-bg.png?ver2") center / cover no-repeat !important;
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero__visual::before {
  display: none !important;
}

.hero__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr) !important;
  align-items: center !important;
  gap: clamp(1px, 2vw, 20px) !important;
}

.hero__content {
  max-width: 700px !important;
  text-align: left !important;
}

.hero__eyebrow {
  width: fit-content !important;
  margin: 0 0 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 9px 24px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0a6eea 0%, #003d9c 100%) !important;
  box-shadow: 0 14px 28px rgba(8, 79, 195, 0.18);
  font-size: clamp(15px, 1.5vw, 22px) !important;
  font-weight: 900 !important;
}

.hero h1 {
  margin: 0 0 22px !important;
  color: #080f1f !important;
  font-size: clamp(46px, 5.4vw, 86px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.hero__title-blue {
  color: #064fc9 !important;
}

.hero__lead {
  display: block !important;
  margin: 0 0 18px !important;
  color: #0756d8 !important;
  font-size: clamp(20px, 2.1vw, 33px) !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
}

.hero__body {
  max-width: 650px !important;
  margin: 0 !important;
  color: var(--color-blue-950) !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  font-weight: 800 !important;
  line-height: 1.9 !important;
}

.hero .button-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 22px !important;
  margin-top: 28px !important;
}

.hero .button {
  min-width: 260px !important;
  min-height: 70px !important;
  border-radius: 7px !important;
  font-size: clamp(16px, 1.3vw, 22px) !important;
  font-weight: 900 !important;
}

.hero__phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--color-blue-950);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.hero__phone-row span {
  color: #064fc9;
  font-size: clamp(24px, 2vw, 34px);
}

.hero__phone-row small {
  font-size: 12px;
}

.hero__visual {
  min-height: clamp(440px, 45vw, 670px) !important;
  display: grid !important;
  place-items: center !important;
  background: none !important;
}

.hero__photo,
.hero__chat-card,
.light-trails {
  display: none !important;
}

.hero__tablet {
  width: min(100%, 760px);
  display: block;
  filter: drop-shadow(0 30px 42px rgba(7, 27, 63, 0.24));
}

.campaign-banner {
  position: relative;
  z-index: 2;
  max-width: 1520px;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(170px, 1fr)) !important;
  gap: 0;
  margin: 24px auto 0 !important;
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(135deg, #075ce0 0%, #003a9d 100%) !important;
  box-shadow: 0 22px 44px rgba(7, 27, 63, 0.18);
  overflow: hidden;
}

.campaign-banner__label,
.campaign-banner div:not(.campaign-banner__label) {
  min-height: 104px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  padding: 16px 20px !important;
  text-align: center;
}

.campaign-banner__label {
  color: #fff !important;
  background: transparent !important;
  font-size: clamp(20px, 1.8vw, 30px) !important;
  font-weight: 900;
}

.campaign-banner__label::after {
  display: none !important;
}

.campaign-banner div:not(.campaign-banner__label) {
  border-left: 1px solid rgba(19, 95, 194, 0.2) !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.campaign-banner dt {
  color: var(--color-blue-950) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.campaign-banner dd {
  color: #064fc9 !important;
  font-size: clamp(28px, 2.3vw, 42px) !important;
  font-weight: 900 !important;
}

.problem .section-kicker {
  color: var(--color-blue-700) !important;
}

.problem-ai-badge {
  display: none !important;
}

.issue-card {
  min-height: 158px !important;
  align-content: center !important;
  isolation: isolate;
}

.issue-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.issue-card::after {
  inset: 0 !important;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  opacity: 0.28 !important;
  filter: saturate(0.95);
}

.issue-card strong {
  z-index: 2;
}

.affinity__message {
  max-width: 1160px !important;
  white-space: nowrap;
  font-size: clamp(20px, 2vw, 30px) !important;
}

.about-mock--image {
  max-width: 1060px !important;
  padding: 24px clamp(14px, 2vw, 28px) 18px !important;
}

.about-mock__image {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(7, 27, 63, 0.1);
}

@media (max-width: 1280px) {
  .header-phone {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr) !important;
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 68px) !important;
  }
}

@media (max-width: 980px) {
  .site-header .container,
  .hero .container {
    width: min(100% - 36px, 760px) !important;
  }

  .hero {
    padding: 34px 0 28px !important;
    background-position: 60% center !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .hero__content {
    max-width: none !important;
  }

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

  .hero__lead {
    display: block !important;
    font-size: clamp(17px, 4.4vw, 24px) !important;
  }

  .hero__visual {
    min-height: auto !important;
  }

  .hero__tablet {
    width: min(100%, 620px);
  }

  .campaign-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 8px;
  }

  .campaign-banner__label {
    grid-column: 1 / -1;
  }

  .campaign-banner div:not(.campaign-banner__label) {
    border-top: 1px solid rgba(19, 95, 194, 0.14) !important;
  }

  .affinity__message {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .hero .container {
    width: min(100% - 28px, 520px) !important;
  }

  .header__actions .header__request {
    display: none;
  }

  .header__actions .button {
    min-height: 42px !important;
    padding: 9px 14px !important;
    font-size: 13px !important;
  }

  .hero {
    padding-top: 26px !important;
  }

  .hero__eyebrow {
    margin-bottom: 16px !important;
    padding: 7px 16px !important;
    font-size: 13px !important;
  }

  .hero h1 {
    margin-bottom: 14px !important;
    font-size: clamp(31px, 8.8vw, 42px) !important;
    line-height: 1.2 !important;
  }

  .hero__lead {
    display: block !important;
    margin-bottom: 12px !important;
    font-size: clamp(17px, 4.5vw, 20px) !important;
  }

  .hero__body {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .hero .button-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .hero .button {
    min-width: 0 !important;
    min-height: 50px !important;
    padding-inline: 10px !important;
    font-size: 13px !important;
  }

  .hero__phone-row {
    gap: 5px;
    margin-top: 14px;
    font-size: 12px;
  }

  .hero__phone-row span {
    font-size: 22px;
  }

  .hero__phone-row small {
    display: block;
    width: 100%;
  }

  .hero__tablet {
    width: auto;
    max-width: 100%;
    max-height: 330px;
  }

  .campaign-banner {
    margin-top: 14px !important;
  }

  .campaign-banner__label,
  .campaign-banner div:not(.campaign-banner__label) {
    min-height: 60px !important;
    padding: 10px 8px !important;
  }

  .campaign-banner__label {
    font-size: 17px !important;
  }

  .campaign-banner dt {
    font-size: 11px !important;
  }

  .campaign-banner dd {
    font-size: 20px !important;
  }

  .about-mock--image {
    padding: 16px 12px 12px !important;
  }
}

@media (max-width: 380px) {
  .hero .button-row {
    grid-template-columns: 1fr !important;
  }
}

/* Final polish: latest assets and heading balance */
.hero__tablet,
.about-mock__image {
  object-fit: contain !important;
}

.hero__visual--tablet {
  align-items: center;
}

.hero__tablet {
  width: min(100%, 780px) !important;
  max-height: 560px !important;
  filter: drop-shadow(0 24px 44px rgba(5, 30, 80, 0.22));
}

.about-mock--image {
  overflow: hidden;
}

.about-mock__image {
  width: min(100%, 980px) !important;
  max-height: 620px !important;
}

.comparison-chart {
  margin: clamp(28px, 4vw, 48px) auto 0;
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid rgba(19, 95, 194, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 52px rgba(7, 27, 63, 0.1);
}

.comparison-chart img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-heading h2,
.hero h1,
.final-cta h2 {
  text-wrap: balance;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.section-heading p,
.hero__body,
.hero__lead,
.final-cta p {
  text-wrap: pretty;
}

.section-heading--center {
  margin-inline: auto;
}

.problem__heading,
.whynow__heading,
.affinity__heading,
.solution-renewed__heading,
.about__heading,
.comparison__heading,
.scene__heading,
.support-renewed__heading,
.faq__heading,
.final-cta__content {
  text-align: center;
}

@media (min-width: 961px) {
  .whynow__heading h2,
  .solution-renewed__heading h2,
  .support-renewed__heading h2,
  .final-cta h2 {
    max-width: 1120px;
    margin-inline: auto;
  }

  .comparison__heading h2 {
    max-width: 1040px;
    margin-inline: auto;
  }

  .scene__heading h2,
  .affinity__heading h2,
  .problem__heading h2 {
    max-width: 980px;
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .hero__tablet {
    max-height: 420px !important;
  }

  .about-mock__image {
    max-height: 460px !important;
  }

  .comparison-chart {
    overflow-x: auto;
    padding: 8px;
  }

  .comparison-chart img {
    min-width: 760px;
  }
}

@media (max-width: 720px) {
  .section-heading h2 br,
  .comparison__heading p br,
  .about__heading p br {
    display: none;
  }

  .section-heading h2 {
    font-size: clamp(27px, 7.4vw, 38px) !important;
    line-height: 1.42 !important;
  }

  .hero h1 {
    font-size: clamp(30px, 8.4vw, 42px) !important;
    line-height: 1.22 !important;
  }

  .hero__tablet {
    max-height: 300px !important;
  }

  .about-mock__image {
    max-height: 340px !important;
  }

  .comparison-chart img {
    min-width: 680px;
  }
}

/* FV final override */
.section-kicker {
  display: none !important;
}

.hero {
  min-height: 620px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 54px 0 28px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 33%, rgba(255, 255, 255, 0.58) 52%, rgba(255, 255, 255, 0.08) 72%, rgba(255, 255, 255, 0) 100%),
    url("assets/images/fv-background-laptop.png?ver2") 100% center / cover no-repeat !important;
}

.hero::before,
.hero::after,
.hero__visual,
.hero__visual::before,
.hero__tablet {
  display: none !important;
}

.hero__grid {
  min-height: auto !important;
  grid-template-columns: minmax(0, 720px) !important;
}

.hero__content {
  max-width: 720px !important;
}

.hero__eyebrow {
  margin-bottom: 18px !important;
  padding: 8px 18px !important;
  font-size: 15px !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: clamp(40px, 3.9vw, 56px) !important;
  line-height: 1.18 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.hero__lead {
  margin-top: 20px !important;
  font-size: clamp(18px, 1.5vw, 24px) !important;
  line-height: 1.55 !important;
}

.hero__body {
  max-width: 650px !important;
  margin-top: 16px !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.hero .button-row {
  margin-top: 22px !important;
  gap: 18px !important;
}

.hero .button {
  min-height: 52px !important;
  padding: 0 32px !important;
  font-size: 16px !important;
}

.hero__phone-row {
  margin-top: 14px !important;
  font-size: 14px !important;
}

.hero__phone-row span {
  font-size: 24px !important;
}

.campaign-banner {
  max-width: 1110px !important;
  margin-top: 22px !important;
}

.campaign-banner > div {
  min-height: 72px !important;
  padding: 14px 22px !important;
}

.campaign-banner__label {
  font-size: 22px !important;
}

.campaign-banner dd {
  font-size: clamp(22px, 2vw, 32px) !important;
}

.affinity__heading {
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.affinity__heading h2 {
  text-align: center !important;
}

.solution-renewed__heading h2 {
  /*font-size: clamp(34px, 3.3vw, 52px) !important;*/
font-size: clamp(27px, 7.4vw, 38px) !important;
  line-height: 1.35 !important;
  max-width: 1180px !important;
}

.solution-renewed__heading h2 br {
  display: block !important;
}

.solution-renewed__heading .heading-line {
  display: inline-block;
}

.solution-renewed__heading .heading-line--wide {
  white-space: nowrap;
}

/* Requested final adjustments / subcopy color and Solution layout */
.section-heading p,
.section-heading > p,
.hero__lead,
.hero__body,
.problem .section-heading p,
.whynow__heading p,
.whynow__message,
.affinity__heading p,
.affinity__message,
.solution-renewed__heading p,
.about__heading p,
.about-mock__note,
.comparison__heading p,
.comparison-summary p,
.scene__heading p,
.support-renewed__heading p,
.faq .section-heading p {
  color: var(--color-text) !important;
}

.solution-renewed__heading,
.solution-renewed__heading h2 {
  text-align: center !important;
}

.solution-renewed__heading h2 {
  margin-left: auto !important;
  margin-right: auto !important;
}

.solution-renewed__heading .heading-line {
  display: block !important;
  width: 100%;
  text-align: center !important;
}

.solution-renewed__cards {
  align-items: stretch !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.solution-renewed-card {
  display: grid !important;
  grid-template-rows: auto 190px 1fr !important;
  gap: 10px !important;
  height: 100% !important;
  align-content: start !important;
  padding-top: 22px !important;
}

.solution-renewed-card__head {
  min-height: 0 !important;
  margin-bottom: 2px !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.solution-renewed-card__head span {
  flex: 0 0 auto;
  line-height: 1 !important;
}

.solution-renewed-card__head h3 {
  margin: 0 !important;
  line-height: 1.35 !important;
  min-height: 0 !important;
}

.solution-renewed-card img {
  width: 100% !important;
  /*height: 190px !important;*/
  aspect-ratio: auto !important;
  object-fit: contain !important;
  align-self: start !important;
  margin-top: 0 !important;
}

.solution-renewed-card p {
  align-self: start !important;
  margin-top: 12px !important;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto !important;
    padding: 42px 0 26px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(255, 255, 255, 0.34) 100%),
      url("assets/images/fv-background-laptop.png?ver2") 76% bottom / cover no-repeat !important;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
  }

  .hero__content {
    max-width: 560px !important;
  }

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

  .hero__body {
    font-size: 15px !important;
  }

  .campaign-banner {
    max-width: 94% !important;
  }

  .solution-renewed__heading .heading-line--wide {
    white-space: normal;
  }

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

@media (max-width: 720px) {
  .hero {
    padding-top: 34px !important;
  }

  .hero .button-row {
    gap: 12px !important;
  }

  .hero .button {
    width: 100% !important;
    min-height: 50px !important;
  }

  .solution-renewed__heading h2 br {
    display: block !important;
  }

  .solution-renewed__cards {
    grid-template-columns: 1fr !important;
  }

  .solution-renewed-card {
    grid-template-rows: auto auto auto !important;
  }

  .solution-renewed-card__head {
    min-height: 0 !important;
  }

  .solution-renewed-card img {
    height: auto !important;
    /*max-height: 240px !important;*/
  }
}
