:root {
  --color-ink: #111315;
  --color-ink-soft: #41454a;
  --color-muted: #6f747b;
  --color-line: #e3e6e8;
  --color-bg: #ffffff;
  --color-soft: #f5f6f3;
  --color-coal: #090b0d;
  --color-amber: #f0b429;
  --color-amber-dark: #c48705;
  --color-teal: #0f8f83;
  --color-rust: #d9532f;
  --shadow-soft: 0 22px 60px rgba(11, 16, 20, 0.14);
  --shadow-card: 0 14px 32px rgba(21, 25, 30, 0.08);
  --radius: 8px;
  --container: 1180px;
  --header-height: 96px;
  --header-height-small: 74px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  color: #ffffff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  height: var(--header-height-small);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(17, 19, 21, 0.08);
  box-shadow: 0 16px 42px rgba(10, 14, 18, 0.12);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: clamp(210px, 26vw, 360px);
  height: 52px;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.site-header.is-scrolled .brand-logo,
body.nav-open .brand-logo {
  transform: scale(0.9);
  transform-origin: left center;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
body.nav-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
body.nav-open .brand-logo-dark {
  opacity: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  opacity: 0.88;
  transition: color 180ms ease, opacity 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--color-amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  opacity: 1;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
body.nav-open .nav-toggle {
  border-color: rgba(17, 19, 21, 0.14);
  background: rgba(17, 19, 21, 0.04);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  margin: 5px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: clamp(580px, 78vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.page-hero {
  min-height: clamp(500px, 64vh, 650px);
}

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

.hero-slider {
  overflow: hidden;
}

.hero-media,
.hero-slide {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.88) 0%, rgba(3, 5, 7, 0.64) 43%, rgba(3, 5, 7, 0.24) 100%),
    linear-gradient(180deg, rgba(3, 5, 7, 0.42) 0%, rgba(3, 5, 7, 0.12) 54%, rgba(3, 5, 7, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 86px;
  max-width: 780px;
  margin-inline-start: max(20px, calc((100vw - var(--container)) / 2));
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--color-amber-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
}

h3 {
  font-size: 22px;
  font-weight: 850;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 21px);
}

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

.hero-dots {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 36px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.44);
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: var(--color-amber);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #121212;
  background: var(--color-amber);
}

.btn-primary:hover {
  background: #ffd35c;
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  color: #ffffff;
  background: var(--color-ink);
}

.btn-light {
  color: var(--color-ink);
  background: #ffffff;
}

.stats-strip {
  background: var(--color-coal);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  min-height: 116px;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  color: var(--color-amber);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

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

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.section-heading h2,
.section-top h2,
.feature-copy h2,
.contact-panel h2 {
  max-width: 760px;
}

.rich-copy {
  color: var(--color-ink-soft);
  font-size: 18px;
}

.rich-copy p {
  margin: 0 0 18px;
}

.mini-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-feature-row span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #12322f;
  background: rgba(15, 143, 131, 0.12);
  font-weight: 800;
  font-size: 14px;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.text-link {
  color: var(--color-ink);
  font-weight: 850;
  border-bottom: 2px solid var(--color-amber);
}

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

.service-card,
.detail-card,
.value-card,
.info-grid article {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 255px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card svg,
.detail-card svg,
.info-grid svg {
  width: 34px;
  height: 34px;
  color: var(--color-amber-dark);
  stroke-width: 2.2;
}

.service-card p,
.detail-card p,
.value-card p,
.info-grid p,
.process-grid p {
  margin: 0;
  color: var(--color-muted);
}

.image-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.image-frame {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: auto 26px -28px auto;
  width: 180px;
  height: 180px;
  border: 18px solid var(--color-amber);
  opacity: 0.95;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.feature-copy p {
  color: var(--color-ink-soft);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  font-weight: 780;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  flex: 0 0 auto;
}

.calc-teaser,
.location-teaser {
  color: #ffffff;
  min-height: clamp(330px, 30vw, 380px);
  display: flex;
  align-items: center;
}

.calc-teaser {
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.94), rgba(9, 11, 13, 0.72)),
    url("../images/power-calculation.jpg") center / cover;
}

.teaser-panel,
.location-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.teaser-panel h2,
.location-panel h2 {
  max-width: 760px;
}

.location-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.section-divider {
  height: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(240, 180, 41, 0), rgba(240, 180, 41, 0.34), rgba(15, 143, 131, 0.18), rgba(240, 180, 41, 0)),
    linear-gradient(180deg, #0b0d0f 0%, #141719 44%, #0b0d0f 100%);
}

.location-teaser {
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.94), rgba(9, 11, 13, 0.64)),
    url("../images/location-route.jpg") center / cover;
}

.location-panel .btn {
  gap: 9px;
}

.location-panel svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  color: #ffffff;
  background: #07090b;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.6fr) minmax(220px, 0.7fr);
  gap: 44px;
}

.footer-logo {
  width: min(320px, 80vw);
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--color-amber);
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  margin: 8px 0;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

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

.value-card,
.info-grid article {
  padding: 30px;
}

.value-card span,
.process-grid span {
  display: inline-flex;
  color: var(--color-amber-dark);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.value-card h3,
.info-grid h3 {
  margin-bottom: 12px;
}

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

.mission-grid > div {
  min-height: 280px;
  padding: 36px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, #111315, #25292d);
}

.mission-grid > div:nth-child(2) {
  background: linear-gradient(135deg, #103f3b, #111315);
}

.sector-band {
  color: #ffffff;
  background: #111315;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-list span {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 780;
}

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

.detail-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.detail-card h2 {
  font-size: 25px;
}

.detail-card a {
  margin-top: auto;
  color: var(--color-ink);
  font-weight: 850;
  border-bottom: 2px solid var(--color-amber);
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.process-grid > div {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--color-line);
}

.process-grid > div:last-child {
  border-right: 0;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.calc-card,
.result-card,
.contact-panel {
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.calc-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 8px;
  color: var(--color-ink);
  font-weight: 830;
}

.input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.input-wrap input {
  min-width: 0;
  width: 100%;
  border: 0;
}

.input-wrap span {
  min-width: 58px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  background: var(--color-soft);
  border-left: 1px solid var(--color-line);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--color-ink);
  background: #ffffff;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-amber-dark);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.18);
}

textarea {
  resize: vertical;
}

.result-card {
  padding: 32px;
  background:
    linear-gradient(160deg, rgba(240, 180, 41, 0.16), rgba(15, 143, 131, 0.1)),
    #ffffff;
}

.result-main {
  display: grid;
  gap: 4px;
  margin: 8px 0 28px;
}

.result-main span {
  color: var(--color-ink);
  font-size: clamp(60px, 8vw, 96px);
  line-height: 0.95;
  font-weight: 950;
}

.result-main small {
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 820;
}

.result-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.result-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
}

.result-list span {
  color: var(--color-muted);
}

.info-grid article {
  display: grid;
  gap: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.contact-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.contact-panel {
  padding: 32px;
}

.contact-grid-single .contact-panel {
  max-width: 860px;
  margin-inline: auto;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-list a {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-list a:hover {
  border-color: var(--color-amber);
  transform: translateY(-2px);
}

.contact-list svg {
  width: 26px;
  height: 26px;
  color: var(--color-amber-dark);
  flex: 0 0 auto;
}

.contact-list small {
  display: block;
  color: var(--color-muted);
  font-weight: 780;
}

.contact-list span {
  font-weight: 850;
}

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

.map-section {
  padding-top: 0;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: var(--color-soft);
}

.map-frame iframe {
  width: 100%;
  height: clamp(360px, 45vw, 520px);
  display: block;
  border: 0;
  filter: grayscale(0.28) contrast(1.02);
}

@media (max-width: 1060px) {
  .primary-nav {
    gap: 16px;
    font-size: 12px;
  }

  .brand {
    width: 250px;
  }

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

  .process-grid > div:nth-child(2) {
    border-right: 0;
  }

  .process-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-line);
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 82px;
    --header-height-small: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height-small);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height-small));
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0;
    padding: 24px 20px;
    color: var(--color-ink);
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 220ms ease;
    font-size: 17px;
  }

  body.nav-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-line);
    text-align: left;
  }

  .primary-nav a::after {
    right: auto;
    width: 60px;
  }

  .hero-content {
    margin-inline-start: 20px;
  }

  .stats-grid,
  .split-grid,
  .image-feature-grid,
  .footer-grid,
  .value-grid,
  .mission-grid,
  .calculator-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:last-child {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section-top,
  .teaser-panel,
  .location-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .image-frame,
  .image-frame img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    width: min(230px, 68vw);
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    margin-inline: 14px;
    padding-top: 72px;
  }

  .hero-dots {
    right: 14px;
    bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .service-grid,
  .service-detail-grid,
  .process-grid,
  .form-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .process-grid > div,
  .process-grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .process-grid > div:last-child {
    border-bottom: 0;
  }

  .service-card,
  .detail-card,
  .value-card,
  .info-grid article,
  .contact-panel,
  .calc-card,
  .result-card {
    padding: 24px;
  }
}
