:root {
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --bg: #07111f;
  --bg-deeper: #050b16;
  --panel: rgba(11, 23, 40, 0.82);
  --panel-strong: #0d1b30;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --surface-tint: #eaf2ff;
  --text: #f6f9ff;
  --text-strong: #07111f;
  --muted: #aec0df;
  --muted-dark: #52627f;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(7, 17, 31, 0.12);
  --blue: #2f82ff;
  --blue-2: #59abff;
  --blue-3: #164fc7;
  --shadow: 0 24px 70px rgba(2, 9, 18, 0.35);
  --shadow-soft: 0 16px 40px rgba(4, 16, 32, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 130, 255, 0.24), transparent 28%),
    radial-gradient(circle at right 20%, rgba(89, 171, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #07111f 0%, #050b16 54%, #06101e 100%);
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
  opacity: 0.38;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 22, 0.75);
  backdrop-filter: blur(18px);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
}

.topbar strong {
  color: var(--text);
  font-weight: 700;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy span {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: var(--text-strong);
  text-transform: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-left: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 14px 30px rgba(47, 130, 255, 0.28);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

main {
  overflow: clip;
}

.page {
  position: relative;
  padding: 32px 0 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-3);
  font-family: "Aptos Display", var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--blue-3);
}

.hero .eyebrow,
.subpage-hero .eyebrow {
  position: static;
  display: block;
  padding: 0;
  margin: 0 0 12px;
  background: transparent;
  border: 0;
  color: var(--blue-3);
  font-family: "Aptos Display", var(--font-display);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero .eyebrow::after,
.subpage-hero .eyebrow::after {
  content: none;
}

.hero .eyebrow::before,
.subpage-hero .eyebrow::before {
  content: none;
}

.hero .eyebrow.light,
.subpage-hero .eyebrow.light {
  color: var(--blue-3);
}

.section-title {
  display: grid;
  gap: 4px;
  width: 100%;
  max-width: none;
  margin-bottom: 24px;
  padding: 0;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-title::before {
  content: none;
}

.section-title::after {
  content: none;
}

.section-title .eyebrow {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-3);
  font-family: "Aptos Display", var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
}

.section-title .eyebrow::before {
  content: none;
}

.section-title h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.45;
  max-width: 78ch;
  color: #081120;
}

.section-title p {
  margin: 0;
  max-width: 100%;
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.58;
}

.section-title.light p,
.section-title.light .eyebrow {
  color: var(--blue-3);
}

.card-heading {
  margin: 0 0 10px;
  letter-spacing: -0.04em;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.12;
  color: var(--text-strong);
}

.card-heading.light {
  color: #07111f;
}

.hero,
.subpage-hero {
  padding: 24px 0 28px;
  border-radius: 0;
  margin: 0;
}
.hero-grid,
.subpage-grid,
.contact-grid,
.story-grid,
.solution-grid,
.commitment-grid {
  display: grid;
  gap: 24px;
}

.hero-grid,
.subpage-grid {
  align-items: stretch;
}

.hero-compact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 16px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 10px;
}

.hero-copy p {
  max-width: 100%;
  color: var(--text-strong);
}

.hero-summary {
  max-width: 100%;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
  line-height: 1.04;
  max-width: 100%;
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.hero-main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(47, 125, 255, 0.18);
}

.hero-visual-copy {
  display: grid;
  gap: 12px;
}

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

.hero-highlights li {
  color: var(--muted-dark);
  font-weight: 600;
}

.hero-panel,
.quote-panel {
  display: grid;
  gap: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.panel-top {
  display: grid;
  gap: 12px;
}

.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 125, 255, 0.08);
  color: var(--blue-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2,
.quote-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.05vw, 1.95rem);
  color: var(--text-strong);
}

.hero-panel p,
.quote-panel p,
.quote-panel blockquote,
.stat-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  line-height: 1.35;
  color: var(--text-strong);
}

.quote-panel cite {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-notes {
  display: grid;
  gap: 12px;
}

.quote-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-strong);
  font-weight: 600;
}

.panel-stats {
  display: grid;
  gap: 14px;
}

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

.subpage-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.92fr);
}

.hero-grid > div:first-child,
.subpage-grid > div:first-child,
.banner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.hero-grid > div:first-child .hero-actions,
.subpage-grid > div:first-child .subpage-actions,
.banner > div:first-child .actions {
}

.hero-actions,
.subpage-actions,
.banner .actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
}

.hero-actions .btn:first-child,
.subpage-actions .btn:first-child,
.banner .actions .btn:first-child {
  justify-self: start;
}

.hero-actions .btn:last-child,
.subpage-actions .btn:last-child,
.banner .actions .btn:last-child {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  min-width: 0;
  flex: 0 1 auto;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 18px 36px rgba(47, 130, 255, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-light {
  background: #fff;
  color: var(--text-strong);
  box-shadow: var(--shadow-soft);
}

.submit-button {
  width: 100%;
}

.button-spinner {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  display: none;
  animation: button-spin 0.8s linear infinite;
}

.submit-button.is-loading .button-spinner {
  display: inline-block;
}

.submit-button.is-loading {
  cursor: wait;
  opacity: 0.92;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 0 6px rgba(47, 130, 255, 0.08);
  flex: none;
}

.visual-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.glass-card {
  background: linear-gradient(180deg, rgba(14, 30, 53, 0.92), rgba(9, 18, 32, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-collage {
  position: relative;
  min-height: 560px;
  padding: 18px;
}

.hero-collage .main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
  filter: saturate(1.04) contrast(1.02);
}

.hero-collage .overlay-card {
  position: absolute;
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 16, 29, 0.68);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.hero-collage .overlay-top {
  left: 26px;
  top: 26px;
  max-width: 240px;
}

.hero-collage .overlay-bottom {
  right: 26px;
  bottom: 26px;
  max-width: 250px;
}

.overlay-card h2,
.overlay-card h3,
.overlay-card p {
  margin: 0;
}

.overlay-card h2,
.overlay-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.overlay-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-logo-badge img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.hero-logo-badge span {
  color: var(--muted);
  font-size: 0.84rem;
  display: block;
}

.hero-logo-badge strong {
  display: block;
  font-size: 0.95rem;
}

.metrics-strip,
.icon-grid,
.cards-grid,
.feature-grid,
.values-grid,
.faq-grid,
.support-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

.metrics-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
}

.metric {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.65vw, 1.75rem);
  line-height: 1.05;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.metric span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 52px 0;
  position: relative;
}

.section.light {
  color: var(--text-strong);
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.section.light .eyebrow,
.section.light .section-title h2,
.section.light .section-title p,
.section.light .card,
.section.light .timeline-card,
.section.light .info-card,
.section.light .faq-item,
.section.light .form-card,
.section.light .quote-card,
.section.light .support-card,
.section.light .process-card {
  color: var(--text-strong);
}

.section.light .eyebrow {
  color: var(--blue-3);
}

.section.light .section-title h2 {
  color: #081120;
}

.section.light .section-title p {
  color: var(--muted-dark);
}

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

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

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

.company-values {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: stretch;
}

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

.story-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: 16px;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(47, 125, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.story-card__visual {
  border-radius: calc(var(--radius-xl) + 2px);
  overflow: hidden;
  min-height: 340px;
}

.story-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__content {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 4px 2px 4px 0;
}

.story-card__content h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.story-card__content p {
  margin: 0;
  max-width: 100%;
  color: var(--muted-dark);
}

.story-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-card__chips span {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(47, 125, 255, 0.14);
  background: rgba(47, 130, 255, 0.06);
  color: var(--blue-3);
  font-size: 0.82rem;
  font-weight: 600;
}

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

.story-card__points div {
  padding: 13px 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 17, 31, 0.08);
}

.story-card__points h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.story-card__points p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.65;
}

.company-values__panel,
.company-values__list {
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(7, 17, 31, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-soft);
}

.company-values__panel {
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.company-values__panel--feature {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
}

.company-values__panel--values {
  padding: 22px 22px 20px;
}

.company-values__panel h3 {
  margin: 4px 0 10px;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text-strong);
}

.company-values__panel p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

.company-values__panel--values ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.company-values__panel--values li {
  display: grid;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
}

.company-values__panel--values strong {
  color: var(--text-strong);
  font-size: 0.94rem;
}

.company-values__panel--values span {
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.45;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-3);
  font-weight: 700;
}
  
.company-values__list {
  grid-column: 1 / -1;
  padding: 22px;
  margin-top: 2px;
}

.company-values__list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.company-values__list li {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
}

.company-values__list li:last-child {
  border-bottom: none;
}

.company-values__list strong {
  color: var(--text-strong);
  font-size: 0.92rem;
}

.company-values__list li span {
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.55;
}

.verticals-band {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: calc(var(--radius-xl) + 2px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(18, 44, 88, 0.96));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.verticals-band h3 {
  margin: 8px 0 0;
  font-size: clamp(1.15rem, 1.75vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.verticals-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

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

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

.card,
.timeline-card,
.info-card,
.faq-item,
.form-card,
.quote-card,
.support-card,
.process-card,
.stat-card,
.sector-card,
.solution-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.card,
.sector-card,
.solution-card,
.process-card,
.faq-item,
.support-card,
.info-card,
.timeline-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
}

.section.light .card,
.section.light .sector-card,
.section.light .solution-card,
.section.light .process-card,
.section.light .faq-item,
.section.light .support-card,
.section.light .info-card,
.section.light .timeline-card {
  background: #ffffff;
  border-color: rgba(7, 17, 31, 0.08);
}

.card h3,
.sector-card h3,
.solution-card h3,
.process-card h3,
.faq-item h3,
.support-card h3,
.info-card h3,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.card p,
.sector-card p,
.solution-card p,
.process-card p,
.faq-item p,
.support-card p,
.info-card p,
.timeline-card p,
.hero-copy p,
.hero-summary,
.story-card__content p,
.company-values__panel p,
.company-values__list li span,
.quality-band p,
.banner p,
.hero-panel p,
.quote-panel p,
.overlay-card p {
  max-width: none;
}

.card p,
.sector-card p,
.solution-card p,
.process-card p,
.faq-item p,
.support-card p,
.info-card p,
.timeline-card p {
  margin: 0;
  color: inherit;
}

.card .icon,
.sector-card .icon,
.solution-card .icon,
.process-card .icon,
.support-card .icon,
.info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(47, 130, 255, 0.2), rgba(89, 171, 255, 0.1));
  border: 1px solid rgba(89, 171, 255, 0.18);
  color: var(--blue-2);
}

.card .icon svg,
.sector-card .icon svg,
.solution-card .icon svg,
.process-card .icon svg,
.support-card .icon svg,
.info-card .icon svg {
  width: 22px;
  height: 22px;
}

.card ul,
.solution-card ul,
.process-card ul,
.support-card ul,
.info-card ul,
.timeline-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: inherit;
}

.card li + li,
.solution-card li + li,
.process-card li + li,
.support-card li + li,
.info-card li + li,
.timeline-card li + li {
  margin-top: 8px;
}

.sector-card {
  position: relative;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-color: rgba(7, 17, 31, 0.08);
}

.sector-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #123f9d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.sector-card__media {
  position: relative;
  padding: 14px 14px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
}

.sector-card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 0;
}

.solution-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 6px);
  margin-bottom: 16px;
}

.sector-card__media .tag {
  position: absolute;
  left: 26px;
  top: 26px;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.12);
}

.sector-card__content {
  display: grid;
  gap: 10px;
  padding: 18px 20px 22px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.feature-list .feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-list .feature .dot {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 130, 255, 0.2), rgba(89, 171, 255, 0.08));
  border: 1px solid rgba(89, 171, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
  font-weight: 800;
}

.feature-list .feature h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.feature-list .feature p {
  margin: 0;
  color: var(--muted);
}

.photo-frame {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.photo-frame img {
  border-radius: calc(var(--radius-xl) - 10px);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.photo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 0.9fr;
}

.photo-grid .stack {
  display: grid;
  gap: 16px;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.93rem;
}

.timeline {
  display: grid;
  gap: 16px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(47, 130, 255, 0.85), rgba(89, 171, 255, 0.1));
}

.timeline-card {
  position: relative;
  padding-left: 58px;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 26px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 0 8px rgba(47, 130, 255, 0.12);
}

.timeline-card .year {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 700;
}

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

.info-card {
  text-align: center;
}

.info-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.info-card span {
  color: var(--muted);
}

.quality-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg, rgba(47, 130, 255, 0.14), rgba(89, 171, 255, 0.08));
  border: 1px solid rgba(89, 171, 255, 0.22);
}

.quality-band h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.75vw, 1.6rem);
}

.quality-band p {
  margin: 0;
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: inherit;
}

.checklist li::before {
  content: "\2713";
  color: var(--blue-2);
  font-weight: 800;
  margin-top: 2px;
}

.banner {
  padding: 24px 24px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(120, 187, 255, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(14, 40, 84, 0.98), rgba(32, 86, 173, 0.98));
  border: 1px solid rgba(47, 125, 255, 0.18);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 187, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.banner h2,
.banner h3 {
  margin: 6px 0 8px;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.08;
  max-width: 100%;
}

.banner p {
  margin: 0;
  color: rgba(236, 245, 255, 0.82);
  max-width: 100%;
  font-size: 0.95rem;
  line-height: 1.6;
}

.banner .actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.banner .actions .btn {
  min-width: 160px;
  min-height: 42px;
  padding: 0 18px;
}

.form-card {
  padding: 28px;
  background: #ffffff;
  color: var(--text-strong);
  border-color: rgba(7, 17, 31, 0.08);
}

.contact-grid--compact {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 16px;
}

.contact-form-card {
  padding: 22px;
}

.contact-form-card .card-heading {
  font-size: clamp(1.3rem, 1.9vw, 1.75rem);
}

.form-grid--single {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-form-card .field label {
  font-size: 0.86rem;
}

.contact-form-card .field input,
.contact-form-card .field textarea,
.contact-form-card .field select {
  padding: 11px 12px;
  border-radius: 14px;
  font-size: 0.94rem;
}

.contact-form-card .field textarea {
  min-height: 100px;
}

.form-card .tiny-label {
  color: var(--blue-3);
}

.form-card .muted-note,
.form-card [data-contact-status] {
  color: var(--muted-dark);
}

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

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

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

.field label {
  font-weight: 700;
  color: #10213d;
  font-size: 0.94rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  background: #f8fbff;
  color: #07111f;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(47, 130, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(47, 130, 255, 0.12);
}

.contact-card {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(47, 130, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--text-strong);
  border: 1px solid rgba(7, 17, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-card--compact {
  padding: 20px;
}

.contact-card .tiny-label,
.contact-card h2,
.contact-card .muted-note,
.contact-card strong,
.contact-card span {
  color: var(--text-strong);
}

.contact-card .muted-note {
  color: var(--muted-dark) !important;
}

.contact-card .contact-list strong {
  color: var(--text-strong);
}

.contact-card .contact-list span {
  color: var(--muted-dark);
}

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

.contact-list--compact {
  gap: 8px;
}

.contact-list li {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
}

.contact-list--compact li {
  padding: 8px 0;
}

.contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-list strong {
  font-size: 0.95rem;
}

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

.map-preview {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(7, 17, 31, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: var(--shadow-soft);
  color: var(--text-strong);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.map-preview:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 130, 255, 0.18);
  box-shadow: 0 18px 40px rgba(7, 17, 31, 0.12);
}

.map-preview__canvas {
  position: relative;
  min-height: 164px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 22%, rgba(47, 130, 255, 0.2), transparent 0 18%),
    linear-gradient(135deg, rgba(47, 130, 255, 0.12), rgba(255, 255, 255, 0.6)),
    linear-gradient(180deg, #e9f2ff 0%, #d9e8ff 100%);
}

.map-preview__canvas::before,
.map-preview__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)) 0 0 / 100% 1px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)) 0 0 / 1px 100%;
  opacity: 0.45;
  pointer-events: none;
}

.map-preview__road {
  position: absolute;
  border-radius: 999px;
  background: rgba(72, 95, 129, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.map-preview__road--one {
  left: 10%;
  right: 8%;
  top: 28%;
  height: 10px;
}

.map-preview__road--two {
  top: 12%;
  bottom: 12%;
  left: 57%;
  width: 10px;
}

.map-preview__road--three {
  left: 18%;
  right: 20%;
  top: 66%;
  height: 8px;
  transform: rotate(-8deg);
}

.map-preview__pin {
  position: absolute;
  left: 55%;
  top: 38%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #2f82ff, #5cb0ff);
  box-shadow: 0 10px 20px rgba(47, 130, 255, 0.28);
}

.map-preview__pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #ffffff;
}

.map-preview__badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 17, 32, 0.84);
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-preview__copy {
  display: grid;
  gap: 6px;
}

.map-preview__copy h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.map-preview__copy p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.55;
  font-size: 0.93rem;
}

.footer {
  margin-top: 26px;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

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

.footer h3,
.footer h4 {
  color: var(--text);
  margin: 0 0 14px;
}

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

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

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

.footer-bottom {
  margin-top: 18px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(5, 4, 45, 0.92);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  white-space: nowrap;
}

.footer-bottom span {
  display: block;
  color: rgba(241, 247, 255, 0.9);
  font-style: italic;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--blue-2);
}

.subpage-hero h1 {
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
  line-height: 1.04;
  max-width: 100%;
  margin-top: 0;
}

.subpage-grid {
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
}

.quote-card {
  padding: 26px;
  background: linear-gradient(135deg, rgba(47, 130, 255, 0.14), rgba(89, 171, 255, 0.06));
  border-color: rgba(89, 171, 255, 0.18);
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.4rem);
  line-height: 1.35;
}

.quote-card cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
}

.faq-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}

.faq-item h3 span {
  color: var(--blue-2);
  font-size: 1.4rem;
  line-height: 1;
}

.process-card ol {
  margin: 14px 0 0;
  padding-left: 18px;
}

.process-card li + li {
  margin-top: 10px;
}

.muted-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.tiny-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 700;
  margin-bottom: 12px;
}

.stacked-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.stacked-list .row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stacked-list .row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stacked-list .row strong {
  color: var(--text);
}

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

.hero-side-card {
  padding: 22px;
}

.hero-side-card .topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.hero-side-card .topline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.hero-side-card .topline span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-side-card .cover {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}

.hero-side-card .cover img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero-side-card .cover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-side-card .cover-grid img {
  border-radius: 18px;
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.small-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 1080px) {
  .hero-grid,
  .hero-compact,
  .subpage-grid,
  .split-grid,
  .story-card,
  .company-values,
  .contact-grid--compact,
  .csr-grid,
  .quality-band,
  .banner,
  .footer-grid,
  .contact-grid,
  .story-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .metrics-strip,
  .cards-grid,
  .feature-grid,
  .values-grid,
  .story-card,
  .company-values,
  .contact-grid--compact,
  .csr-grid,
  .product-grid,
  .support-grid,
  .faq-grid,
  .info-strip,
  .footer-grid,
  .panel-stats,
  .quote-notes,
  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .subpage-hero h1 {
    max-width: 100%;
  }

  .hero-collage {
    min-height: 500px;
  }

  .story-card__points {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    position: absolute;
    right: 20px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(92vw, 360px);
    padding: 16px;
    margin-top: 10px;
    border-radius: 24px;
    background: rgba(6, 12, 23, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    white-space: normal;
  }

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

  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
  }

  .hero-collage {
    min-height: 420px;
  }

  .hero-collage .overlay-card {
    max-width: 210px;
  }

  .hero-main-image {
    height: 240px;
  }

  .metrics-strip,
  .cards-grid,
  .feature-grid,
  .values-grid,
  .company-values,
  .csr-grid,
  .product-grid,
  .support-grid,
  .faq-grid,
  .info-strip,
  .form-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer {
    padding: 28px 0 20px;
  }

  .banner {
    padding: 18px;
  }
}

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

  .nav-row {
    gap: 14px;
  }

  .brand-copy strong {
    font-size: inherit;
  }

  .brand-copy {
    flex-wrap: wrap;
    white-space: normal;
    gap: 2px 6px;
  }

  .page,
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero,
  .subpage-hero {
    padding-top: 10px;
  }

  .hero-compact {
    grid-template-columns: 1fr;
  }

  .contact-grid--compact {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 16px;
  }

  .form-card {
    padding: 20px;
  }

  .contact-card {
    padding: 20px;
  }

  .form-card .tiny-label,
  .contact-card .tiny-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

  .card-heading {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    margin-bottom: 8px;
  }

  .section-title {
    padding: 16px 16px 14px;
    margin-bottom: 22px;
    gap: 8px;
    border-radius: 20px;
  }

  .section-title .eyebrow {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    letter-spacing: -0.04em;
  }

  .section-title h2 {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section-title p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .form-card .muted-note {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .form-grid {
    gap: 12px;
  }

  .contact-form-card .field input,
  .contact-form-card .field textarea,
  .contact-form-card .field select {
    padding: 10px 11px;
    border-radius: 13px;
    font-size: 0.92rem;
  }

  .contact-form-card .field textarea {
    min-height: 88px;
  }

  .contact-sidebar {
    gap: 10px;
  }

  .map-preview {
    padding: 14px;
  }

  .map-preview__canvas {
    min-height: 150px;
  }

  .field {
    gap: 6px;
  }

  .field label {
    font-size: 0.85rem;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 0.94rem;
  }

  .field textarea {
    min-height: 120px;
  }

  .submit-button {
    min-height: 44px;
  }

  .story-card,
  .company-values,
  .csr-grid,
  .verticals-band {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer {
    padding: 24px 0 18px;
  }

  .footer-grid > div {
    min-width: 0;
  }

  .footer h3,
  .footer h4 {
    margin-bottom: 10px;
  }

  .footer ul {
    gap: 8px;
  }

  .footer p,
  .footer li {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .company-values__list ul {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .quote-panel {
    padding: 22px;
  }

  .story-card__visual {
    min-height: 300px;
  }

  .hero-actions,
  .subpage-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero-actions .btn,
  .subpage-actions .btn {
    width: auto;
    font-size: 0.95rem;
    min-height: 42px;
    padding: 0 16px;
  }

  .btn {
    width: auto;
  }

  .hero-collage {
    min-height: 0;
    padding: 12px;
  }

  .hero-collage .main-photo {
    height: 280px;
    border-radius: calc(var(--radius-xl) - 12px);
  }

  .hero-main-image {
    height: 210px;
    border-radius: 22px;
  }

  .hero-collage .overlay-card {
    display: none;
  }

  .quality-band,
  .banner,
  .card,
  .sector-card,
  .solution-card,
  .process-card,
  .faq-item,
  .support-card,
  .info-card,
  .timeline-card,
  .form-card,
  .quote-card {
    padding: 18px;
  }

  .story-card__points div {
    padding: 12px;
  }

  .story-card__visual {
    min-height: 260px;
  }

  .story-card__points {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    padding-left: 52px;
  }
}

/* Light-blue theme refresh */
:root {
  --bg: #eef6ff;
  --bg-deeper: #dfeeff;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5faff;
  --surface-tint: #e8f2ff;
  --text: #0b1730;
  --text-strong: #081120;
  --muted: #4d6484;
  --muted-dark: #5a6d8b;
  --line: rgba(30, 72, 138, 0.12);
  --line-dark: rgba(7, 17, 31, 0.08);
  --blue: #2f7dff;
  --blue-2: #78bbff;
  --blue-3: #1e57d3;
  --shadow: 0 24px 60px rgba(33, 84, 150, 0.14);
  --shadow-soft: 0 16px 38px rgba(33, 84, 150, 0.08);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 125, 255, 0.14), transparent 30%),
    radial-gradient(circle at right 20%, rgba(120, 187, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #f4f9ff 0%, #ecf5ff 46%, #f8fbff 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(47, 125, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 255, 0.05) 1px, transparent 1px);
  opacity: 0.45;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 90%);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(47, 125, 255, 0.12);
}

.topbar {
  color: var(--muted-dark);
  font-size: 0.74rem;
  border-bottom: 1px solid rgba(47, 125, 255, 0.08);
}

.topbar-inner {
  padding: 5px 0;
  justify-content: flex-start;
  line-height: 1.2;
}

.nav-row {
  padding: 12px 0;
}



.nav-toggle {
  border-color: rgba(47, 125, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
}

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

.nav a:hover,
.nav a.active {
  color: var(--blue-3);
  background: rgba(47, 125, 255, 0.1);
}

.nav-cta {
  color: #ffffff;
}

.eyebrow {
  border-color: rgba(47, 125, 255, 0.12);
  background: rgba(47, 125, 255, 0.07);
  color: var(--blue-3);
}

.eyebrow.light {
  border-color: rgba(47, 125, 255, 0.1);
  background: rgba(47, 125, 255, 0.06);
  color: var(--blue-3);
}

.section-title {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: none;
  margin-bottom: 28px;
  padding: 18px 20px 16px;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(47, 125, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(120, 187, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.section-title::before {
  content: none;
}

.section-title::after {
  content: none;
}

.section-title .eyebrow {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-3);
  font-family: "Aptos Display", var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
}

.section-title .eyebrow::before {
  content: none;
}

.hero p,
.subpage-hero p,
.section-title p,
.metric span,
.overlay-card p,
.hero-logo-badge span,
.quote-card cite,
.muted-note,
.contact-list span,
.footer {
  color: var(--muted-dark);
}

.hero h1,
.subpage-hero h1,
.section-title h2,
.footer h3,
.footer h4 {
  color: var(--text-strong);
}

.section-title h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.45;
  max-width: 78ch;
  color: #081120;
}

.section-title p {
  font-size: 0.94rem;
  line-height: 1.58;
  max-width: 100%;
  color: var(--muted-dark);
}

.hero-actions .btn-secondary,
.subpage-actions .btn-secondary {
  border-color: rgba(47, 125, 255, 0.16);
  background: rgba(47, 125, 255, 0.06);
  color: var(--blue-3);
}

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

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 243, 255, 0.9));
  border-color: rgba(47, 125, 255, 0.12);
}

.hero-collage .overlay-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(47, 125, 255, 0.12);
  color: var(--text-strong);
}

.hero-logo-badge {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(47, 125, 255, 0.12);
}

.hero-logo-badge strong {
  color: var(--text-strong);
}

.metrics-strip .metric,
.badge {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(47, 125, 255, 0.12);
}

.metric strong {
  color: var(--text-strong);
}

.section {
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.72), rgba(233, 244, 255, 0.68));
}

.section.light {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.section + .section {
  border-top: 1px solid rgba(47, 125, 255, 0.08);
}

.card,
.sector-card,
.solution-card,
.process-card,
.faq-item,
.support-card,
.info-card,
.timeline-card,
.form-card,
.quote-card {
  background: #ffffff;
  border-color: rgba(47, 125, 255, 0.12);
}

.card .icon,
.sector-card .icon,
.solution-card .icon,
.process-card .icon,
.support-card .icon,
.info-card .icon {
  background: linear-gradient(135deg, rgba(47, 125, 255, 0.14), rgba(120, 187, 255, 0.12));
  border-color: rgba(47, 125, 255, 0.14);
  color: var(--blue-3);
}

.field label {
  color: var(--text-strong);
}

.field input,
.field textarea,
.field select {
  border-color: rgba(47, 125, 255, 0.14);
  background: #f9fcff;
  color: var(--text-strong);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(47, 125, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 125, 255, 0.12);
}

.form-card .tiny-label,
.tiny-label,
.faq-item h3 span {
  color: var(--blue-3);
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(47, 125, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-list li,
.stacked-list .row {
  border-bottom-color: rgba(7, 17, 31, 0.08);
}

.banner {
  background:
    radial-gradient(circle at top right, rgba(120, 187, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(20, 51, 95, 0.98), rgba(36, 91, 180, 0.98));
  border-color: rgba(47, 125, 255, 0.18);
}

.footer {
  background: linear-gradient(180deg, #0d1d37 0%, #081120 100%);
  color: rgba(255, 255, 255, 0.74);
  border-top-color: rgba(120, 187, 255, 0.16);
}

.footer h3,
.footer h4 {
  color: #ffffff;
}

.footer a {
  color: rgba(224, 236, 255, 0.86);
}

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

.footer p,
.footer li {
  color: rgba(248, 248, 248, 0.74);

}

.footer-bottom {
  border-top-color: rgba(120, 187, 255, 0.12);
  background-color: rgba(5, 4, 45, 0.98);
}

.footer-bottom span {
  color: rgba(241, 247, 255, 0.92);
  font-style: italic;
}

@media (max-width: 820px) {
  .nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(47, 125, 255, 0.14);
  }
}

/* Global page-loading spinner (logo with spinning ring) */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(47, 125, 255, 0.14), transparent 30%),
    radial-gradient(circle at right 20%, rgba(120, 187, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #f4f9ff 0%, #ecf5ff 46%, #f8fbff 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
  opacity: 1;
  visibility: visible;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader .loader-logo {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader .loader-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(33, 84, 150, 0.18);
}

/* Spinning ring immediately around the round logo border */
.page-loader .loader-logo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--blue);
  border-right-color: var(--blue-2);
  animation: loader-spin 0.9s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}



