/* ===================================================
   久内不動産テクノロジー - Site styles
   clean / corporate / multi-page
   =================================================== */

:root {
  --navy:        #1a3d8e;
  --navy-deep:   #14306e;
  --navy-darker: #0c1f4d;
  --navy-soft:   #4a6fb8;
  --navy-pale:   #e8eef9;
  --bg-light:    #f6f8fc;
  --bg-soft:     #eef3fa;
  --bg-table:    #f4f6fb;
  --text-dark:   #1a1f2e;
  --text-body:   #525a6e;
  --text-muted:  #8893a6;
  --border:      #e2e8f0;
  --border-soft: #edf1f7;
  --white:       #ffffff;
  --error:       #c0392b;
  --success:     #1a7f4d;

  --tag-info:    #3a6fc0;
  --tag-press:   #1a3d8e;
  --tag-case:    #6a4caf;
  --tag-web:     #2a8aa3;

  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(15,30,70,0.04);
  --shadow-md: 0 6px 20px rgba(15,30,70,0.06);
  --shadow-lg: 0 16px 36px rgba(15,30,70,0.1);
  --shadow-xl: 0 24px 48px rgba(15,30,70,0.14);

  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Meiryo", "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "palt";
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--easing), opacity .2s var(--easing); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; }

/* Fluid container: side padding scales with viewport.
   No centered max-width by default — header logo, hero copy and
   section content all share the same left edge. */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(20px, 4.5vw, 72px);
  padding-right: clamp(20px, 4.5vw, 72px);
}
.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-left: clamp(20px, 4.5vw, 32px);
  padding-right: clamp(20px, 4.5vw, 32px);
}

.arrow {
  display: inline-block;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  transition: transform .25s var(--easing);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============ REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  padding: 18px 0;
  /* Always-visible hairline to separate the header from the page below. */
  border-bottom: 1px solid rgba(15,30,70,0.07);
  transition: padding .25s var(--easing), border-color .25s var(--easing), box-shadow .25s var(--easing);
}
.site-header.is-scrolled {
  padding: 12px 0;
  border-bottom-color: rgba(15,30,70,0.12);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  margin-top: 4px;
  font-weight: 500;
}
.header-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 36px;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  padding: 26px 0;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--easing);
}
.nav-list > li > a:hover { color: var(--navy); }
.nav-list > li > a:hover::after { transform: scaleX(1); transform-origin: left; }

/* dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-right: 8px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform .25s var(--easing);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--easing), transform .2s var(--easing), visibility .2s;
  border-radius: 2px;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 36px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
  transform: rotate(45deg);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-dark);
  transition: background .15s var(--easing), color .15s var(--easing);
}
.dropdown li a::before {
  content: '›';
  margin-right: 10px;
  color: var(--navy);
  font-weight: 600;
}
.dropdown li a:hover {
  background: var(--bg-soft);
  color: var(--navy);
}
.dropdown-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 8px 16px;
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform .25s var(--easing), opacity .25s var(--easing);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 90;
  padding: 100px 32px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--easing), visibility .25s var(--easing);
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu li a::after {
  content: '›';
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
}
.mobile-menu .mm-sub {
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-body);
}
.mobile-menu .mm-cta {
  margin-top: 24px;
  background: var(--navy);
  color: var(--white);
  border-bottom: none;
  border-radius: 2px;
  justify-content: center;
  padding: 18px;
}
.mobile-menu .mm-cta::after { content: '→'; color: var(--white); margin-left: 12px; }

/* ============ HERO (HOME) ============ */
.hero {
  position: relative;
  padding: 120px 0 64px;
  background: var(--white);
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: stretch;
}
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-image: url('assets/hero-city.png');
  background-size: cover;
  background-position: center;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-photo-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.55) 0%, rgba(232,238,249,0.15) 35%, rgba(232,238,249,0) 80%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  /* Left column ends exactly at the city photo's left edge (40vw),
     so hero copy can be centered between the page padding and the image. */
  grid-template-columns: calc(40vw - clamp(20px, 4.5vw, 72px)) 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
}
.hero-copy {
  position: relative;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Title + description block: vertically centered in hero */
.hero-text {
  /* centered automatically by parent's justify-content: center */
}
/* Buttons sit in the lower remaining space, anchored near the hero bottom */
.hero-actions {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
}
.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 220px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--easing), color .2s var(--easing), border-color .2s var(--easing);
}
.btn .arrow { font-size: 16px; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-outline { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--bg-soft); }
.btn-light { background: var(--white); color: var(--navy); min-width: 280px; padding: 18px 28px; }
.btn-light:hover { background: var(--bg-soft); }

/* hero floating card -- positioned INSIDE hero, upper-right area.
   Uses an image-based card (full design including phone mock baked in).
   right value matches the container's right padding so the card aligns
   with the content edge while leaving breathing room from viewport. */
.hero-service-card {
  position: absolute;
  right: clamp(20px, 4.5vw, 72px);
  top: 80px;
  width: 400px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  z-index: 5;
  padding: 0;
  transition: transform .35s var(--easing), box-shadow .35s var(--easing);
}
.hero-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(15,30,70,0.18);
}
.hero-service-card a {
  display: block;
  position: relative;
}
.hero-service-card img {
  width: 100%;
  height: auto;
  display: block;
}
/* Footer CTA appended below the image */
.hero-service-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border-soft);
  background: var(--white);
  transition: background .2s var(--easing);
}
.hero-service-card-cta .arrow {
  font-size: 16px;
  transition: transform .25s var(--easing);
}
.hero-service-card a:hover .hero-service-card-cta { background: var(--bg-soft); }
.hero-service-card a:hover .hero-service-card-cta .arrow { transform: translateX(4px); }
.hsc-text { flex: 1; }
.hsc-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.hsc-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.hsc-sub {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}
.hsc-link {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
}
.hsc-link:hover .arrow { transform: translateX(4px); }

/* phone mockup */
.hsc-phone { flex-shrink: 0; }
.phone-frame {
  width: 96px;
  height: 176px;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid #d6dbe5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-frame-lg {
  width: 220px;
  height: 420px;
  border-radius: 28px;
  border-width: 4px;
  box-shadow: var(--shadow-lg);
}
.phone-bar {
  height: 22px;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 0 10px;
  flex-shrink: 0;
}
.phone-frame-lg .phone-bar { height: 36px; padding: 0 18px; }
.phone-bar span {
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
}
.phone-frame-lg .phone-bar span { font-size: 12px; }
.phone-body {
  flex: 1;
  background: linear-gradient(180deg, #f7f9fc 0%, #eaf0fa 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 6px;
}
.phone-frame-lg .phone-body { padding: 22px 18px; gap: 14px; }
.phone-meta { font-size: 10px; color: var(--text-body); align-self: flex-start; }
.phone-meta-sm { font-size: 9px; color: var(--text-muted); align-self: flex-start; }
.phone-frame:not(.phone-frame-lg) .phone-gauge svg { width: 56px; height: 56px; }
.phone-bars { display: flex; gap: 4px; align-items: flex-end; height: 24px; }
.phone-bars span { width: 8px; background: var(--navy); border-radius: 2px; opacity: 0.85; }
.phone-frame:not(.phone-frame-lg) .phone-bars span:nth-child(1) { height: 12px; }
.phone-frame:not(.phone-frame-lg) .phone-bars span:nth-child(2) { height: 18px; }
.phone-frame:not(.phone-frame-lg) .phone-bars span:nth-child(3) { height: 22px; }
.phone-frame-lg .phone-bars { height: 36px; gap: 6px; }
.phone-frame-lg .phone-bars span { width: 14px; }
.phone-frame-lg .phone-bars span:nth-child(1) { height: 18px; }
.phone-frame-lg .phone-bars span:nth-child(2) { height: 28px; }
.phone-frame-lg .phone-bars span:nth-child(3) { height: 34px; }
.phone-cta { background: var(--navy); color: var(--white); font-size: 9px; padding: 6px 12px; border-radius: 12px; font-weight: 600; }
.phone-frame-lg .phone-cta { font-size: 13px; padding: 12px 28px; border-radius: 24px; }
.phone-tabs {
  display: flex; gap: 6px;
  margin-top: auto; padding-top: 6px;
  border-top: 1px solid #d6dbe5;
  width: 100%; justify-content: space-around;
}
.phone-tabs span { width: 8px; height: 8px; background: #c5cdd8; border-radius: 50%; }
.phone-frame-lg .phone-tabs span { width: 12px; height: 12px; }

/* ============ PAGE HERO (subpages) ============ */
.page-hero {
  position: relative;
  background: linear-gradient(115deg, var(--navy-darker) 0%, var(--navy-deep) 50%, var(--navy) 100%);
  padding: 140px 0 70px;
  overflow: hidden;
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.06), transparent 50%),
    url('assets/hero-city.png');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  margin-bottom: 28px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 12px;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb [aria-current="page"] { color: var(--white); }

.page-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: capitalize;
  margin-bottom: 8px;
  display: inline-block;
}
.page-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.page-lead {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 2;
  max-width: 720px;
}

/* ============ SECTION COMMON ============ */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head-left { display: flex; flex-direction: column; }
.section-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.section-lead {
  font-size: 14px;
  color: var(--text-body);
  line-height: 2;
  padding-bottom: 6px;
}

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

/* ============ BUSINESS (home cards) ============ */
.business {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
}
.biz-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 40px 24px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  transition: box-shadow .25s var(--easing), transform .25s var(--easing), border-color .25s var(--easing);
  color: inherit;
}
.biz-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--navy-pale);
}
.biz-card:hover .arrow { transform: translateX(4px); }
.biz-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.biz-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.biz-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 2;
  margin-bottom: 26px;
  flex-grow: 1;
}
.biz-link {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
}

/* ============ STRENGTHS ============ */
.strengths { background: var(--bg-light); }
.strength-card {
  background: var(--white);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--easing), transform .3s var(--easing);
}
.strength-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.strength-photo {
  position: relative;
  height: 210px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.strength-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  transition: transform .8s var(--easing);
}
.strength-card:hover .strength-photo::before {
  transform: scale(1.06);
}
.strength-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,48,110,0.18) 0%, rgba(20,48,110,0.45) 100%);
  z-index: 1;
}
.strength-photo-1 {
  background-image: url('assets/hero-city.png');
}
.strength-photo-2 {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=900&q=80');
}
.strength-photo-3 {
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80');
}
.strength-num {
  position: absolute;
  left: 24px;
  top: 16px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.strength-body {
  padding: 28px 28px 32px;
}
.strength-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.strength-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 2;
}

/* ============ NEW SERVICE ============ */
.newservice { background: var(--white); }
.newservice-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.newservice-intro .section-eyebrow { margin-bottom: 8px; }
.newservice-intro .section-title { margin-bottom: 24px; }
.newservice-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 2.1;
  margin-bottom: 24px;
}
.newservice-card-image {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--easing), box-shadow .35s var(--easing);
}
.newservice-card-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.newservice-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.newservice-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ns-feature {
  background: var(--white);
  padding: 30px 16px 24px;
  text-align: center;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  transition: box-shadow .25s var(--easing), border-color .25s var(--easing);
}
.ns-feature:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy-pale);
}
.ns-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; height: 44px; }
.ns-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.ns-desc { font-size: 12px; color: var(--text-body); line-height: 1.95; }
.newservice-note {
  margin-top: 36px;
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ COMPANY + NEWS ============ */
.company-news { background: var(--bg-light); }
.company-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.block-head { margin-bottom: 24px; }
.block-head-row { display: flex; align-items: flex-end; justify-content: space-between; }
.block-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.news-all {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
  white-space: nowrap;
}
.news-all:hover { color: var(--navy); }
.news-all:hover .arrow { transform: translateX(4px); }

.company-table {
  width: 100%;
  background: var(--white);
  font-size: 13px;
  border-top: 1px solid var(--border-soft);
}
.company-table th,
.company-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.85;
}
.company-table th {
  width: 140px;
  background: var(--bg-table);
  color: var(--text-dark);
  font-weight: 600;
}
.company-table td a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.biz-list {
  list-style: decimal;
  padding-left: 1.4em;
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.95;
}
.biz-list li { margin-bottom: 6px; }

/* news list */
.news-list {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
}
.news-item {
  border-bottom: 1px solid var(--border-soft);
}
.news-item a {
  display: grid;
  grid-template-columns: 90px 110px 1fr 16px;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  transition: background .2s var(--easing);
}
.news-item.is-hidden { display: none; }
.news-item a:hover { background: var(--bg-soft); }
.news-item a:hover .arrow { transform: translateX(4px); color: var(--navy); }
.news-date {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.news-tag {
  font-size: 11px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.tag-info  { background: var(--tag-info); }
.tag-press { background: var(--tag-press); }
.tag-case  { background: var(--tag-case); }
.tag-web   { background: var(--tag-web); }
.news-title {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
}
.news-item .arrow {
  color: var(--text-muted);
  text-align: right;
}

/* ============ FAQ ============ */
.faq {
  background: var(--bg-light);
  border-top: 1px solid rgba(15,30,70,0.06);
}
.faq-list {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: background .2s var(--easing);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-q-mark {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}
.faq-q-text { line-height: 1.6; }
.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  justify-self: center;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: transform .25s var(--easing);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 4px 28px 24px;
  align-items: start;
}
.faq-a-mark {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
}
.faq-a p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 2;
}

/* ============ CONTACT BAND ============ */
.contact-band {
  background: linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.08), transparent 60%);
}
.contact-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-band-left {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
}
.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-band-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--white);
}
.contact-band-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
}

/* ============ CONTACT FORM ============ */
.contact-form {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field {
  margin-bottom: 24px;
}
.form-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.req {
  font-size: 10px;
  color: var(--white);
  background: var(--navy);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.opt {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-table);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color .2s var(--easing), box-shadow .2s var(--easing);
}
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.8; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,61,142,0.1);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--error);
  background: #fdf6f5;
}
.form-error {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
  min-height: 14px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 32px;
  font-size: 13px;
  color: var(--text-body);
  cursor: pointer;
}
.form-check input { margin-top: 4px; accent-color: var(--navy); }
.form-check a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.form-actions { text-align: center; }
.form-submit { min-width: 280px; position: relative; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  margin-top: 32px;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--navy-pale);
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: var(--navy);
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0c1f4d;
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-main {
  font-size: 17px;
  color: var(--white);
}
.footer-brand .logo-sub {
  color: rgba(255,255,255,0.55);
}
.footer-tagline {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li a {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  transition: color .2s var(--easing);
}
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s var(--easing), transform .25s var(--easing), background .2s var(--easing);
  z-index: 50;
  pointer-events: none;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--navy-deep); }

/* ============ SUBPAGE COMPONENTS ============ */

/* page in-toc / sticky local nav */
.page-toc {
  position: sticky;
  top: calc(var(--header-h) + 8px);
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 18px 20px;
  font-size: 13px;
}
.page-toc h4 {
  font-size: 12px;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.page-toc ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-toc a {
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  padding: 4px 0;
}
.page-toc a:hover { color: var(--navy); }
.page-toc a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--navy-pale);
  border-radius: 50%;
}

.content-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

/* lead block */
.lead-block {
  background: var(--bg-light);
  border-left: 3px solid var(--navy);
  padding: 32px 36px;
  margin-bottom: 56px;
  font-size: 15px;
  line-height: 2;
  color: var(--text-dark);
  border-radius: 0 4px 4px 0;
}

/* check list */
.check-list {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 32px 36px;
}
.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 14px 0;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.8;
  border-bottom: 1px dashed var(--border-soft);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  background: var(--navy-pale);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* numbered process */
.process-list {
  display: grid;
  gap: 20px;
}
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 24px 28px;
  border-radius: 4px;
  align-items: start;
}
.process-num {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.process-num small {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}
.process-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-item p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.95;
}

/* timeline / history */
.timeline {
  border-left: 1px solid var(--border);
  padding-left: 28px;
  margin-left: 12px;
}
.timeline li {
  position: relative;
  padding: 0 0 24px 0;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50%;
}
.timeline-date {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.timeline-text {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.85;
}

/* sitemap tree */
.sitemap-tree {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.sitemap-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--navy);
  letter-spacing: 0.04em;
}
.sitemap-col ul { display: flex; flex-direction: column; gap: 4px; }
.sitemap-col > ul > li > a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.sitemap-col > ul > li > a:hover { color: var(--navy); }
.sitemap-col ul ul {
  padding-left: 20px;
  margin-bottom: 6px;
}
.sitemap-col ul ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--text-body);
}
.sitemap-col ul ul li a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--text-muted);
}
.sitemap-col ul ul li a:hover { color: var(--navy); }

/* prose for legal pages */
.prose {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 2;
}
.prose h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--navy);
  letter-spacing: 0.04em;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; }
.prose ol, .prose ul {
  padding-left: 1.4em;
  list-style: decimal;
  margin-bottom: 16px;
}
.prose ul { list-style: disc; }
.prose li { margin-bottom: 6px; }

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 1px solid var(--border);
  color: var(--text-body);
  border-radius: 2px;
  transition: background .2s var(--easing), color .2s var(--easing), border-color .2s var(--easing);
  padding: 0 12px;
}
.pagination a:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.pagination .is-current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  cursor: default;
}

/* "related links" */
.related-links {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-soft);
}
.related-links h3 {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  transition: border-color .2s var(--easing), background .2s var(--easing);
}
.related-card:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
}
.related-card:hover .arrow { transform: translateX(4px); }
.related-card .arrow { color: var(--navy); }

/* news article filter banner */
.news-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.news-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.news-filter {
  font-size: 12px;
  color: var(--text-body);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-weight: 500;
  transition: background .2s var(--easing), color .2s var(--easing), border-color .2s var(--easing);
}
.news-filter:hover { border-color: var(--navy); color: var(--navy); }
.news-filter.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* recruit job list */
.job-list {
  display: grid;
  gap: 16px;
}
.job-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 24px 28px;
  border-radius: 4px;
}
.job-tag {
  font-size: 11px;
  background: var(--navy-pale);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-bottom: 8px;
}
.job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.job-meta {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.8;
}
.job-cta {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}
.job-cta:hover .arrow { transform: translateX(4px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .section { padding: 72px 0; }
  .hero {
    display: block;
    min-height: 0;
  }
  .hero-inner {
    display: block;
  }
  .hero-copy {
    max-width: 540px;
    margin: 0 auto;
    grid-column: auto;
    display: block;
  }
  .hero-actions {
    position: static;
    margin-top: 32px;
  }
  .hero-title { font-size: 36px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .newservice-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .newservice-features { grid-template-columns: repeat(3, 1fr); }
  .company-news-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-service-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 40px auto 0;
    max-width: 480px;
  }
  .hero { padding: 96px 0 48px; min-height: 0; }
  .hero-photo, .hero-photo-overlay { width: 50%; }
  .nav-list { gap: 24px; }
  .nav-list > li > a { font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-toc { position: relative; top: auto; margin-bottom: 16px; }
  .sitemap-tree { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 48px; }
  .page-title { font-size: 32px; }
}

@media (max-width: 720px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .container-narrow { padding-left: 20px; padding-right: 20px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .site-header { padding: 14px 0; }
  .site-header.is-scrolled { padding: 10px 0; }
  .logo-main { font-size: 15px; }
  .logo-sub { font-size: 9px; }

  .section { padding: 56px 0; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .section-eyebrow { margin-bottom: 4px; font-size: 11px; }
  .section-title { font-size: 24px; line-height: 1.5; letter-spacing: 0.02em; }
  .section-lead { font-size: 13px; line-height: 1.9; }

  .hero { padding: 84px 0 32px; min-height: 0; }
  .hero-photo, .hero-photo-overlay { display: none; }
  .hero-copy { padding-top: 0; }
  .hero-title { font-size: 26px; line-height: 1.55; margin-bottom: 20px; letter-spacing: 0.03em; }
  .hero-desc { font-size: 13px; line-height: 1.95; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .btn { width: 100%; min-width: 0; padding: 14px 22px; }
  .hero-service-card {
    width: 100%;
    margin-top: 32px;
    box-shadow: var(--shadow-md);
  }

  .page-hero { padding: 84px 0 36px; }
  .page-eyebrow { font-size: 11px; }
  .page-title { font-size: 26px; line-height: 1.5; margin-bottom: 12px; letter-spacing: 0.03em; }
  .page-lead { font-size: 13px; line-height: 1.95; }
  .breadcrumb { margin-bottom: 20px; }
  .breadcrumb ol { font-size: 11px; }

  .card-grid { gap: 16px; }
  .card-grid-4, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .newservice-features { grid-template-columns: 1fr; gap: 12px; }
  .biz-card { padding: 32px 20px 24px; }
  .biz-card .biz-desc br { display: none; }
  .biz-desc { font-size: 13px; line-height: 1.9; }
  .strength-body { padding: 22px 22px 26px; }
  .strength-desc br { display: none; }
  .strength-photo { height: 180px; }

  .newservice-grid { gap: 32px; margin-bottom: 36px; }
  .newservice-desc br { display: none; }
  .newservice-note { text-align: left; line-height: 1.7; }

  .company-news-grid { gap: 40px; }
  .block-title { font-size: 22px; }
  .company-table th { width: 100px; padding: 12px; font-size: 12px; }
  .company-table td { padding: 12px; font-size: 12px; }

  .news-item a { grid-template-columns: 1fr; gap: 6px; padding: 14px 16px; }
  .news-tag { justify-self: start; }

  .faq-item summary { grid-template-columns: 24px 1fr 24px; padding: 18px 18px; font-size: 14px; gap: 12px; }
  .faq-a { grid-template-columns: 24px 1fr; padding: 4px 18px 20px; gap: 12px; }

  .contact-band { padding: 40px 0; }
  .contact-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .contact-band-left { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact-band-title { font-size: 20px; }
  .contact-icon { width: 60px; height: 60px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { min-width: 0; width: 100%; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .site-footer { padding: 48px 0 24px; }

  .process-item { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
  .job-item { grid-template-columns: 1fr; gap: 12px; padding: 22px 24px; }
  .lead-block { padding: 22px 24px; font-size: 14px; }

  .related-grid { grid-template-columns: 1fr; gap: 12px; }
}
