:root {
  --ink: #06172f;
  --ink-soft: #0c3565;
  --sea: #079fc0;
  --sea-deep: #067a9a;
  --sea-bright: #35d4c6;
  --sky: #ddf8fc;
  --paper: #ffffff;
  --mist: #f5fbfe;
  --line: rgba(6, 23, 47, 0.12);
  --warm: #f2b84b;
  --muted: #5a6d84;
  --shadow: 0 26px 70px rgba(6, 23, 47, 0.16);
  --shadow-soft: 0 14px 34px rgba(6, 23, 47, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfe 48%, #ffffff 100%);
  line-height: 1.6;
}

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

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

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(6, 23, 47, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo {
  width: 158px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

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

.site-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 8px;
  color: #29425e;
  font-size: 0.94rem;
  font-weight: 720;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(7, 159, 192, 0.11);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(7, 159, 192, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 96px 0 58px;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(53, 212, 198, 0.16) 0 1px, transparent 1px 80px),
    linear-gradient(155deg, #06172f 0%, #0b2f5c 48%, #079fc0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 212, 198, 0.7), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(7, 159, 192, 0.28);
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 780;
  font-size: 0.84rem;
  box-shadow: 0 10px 26px rgba(6, 23, 47, 0.06);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sea-bright);
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.17);
}

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

h1 {
  margin-bottom: 22px;
  max-width: 850px;
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 920px;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  color: #40556d;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero .eyebrow,
.page-hero .eyebrow,
.banner .eyebrow {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 820;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button.primary {
  color: var(--paper);
  background: linear-gradient(135deg, #06406f 0%, var(--sea) 58%, var(--sea-bright) 100%);
  box-shadow: 0 16px 36px rgba(7, 159, 192, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(6, 23, 47, 0.12);
  box-shadow: 0 12px 24px rgba(6, 23, 47, 0.07);
}

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

.button.primary:hover {
  box-shadow: 0 20px 42px rgba(7, 159, 192, 0.34);
}

.hero .button.secondary,
.banner .button.secondary,
.page-hero .button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero-visual {
  position: relative;
}

.hero-visual > img {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 90px rgba(0, 10, 25, 0.38);
}

.hero-slideshow {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(4, 17, 38, 0.72);
  box-shadow: 0 34px 90px rgba(0, 10, 25, 0.42);
}

.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 23, 47, 0.9) 0%, rgba(6, 23, 47, 0.1) 44%, rgba(7, 159, 192, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px);
  mix-blend-mode: normal;
}

.hero-slides {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 850ms ease, transform 1400ms ease;
}

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

.hero-slide img {
  user-select: none;
}

.slide-bg {
  position: absolute;
  inset: -34px;
  width: calc(100% + 68px);
  height: calc(100% + 68px);
  object-fit: cover;
  filter: blur(18px) saturate(1.18) contrast(1.06);
  opacity: 0.38;
  transform: scale(1.14);
}

.slide-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.hero-slide figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  gap: 6px;
  max-width: 430px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(4, 17, 38, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 48px rgba(0, 10, 25, 0.26);
}

.hero-slide figcaption span {
  color: var(--sea-bright);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-slide figcaption strong {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.18;
}

.slide-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.slide-arrow,
.slide-dots button {
  border: 0;
  color: var(--paper);
  cursor: pointer;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(4, 17, 38, 0.58);
  box-shadow: 0 14px 34px rgba(0, 10, 25, 0.26);
  pointer-events: auto;
  transition: transform 180ms ease, background 180ms ease;
}

.slide-arrow[data-slide-prev] {
  left: 18px;
  transform: translateY(-50%);
}

.slide-arrow[data-slide-next] {
  right: 18px;
  transform: translateY(-50%);
}

.slide-arrow:hover {
  background: rgba(7, 159, 192, 0.82);
}

.slide-arrow[data-slide-prev]:hover,
.slide-arrow[data-slide-next]:hover {
  transform: translateY(calc(-50% - 2px));
}

.slide-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  max-width: 330px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 17, 38, 0.48);
  pointer-events: auto;
}

.slide-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transition: width 180ms ease, background 180ms ease;
}

.slide-dots button[aria-current="true"] {
  width: 24px;
  border-radius: 999px;
  background: var(--sea-bright);
}

.hero-slideshow .status-strip {
  position: relative;
  z-index: 6;
  margin-top: 0;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -2px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 54px rgba(0, 10, 25, 0.26);
}

.status-strip div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.status-strip strong {
  display: block;
  color: var(--sea);
  font-size: 1.25rem;
  line-height: 1;
}

.status-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, #f5fbfe 0%, #eef9fc 100%);
  border-block: 1px solid rgba(6, 23, 47, 0.06);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

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

.service-card,
.solution-card,
.process-step,
.contact-panel,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
}

.service-card {
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card:hover,
.solution-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 159, 192, 0.26);
  box-shadow: 0 24px 58px rgba(6, 23, 47, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.44;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sky), #ffffff);
  border-bottom: 1px solid rgba(6, 23, 47, 0.08);
}

.card-body {
  padding: 22px;
}

.card-body p,
.solution-card p,
.process-step p,
.info-card p {
  color: var(--muted);
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--sea);
  font-weight: 800;
}

.mini-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.mini-link:hover::after {
  transform: translateX(3px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.split > div > img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 23, 47, 0.08);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #40556d;
  padding: 12px;
  border: 1px solid rgba(6, 23, 47, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.check {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--sea) 0%, var(--sea-bright) 100%);
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(7, 159, 192, 0.22);
}

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

.solution-card {
  padding: 26px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.card-actions {
  margin-top: 22px;
}

.card-actions .button {
  width: 100%;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--sea-bright) 0%, var(--sea) 42%, var(--ink) 100%);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(7, 159, 192, 0.2);
}

.banner {
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 58%, var(--sea-deep) 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-block: 54px;
}

.banner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  position: relative;
  padding: 86px 0;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 58%, var(--sea-deep) 100%);
  overflow: hidden;
}

.page-hero h1,
.page-hero p {
  max-width: 820px;
}

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

.service-detail {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail img {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sky), #ffffff);
  box-shadow: 0 18px 42px rgba(6, 23, 47, 0.1);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 10px;
  border-radius: 8px;
  color: #07395f;
  background: rgba(216, 247, 251, 0.78);
  border: 1px solid rgba(7, 159, 192, 0.14);
  font-weight: 750;
  font-size: 0.86rem;
}

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

.process-step {
  position: relative;
  padding: 26px;
  counter-increment: steps;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.process-step::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--sea);
  font-size: 0.9rem;
  font-weight: 900;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.metric {
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(221, 248, 252, 0.94), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(7, 159, 192, 0.16);
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 740;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.download-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
}

.download-panel.accent-panel {
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 58%, var(--sea-deep) 100%);
}

.download-panel.accent-panel h3,
.download-panel.accent-panel .feature-list li {
  color: var(--paper);
}

.download-panel.accent-panel .feature-list li {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 28px 0 24px;
}

.download-meta {
  display: grid;
  gap: 10px;
  padding: 18px;
  margin: 0;
  border: 1px solid rgba(7, 159, 192, 0.16);
  border-radius: 8px;
  background: rgba(221, 248, 252, 0.48);
  color: var(--muted);
  list-style: none;
}

.download-meta strong {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
  overflow: hidden;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-method {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fcfe, #eef9fc);
  border: 1px solid rgba(6, 23, 47, 0.08);
}

.method-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--sea) 0%, var(--ink-soft) 100%);
  font-weight: 900;
}

.contact-method strong {
  display: block;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

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

textarea {
  min-height: 152px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(8, 151, 180, 0.18);
  border-color: var(--sea);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(90deg, rgba(53, 212, 198, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #06172f 0%, #041126 100%);
  background-size: 88px 88px, auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0 42px;
}

.site-footer h3 {
  color: var(--paper);
  font-size: 1rem;
}

.site-footer .brand {
  margin-bottom: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

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

  .site-nav {
    position: absolute;
    inset: 78px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .split,
  .contact-grid,
  .download-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-slides {
    min-height: 430px;
  }

  .slide-image {
    width: 100%;
    max-height: none;
  }

  .service-detail {
    padding: 26px;
  }

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

  .solution-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner .container,
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

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

  .brand-logo {
    width: 132px;
    max-height: 48px;
  }

  .hero,
  .section,
  .page-hero {
    padding-block: 54px;
  }

  .hero-slides {
    min-height: 380px;
  }

  .slide-image {
    width: 100%;
    max-height: none;
  }

  .hero-slide figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .slide-arrow {
    width: 36px;
    height: 36px;
  }

  .slide-arrow[data-slide-prev] {
    left: 12px;
  }

  .slide-arrow[data-slide-next] {
    right: 12px;
  }

  .slide-dots {
    top: 12px;
    right: 12px;
    max-width: 186px;
    gap: 6px;
  }

  .service-detail {
    padding: 20px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .service-grid,
  .solution-grid,
  .process-grid,
  .metrics,
  .form-grid,
  .footer-grid,
  .status-strip {
    grid-template-columns: 1fr;
  }

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