:root {
  --ink: #172033;
  --text: #334155;
  --muted: #64748b;
  --line: #dbe4ee;
  --base: #ffffff;
  --soft: #f5f8fb;
  --navy: #102a43;
  --blue: #0f4c81;
  --teal: #087f8c;
  --green: #2f7d5a;
  --orange: #f59f00;
  --shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--base);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 228, 238, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: var(--radius);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.24);
}

.brand-text {
  display: inline-block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px !important;
  color: #fff !important;
  background: var(--blue);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16, 42, 67, 0.94), rgba(15, 76, 129, 0.88)),
    linear-gradient(135deg, #102a43, #0f4c81 52%, #087f8c);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(177deg, transparent 34%, #fff 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.contact-section .eyebrow {
  color: #9de3d2;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  color: #ffcf70;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions,
.contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #172033;
  background: linear-gradient(135deg, #ffd166, var(--orange));
  box-shadow: 0 14px 30px rgba(245, 159, 0, 0.28);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

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

.button-large {
  min-width: 260px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.keyword-list li {
  padding: 8px 12px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

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

.hero-photo-card {
  position: absolute;
  inset: 56px 0 auto 32px;
  height: 350px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 42, 67, 0.1), rgba(16, 42, 67, 0.48));
}

.hero-photo-card img,
.problem-feature img,
.service-visual img,
.field-card img,
.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brand-card {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: min(82%, 410px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 249, 252, 0.92)),
    #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-brand-card::before {
  content: "";
  position: absolute;
  inset: -10px 28px auto auto;
  width: 92px;
  height: 4px;
  background: var(--orange);
  border-radius: 999px;
}

.hero-brand-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-brand-card p {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-logo-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-logo-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.hero-logo-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 8px;
  color: var(--ink);
  background: #eef7fb;
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
}

.visual-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.visual-panel-main {
  inset: 222px 22px auto 0;
  z-index: 3;
  padding: 22px;
}

.visual-panel-sub {
  right: 0;
  bottom: 36px;
  z-index: 4;
  width: 220px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.16);
}

.panel-label {
  display: block;
  margin-bottom: 18px;
  color: #9de3d2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.flow-row span {
  color: #d7ecff;
  font-size: 13px;
  font-weight: 800;
}

.flow-row strong {
  color: #fff;
}

.flow-row em {
  padding: 4px 8px;
  color: #102a43;
  background: #9de3d2;
  border-radius: 6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.mini-metrics b {
  display: block;
  color: #ffcf70;
  font-size: 46px;
  line-height: 1;
}

.mini-metrics span {
  color: #eaf6ff;
  font-size: 13px;
}

.visual-ribbon {
  position: absolute;
  left: 36px;
  bottom: 26px;
  padding: 10px 14px;
  color: #102a43;
  background: #fff;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--soft);
}

.section-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(47, 125, 90, 0.9)),
    linear-gradient(135deg, #102a43, #2f7d5a);
}

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

.section-heading h2,
.profile-card h2,
.contact-inner h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.24;
  letter-spacing: 0;
}

.section-band .section-heading h2,
.section-band .section-heading p,
.contact-inner h2,
.contact-inner p {
  color: #fff;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
  max-width: none;
}

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

.problem-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 0;
  align-items: stretch;
  margin-bottom: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.problem-feature img {
  min-height: 320px;
}

.problem-feature div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(245, 248, 251, 0.94), rgba(255, 255, 255, 0.98)),
    #fff;
}

.problem-feature span,
.service-visual span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-feature h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.35;
}

.problem-feature p {
  margin: 0;
}

.problem-card,
.service-card,
.field-card,
.price-card,
.profile-card,
.profile-aside,
.ba-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 42, 67, 0.07);
}

.problem-card {
  min-height: 154px;
  padding: 18px;
}

.problem-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  font-weight: 900;
}

.problem-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-visual {
  position: relative;
  min-height: 330px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 42, 67, 0.78), rgba(16, 42, 67, 0.12));
}

.service-visual div {
  position: absolute;
  inset: auto auto 26px 26px;
  z-index: 1;
  width: min(480px, calc(100% - 52px));
  padding: 22px;
  color: #fff;
  background: rgba(16, 42, 67, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.service-visual span {
  color: #9de3d2;
}

.service-visual p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.service-card {
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
}

.service-card h3,
.field-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
}

.service-card p {
  min-height: 112px;
  margin-bottom: 18px;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card li {
  padding: 5px 8px;
  color: var(--blue);
  background: #eef7fb;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.field-card {
  align-self: start;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.field-card img {
  height: 150px;
}

.field-card .field-tag,
.field-card h3,
.field-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.field-card .field-tag {
  margin-top: 22px;
}

.field-card p {
  display: block;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 14px 16px;
  color: var(--text);
  background: var(--soft);
  border: 1px solid rgba(219, 228, 238, 0.84);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.field-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.ba-card {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.ba-card div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
}

.ba-card div:last-child {
  background: #eef9f4;
}

.ba-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.ba-card strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--orange);
  border-radius: var(--radius);
}

.section-profile {
  background:
    linear-gradient(90deg, #f5f8fb 0%, #f5f8fb 52%, #ffffff 52%, #ffffff 100%);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.profile-card,
.profile-aside {
  padding: 30px;
}

.profile-aside {
  overflow: hidden;
  padding-top: 0;
}

.profile-photo {
  height: 210px;
  margin: 0 -30px 24px;
  width: calc(100% + 60px);
}

.profile-card p:last-child,
.profile-aside p:last-child {
  margin-bottom: 0;
}

.profile-aside h3 {
  margin-bottom: 18px;
  color: var(--ink);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 3px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  counter-reset: step;
}

.step-list li {
  position: relative;
  min-height: 150px;
  padding: 18px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16, 42, 67, 0.06);
}

.step-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-weight: 900;
}

.step-list p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.price-card {
  padding: 22px;
}

.price-card span {
  display: block;
  min-height: 56px;
  color: var(--ink);
  font-weight: 800;
}

.price-card strong {
  color: var(--blue);
  font-size: 22px;
}

.contact-section {
  padding: 86px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.95), rgba(16, 42, 67, 0.96)),
    linear-gradient(135deg, #0f4c81, #102a43);
}

.contact-inner {
  flex-direction: column;
  align-items: flex-start;
  max-width: 820px;
}

.contact-inner p {
  max-width: 740px;
  font-size: 18px;
}

.site-footer {
  color: #d9e7f2;
  background: #0d1b2a;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0 28px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-text {
  color: #fff;
}

.footer-brand .brand-mark {
  background: linear-gradient(135deg, #9de3d2, #0f4c81);
}

.site-footer p {
  margin: 12px 0 0;
  color: #afc5d8;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-weight: 700;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding: 16px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb5c7;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  padding: 12px 16px;
  color: #172033;
  background: linear-gradient(135deg, #ffd166, var(--orange));
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.26);
  font-weight: 900;
}

.sub-hero {
  padding: 76px 0 50px;
  color: #fff;
  background: linear-gradient(135deg, #102a43, #0f4c81 58%, #087f8c);
}

.sub-hero h1 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.2;
}

.sub-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.legal-content {
  max-width: 860px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 0;
}

.enactment {
  margin-top: 34px;
  color: var(--muted);
  font-weight: 700;
}

.info-list {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.info-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}

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

.info-list dt,
.info-list dd {
  margin: 0;
  padding: 16px;
}

.info-list dt {
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

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

  .section-profile {
    background: var(--soft);
  }

  .hero-visual {
    min-height: 540px;
  }

  .problem-feature {
    grid-template-columns: 1fr;
  }

  .problem-feature img {
    min-height: 260px;
  }
}

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

  .header-inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav:not(.static-nav) {
    position: fixed;
    inset: 64px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px !important;
  }

  .static-nav {
    gap: 12px;
    font-size: 13px;
  }

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

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-lead,
  .contact-inner p {
    font-size: 16px;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .keyword-list li {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-photo-card {
    inset: 86px 0 auto;
    height: 280px;
  }

  .visual-panel-main {
    inset: 330px 0 auto 0;
  }

  .visual-panel-sub {
    right: 10px;
    bottom: 24px;
    width: 190px;
  }

  .visual-ribbon {
    left: 0;
    bottom: 0;
  }

  .hero-brand-card {
    width: 92%;
  }

  .hero-logo-tags {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .problem-grid,
  .service-grid,
  .field-grid,
  .step-list,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .service-card p,
  .price-card span {
    min-height: 0;
  }

  .problem-feature div {
    padding: 24px;
  }

  .service-visual {
    min-height: 380px;
  }

  .service-visual div {
    inset: auto 14px 14px;
    width: auto;
    padding: 18px;
  }

  .field-card img {
    height: 190px;
  }

  .ba-card {
    grid-template-columns: 1fr;
  }

  .ba-card strong {
    margin-inline: auto;
    transform: rotate(90deg);
  }

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

  .floating-cta {
    display: inline-flex;
  }

  .legal-content {
    padding: 22px;
  }

  .info-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand-text {
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
  }

  .keyword-list li {
    flex-basis: 100%;
  }

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

  .visual-panel-sub {
    width: 170px;
  }

  .mini-metrics b {
    font-size: 38px;
  }
}
