﻿:root {
  color-scheme: light;
  --bg: #0b1220;
  --bg-strong: #080d17;
  --panel: #111827;
  --panel-light: #f3f5f7;
  --text: #151922;
  --white: #ffffff;
  --muted: #5e6675;
  --muted-on-dark: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(15, 23, 42, 0.13);
  --accent: #f5b301;
  --accent-strong: #f97316;
  --shadow: 0 24px 70px rgba(11, 18, 32, 0.12);
  --container: 1180px;
  --page-container: 1200px;
  --page-padding-x-desktop: 24px;
  --page-padding-x-mobile: 20px;
  --section-padding-y-desktop: 112px;
  --section-padding-y-tablet: 88px;
  --section-padding-y-mobile: 72px;
  --hero-padding-y-desktop: 96px;
  --hero-padding-y-mobile: 72px;
  --card-radius: 24px;
  --card-radius-mobile: 18px;
  --soft-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --border-subtle: 1px solid rgba(15, 23, 42, 0.08);
  --page-bg: #f5f7fa;
  --page-surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --page-accent: #f59e0b;
  --dark-section: #0f172a;
  --motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration-fast: 420ms;
  --motion-duration-base: 720ms;
  --motion-duration-slow: 1100ms;
  --motion-ease-standard: var(--motion-ease-out);
  --motion-ease-hover: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
  background: #f3f5f7;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section[id],
article[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f3f5f7;
  color-scheme: light;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color-scheme: light;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  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: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.motion-ready .site-header[data-hero-header] {
  animation: swHeaderFadeDown 520ms var(--motion-ease-out) 80ms both;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.site-header .brand {
  gap: 7px;
}

.brand__logo {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}

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

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #253044;
  font-size: 15px;
  font-weight: 800;
  border-radius: 6px;
  transition: color var(--motion-duration-fast) ease, background var(--motion-duration-fast) ease, transform var(--motion-duration-fast) var(--motion-ease-hover);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #0f172a;
  background: rgba(245, 179, 1, 0.12);
  outline: none;
}

.site-nav .nav__call {
  margin-right: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111827;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform var(--motion-duration-fast) var(--motion-ease-hover), opacity var(--motion-duration-fast) ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 900;
  border-radius: 6px;
  transition:
    transform var(--motion-duration-fast) var(--motion-ease-hover),
    background var(--motion-duration-fast) ease,
    border-color var(--motion-duration-fast) ease,
    box-shadow var(--motion-duration-fast) ease;
}

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

.button:focus-visible {
  box-shadow:
    0 0 0 4px rgba(245, 179, 1, 0.28),
    0 14px 34px rgba(15, 23, 42, 0.14);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

@media (hover: none) {
  .button:hover {
    transform: none;
  }

  .button:active {
    transform: scale(0.98);
  }
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111827;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.22);
}

.button--primary:hover {
  background: linear-gradient(135deg, #ffc933, #ff8a2a);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.3);
}

.button--ghost {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.button--secondary {
  border-color: rgba(15, 23, 42, 0.14);
  background: #ffffff;
  color: #111827;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(249, 115, 22, 0.44);
  background: #ffffff;
}

.section-title,
.section__header {
  max-width: 840px;
}

html:not(.motion-ready) .hero-bg-motion,
html:not(.motion-ready) .hero-eyebrow-motion,
html:not(.motion-ready) .hero-title-motion,
html:not(.motion-ready) .hero-desc-motion,
html:not(.motion-ready) .hero-action-motion {
  opacity: 1;
  transform: none;
}

.section-title__label,
.section__header .eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title__heading,
.section__header h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-title__description,
.section__header > p,
.section__header--split > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #64748b;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

[data-reveal],
.motion-reveal,
.motion-image,
.motion-image > img,
.motion-image > video,
.motion-image picture > img {
  opacity: 1;
  clip-path: none;
  transform: scale(1);
}

.motion-ready [data-reveal] {
  transition:
    opacity 720ms var(--motion-ease-out),
    transform 720ms var(--motion-ease-out);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, var(--motion-y, 24px), 0);
  will-change: opacity, transform;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-stagger {
  --stagger-step: 90ms;
}

.button--light {
  border-color: var(--line-dark);
  background: var(--white);
  color: var(--text);
}

.button--footer {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button--footer:hover,
.button--footer:focus-visible {
  border-color: rgba(245, 179, 1, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: clamp(620px, 56.25vw, 920px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #0f172a;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 43%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(120deg, #f8fafc 0%, #e2e8f0 42%, #dbe4ef 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 43%, rgba(255, 255, 255, 0.16) 100%),
    url("/images/develon.webp") center right / cover;
}

.hero__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(248, 250, 252, 0.86));
  pointer-events: none;
}

.hero-bg-motion,
.hero-eyebrow-motion,
.hero-title-motion,
.hero-desc-motion,
.hero-action-motion {
  opacity: 1;
  transform: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(620px, 56.25vw, 920px);
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 54px;
}

.motion-ready .hero-animate::before {
  animation: swHeroImageIn 1100ms var(--motion-ease-out) both;
  will-change: opacity, transform;
}

.motion-ready .hero-eyebrow-motion {
  --hero-motion-y: 14px;
  animation: swHeroFadeUp 760ms var(--motion-ease-out) 120ms both;
}

.motion-ready .hero-title-motion {
  --hero-motion-y: 26px;
  animation: swHeroFadeUp 900ms var(--motion-ease-out) 220ms both;
}

.motion-ready .hero-desc-motion {
  --hero-motion-y: 20px;
  animation: swHeroFadeUp 820ms var(--motion-ease-out) 380ms both;
}

.motion-ready .hero-action-motion--primary {
  --hero-motion-y: 16px;
  animation: swHeroFadeUp 760ms var(--motion-ease-out) 520ms both;
}

.motion-ready .hero-action-motion--secondary {
  --hero-motion-y: 16px;
  animation: swHeroFadeUp 760ms var(--motion-ease-out) 620ms both;
}

@keyframes swHeroImageIn {
  from {
    opacity: 0.35;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes swHeroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--hero-motion-y, 26px), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes swHeaderFadeDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero__content {
  max-width: 860px;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: #334155;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.sub-page {
  min-height: 100vh;
  background: #f3f5f7;
}

.sub-hero {
  padding: 148px 0 76px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.24) 100%),
    url("/images/develon.webp") center right / cover,
    linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  color: #0f172a;
}

.sub-hero__inner {
  max-width: 780px;
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.sub-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #334155;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.trust-section,
#scope {
  background: #ffffff;
}

.about-overview,
.feature-band {
  background: #ffffff;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.22) 100%),
    url("/images/about/about-visual.webp") center right / cover,
    linear-gradient(120deg, #f8fafc 0%, #e2e8f0 52%, #dbe4ef 100%);
}

.about-modern-page {
  background: #f3f5f7;
}

.about-modern-hero {
  padding: 142px 0 86px;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 179, 1, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
}

.about-modern-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

.about-modern-hero__copy {
  min-width: 0;
}

.about-modern-breadcrumb {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 950;
}

.about-modern-hero h1,
.about-modern-narrow h2,
.about-modern-section-copy h2,
.about-modern-section-heading h2 {
  margin: 0;
  color: #0f172a;
  font-weight: 950;
  letter-spacing: 0;
}

.about-modern-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
}

.about-modern-hero p:not(.about-modern-breadcrumb) {
  max-width: 700px;
  margin: 26px 0 0;
  color: #334155;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.78;
}

.about-modern-hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 620px;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.2), rgba(249, 115, 22, 0.12)),
    linear-gradient(135deg, #e2e8f0, #f8fafc);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.about-modern-hero__media::before,
.about-modern-wide-media::before,
.about-modern-scope-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 28%, rgba(245, 179, 1, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(15, 23, 42, 0.06));
  pointer-events: none;
}

.about-modern-hero__media img,
.about-modern-wide-media img,
.about-modern-scope-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-modern-section {
  padding: clamp(78px, 9vw, 128px) 0;
}

.about-modern-overview {
  background: #ffffff;
}

.about-modern-narrow {
  max-width: 1040px;
}

.about-modern-narrow h2 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.12;
}

.about-modern-narrow p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.78;
}

.about-modern-profile,
.about-modern-equipment,
.about-modern-process {
  background: #f8fafc;
}

.about-modern-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.about-modern-section-copy,
.about-modern-section-heading {
  min-width: 0;
}

.about-modern-section-copy h2,
.about-modern-section-heading h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.14;
}

.about-modern-section-copy p:not(.eyebrow),
.about-modern-section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-modern-definition {
  margin: 0;
  border-top: 2px solid #0f172a;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.about-modern-definition div {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.about-modern-definition dt {
  color: #0f172a;
  font-weight: 950;
}

.about-modern-definition dd {
  min-width: 0;
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.about-modern-wide-media {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: 420px;
  margin: clamp(32px, 5vw, 58px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.16), rgba(249, 115, 22, 0.08)),
    linear-gradient(135deg, #e2e8f0, #f8fafc);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.about-modern-capability,
.about-modern-scope {
  background: #ffffff;
}

.about-modern-section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

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

.about-modern-card,
.about-modern-equipment-grid article,
.about-modern-scope-grid article {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

.about-modern-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
}

.about-modern-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.about-modern-card span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
}

.about-modern-card h3,
.about-modern-scope-grid h3 {
  margin: 22px 0 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 950;
}

.about-modern-card p,
.about-modern-equipment-grid p,
.about-modern-scope-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.about-modern-equipment-grid article {
  min-height: 180px;
  padding: 28px;
}

.about-modern-equipment-grid strong {
  display: block;
  color: #0f172a;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 950;
  line-height: 1;
}

.about-modern-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-modern-scope-grid article {
  min-height: 170px;
  padding: 26px;
}

.about-modern-scope-media {
  position: relative;
  min-height: 170px;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.16), rgba(249, 115, 22, 0.08)),
    linear-gradient(135deg, #e2e8f0, #f8fafc);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

.about-modern-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-modern-timeline li {
  position: relative;
  min-height: 176px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.about-modern-timeline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(245, 179, 1, 0.14);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
}

.about-modern-timeline strong {
  display: block;
  margin-top: 26px;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.45;
}

.about-interaction-page {
  overflow-x: hidden;
  background: #ffffff;
}

.about-interaction-page *,
.about-interaction-page *::before,
.about-interaction-page *::after {
  max-width: 100%;
}

.about-page-intro {
  padding: clamp(142px, 16vw, 210px) 0 clamp(58px, 8vw, 96px);
  background: #ffffff;
}

.about-page-intro__inner {
  display: grid;
  gap: 30px;
}

.about-page-intro__label {
  margin: 0;
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 950;
}

.about-page-intro h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.about-tabs__item {
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font-weight: 900;
  cursor: default;
}

.about-tabs__item[aria-selected="true"] {
  border-color: rgba(249, 115, 22, 0.42);
  background: rgba(249, 115, 22, 0.1);
  color: #0f172a;
}

.about-scroll-visual {
  position: relative;
  min-height: clamp(720px, 112vh, 1040px);
  padding: 0 20px clamp(110px, 13vw, 170px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-scroll-visual__stage {
  --visual-radius: 32px;
  --visual-scale: 1;
  --visual-y: 0px;
  --visual-overlay-opacity: 0.42;
  --visual-copy-opacity: 1;
  --visual-copy-y: 0px;
  position: sticky;
  top: 104px;
  width: min(1180px, calc(100vw - 48px));
  max-width: 1180px;
  min-height: 420px;
  aspect-ratio: 16 / 7;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--visual-radius);
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.24), rgba(249, 115, 22, 0.1)),
    linear-gradient(120deg, #dbe4ef 0%, #f8fafc 44%, #cbd5e1 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
  transform: translate3d(0, var(--visual-y), 0) scale(var(--visual-scale));
  transform-origin: center center;
  transition: border-radius 0.16s linear, transform 0.16s linear, box-shadow 0.16s linear;
}

.about-scroll-visual__stage img,
.about-scroll-visual__fallback,
.about-scroll-visual__overlay {
  position: absolute;
  inset: 0;
}

.about-scroll-visual__stage img {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-scroll-visual__fallback {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.2), rgba(249, 115, 22, 0.1)),
    linear-gradient(120deg, #dbe4ef, #f8fafc 42%, #cbd5e1);
}

.about-scroll-visual__overlay {
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 13, 23, 0.66), rgba(8, 13, 23, 0.34));
  opacity: var(--visual-overlay-opacity);
  pointer-events: none;
}

.about-scroll-visual__copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 56px));
  color: #ffffff;
  text-align: center;
  opacity: var(--visual-copy-opacity);
  transform: translate3d(-50%, calc(-50% + var(--visual-copy-y)), 0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.about-scroll-visual__copy h2 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-scroll-visual__copy p {
  max-width: 600px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.72;
}

.about-overview-panel {
  padding: clamp(96px, 12vw, 168px) 0;
  background: #ffffff;
}

.about-overview-panel__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.about-section-kicker {
  min-width: 0;
}

.about-section-kicker span,
.about-brand-statement__label {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-section-kicker h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.04;
}

.about-overview-panel__content {
  min-width: 0;
}

.about-overview-panel__content h3 {
  max-width: 880px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: 0;
}

.about-overview-panel__content > p {
  max-width: 820px;
  margin: 28px 0 0;
  color: #475569;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.8;
}

.company-info-table {
  display: grid;
  margin-top: clamp(44px, 6vw, 72px);
  border-top: 2px solid #0f172a;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.72), rgba(255, 255, 255, 0));
}

.company-info-table__row {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.13);
}

.company-info-table dt {
  color: #0f172a;
  font-weight: 950;
}

.company-info-table dd {
  min-width: 0;
  margin: 0;
  color: #334155;
  line-height: 1.65;
}

.about-brand-statement {
  padding: clamp(96px, 11vw, 150px) 0;
  background: linear-gradient(135deg, #080d17, #111827);
  color: #ffffff;
}

.about-brand-statement__inner {
  max-width: 1040px;
}

.about-brand-statement h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-brand-statement p:not(.about-brand-statement__label) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.about-cta-section {
  padding: clamp(74px, 10vw, 118px) 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.about-cta-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.about-cta-section h2 {
  max-width: 800px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 950;
  line-height: 1.15;
}

.about-cta-section p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #475569;
  line-height: 1.75;
}

.about-cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.js-about-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-trust {
  background: #ffffff;
}

.about-work {
  background:
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

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

.work-card {
  position: relative;
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.work-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.work-card span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
}

.work-card h3 {
  margin: 18px 0 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 950;
  line-height: 1.18;
}

.work-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-lineup {
  background:
    linear-gradient(180deg, #111827, #0b1220);
  color: var(--white);
}

.about-lineup .section__header p:not(.eyebrow) {
  color: var(--muted-on-dark);
}

.lineup-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lineup-pills span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(245, 179, 1, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.about-process {
  background: #ffffff;
}

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

.about-process-grid .process-step {
  min-height: 190px;
}

.section--dark {
  background:
    linear-gradient(180deg, #111827, #0b1220);
  color: var(--white);
}

.section__header {
  max-width: 720px;
  margin-bottom: 38px;
}

.section__header h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(31px, 4.4vw, 54px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.section__header p:not(.eyebrow),
.contact-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section--dark .section__header p:not(.eyebrow) {
  color: var(--muted-on-dark);
}

.section__header--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 32px;
}

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

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

.info-card,
.equipment-card,
.process-step {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.info-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
}

.info-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.card__number {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
}

.info-card h3,
.equipment-card h3,
.process-step h3,
.scope-list h3 {
  margin: 22px 0 0;
  font-size: 22px;
  font-weight: 950;
}

.info-card p,
.equipment-card p,
.process-step p,
.scope-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.equipment-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(245, 179, 1, 0.08), rgba(249, 115, 22, 0.03)),
    #111827;
  color: var(--white);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
}

.equipment-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 72% 18%, rgba(245, 179, 1, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(15, 23, 42, 0.14)),
    #172033;
}

.equipment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--motion-ease-standard);
}

.equipment-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 950;
}

.equipment-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.equipment-card__category {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.equipment-card p {
  color: var(--muted-on-dark);
}

.equipment-card__body > p:last-of-type {
  margin-bottom: 26px;
}

.equipment-card__work {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 800;
}

.equipment-card__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid rgba(240, 180, 41, 0.46);
  background: rgba(245, 179, 1, 0.12);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.equipment-card__button:hover {
  background: var(--accent);
  color: #221700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
}

.section__header--sticky {
  position: sticky;
  top: 112px;
  align-self: start;
}

.work-scope-section {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 179, 1, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.work-scope-layout {
  display: grid;
  max-width: 1200px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.6fr);
  align-items: center;
  gap: clamp(34px, 4.8vw, 58px);
  min-width: 0;
}

.work-scope-intro {
  max-width: 420px;
  min-width: 0;
}

.work-scope-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 950;
  line-height: 1.08;
}

.work-scope-intro p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.work-scope-counter {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #64748b;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.work-scope-counter strong {
  color: #0f172a;
  font-size: 24px;
  font-weight: 950;
}

.work-scope-carousel {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.work-scope-viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 28px;
  outline: none;
  perspective: 1200px;
}

.work-scope-track {
  display: flex;
  width: 100%;
  min-width: 0;
  gap: 0;
  transition: transform 760ms var(--motion-ease-out);
  will-change: transform;
}

.work-scope-viewport::-webkit-scrollbar {
  display: none;
}

.work-scope-viewport:focus-visible {
  box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.24);
}

.work-scope-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  opacity: 0.58;
  transform: translate3d(18px, 0, 0) scale(0.965);
  transition:
    opacity 620ms var(--motion-ease-out),
    transform 760ms var(--motion-ease-out);
  will-change: opacity, transform;
}

.work-scope-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.work-scope-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transform: translateZ(0);
  transition:
    box-shadow 620ms var(--motion-ease-out),
    transform 760ms var(--motion-ease-out);
}

.work-scope-slide.is-active .work-scope-card {
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.18);
}

.work-scope-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.28), rgba(249, 115, 22, 0.12)),
    #111827;
}

.work-scope-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 23, 0.86) 0%, rgba(8, 13, 23, 0.52) 44%, rgba(8, 13, 23, 0.14) 100%),
    linear-gradient(180deg, transparent 48%, rgba(8, 13, 23, 0.72) 100%);
}

.work-scope-card__media img,
.work-scope-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1100ms var(--motion-ease-out);
}

.work-scope-slide.is-active .work-scope-card__media img,
.work-scope-slide.is-active .work-scope-card__media video {
  transform: scale(1);
}

.work-scope-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
}

.work-scope-card__content {
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 42px);
  bottom: auto;
  left: clamp(24px, 4vw, 42px);
  z-index: 1;
  display: flex;
  max-width: min(620px, 68%);
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translate3d(0, calc(-50% + 18px), 0);
  transition:
    opacity 520ms var(--motion-ease-out) 180ms,
    transform 620ms var(--motion-ease-out) 180ms;
}

.work-scope-slide.is-active .work-scope-card__content {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.work-scope-card__badge,
.work-scope-card h3,
.work-scope-card p,
.work-scope-card__tags {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 520ms var(--motion-ease-out),
    transform 620ms var(--motion-ease-out);
}

.work-scope-slide.is-active .work-scope-card__badge,
.work-scope-slide.is-active .work-scope-card h3,
.work-scope-slide.is-active .work-scope-card p,
.work-scope-slide.is-active .work-scope-card__tags {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.work-scope-slide.is-active .work-scope-card h3 {
  transition-delay: 80ms;
}

.work-scope-slide.is-active .work-scope-card p {
  transition-delay: 140ms;
}

.work-scope-slide.is-active .work-scope-card__tags {
  transition-delay: 200ms;
}

.work-scope-card__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(245, 179, 1, 0.36);
  border-radius: 999px;
  background: rgba(245, 179, 1, 0.14);
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.work-scope-card h3 {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: clamp(28px, 3.25vw, 44px);
  font-weight: 950;
  line-height: 1.12;
  word-break: keep-all;
  overflow-wrap: normal;
}

.work-scope-card p {
  display: -webkit-box;
  max-width: 470px;
  margin: 18px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.work-scope-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.work-scope-card__tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
}

.work-scope-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.work-scope-control,
.work-scope-dot {
  border: 0;
  cursor: pointer;
}

.work-scope-control {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: #0f172a;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.work-scope-control:hover,
.work-scope-control:focus-visible {
  background: #111827;
  color: var(--accent);
  outline: none;
}

.work-scope-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.work-scope-dot {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
}

.work-scope-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  content: "";
  background: rgba(15, 23, 42, 0.22);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, background 0.2s ease;
}

.work-scope-dot.is-active::before {
  width: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.work-scope-dot:focus-visible {
  outline: 3px solid rgba(245, 179, 1, 0.34);
  outline-offset: 3px;
}

.process-section {
  background:
    linear-gradient(180deg, #ffffff, #eef2f7);
}

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

.process-step {
  padding: 26px;
  background: var(--white);
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--bg), var(--panel));
  color: var(--accent);
  font-weight: 950;
}

.process-step h3 {
  margin-top: 24px;
}

@media (hover: hover) and (pointer: fine) {
  .info-card,
  .equipment-card,
  .process-step,
  .dispatch-link-panel,
  .notice-item,
  .location-info-card,
  .location-map-card {
    transition:
      transform 260ms var(--motion-ease-hover),
      border-color 260ms ease,
      box-shadow 260ms ease;
  }

  .info-card:hover,
  .equipment-card:hover,
  .process-step:hover,
  .dispatch-link-panel:hover,
  .notice-item:hover,
  .location-info-card:hover,
  .location-map-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 179, 1, 0.34);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.16);
  }

  .equipment-card:hover .equipment-card__media img,
  .work-scope-card:hover .work-scope-card__media img,
  .work-scope-card:hover .work-scope-card__media video {
    transform: scale(1.035);
  }
}

.info-card:active,
.equipment-card:active,
.process-step:active,
.notice-item:active {
  transform: translateY(-1px) scale(0.995);
}

.dispatch-form,
.dispatch-request-form {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 23, 0.98));
  color: var(--white);
  box-shadow: 0 28px 80px rgba(11, 18, 32, 0.22);
}

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

.dispatch-form label,
.dispatch-request-form .field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.dispatch-form input,
.dispatch-form select,
.dispatch-form textarea,
.dispatch-request-form input,
.dispatch-request-form select,
.dispatch-request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.dispatch-form input,
.dispatch-form select,
.dispatch-request-form input,
.dispatch-request-form select {
  height: 50px;
  padding: 0 14px;
}

.dispatch-form textarea,
.dispatch-request-form textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.dispatch-form option,
.dispatch-request-form option {
  color: var(--text);
}

.dispatch-form .button,
.dispatch-request-form .button {
  justify-self: start;
  cursor: pointer;
}

.dispatch-link-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 23, 0.98));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(11, 18, 32, 0.18);
}

.dispatch-link-panel h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.dispatch-link-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.16;
}

.dispatch-link-panel p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted-on-dark);
  line-height: 1.7;
}

.dispatch-link-panel--light {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  color: var(--text);
}

.dispatch-link-panel--light p {
  color: var(--muted);
}

.location-box {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 24px;
  border-radius: 8px;
  background: #eef2f7;
}

.location-box span {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
}

.location-box strong {
  font-size: 22px;
}

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

.notice-page-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #eef2f7 100%);
}

.notice-board {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.notice-pinned {
  display: grid;
  gap: 16px;
}

.notice-item {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.notice-item--pinned {
  border-color: rgba(249, 115, 22, 0.4);
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.14), rgba(249, 115, 22, 0.08)),
    var(--white);
}

.notice-item--pinned::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.notice-item__button {
  display: grid;
  position: relative;
  width: 100%;
  gap: 12px;
  padding: clamp(22px, 3.6vw, 34px) clamp(22px, 4vw, 38px);
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.notice-item__button:hover,
.notice-item__button:focus-visible {
  background: rgba(248, 250, 252, 0.72);
  outline: none;
}

.notice-item__button:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(245, 179, 1, 0.34);
}

.notice-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.notice-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.11);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
}

.notice-badge--pinned {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111827;
}

.notice-item time {
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.notice-item__title {
  display: block;
  max-width: min(860px, calc(100% - 58px));
  margin: 0;
  color: #0f172a;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: 0;
}

.notice-item__summary {
  display: block;
  max-width: min(760px, calc(100% - 58px));
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
}

.notice-item__icon {
  position: absolute;
  top: 50%;
  right: clamp(20px, 3vw, 32px);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.notice-item__icon::before,
.notice-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  content: "";
  transform: translate(-50%, -50%);
}

.notice-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.notice-item.is-open .notice-item__icon {
  border-color: rgba(249, 115, 22, 0.38);
  background: rgba(249, 115, 22, 0.12);
}

.notice-item.is-open .notice-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.notice-item__panel {
  padding: 0 clamp(22px, 4vw, 38px) clamp(24px, 3.6vw, 34px);
}

.notice-item__content {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0;
  padding-left: 20px;
  color: #334155;
  line-height: 1.75;
}

.notice-item__content li::marker {
  color: var(--accent-strong);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
}

.location-panel,
.map-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-panel {
  padding: clamp(28px, 5vw, 46px);
}

.location-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
}

.location-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.map-card {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 76% 22%, rgba(245, 179, 1, 0.2), transparent 34%),
    linear-gradient(135deg, #182033, #0b1220);
  color: var(--white);
}

.map-card div {
  max-width: 360px;
}

.map-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.map-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.map-card p {
  margin: 16px 0 0;
  color: var(--muted-on-dark);
  line-height: 1.7;
}

.location-info-section {
  background: #f8fafc;
}

.location-page-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.5fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
}

.location-info-card,
.location-map-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-info-card {
  padding: clamp(26px, 4vw, 42px);
}

.location-info-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
}

.info-definition-list,
.business-definition-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
}

.info-definition-list div,
.business-definition-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.info-definition-list dt,
.business-definition-list dt {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 950;
}

.info-definition-list dd,
.business-definition-list dd {
  margin: 0;
  color: #1f2937;
  font-weight: 850;
  line-height: 1.55;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-actions .button {
  min-height: 50px;
  padding: 0 18px;
  font-size: 15px;
}

.location-map-card {
  min-height: 520px;
  overflow: hidden;
}

.LocationMap {
  display: grid;
  width: 100%;
  min-height: 100%;
  height: 100%;
  place-items: center;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.88), rgba(226, 232, 240, 0.88)),
    url("/images/develon.webp") center / cover,
    linear-gradient(120deg, #eef2f7, #dbe4ef);
}

.LocationMap__content {
  max-width: 420px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.LocationMap__content span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
}

.LocationMap__content strong {
  display: block;
  margin-top: 14px;
  color: #111827;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.LocationMap__content p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.business-info-section {
  background: #ffffff;
}

.business-definition-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-section {
  padding: clamp(62px, 8vw, 92px) 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 23, 0.96), rgba(17, 24, 39, 0.78)),
    url("/images/develon.webp") center / cover;
  color: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.contact-section p {
  max-width: 640px;
  color: var(--muted-on-dark);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111827;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.request-page {
  min-height: 100vh;
  background: #f3f5f7;
}

.request-hero {
  padding: 144px 0 58px;
  background:
    linear-gradient(90deg, rgba(8, 13, 23, 0.96), rgba(17, 24, 39, 0.78)),
    url("/images/develon.webp") center / cover;
  color: var(--white);
}

.request-hero__inner {
  max-width: 820px;
}

.request-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 950;
  line-height: 1.06;
}

.request-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted-on-dark);
  font-size: 18px;
  line-height: 1.75;
}

.request-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.request-guide {
  position: sticky;
  top: 112px;
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.request-guide h2 {
  margin: 0;
  font-size: 26px;
}

.request-guide ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.8;
}

.dispatch-request-form {
  margin-top: 0;
  background: var(--bg);
}

.field span b,
.privacy-check b {
  color: var(--accent);
}

.dispatch-request-form input:focus,
.dispatch-request-form select:focus,
.dispatch-request-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.18);
}

.dispatch-request-form .is-invalid {
  border-color: #ff786b;
}

.field-error {
  min-height: 18px;
  color: #ffb4aa;
  font-size: 13px;
  font-weight: 700;
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  line-height: 1.55;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.turnstile-field {
  min-height: 65px;
}

.dispatch-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  display: none;
  padding: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.6;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  border-color: rgba(86, 211, 100, 0.4);
  background: rgba(86, 211, 100, 0.12);
  color: #c7f7c9;
}

.form-message.is-error {
  border-color: rgba(255, 120, 107, 0.46);
  background: rgba(255, 120, 107, 0.12);
  color: #ffd4ce;
}

.dispatch-success-modal {
  width: min(520px, 92vw);
  max-height: min(720px, calc(100dvh - 40px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  overflow: visible;
  z-index: 10000;
}

.dispatch-success-modal::backdrop {
  background:
    radial-gradient(circle at 50% 35%, rgba(245, 179, 1, 0.18), transparent 34%),
    rgba(4, 8, 16, 0.72);
  backdrop-filter: blur(5px);
}

.dispatch-success-modal[open] {
  animation: dispatch-modal-pop 180ms ease-out;
}

.dispatch-success-modal__surface {
  position: relative;
  display: grid;
  gap: 14px;
  max-height: min(720px, calc(100dvh - 40px));
  padding: clamp(26px, 5vw, 38px);
  overflow-y: auto;
  border: 1px solid rgba(245, 179, 1, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 23, 0.98)),
    var(--bg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.dispatch-success-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.dispatch-success-modal__close span,
.dispatch-success-modal__close span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.dispatch-success-modal__close span {
  transform: rotate(45deg);
}

.dispatch-success-modal__close span::after {
  content: "";
  transform: rotate(90deg);
}

.dispatch-success-modal__close:focus-visible,
.dispatch-success-modal__confirm:focus-visible,
.dispatch-success-modal__call:focus-visible {
  outline: 3px solid rgba(245, 179, 1, 0.45);
  outline-offset: 3px;
}

.dispatch-success-modal__icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.98), rgba(255, 140, 66, 0.98));
  box-shadow: 0 18px 34px rgba(245, 179, 1, 0.22);
}

.dispatch-success-modal__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #111827;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dispatch-success-modal__eyebrow {
  margin: 6px 0 -4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dispatch-success-modal h2 {
  margin: 0;
  padding-right: 42px;
  font-size: clamp(25px, 4.8vw, 34px);
  line-height: 1.22;
}

.dispatch-success-modal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.72;
}

.dispatch-success-modal__support {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.dispatch-success-modal__support span {
  display: block;
  min-width: 0;
}

.dispatch-success-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.dispatch-success-modal__confirm,
.dispatch-success-modal__call {
  min-height: 48px;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
}

.dispatch-success-modal__confirm {
  border-color: rgba(255, 255, 255, 0.12);
  background: #1f2937;
  color: var(--white);
}

.dispatch-success-modal__call {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #ff8c42);
  color: #111827;
  box-shadow: 0 16px 34px rgba(245, 179, 1, 0.24);
}

@keyframes dispatch-modal-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .dispatch-success-modal {
    width: 92vw;
    max-height: calc(100dvh - 28px);
  }

  .dispatch-success-modal__surface {
    max-height: calc(100dvh - 28px);
    padding: 26px 20px 22px;
    border-radius: 18px;
  }

  .dispatch-success-modal__close {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
  }

  .dispatch-success-modal h2 {
    padding-right: 38px;
    font-size: 25px;
  }

  .dispatch-success-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dispatch-success-modal__confirm,
  .dispatch-success-modal__call {
    width: 100%;
    min-height: 52px;
  }
}

.dispatch-debug-box {
  margin: 4px 0 0;
  padding: 12px;
  border: 1px solid rgba(245, 179, 1, 0.35);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: clamp(48px, 6vw, 72px) 0 26px;
  background:
    linear-gradient(90deg, rgba(245, 179, 1, 0.08), transparent 34%),
    linear-gradient(180deg, #0f172a 0%, #070d18 100%);
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.site-footer__brand {
  display: inline-flex;
  color: var(--white);
}

.site-footer__brand-column {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 760px;
}

.site-footer__info-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 4px;
  justify-self: end;
  min-width: 184px;
}

.site-footer__section {
  min-width: 0;
}

.site-footer__section h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

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

.site-footer__definition-list div {
  display: grid;
  grid-template-columns: minmax(82px, auto) minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
}

.site-footer__definition-list dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.site-footer__definition-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
}

.site-footer__socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  color: var(--accent);
  outline: none;
}

.site-footer__social-badge {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(245, 179, 1, 0.32);
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--accent);
  outline: none;
}

@media (max-width: 980px) {
  .card-grid--trust,
  .equipment-grid,
  .process-grid,
  .about-process-grid,
  .about-modern-card-grid,
  .about-modern-equipment-grid,
  .about-modern-scope-grid,
  .about-modern-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__header--split,
  .split-layout,
  .about-modern-hero__inner,
  .about-modern-split,
  .contact__inner,
  .dispatch-link-panel,
  .request-layout,
  .location-layout,
  .location-page-grid,
  .business-definition-list {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__info-column {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
  }

  .section__header--sticky,
  .request-guide {
    position: static;
  }

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

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

  .about-modern-hero {
    padding-top: 124px;
  }

  .about-modern-hero__inner {
    gap: 34px;
  }

  .about-modern-hero__media {
    max-width: 720px;
  }

}

@media (max-width: 1023px) {
  .work-scope-layout {
    display: block;
  }

  .work-scope-intro {
    max-width: 720px;
  }

  .work-scope-carousel {
    margin-top: 32px;
  }

  .work-scope-viewport {
    overflow: hidden;
    border-radius: 22px;
  }

  .work-scope-track {
    gap: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 32px);
  }

  .header__inner {
    min-height: 66px;
  }

  .brand {
    font-size: 17px;
  }

  .brand__logo {
    height: 31px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100vh - 66px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    transition:
      opacity 240ms var(--motion-ease-standard),
      transform 240ms var(--motion-ease-standard),
      visibility 240ms step-end;
    visibility: hidden;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 240ms var(--motion-ease-standard),
      transform 240ms var(--motion-ease-standard),
      visibility 0ms step-start;
    visibility: visible;
  }

  .site-nav a {
    min-height: 54px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0 6px;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition:
      opacity 260ms var(--motion-ease-standard),
      transform 260ms var(--motion-ease-standard),
      color var(--motion-duration-fast) ease,
      background var(--motion-duration-fast) ease;
  }

  body.nav-open .site-nav a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.nav-open .site-nav a:nth-child(1) {
    transition-delay: 40ms;
  }

  body.nav-open .site-nav a:nth-child(2) {
    transition-delay: 80ms;
  }

  body.nav-open .site-nav a:nth-child(3) {
    transition-delay: 120ms;
  }

  body.nav-open .site-nav a:nth-child(4) {
    transition-delay: 160ms;
  }

  body.nav-open .site-nav a:nth-child(5) {
    transition-delay: 200ms;
  }

  .site-nav .nav__call {
    justify-content: center;
    margin: 0 0 10px;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    aspect-ratio: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(248, 250, 252, 0.96) 100%),
      linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(248, 250, 252, 0.96) 100%),
      url("/images/develon.webp") center top / cover;
  }

  .sub-hero {
    padding: 112px 0 58px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(248, 250, 252, 0.96) 100%),
      url("/images/develon.webp") center top / cover,
      linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  }

  .about-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(248, 250, 252, 0.96) 100%),
      url("/images/about/about-visual.webp") center top / cover,
      linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  }

  .hero__inner {
    min-height: auto;
    padding: 104px 0 44px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.2;
  }

  .hero__copy {
    max-width: 100%;
    margin-top: 18px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer__inner,
  .site-footer__definition-list {
    grid-template-columns: 1fr;
  }

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

  .site-footer__definition-list div {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .site-footer__socials {
    justify-content: flex-start;
  }

  .card-grid--trust,
  .equipment-grid,
  .process-grid,
  .about-process-grid,
  .about-modern-card-grid,
  .about-modern-equipment-grid,
  .about-modern-scope-grid,
  .about-modern-timeline,
  .form__row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .about-modern-hero {
    padding: 110px 0 58px;
  }

  .about-modern-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.13;
  }

  .about-modern-hero p:not(.about-modern-breadcrumb) {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .about-modern-hero__media {
    max-height: 430px;
    border-radius: 18px;
  }

  .about-modern-wide-media {
    aspect-ratio: 16 / 9;
    max-height: 280px;
    border-radius: 18px;
  }

  .about-modern-scope-media {
    max-height: 240px;
    border-radius: 18px;
  }

  .about-modern-section {
    padding: 68px 0;
  }

  .about-modern-narrow h2,
  .about-modern-section-copy h2,
  .about-modern-section-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .about-modern-narrow p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .about-modern-section-heading {
    margin-bottom: 26px;
  }

  .about-modern-definition div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }

  .about-modern-card,
  .about-modern-equipment-grid article,
  .about-modern-scope-grid article,
  .about-modern-scope-media,
  .about-modern-timeline li {
    min-height: auto;
    border-radius: 18px;
  }

  .about-modern-card,
  .about-modern-equipment-grid article,
  .about-modern-scope-grid article,
  .about-modern-timeline li {
    padding: 22px;
  }

  .about-modern-equipment-grid strong {
    font-size: 28px;
  }

  .about-modern-timeline {
    position: relative;
    gap: 12px;
  }

  .about-modern-timeline li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }

  .about-modern-timeline strong {
    margin-top: 0;
    font-size: 17px;
  }

  .work-scope-section {
    padding-bottom: 60px;
  }

  .work-scope-intro h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .work-scope-intro p:not(.eyebrow) {
    display: -webkit-box;
    max-width: 92%;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .work-scope-counter {
    min-height: 48px;
    margin-top: 24px;
  }

  .work-scope-viewport {
    padding-bottom: 10px;
  }

  .work-scope-card {
    border-radius: 22px;
  }

  .work-scope-card__media {
    aspect-ratio: 4 / 5;
  }

  .work-scope-card__media::after {
    display: none;
  }

  .work-scope-card__content {
    position: static;
    max-width: none;
    min-width: 0;
    padding: 24px;
    color: #0f172a;
    transform: translate3d(0, 18px, 0);
  }

  .work-scope-slide.is-active .work-scope-card__content {
    transform: translate3d(0, 0, 0);
  }

  .work-scope-card h3 {
    font-size: clamp(25px, 7.8vw, 34px);
  }

  .work-scope-card p {
    max-width: 100%;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
    -webkit-line-clamp: 3;
  }

  .work-scope-card__tags {
    gap: 7px;
    margin-top: 18px;
  }

  .work-scope-card__tags span {
    min-height: 32px;
    padding: 0 10px;
    border-color: rgba(15, 23, 42, 0.12);
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
  }

  .work-scope-controls {
    justify-content: center;
    margin-top: 16px;
  }

  .work-scope-slide .button,
  .work-scope-slide a[href*="dispatch"],
  .work-scope-card__button,
  .work-scope-card__cta {
    display: none !important;
  }

  .work-scope-control {
    width: 48px;
    height: 48px;
  }

  .info-card,
  .equipment-card,
  .process-step,
  .scope-list article,
  .work-card {
    min-height: auto;
    padding: 24px;
  }

  .lineup-pills span {
    flex: 1 1 calc(50% - 8px);
  }

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

  .notice-item__button {
    gap: 10px;
    padding: 22px 20px;
  }

  .notice-item__title,
  .notice-item__summary {
    max-width: calc(100% - 46px);
  }

  .notice-item__title {
    font-size: clamp(21px, 6.6vw, 28px);
  }

  .notice-item__summary {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .notice-item__icon {
    top: 24px;
    right: 18px;
    width: 32px;
    height: 32px;
    transform: none;
  }

  .notice-item__panel {
    padding: 0 20px 24px;
  }

  .notice-item__content {
    padding-left: 18px;
  }

  .equipment-card {
    padding: 0;
  }

  .equipment-card__body {
    padding: 22px;
  }

  .dispatch-form .button,
  .dispatch-request-form .button {
    justify-self: stretch;
  }

  .request-hero {
    padding: 112px 0 44px;
  }

  .map-card {
    min-height: 320px;
  }

  .location-map-card {
    min-height: 360px;
  }

  .LocationMap {
    min-height: 360px;
  }

  .info-definition-list div,
  .business-definition-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .location-actions {
    flex-direction: column;
  }

  .request-actions {
    flex-direction: column;
  }

  .mobile-call {
    display: inline-flex;
  }

  .motion-ready .hero-eyebrow-motion,
  .motion-ready .hero-title-motion,
  .motion-ready .hero-desc-motion,
  .motion-ready .hero-action-motion {
    animation-duration: 620ms;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 1023px) {
  .about-scroll-visual {
    min-height: auto;
    padding: 0 20px 84px;
  }

  .about-scroll-visual__stage {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 420px;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    transform: none !important;
    --visual-scale: 1;
    --visual-overlay-opacity: 0.48;
    --visual-copy-opacity: 1;
    --visual-copy-y: 0px;
  }

  .about-overview-panel__inner,
  .about-cta-section__inner {
    grid-template-columns: 1fr;
  }

  .about-cta-section__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .about-page-intro {
    padding: 110px 0 44px;
  }

  .about-page-intro__inner {
    gap: 18px;
  }

  .about-page-intro h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .about-tabs {
    gap: 8px;
  }

  .about-tabs__item {
    flex: 1 1 auto;
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .about-scroll-visual {
    padding: 0 16px 68px;
  }

  .about-scroll-visual__stage {
    min-height: 360px;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .about-scroll-visual__overlay {
    opacity: 0.5;
  }

  .about-scroll-visual__copy {
    top: 50%;
    left: 50%;
    width: calc(100% - 44px);
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }

  .about-scroll-visual__copy h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.16;
  }

  .about-scroll-visual__copy p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.62;
  }

  .about-overview-panel {
    padding: 68px 0;
  }

  .about-section-kicker h2,
  .about-overview-panel__content h3,
  .about-brand-statement h2,
  .about-cta-section h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .about-overview-panel__content > p,
  .about-brand-statement p:not(.about-brand-statement__label),
  .about-cta-section p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .company-info-table {
    margin-top: 34px;
  }

  .company-info-table__row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
  }

  .company-info-table dt {
    color: var(--accent-strong);
    font-size: 14px;
  }

  .about-brand-statement {
    padding: 72px 0;
  }

  .about-cta-section {
    padding: 64px 0 72px;
  }

  .about-cta-section__inner {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .about-cta-section__actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .button,
  .site-header[data-hero-header],
  .hero-animate::before,
  [data-reveal],
  .hero-bg-motion,
  .hero-eyebrow-motion,
  .hero-title-motion,
  .hero-desc-motion,
  .hero-action-motion,
  .section__header[data-reveal]::after,
  .section-title[data-reveal]::after,
  .motion-reveal,
  .motion-image,
  [data-reveal="zoom-in"] > img,
  [data-reveal="zoom-in"] > video,
  .motion-image > img,
  .motion-image > video,
  .motion-image picture > img,
  .about-scroll-visual__stage,
  .about-scroll-visual__copy,
  .js-about-reveal,
  .work-scope-track,
  .work-scope-slide,
  .work-scope-card__content,
  .work-scope-card__badge,
  .work-scope-card h3,
  .work-scope-card p,
  .work-scope-card__tags,
  .work-scope-card__media img,
  .work-scope-card__media video,
  .work-scope-dot::before {
    animation: none !important;
    transition: none;
  }

  .js-about-reveal {
    opacity: 1;
    transform: none;
  }

  [data-reveal],
  .hero-bg-motion,
  .hero-eyebrow-motion,
  .hero-title-motion,
  .hero-desc-motion,
  .hero-action-motion,
  .motion-reveal,
  .motion-image,
  [data-reveal="zoom-in"] > img,
  [data-reveal="zoom-in"] > video,
  .motion-image > img,
  .motion-image > video,
  .motion-image picture > img,
  .work-scope-slide,
  .work-scope-card__content,
  .work-scope-card__badge,
  .work-scope-card h3,
  .work-scope-card p,
  .work-scope-card__tags,
  .work-scope-card__media img,
  .work-scope-card__media video {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .about-scroll-visual__copy {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }
}

/* Unified subpage system: notice, dispatch, location */
.subpage-system {
  background: var(--page-bg);
  color: var(--text-main);
  overflow-x: hidden;
}

.page-container {
  width: min(var(--page-container), calc(100% - (var(--page-padding-x-desktop) * 2)));
  margin: 0 auto;
}

.page-eyebrow,
.subpage-system .eyebrow {
  margin: 0;
  color: var(--page-accent);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sub-page-hero {
  position: relative;
  padding: calc(78px + var(--hero-padding-y-desktop)) 0 var(--hero-padding-y-desktop);
  overflow: hidden;
}

.sub-page-hero--light {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.9)),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #edf2f7 100%);
}

.sub-page-hero--dark {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #ffffff;
}

.sub-page-hero__content {
  display: grid;
  gap: 22px;
  min-height: 260px;
  align-content: end;
}

.sub-page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: inherit;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.sub-page-hero p:not(.page-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.sub-page-hero--dark p:not(.page-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.page-section {
  padding: var(--section-padding-y-desktop) 0;
}

.page-section--default {
  background: #ffffff;
}

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

.page-section--dark {
  background: var(--dark-section);
  color: #ffffff;
}

.section-header {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-header--split {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 6vw, 76px);
}

.section-header h2 {
  max-width: 780px;
  margin: 0;
  color: inherit;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-header > p,
.section-header--split > p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.sub-page-card {
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  background: var(--page-surface);
  box-shadow: var(--soft-shadow);
  padding: 40px;
}

.sub-page-card--dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--dark-section);
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .sub-page-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .sub-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  }
}

.notice-page-section,
.location-info-section,
.business-info-section,
.request-section {
  background: var(--page-bg);
}

.request-section,
.notice-page-section {
  padding: var(--section-padding-y-desktop) 0;
}

.request-layout,
.location-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.request-guide,
.dispatch-request-form,
.location-info-card,
.location-map-card {
  position: static;
  margin: 0;
  border-radius: var(--card-radius);
}

.request-guide h2,
.location-info-card h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.request-guide ul {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.dispatch-request-form {
  display: grid;
  gap: 20px;
  padding: 40px;
}

.dispatch-request-form .field {
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.dispatch-request-form input,
.dispatch-request-form select,
.dispatch-request-form textarea {
  width: 100%;
  border-radius: 12px;
  font-size: 16px;
}

.dispatch-request-form input,
.dispatch-request-form select {
  min-height: 54px;
}

.form__row {
  gap: 18px;
}

.field-error {
  min-height: 18px;
  font-size: 13px;
}

.notice-board {
  gap: clamp(18px, 3vw, 28px);
}

.notice-item {
  padding: 0;
  border-radius: var(--card-radius);
}

.notice-item__button {
  padding: 34px 40px;
}

.notice-item__title {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.notice-item__summary,
.notice-item__content {
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.notice-item__panel {
  padding: 0 40px 36px;
}

.location-info-card {
  padding: 40px;
}

.info-definition-list,
.business-definition-list {
  overflow-wrap: anywhere;
}

.business-definition-list.sub-page-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
}

.location-map-card {
  min-height: auto;
  padding: 0;
  overflow: hidden;
}

.LocationMap {
  min-height: auto;
  aspect-ratio: 16 / 11;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(226, 232, 240, 0.86)),
    linear-gradient(120deg, rgba(245, 158, 11, 0.16), transparent 38%),
    linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.LocationMap__content {
  border-radius: 18px;
}

@media (max-width: 1024px) {
  .page-section,
  .request-section,
  .notice-page-section {
    padding: var(--section-padding-y-tablet) 0;
  }

  .section-header--split,
  .request-layout,
  .location-page-grid,
  .business-definition-list.sub-page-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-container {
    width: min(100% - (var(--page-padding-x-mobile) * 2), var(--page-container));
  }

  .sub-page-hero {
    padding: calc(66px + var(--hero-padding-y-mobile)) 0 var(--hero-padding-y-mobile);
  }

  .sub-page-hero__content {
    min-height: 220px;
    gap: 18px;
  }

  .page-section,
  .request-section,
  .notice-page-section {
    padding: var(--section-padding-y-mobile) 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .sub-page-card,
  .dispatch-request-form,
  .location-info-card {
    border-radius: var(--card-radius-mobile);
    padding: 24px;
  }

  .notice-item {
    border-radius: var(--card-radius-mobile);
  }

  .notice-item__button {
    padding: 24px;
  }

  .notice-item__panel {
    padding: 0 24px 24px;
  }

  .LocationMap {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .sub-page-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    letter-spacing: 0;
  }

  .section-header h2 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: 0;
  }

  .request-layout,
  .location-page-grid {
    gap: 18px;
  }

  .sub-page-card,
  .dispatch-request-form,
  .location-info-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sub-page-card {
    transition: none;
  }
}

/* Requirement follow-up overrides */
.section--dark .equipment-card,
.section--dark .equipment-card h3,
.section--dark .equipment-card p,
.section--dark .equipment-card__placeholder {
  color: #ffffff;
}

.section--dark .equipment-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(15, 23, 42, 0.72);
}

.section--dark .equipment-card__body > p:last-of-type {
  color: rgba(255, 255, 255, 0.78);
}

.section--dark .equipment-card__placeholder {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.1)),
    linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(255, 255, 255, 0.08));
}

.about-interaction-page .about-page-intro {
  padding: calc(78px + var(--hero-padding-y-desktop)) 0 var(--hero-padding-y-desktop);
}

.about-interaction-page .about-scroll-visual {
  min-height: clamp(560px, 92vh, 820px);
  padding: 0 var(--page-padding-x-desktop) var(--section-padding-y-tablet);
}

.about-interaction-page .about-overview-panel,
.about-interaction-page .about-brand-statement,
.about-interaction-page .about-cta-section {
  padding: var(--section-padding-y-desktop) 0;
}

.about-interaction-page .about-overview-panel__inner {
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
}

.about-interaction-page .about-overview-panel__content h3,
.about-interaction-page .about-brand-statement h2,
.about-interaction-page .about-cta-section h2 {
  font-weight: 800;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  #equipment {
    padding-bottom: 104px;
  }

  #equipment > .container {
    width: calc(100% - 40px);
  }

  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .equipment-card {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
    border-radius: 16px;
  }

  .equipment-card__media {
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-bottom-color: rgba(255, 255, 255, 0.14);
    border-radius: 16px 16px 0 0;
  }

  .equipment-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    padding: 0;
  }

  .equipment-card__body {
    min-width: 0;
    padding: 22px 20px 24px;
  }

  .equipment-card__category {
    font-size: 13px;
    font-weight: 900;
  }

  .equipment-card h3 {
    margin-top: 8px;
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.25;
  }

  .equipment-card p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.65;
  }

  .equipment-card__body > p:last-of-type {
    display: block;
    margin-bottom: 0;
  }

  .equipment-card__button {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    font-size: 15px;
  }

  .about-interaction-page .about-page-intro {
    padding: calc(66px + var(--hero-padding-y-mobile)) 0 var(--hero-padding-y-mobile);
  }

  .about-interaction-page .about-scroll-visual {
    padding: 0 var(--page-padding-x-mobile) var(--section-padding-y-mobile);
  }

  .about-interaction-page .about-overview-panel,
  .about-interaction-page .about-brand-statement,
  .about-interaction-page .about-cta-section {
    padding: var(--section-padding-y-mobile) 0;
  }
}

@media (prefers-color-scheme: dark) {
  :root,
  html,
  body {
    color-scheme: light;
  }

  html,
  body,
  .section,
  .page-section,
  .page-section--light,
  .about-modern-section,
  .about-modern-section--light,
  .subpage-system,
  .notice-page-section,
  .request-section,
  .location-info-section,
  .privacy-page {
    background-color: #f3f5f7;
    color: #151922;
  }

  .site-header {
    border-bottom-color: rgba(15, 23, 42, 0.08);
    background-color: rgba(255, 255, 255, 0.94);
    color: #111827;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  }

  .site-nav a {
    color: #253044;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background-color: rgba(245, 179, 1, 0.12);
    color: #0f172a;
  }

  .nav-toggle,
  .button--ghost,
  .button--secondary,
  .button--light,
  .sub-page-card,
  .notice-item,
  .notice-item__button,
  .location-info-card,
  .location-map-card,
  .info-card,
  .process-step,
  .work-card,
  .about-modern-card,
  .about-modern-definition,
  .about-modern-equipment-grid article,
  .about-modern-scope-grid article,
  .business-definition-list.sub-page-card {
    border-color: rgba(15, 23, 42, 0.13);
    background-color: #ffffff;
    color: #0f172a;
  }

  .button--primary,
  .site-nav .nav__call,
  .location-route-link {
    background: linear-gradient(135deg, #f5b301, #f97316);
    color: #111827;
  }

  .sub-page-card--dark,
  .dispatch-request-form,
  .section--dark,
  .equipment-card,
  .site-footer,
  .call-guide__panel {
    background-color: #0f172a;
    color: #ffffff;
  }

  .hero,
  .sub-hero,
  .about-hero,
  .sub-page-hero,
  .sub-page-hero--light,
  .dispatch-link-panel,
  .contact-section,
  .site-footer {
    background-blend-mode: normal;
  }

  .hero,
  .sub-hero,
  .about-hero,
  .sub-page-hero--light {
    color: #0f172a;
  }

  .hero h1,
  .hero__copy,
  .section__header h2,
  .sub-page-hero h1,
  .sub-page-hero p,
  .sub-page-card h2,
  .info-definition-list dd,
  .business-definition-list dd,
  .company-info-table dd {
    color: inherit;
  }

  input,
  select,
  textarea {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
  }

  option {
    background-color: #ffffff;
    color: #151922;
  }

  img,
  video,
  canvas,
  picture {
    filter: none;
    opacity: 1;
    mix-blend-mode: normal;
  }
}

/* Latest responsive refinements */
.section--dark .section__header h2 {
  color: #ffffff;
}

.section--dark .section__header .eyebrow {
  color: var(--accent);
}

.notice-page-section .notice-board,
.request-section .request-layout,
.location-info-section .location-page-grid {
  margin-top: 0;
}

.dispatch-request-form .privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.dispatch-request-form .privacy-check input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  padding: 0;
}

.dispatch-request-form .privacy-check span {
  min-width: 0;
  line-height: 1.55;
}

.location-info-card .info-definition-list {
  margin-top: 0;
}

.location-info-card .info-definition-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.location-phone-link {
  color: inherit;
  text-decoration: none;
}

.location-phone-link:hover,
.location-phone-link:focus-visible {
  color: var(--accent-strong);
}

@media (max-width: 760px) {
  .work-scope-card {
    border-radius: 18px;
  }

  .work-scope-card__media {
    aspect-ratio: 16 / 9;
    max-height: 210px;
  }

  .work-scope-card__content {
    padding: 18px;
  }

  .work-scope-card h3 {
    margin-top: 10px;
    font-size: clamp(20px, 5.2vw, 23px);
    line-height: 1.22;
  }

  .work-scope-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .work-scope-card__tags {
    margin-top: 12px;
    gap: 6px;
  }

  .work-scope-card__tags span {
    padding: 6px 9px;
    font-size: 12px;
  }

}

@media (max-width: 430px) {
  .work-scope-card__media {
    max-height: 180px;
  }

  .work-scope-card__content {
    padding: 16px;
  }

  .dispatch-success-modal__support {
    font-size: 15px;
    line-height: 1.58;
  }
}

/* About and notice readability refinements */
.about-scroll-visual__copy h2 {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.18;
  word-break: keep-all;
}

.about-scroll-visual__copy p {
  max-width: 680px;
  line-height: 1.68;
  word-break: keep-all;
}

.about-overview-panel__content {
  width: 100%;
  max-width: 880px;
  min-width: 0;
}

.about-brand-statement h2,
.about-interaction-page .about-brand-statement h2 {
  max-width: 780px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.42;
  word-break: keep-all;
}

.about-brand-statement p:not(.about-brand-statement__label),
.about-interaction-page .about-brand-statement p:not(.about-brand-statement__label) {
  max-width: 720px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
}

.privacy-page .sub-page-card {
  max-width: 980px;
  margin: 0 auto;
}

.privacy-policy-content {
  display: grid;
  gap: 30px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
}

.privacy-policy-content section {
  display: grid;
  gap: 12px;
  padding-bottom: 28px;
  border-bottom: var(--border-subtle);
}

.privacy-policy-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-policy-content h2 {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.privacy-policy-content p,
.privacy-policy-content ul {
  margin: 0;
}

.privacy-policy-content ul {
  padding-left: 20px;
}

@media (max-width: 760px) {
  .about-scroll-visual__copy {
    width: calc(100% - 40px);
    max-width: 360px;
  }

  .about-scroll-visual__copy h2 {
    font-size: clamp(21px, 6.1vw, 26px);
    line-height: 1.18;
  }

  .about-scroll-visual__copy p {
    max-width: 28em;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.62;
  }

  .about-overview-panel__inner,
  .about-interaction-page .about-overview-panel__inner {
    gap: 24px;
  }

  .about-overview-panel__content {
    display: grid;
    gap: 18px;
    padding: 0;
    overflow-wrap: break-word;
  }

  .about-overview-panel__content h3,
  .about-interaction-page .about-overview-panel__content h3 {
    max-width: 12em;
    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.32;
    word-break: keep-all;
  }

  .about-overview-panel__content > p {
    max-width: 31em;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.72;
    word-break: keep-all;
  }

  .company-info-table {
    margin-top: 6px;
    border-top-width: 1px;
  }

  .company-info-table__row {
    grid-template-columns: minmax(72px, 0.32fr) minmax(0, 1fr);
    gap: 10px;
    padding: 13px 0;
  }

  .company-info-table dt {
    font-size: 12px;
    line-height: 1.45;
  }

  .company-info-table dd {
    min-width: 0;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .about-brand-statement h2,
  .about-interaction-page .about-brand-statement h2 {
    max-width: 18em;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.42;
  }

  .about-brand-statement p:not(.about-brand-statement__label),
  .about-interaction-page .about-brand-statement p:not(.about-brand-statement__label) {
    max-width: 29em;
    font-size: 14px;
    line-height: 1.7;
  }

  .notice-item__button {
    gap: 7px;
    min-height: 0;
    padding: 14px 48px 14px 16px;
  }

  .notice-item__meta {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .notice-badge {
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .notice-item time {
    font-size: 12px;
  }

  .notice-item__title {
    max-width: calc(100% - 8px);
    font-size: clamp(17px, 4.9vw, 21px);
    line-height: 1.24;
    word-break: keep-all;
  }

  .notice-item__summary {
    max-width: calc(100% - 8px);
    font-size: 14px;
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-line-clamp: 2;
  }

  .notice-item__icon {
    top: 16px;
    right: 16px;
    width: 26px;
    height: 26px;
  }

  .notice-item__panel {
    padding: 0 16px 18px;
  }

  .notice-item__content {
    gap: 8px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .privacy-policy-content {
    gap: 24px;
  }
}

/* Follow-up refinements */
.about-overview-panel__content h3,
.about-interaction-page .about-overview-panel__content h3 {
  max-width: 720px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.34;
  word-break: keep-all;
}

.about-brand-statement,
.about-interaction-page .about-brand-statement {
  padding: clamp(62px, 8vw, 92px) 0;
}

.about-brand-statement__inner {
  display: grid;
  gap: 0;
}

.about-brand-statement__label,
.about-section-kicker span.about-brand-statement__label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-brand-statement h2,
.about-interaction-page .about-brand-statement h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(31px, 4.4vw, 54px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-brand-statement p:not(.about-brand-statement__label),
.about-interaction-page .about-brand-statement p:not(.about-brand-statement__label) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted-on-dark);
  font-size: 17px;
  line-height: 1.75;
}

.dispatch-link-panel {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.99) 0%, rgba(17, 24, 39, 0.96) 52%, rgba(8, 13, 23, 0.78) 76%, rgba(8, 13, 23, 0.5) 100%),
    url("/images/baecha/baecha.webp") right center / clamp(210px, 28vw, 360px) auto no-repeat,
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 23, 0.98));
}

.dispatch-link-panel > .button {
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 38px rgba(8, 13, 23, 0.28);
}

.dispatch-link-panel__content {
  min-width: 0;
}

.call-guide {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.call-guide.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.call-guide__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 23, 0.58);
  backdrop-filter: blur(5px);
}

.call-guide__panel {
  position: relative;
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 23, 0.98));
  color: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.call-guide.is-visible .call-guide__panel {
  transform: translateY(0);
}

.call-guide__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.call-guide__close span::before,
.call-guide__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  content: "";
}

.call-guide__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.call-guide__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.call-guide__close:hover,
.call-guide__close:focus-visible {
  border-color: rgba(245, 179, 1, 0.6);
  background: rgba(245, 179, 1, 0.18);
  outline: none;
}

.call-guide__eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-guide h2 {
  margin: 0;
  padding-right: 48px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.2;
}

.call-guide__description {
  margin: 14px 0 0;
  color: var(--muted-on-dark);
  line-height: 1.7;
  word-break: keep-all;
}

.call-guide__numbers {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.call-guide__numbers div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.call-guide__numbers dt {
  color: var(--muted-on-dark);
  font-size: 13px;
  font-weight: 900;
}

.call-guide__numbers dd {
  margin: 0;
  font-size: 20px;
  font-weight: 950;
}

.call-guide__numbers a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 760px) {
  .about-overview-panel__content h3,
  .about-interaction-page .about-overview-panel__content h3 {
    max-width: 15em;
    font-size: clamp(19px, 5.4vw, 23px);
    line-height: 1.36;
  }

  .about-brand-statement h2,
  .about-interaction-page .about-brand-statement h2 {
    max-width: 12em;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
  }

  .about-brand-statement p:not(.about-brand-statement__label),
  .about-interaction-page .about-brand-statement p:not(.about-brand-statement__label) {
    max-width: 30em;
    font-size: 15px;
    line-height: 1.7;
  }

  .dispatch-link-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    background:
      linear-gradient(180deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.94) 58%, rgba(8, 13, 23, 0.72) 100%),
      url("/images/baecha/baecha.webp") right bottom / min(76%, 280px) auto no-repeat,
      linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 23, 0.98));
  }

  .dispatch-link-panel > .button {
    justify-self: start;
  }

  .call-guide__panel {
    padding: 26px 20px 22px;
  }

  .call-guide__numbers div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
