:root {
  --color-navy: #0f2742;
  --color-navy-deep: #0a1a2d;
  --color-sand: #d6c09a;
  --color-mist: #e8eef3;
  --color-panel: rgba(12, 30, 52, 0.78);
  --color-white: #f8fafc;
  --color-text: #142131;
  --color-muted: #5c6a79;
  --color-line: rgba(15, 39, 66, 0.12);
  --color-success: #3d7f63;
  --shadow-strong: 0 32px 80px rgba(8, 18, 34, 0.22);
  --shadow-soft: 0 18px 36px rgba(8, 18, 34, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-width: 1180px;
  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "Times New Roman", serif;
  --font-body: "IBM Plex Sans", "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(214, 192, 154, 0.22), transparent 28%),
    linear-gradient(180deg, #edf3f7 0%, #f7f8f7 55%, #f0f3f5 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid rgba(15, 39, 66, 0.08);
}

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

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--color-success);
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--color-muted);
  font-size: 0.96rem;
}

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

.lang-switch {
  padding: 10px 14px;
  border: 1px solid rgba(15, 39, 66, 0.15);
  border-radius: 999px;
  color: var(--color-navy) !important;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-navy);
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--color-white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
}

.hero-media-overview img {
  object-position: center 64%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 23, 0.82) 0%, rgba(5, 12, 23, 0.4) 56%, rgba(5, 12, 23, 0.6) 100%),
    linear-gradient(180deg, rgba(10, 26, 45, 0.12) 0%, rgba(10, 26, 45, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 390px);
  gap: 28px;
  align-items: end;
  min-height: 720px;
  padding: 92px 0 72px;
}

.hero-copy h1,
.section-heading h2,
.section-split h2,
.section-contact h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-sand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-lead,
.section-heading p,
.section-split p,
.service-card p,
.feature-list p,
.public-proof li,
.contact-note,
.contact-grid p {
  line-height: 1.75;
  font-size: 1.04rem;
}

.hero-lead {
  max-width: 60ch;
  margin: 24px 0 0;
  color: rgba(248, 250, 252, 0.92);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--color-sand), #b8955d);
  color: var(--color-navy-deep);
}

.button-secondary {
  background: rgba(61, 127, 99, 0.9);
  color: var(--color-white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card,
.stat-card,
.service-card,
.license-card,
.gallery-card,
.inquiry-form,
.bullet-panel,
.image-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: 28px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card-kicker {
  margin: 0 0 10px;
  color: var(--color-sand);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  font-family: var(--font-display);
}

.contact-list,
.contact-list-wide,
.service-card ul,
.public-proof ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.contact-list-wide li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list-wide li {
  border-bottom-color: rgba(15, 39, 66, 0.08);
}

.contact-note {
  margin: 16px 0 0;
  color: rgba(248, 250, 252, 0.78);
}

.section {
  padding: 96px 0;
}

.section-intro {
  margin-top: -26px;
}

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

.section-heading h2,
.section-split h2,
.section-contact h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--color-navy-deep);
}

.section-heading p,
.section-split p,
.contact-grid p {
  color: var(--color-muted);
}

.stats-grid,
.service-grid,
.license-grid,
.gallery-grid,
.process-grid,
.terminal-showcase {
  display: grid;
  gap: 20px;
}

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

.stat-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 39, 66, 0.08);
}

.stat-card strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.35rem;
  line-height: 1.4;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
}

.section-split {
  padding-top: 24px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.bullet-panel {
  padding: 30px;
  background: linear-gradient(160deg, rgba(15, 39, 66, 0.96), rgba(17, 46, 79, 0.9));
  color: var(--color-white);
}

.bullet-panel > div + div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bullet-panel strong {
  display: block;
  color: var(--color-sand);
  margin-bottom: 8px;
}

.bullet-panel p {
  margin: 0;
  color: rgba(248, 250, 252, 0.84);
}

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

.service-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 39, 66, 0.08);
}

.service-card-image {
  padding: 0;
  overflow: hidden;
  min-height: 320px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03) brightness(1.04);
}

.service-card h3,
.feature-list h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 1.35rem;
}

.service-card ul {
  margin-top: 18px;
}

.service-card li,
.public-proof li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
  line-height: 1.7;
}

.service-card li + li,
.public-proof li + li {
  margin-top: 10px;
}

.service-card li::before,
.public-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
}

.section-contrast {
  background: linear-gradient(180deg, rgba(226, 234, 240, 0.72), rgba(245, 247, 248, 0.95));
  border-top: 1px solid rgba(15, 39, 66, 0.06);
  border-bottom: 1px solid rgba(15, 39, 66, 0.06);
}

.section-table {
  padding-top: 24px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 39, 66, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.capability-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.capability-table th,
.capability-table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 39, 66, 0.08);
  line-height: 1.72;
}

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

.capability-table th {
  width: 150px;
  color: var(--color-navy);
  background: rgba(232, 238, 243, 0.7);
  font-size: 1.02rem;
}

.capability-table td {
  color: var(--color-muted);
}

.capability-table td:nth-child(2) {
  width: 38%;
  color: var(--color-text);
  font-weight: 700;
}

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

.license-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 39, 66, 0.08);
}

.license-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.license-card figcaption,
.gallery-card figcaption {
  padding: 14px 16px 18px;
  color: var(--color-navy);
  font-weight: 700;
}

.license-card figcaption span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.public-proof {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--color-success);
  background: rgba(255, 255, 255, 0.78);
}

.public-proof p {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-weight: 700;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03) brightness(1.04);
}

.feature-list article + article {
  margin-top: 24px;
}

.feature-list p {
  margin: 0;
}

.section-gallery {
  position: relative;
}

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

.gallery-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03) brightness(1.04);
}

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

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

.process-grid article {
  padding: 26px;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
}

.process-grid h3 {
  margin: 18px 0 10px;
  color: var(--color-navy);
  font-size: 1.2rem;
}

.process-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.terminal-showcase {
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-top: 28px;
}

.terminal-showcase figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.terminal-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03) brightness(1.04);
}

.terminal-showcase figcaption {
  padding: 14px 16px 18px;
  color: var(--color-navy);
  font-weight: 700;
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(15, 39, 66, 0.04), rgba(15, 39, 66, 0.08)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(233, 239, 243, 0.86));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 34px;
  align-items: start;
}

.inquiry-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 39, 66, 0.08);
}

.inquiry-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--color-navy);
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(15, 39, 66, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fbfcfd;
  color: var(--color-text);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-message {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

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

.form-message a {
  color: var(--color-navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-summary {
  display: block;
  margin: 12px 0 0;
  padding: 12px;
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(15, 39, 66, 0.06);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.quick-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248, 250, 252, 0.96);
  border-top: 1px solid rgba(15, 39, 66, 0.1);
  box-shadow: 0 -14px 34px rgba(8, 18, 34, 0.12);
  backdrop-filter: blur(14px);
}

.quick-contact-bar a {
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.site-footer {
  background: var(--color-navy-deep);
  color: rgba(248, 250, 252, 0.84);
  padding: 28px 0 34px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-title {
  margin: 0 0 8px;
  color: var(--color-white);
  font-weight: 700;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-meta a {
  color: rgba(248, 250, 252, 0.84);
  text-decoration: none;
}

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

.page-hero {
  padding: 120px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(214, 192, 154, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 39, 66, 0.1), rgba(255, 255, 255, 0.86));
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  color: var(--color-navy-deep);
}

.page-lead {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 420px;
  color: var(--color-white);
}

.page-hero-image > img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background: linear-gradient(180deg, rgba(10, 26, 45, 0.28), rgba(10, 26, 45, 0.72));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 52px;
}

.page-hero-image h1,
.page-hero-image .page-lead {
  color: var(--color-white);
}

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

.content-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.content-card h2 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 1.4rem;
}

.content-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    min-width: 240px;
    padding: 14px;
    background: rgba(248, 250, 252, 0.98);
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.22s ease;
  }

  .site-nav[data-nav-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .hero-content {
    min-height: unset;
  }

  .hero-content,
  .split-grid,
  .contact-grid,
  .service-grid,
  .license-grid,
  .gallery-grid,
  .stats-grid,
  .content-grid,
  .process-grid,
  .terminal-showcase {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 108px 0 60px;
  }

  .image-card img {
    min-height: 300px;
  }

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

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

@media (max-width: 640px) {
  body {
    background: linear-gradient(180deg, #edf3f7 0%, #f8fafc 48%, #eef2f5 100%);
  }

  .container {
    width: min(calc(100% - 30px), var(--content-width));
  }

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

  .brand {
    max-width: 270px;
  }

  .brand-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .site-nav {
    top: 68px;
    right: 15px;
    width: min(250px, calc(100vw - 30px));
    min-width: 0;
    gap: 0;
    padding: 10px;
    border-radius: 16px;
  }

  .site-nav a {
    padding: 11px 12px;
    font-size: 0.98rem;
  }

  .lang-switch {
    margin-top: 6px;
    padding: 11px 12px;
  }

  .section {
    padding: 54px 0;
  }

  .section-intro {
    margin-top: -14px;
  }

  .hero {
    min-height: calc(100vh - 68px);
  }

  .hero-content {
    min-height: calc(100vh - 68px);
    padding: 70px 0 96px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 12, 23, 0.78) 0%, rgba(5, 12, 23, 0.46) 100%),
      linear-gradient(180deg, rgba(10, 26, 45, 0.14) 0%, rgba(10, 26, 45, 0.78) 100%);
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.14;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-lead,
  .section-heading p,
  .section-split p,
  .service-card p,
  .feature-list p,
  .public-proof li,
  .contact-note,
  .contact-grid p,
  .page-lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-trust {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-trust span {
    padding: 8px 12px;
    font-size: 0.84rem;
  }

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

  .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .section-split h2,
  .section-contact h2 {
    font-size: clamp(1.78rem, 8vw, 2.35rem);
    line-height: 1.16;
  }

  .stat-card,
  .service-card,
  .bullet-panel,
  .content-card {
    padding: 22px;
  }

  .stats-grid,
  .service-grid,
  .license-grid,
  .gallery-grid,
  .process-grid,
  .terminal-showcase {
    gap: 14px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .capability-table {
    display: block;
    min-width: 0;
  }

  .capability-table tbody {
    display: grid;
    gap: 12px;
  }

  .capability-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
  }

  .capability-table th,
  .capability-table td,
  .capability-table td:nth-child(2) {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(15, 39, 66, 0.08);
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .capability-table td:last-child {
    border-bottom: 0;
  }

  .capability-table th {
    background: rgba(232, 238, 243, 0.78);
  }

  .contact-card,
  .stat-card,
  .service-card,
  .license-card,
  .gallery-card,
  .inquiry-form,
  .bullet-panel {
    border-radius: 16px;
  }

  .page-hero {
    padding: 64px 0 34px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.15;
  }

  .page-hero-image,
  .page-hero-content {
    min-height: 330px;
  }

  .page-hero-content {
    padding-bottom: 34px;
  }

  .contact-grid {
    gap: 18px;
  }

  .section-contact .inquiry-form {
    order: -1;
  }

  .contact-list-wide {
    padding: 2px 0 0;
    font-size: 0.96rem;
  }

  .contact-list li,
  .contact-list-wide li {
    padding: 10px 0;
    line-height: 1.55;
  }

  .inquiry-form {
    padding: 24px;
  }

  .inquiry-form label {
    margin-bottom: 14px;
    font-size: 0.96rem;
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.96rem;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .quick-contact-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
