:root {
  --bg: #f3f7fd;
  --bg-soft: #edf3fb;
  --surface: #ffffff;
  --surface-alt: #f6f9ff;
  --text: #0f2037;
  --muted: #5f6f86;
  --primary: #0b3b75;
  --primary-strong: #06264a;
  --accent: #0d9aa4;
  --premium: #c9a24c;
  --indigo: #5f67d8;
  --emerald: #1f9f83;
  --sky: #2f8fd6;
  --amber: #c9902d;
  --rose: #cf5e7b;
  --border: #d4e0ef;
  --border-strong: #bfd0e8;
  --ring: rgba(11, 59, 117, 0.16);
  --shadow-soft: 0 18px 40px rgba(11, 44, 85, 0.09);
  --shadow-md: 0 20px 44px rgba(8, 36, 72, 0.15);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      940px 380px at 86% -8%,
      rgba(6, 182, 212, 0.1),
      transparent 58%
    ),
    radial-gradient(
      860px 480px at 0% 8%,
      rgba(37, 99, 235, 0.1),
      transparent 54%
    ),
    linear-gradient(180deg, #f7fbff 0%, #f1f6fd 42%, #eaf1fa 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(48px);
}

body::before {
  width: 280px;
  height: 280px;
  background: rgba(14, 63, 127, 0.16);
  top: 72px;
  left: -120px;
}

body::after {
  width: 240px;
  height: 240px;
  background: rgba(15, 158, 167, 0.16);
  bottom: 100px;
  right: -90px;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -48px;
  z-index: 100;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--primary-strong);
}

.skip-link:focus {
  top: 0.8rem;
}

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

.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(248, 252, 255, 0.94);
  border-bottom: 1px solid rgba(201, 216, 235, 0.9);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.announce-bar {
  border-bottom: 1px solid rgba(201, 215, 234, 0.8);
  background: linear-gradient(
    90deg,
    #082a53,
    #0d4684 42%,
    #156b88 74%,
    #0c3e66
  );
}

.announce-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #e1ecff;
  font-size: 0.78rem;
  font-weight: 700;
}

.announce-inner p {
  color: inherit;
  line-height: 1.2;
}

.announce-inner a {
  color: #bceaf0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0.02em;
}

.announce-inner a:hover {
  color: #ffffff;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(8, 44, 89, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0.02em;
  color: var(--primary-strong);
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: contain;
}

.brand-logo-horizontal {
  width: auto;
  height: 80px;
}

.brand-text {
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 0.38rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0.28rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current="page"] {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.11);
}

.nav-links .btn {
  white-space: nowrap;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.72rem 1.18rem;
  border: 1px solid transparent;
  font-size: 0.89rem;
  font-weight: 800;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(128deg, #0f57a8, #0b3b75 56%, #072a54);
  color: #fff;
  box-shadow: 0 12px 26px rgba(11, 59, 117, 0.28);
}

.nav-links .btn-primary,
.nav-links .btn-primary:hover,
.nav-links .btn-primary:focus {
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(14, 63, 127, 0.3);
}

.btn-secondary {
  border-color: var(--border);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97),
    rgba(240, 247, 255, 0.96)
  );
  color: #104f98;
}

.btn-link {
  color: var(--primary);
  font-weight: 800;
  padding: 0.72rem 0.2rem;
  min-height: 44px;
}

.btn-link:hover {
  color: var(--primary-strong);
}

.hero {
  padding: 6.2rem 0 3.8rem;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(14, 54, 103, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 54, 103, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 70%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.14),
    rgba(37, 99, 235, 0.08)
  );
  background-size: 180% 180%;
  animation: heroGradientShift 14s ease infinite;
  z-index: 0;
}

@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.badge {
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(
    120deg,
    rgba(13, 154, 164, 0.17),
    rgba(95, 103, 216, 0.14)
  );
  color: #0a4a6a;
  border: 1px solid rgba(120, 164, 210, 0.42);
}

h1,
h2,
h3 {
  line-height: 1.16;
  margin: 0;
  color: #0f2037;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin: 0.88rem 0 1rem;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 2.08rem);
  margin-bottom: 0.78rem;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.hero > .container > p,
.hero-grid > div > p {
  max-width: 64ch;
}

.hero-card,
.card,
.form-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 1.3rem;
  display: grid;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}

.hero-card-compact {
  align-content: start;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(15, 158, 167, 0.15),
    transparent 70%
  );
}

.section {
  padding: 1.2rem 0 4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.section-title h2 {
  margin-bottom: 0;
}

.section-image {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
}

.card,
.form-card {
  padding: 1.25rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.inline-link {
  display: inline-flex;
  margin-top: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.88rem;
}

.inline-link:hover {
  color: var(--primary-strong);
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04),
    rgba(37, 99, 235, 0.12)
  );
}

.hero-network {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: min(44%, 240px);
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 14px;
  overflow: hidden;
}

.hero-overlay-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(98, 151, 223, 0.42);
}

.hero-overlay-card p {
  color: #425a7a;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0.82rem;
  object-fit: contain;
  display: block;
}

.service-card {
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(11, 44, 85, 0.12);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 20px 40px rgba(11, 136, 205, 0.18);
}

.domain-card h3 {
  font-size: 1rem;
}

.card-image {
  width: 52px;
  height: 52px;
  margin-bottom: 0.72rem;
  border-radius: 12px;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
}

.grid > .card,
.grid > .form-card,
.grid > .hero-card {
  height: 100%;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.section-tight {
  padding-top: 0.4rem;
  padding-bottom: 1.05rem;
}

.trust-strip {
  padding-top: 0.85rem;
  padding-bottom: 0.9rem;
}

.metric-strip {
  padding-top: 0;
  padding-bottom: 2rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.15rem;
  margin-bottom: 0;
}

.logo-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.58rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2f527d;
}

.logo-chip:nth-child(2) {
  background: linear-gradient(
    130deg,
    rgba(95, 103, 216, 0.14),
    rgba(255, 255, 255, 0.9)
  );
  border-color: rgba(95, 103, 216, 0.3);
  color: #4146a5;
}

.logo-chip:nth-child(3) {
  background: linear-gradient(
    130deg,
    rgba(201, 144, 45, 0.15),
    rgba(255, 255, 255, 0.92)
  );
  border-color: rgba(201, 144, 45, 0.32);
  color: #7a5b1f;
}

.logo-chip:nth-child(4) {
  background: linear-gradient(
    130deg,
    rgba(31, 159, 131, 0.14),
    rgba(255, 255, 255, 0.92)
  );
  border-color: rgba(31, 159, 131, 0.3);
  color: #1c7160;
}

.logo-chip:nth-child(5) {
  background: linear-gradient(
    130deg,
    rgba(207, 94, 123, 0.12),
    rgba(255, 255, 255, 0.92)
  );
  border-color: rgba(207, 94, 123, 0.27);
  color: #8f3e54;
}

.metric-band {
  border: 1px solid #c7d7ea;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(140deg, #ffffff, #f2f7fe 70%);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.metric {
  border-radius: 14px;
  padding: 0.9rem 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d4e0ef;
}

.metric:nth-child(2) {
  border-color: rgba(95, 103, 216, 0.32);
  background: linear-gradient(
    140deg,
    rgba(95, 103, 216, 0.09),
    rgba(255, 255, 255, 0.9)
  );
}

.metric:nth-child(3) {
  border-color: rgba(31, 159, 131, 0.34);
  background: linear-gradient(
    140deg,
    rgba(31, 159, 131, 0.1),
    rgba(255, 255, 255, 0.92)
  );
}

.metric:nth-child(4) {
  border-color: rgba(201, 144, 45, 0.35);
  background: linear-gradient(
    140deg,
    rgba(201, 144, 45, 0.12),
    rgba(255, 255, 255, 0.92)
  );
}

.metric-value {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #08366a;
}

.metric-label {
  margin-top: 0.12rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-gradient {
  background: linear-gradient(
    120deg,
    #0a4a8e 0%,
    #1367b6 42%,
    #0d8f97 82%,
    #b99341 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.42rem;
}

.form-stack {
  display: grid;
  gap: 0.7rem;
}

.mt-sm {
  margin-top: 0.7rem;
}

.mt-md {
  margin-top: 0.9rem;
}

.mt-lg {
  margin-top: 1rem;
}

.card:hover,
.form-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #0b8690;
  background: linear-gradient(120deg, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-card p:first-child {
  font-size: 1.02rem;
  color: #132640;
  line-height: 1.72;
}

.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.72rem;
  background: linear-gradient(145deg, #eef7ff, #e8f2fd);
  border: 1px solid #d3e3f7;
  color: #124f97;
  font-weight: 800;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.list {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.list li {
  margin: 0.34rem 0;
}

.grid .card:nth-child(3n + 1) .icon-pill {
  border-color: rgba(47, 143, 214, 0.35);
  color: #2f6fab;
}

.grid .card:nth-child(3n + 2) .icon-pill {
  border-color: rgba(95, 103, 216, 0.35);
  color: #4c52b5;
}

.grid .card:nth-child(3n) .icon-pill {
  border-color: rgba(31, 159, 131, 0.35);
  color: #227866;
}

.cta-strip {
  margin: 1.6rem 0 0;
  padding: 1.45rem;
  border-radius: var(--radius);
  border: 1px solid #b7cdea;
  background:
    radial-gradient(
      180px 130px at 16% 0%,
      rgba(13, 154, 164, 0.15),
      transparent 68%
    ),
    radial-gradient(
      320px 170px at 100% 100%,
      rgba(11, 59, 117, 0.11),
      transparent 62%
    ),
    radial-gradient(
      220px 120px at 28% 100%,
      rgba(95, 103, 216, 0.12),
      transparent 70%
    ),
    radial-gradient(
      160px 100px at 78% 12%,
      rgba(201, 162, 76, 0.14),
      transparent 70%
    ),
    linear-gradient(130deg, #f9fcff, #eef5fd 65%, #edf4fd);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 16px 34px rgba(16, 67, 121, 0.12);
}

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

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #12253f;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.72rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body[data-page="careers"] input[type="file"] {
  padding: 0.58rem 0.62rem;
  background: #f9fbff;
  border: 1px solid #b9cdea;
}

body[data-page="careers"] input[type="file"]::file-selector-button {
  border: 1px solid #97b3da;
  border-radius: 10px;
  padding: 0.52rem 0.86rem;
  margin-right: 0.72rem;
  background: linear-gradient(135deg, #ffffff, #ecf4ff);
  color: #15365f;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

body[data-page="careers"] input[type="file"]::file-selector-button:hover {
  background: linear-gradient(135deg, #f5f9ff, #e1edff);
  border-color: #79a0d6;
  color: #0f2b4d;
}

input::placeholder,
textarea::placeholder {
  color: #8ca1be;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #8daed7;
  box-shadow: 0 0 0 3px var(--ring);
}

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

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(36, 78, 128, 0.85);
  background:
    radial-gradient(
      240px 160px at 5% 0%,
      rgba(15, 158, 167, 0.2),
      transparent 70%
    ),
    linear-gradient(180deg, #0d2039, #0a172c 72%);
  color: #d8e4f6;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 1.15rem;
  padding: 2.2rem 0 2rem;
  border-top: 1px solid rgba(48, 82, 126, 0.5);
}

.footer-title {
  font-weight: 800;
  margin-bottom: 0.52rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #ffffff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.52rem;
}

.footer-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  gap: 0.42rem;
}

.footer-links a {
  color: #cddbf0;
  font-size: 0.91rem;
  transition: color 0.2s ease;
}

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

.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #d8e5f8;
  border: 1px solid rgba(72, 107, 152, 0.7);
  background: rgba(10, 29, 54, 0.75);
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon:hover {
  color: #ffffff;
  border-color: rgba(34, 211, 238, 0.5);
}

.newsletter {
  display: grid;
  gap: 0.48rem;
}

.newsletter label {
  color: #dbe8fb;
}

.newsletter input {
  background: rgba(5, 17, 35, 0.54);
  color: #eaf0fb;
  border-color: #2b4265;
}

.footer-bottom {
  border-top: 1px solid #213656;
  padding: 0.84rem 0;
  color: #aebcd3;
  font-size: 0.88rem;
}

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 158, 167, 0.42);
  outline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-hero {
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/visuals/world-network.svg") center / cover no-repeat;
  opacity: 0.16;
}

.about-visual-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-office-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.about-visual-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

@media (max-width: 1060px) {
  .hero-grid,
  .grid-3,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .grid-2,
  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    border-radius: 16px;
  }

  .logo-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .metric-band {
    grid-template-columns: 1fr 1fr;
  }
}

body[data-page="services"] .hero-grid {
  align-items: start;
}

@media (max-width: 760px) {
  .announce-inner {
    justify-content: center;
    text-align: center;
  }

  .announce-inner a {
    display: none;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem;
  }

  .nav-links a:not(.btn) {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-network {
    display: none;
  }

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

  .section-title {
    align-items: flex-start;
  }

  h1 {
    max-width: 100%;
  }

  .cta-strip {
    padding: 1.2rem;
  }

  .logo-row,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding-top: 0.55rem;
    padding-bottom: 0.65rem;
  }

  .metric-strip {
    padding-bottom: 1.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
