:root {
  --color-primary: #2ca5f2;
  --color-primary-dark: #147fc4;
  --color-primary-soft: #eaf7ff;
  --color-accent: #30c765;
  --color-accent-dark: #1e9f4d;
  --color-navy: #1e3548;
  --color-text: #263238;
  --color-muted: #637481;
  --color-bg: #f5fbff;
  --color-white: #fff;
  --color-border: #dce8f0;
  --color-warm: #fff8e8;
  --shadow-sm: 0 12px 35px rgba(30, 83, 118, 0.08);
  --shadow-md: 0 22px 55px rgba(30, 83, 118, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP",
    "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--color-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(44, 165, 242, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

.narrow {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.section {
  width: 100%;
  max-width: 100%;
  overflow: clip;
  padding: 66px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(44, 165, 242, 0.08), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(48, 199, 101, 0.07), transparent 22%),
    var(--color-bg);
}

.section--navy {
  color: var(--color-white);
  background:
    radial-gradient(circle at 85% 5%, rgba(44, 165, 242, 0.26), transparent 30%),
    var(--color-navy);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
}

.section--navy .eyebrow {
  color: #aee1ff;
}

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

h1,
h2,
h3 {
  color: var(--color-navy);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 8vw, 4.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.section--navy h2,
.section--navy h3 {
  color: var(--color-white);
}

.lead {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.section--navy .lead,
.section--navy p {
  color: #dcecf5;
}

.text-accent {
  color: var(--color-primary-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag--green {
  color: #147b39;
  background: #eaf9ef;
}

.tag--warm {
  color: #90620f;
  background: var(--color-warm);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 232, 240, 0.8);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: inline-flex;
  flex-direction: column;
  color: var(--color-navy);
  line-height: 1.1;
  text-decoration: none;
}

.site-logo strong {
  font-size: 1.16rem;
  letter-spacing: 0.04em;
}

.site-logo small {
  margin-top: 5px;
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.nav-toggle {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  background: var(--color-primary-soft);
  border: 0;
  border-radius: 13px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 999px;
  content: "";
  transition: 0.25s ease;
}

.nav-toggle::before {
  transform: translateY(-7px);
}

.nav-toggle::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.global-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  max-height: calc(100dvh - var(--header-height));
  padding: 18px 20px 28px;
  overflow-y: auto;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.25s ease;
}

.global-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.global-nav ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a {
  display: block;
  padding: 12px 13px;
  color: var(--color-navy);
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
}

.global-nav .nav-cta {
  color: var(--color-white);
  background: var(--color-primary-dark);
  text-align: center;
}

.global-nav .nav-cta:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

/* Breadcrumb */
.breadcrumb {
  padding: 14px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 0.79rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 7px;
  color: #9caeb9;
  content: "/";
}

.breadcrumb a {
  color: var(--color-muted);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 8% 18%, rgba(48, 199, 101, 0.12), transparent 22%),
    linear-gradient(135deg, #f8fdff 0%, #e9f7ff 55%, #f6fcff 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: rgba(44, 165, 242, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 38px;
  align-items: center;
}

.hero-grid > *,
.media-split > *,
.grid > *,
.compare-grid > *,
.industry-card > *,
.process-layout > *,
.contact-panel > *,
.footer-grid > *,
.footer-cta-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy .lead {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.hero-kicker::before {
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(48, 199, 101, 0.12);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions .button,
.cta-actions .button {
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  color: var(--color-white);
  background: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(20, 127, 196, 0.2);
  transition: 0.2s ease;
}

.button:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.button--green {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 10px 24px rgba(30, 159, 77, 0.18);
}

.button--green:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.button--outline {
  color: var(--color-primary-dark);
  background: transparent;
  border-color: var(--color-primary-dark);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--color-white);
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.button--white {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-white);
}

.button--white:hover {
  color: var(--color-primary-dark);
  background: #eef9ff;
  border-color: #eef9ff;
}

.button--ghost-white {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.button--ghost-white:hover {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-white);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 10px;
  border-radius: 38px;
}

.hero-visual::before {
  position: absolute;
  inset: 0 7% 8%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(44, 165, 242, 0.2), rgba(48, 199, 101, 0.1));
  border-radius: 42px;
  content: "";
  transform: rotate(-2deg);
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  box-shadow: 0 28px 65px rgba(30, 83, 118, 0.2);
}

.hero-visual--illustration img {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.58);
}

.hero-visual--photo img,
.section-visual--photo img {
  object-position: center;
}

.visual-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 44px);
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 232, 240, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(30, 83, 118, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.visual-badge::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
}

.visual-badge--top {
  top: 16px;
  left: 16px;
}

.visual-badge--bottom {
  right: 16px;
  bottom: 16px;
}

.hero-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.84rem;
}

.hero-note strong {
  color: var(--color-primary-dark);
}

/* Cards and layouts */
.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  position: relative;
  padding: 21px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.card--highlight {
  border-color: rgba(44, 165, 242, 0.42);
  box-shadow: var(--shadow-md);
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 900;
}

.card-icon--green {
  color: #127239;
  background: #eaf9ef;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  color: var(--color-white);
  background: var(--color-accent-dark);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.media-split {
  display: grid;
  gap: 34px;
  align-items: center;
}

.media-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--color-primary-soft);
  border: 7px solid var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.media-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-frame--illustration img {
  object-fit: contain;
  background: #f5fbff;
}

.section-visual {
  position: relative;
  width: 100%;
  max-width: 920px;
  min-width: 0;
  margin: 0 auto 40px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.section-visual::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  content: "";
}

.section-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-visual--infographic img,
.section-visual--compare img {
  object-fit: contain;
  background: #f4fbff;
}

.section-visual--dark {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: #203e55;
}

.section-visual figcaption {
  position: relative;
  margin: 0;
  padding: 15px 18px;
  color: var(--color-muted);
  background: var(--color-white);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.65;
}

.section-visual--dark figcaption {
  color: #dcecf5;
  background: #193247;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), rgba(44, 165, 242, 0));
  content: "";
}

.feature-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--color-accent), rgba(48, 199, 101, 0));
}

.feature-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 90px;
  height: 90px;
  background: rgba(44, 165, 242, 0.07);
  border-radius: 50%;
  content: "";
}

.feature-card .use-case {
  margin-top: 15px;
  padding-top: 14px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.feature-card .use-case strong {
  color: var(--color-navy);
}

.compare-grid {
  display: grid;
  gap: 20px;
}

.compare-card {
  padding: 26px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.compare-card--standard {
  border-top: 5px solid var(--color-primary);
}

.compare-card--extension {
  border-top: 5px solid var(--color-accent);
}

.notice {
  padding: 20px 22px;
  color: #67521b;
  background: var(--color-warm);
  border: 1px solid #f4dfa5;
  border-radius: var(--radius-sm);
}

.notice strong {
  color: #6d5107;
}

/* Industry pages */
.industry-nav {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.industry-nav a::after {
  color: var(--color-primary-dark);
  content: "↓";
}

.industry-section {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.industry-card {
  display: grid;
  gap: 24px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.industry-card + .industry-card {
  margin-top: 24px;
}

.industry-card--priority {
  border: 2px solid rgba(44, 165, 242, 0.45);
  box-shadow: var(--shadow-md);
}

.industry-card__image {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--color-primary-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 34px rgba(30, 83, 118, 0.13);
}

.industry-card__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 12px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(30, 53, 72, 0.14);
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  backdrop-filter: blur(10px);
}

.industry-card__content > p {
  color: var(--color-muted);
}

.industry-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.caution {
  margin-top: 18px;
  padding: 14px 16px;
  color: #725719;
  background: var(--color-warm);
  border-radius: 12px;
  font-size: 0.9rem;
}

/* Service */
.service-strip {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary-dark), #176a9f);
  border-radius: var(--radius-md);
}

.service-strip strong {
  display: block;
  font-size: 1.25rem;
}

.tool-card {
  position: relative;
  padding-top: 34px;
}

.tool-card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
}

.process {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-layout {
  display: grid;
  gap: 30px;
  align-items: start;
}

.process-photo {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.process-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-photo figcaption {
  padding: 15px 18px;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.process li {
  position: relative;
  min-height: 92px;
  padding: 22px 20px 22px 78px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  counter-increment: process;
}

.process li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background: var(--color-primary-dark);
  border-radius: 13px;
  content: counter(process, decimal-leading-zero);
  font-size: 0.84rem;
  font-weight: 900;
  place-items: center;
}

.process strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-navy);
}

/* Contact */
.contact-panel {
  display: grid;
  gap: 28px;
  padding: 20px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 5%, rgba(48, 199, 101, 0.18), transparent 25%),
    var(--color-navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--color-white);
}

.contact-panel p {
  color: #dcecf5;
}

.contact-photo {
  position: relative;
  margin: 24px 0 22px;
  overflow: hidden;
  background: #eef8ff;
  border: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.contact-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 12px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 26px;
}

.contact-points li::before {
  position: absolute;
  left: 0;
  color: #72e69a;
  content: "✓";
  font-weight: 900;
}

.contact-form {
  padding: 24px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: var(--radius-md);
}

.contact-direct-panel {
  align-self: center;
  padding: 24px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 48px rgba(5, 25, 39, 0.22);
}

.contact-direct-panel h3 {
  margin: 18px 0 10px;
  color: var(--color-navy);
  font-size: clamp(1.35rem, 5vw, 1.9rem);
}

.contact-direct-panel p {
  color: var(--color-muted);
}

.contact-direct-panel .check-list {
  margin: 20px 0 24px;
}

.contact-direct-panel .button {
  width: 100%;
}

.contact-direct-phone {
  display: block;
  margin-top: 16px;
  color: var(--color-primary-dark);
  font-weight: 800;
  text-align: center;
}

.form-grid {
  display: grid;
  gap: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.required {
  margin-left: 6px;
  color: #b93030;
  font-size: 0.72rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--color-text);
  background: #fbfdff;
  border: 1px solid #bdced9;
  border-radius: 10px;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--color-white);
  border-color: var(--color-primary);
  outline: 3px solid rgba(44, 165, 242, 0.18);
}

.form-note,
.form-status {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
}

/* CTA / pagination / references */
.cta-band {
  padding: 38px 24px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(48, 199, 101, 0.25), transparent 25%),
    linear-gradient(135deg, var(--color-primary-dark), #176a9f);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  color: var(--color-white);
}

.cta-band p {
  color: #e3f3fc;
}

.page-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.page-link {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  text-decoration: none;
}

.page-link:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.page-link small {
  display: block;
  color: var(--color-muted);
  font-weight: 600;
}

.references {
  padding: 34px 0;
  background: #f8fafb;
  border-top: 1px solid var(--color-border);
}

.references h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.references ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
  font-size: 0.78rem;
}

.references p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.75rem;
}

/* Footer */
.site-footer {
  padding: 0;
  overflow: hidden;
  color: #d9ebf7;
  background: #10334d;
}

.footer-cta {
  padding: 62px 0 58px;
  color: var(--color-white);
  background: #147fc4;
}

.footer-cta__heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.footer-cta__heading .eyebrow {
  color: #d9f2ff;
}

.footer-cta__heading h2 {
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: clamp(1.65rem, 6vw, 2.5rem);
}

.footer-cta__heading p {
  margin-bottom: 0;
  color: #e7f6ff;
}

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

.footer-cta-card {
  display: grid;
  min-height: 124px;
  grid-template-columns: 66px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  padding: 18px 16px;
  color: var(--color-primary-dark);
  background: var(--color-white);
  border: 3px solid #8bd2fb;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(5, 59, 96, 0.22);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-cta-card:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-white);
  box-shadow: 0 20px 44px rgba(5, 59, 96, 0.3);
  transform: translateY(-4px);
}

.footer-cta-card__icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: #f1faff;
  border-radius: 18px;
}

.footer-cta-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-cta-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-navy);
  font-size: 1.04rem;
  line-height: 1.4;
}

.footer-cta-card small {
  display: block;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.55;
}

.footer-cta-card__arrow {
  color: var(--color-primary-dark);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.footer-info {
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  color: var(--color-white);
}

.footer-brand strong {
  display: block;
  font-size: 1.25rem;
}

.footer-brand span {
  color: #9bcfea;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.footer-brand p {
  margin: 14px 0 0;
  color: #bfd5e3;
}

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

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

.footer-links a {
  color: #cbdce7;
}

.footer-phone {
  display: inline-block;
  color: var(--color-white);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-external {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: #bfe6ff;
  font-weight: 800;
}

.copyright {
  margin: 32px 0 0;
  padding-top: 18px;
  color: #8da5b5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  text-align: center;
}

/* Reveal animation: content stays visible when JavaScript is unavailable. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (min-width: 600px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero-actions,
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: auto;
  }

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

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

  .service-strip {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

@media (min-width: 820px) {
  .section {
    padding: 104px 0;
  }

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

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

  .section-visual {
    margin-bottom: 52px;
  }

  .media-split--reverse .media-frame {
    order: 2;
  }

  .industry-card {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    padding: 32px;
  }

  .industry-card__image img {
    height: auto;
    min-height: 0;
  }

  .process-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 38px;
  }

  .process-photo {
    position: sticky;
    top: calc(var(--header-height) + 26px);
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    padding: 42px;
  }

  .footer-cta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1020px) {
  :root {
    --header-height: 84px;
  }

  .nav-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    max-height: none;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .global-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .global-nav a {
    padding: 10px 11px;
    font-size: 0.84rem;
  }

  .global-nav .nav-cta {
    margin-left: 5px;
    padding-inline: 17px;
    border-radius: 999px;
  }

  .hero {
    min-height: 650px;
    padding: 92px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 58px;
  }

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

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    border-color: rgba(44, 165, 242, 0.42);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
  }

  .industry-card:hover .industry-card__image img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
