/* ═══════════════════════════════════════════════════════════════
   ServerConfigs.com — Design System v2
   HP Blue (#0096D6) · Navy · White · Corporate
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Blue — HP brand */
  --blue:        #0096D6;
  --blue-hover:  #007FB8;
  --blue-dark:   #005F8A;
  --blue-light:  #EBF7FD;
  --blue-border: #B8E4F5;

  /* Navy — dark sections, hero, footer */
  --navy:        #002D4A;
  --navy-mid:    #003A5C;
  --navy-lit:    #04506B;

  /* Neutrals */
  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Text */
  --text:       #1E293B;
  --text-body:  #334155;
  --text-muted: #64748B;

  /* Borders */
  --border:        #E2E8F0;
  --border-strong: #CBD5E1;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:  0 4px 16px rgba(0,0,0,0.08);
  --sh-lg:  0 12px 40px rgba(0,0,0,0.12);
  --sh-blue: 0 4px 16px rgba(0,150,214,0.28);

  /* Transitions */
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 240ms var(--ease);

  /* Typography scale */
  --fs-hero:  clamp(2.4rem, 5vw, 3.8rem);
  --fs-h2:    clamp(1.6rem, 3vw, 2.25rem);
  --fs-h3:    clamp(1.05rem, 1.8vw, 1.25rem);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: var(--blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--blue-hover); }
button { font-family: inherit; }

/* ─── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-lg  { padding: 14px 28px; font-size: 0.95rem; }
.btn-sm  { padding: 8px 16px;  font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
  box-shadow: var(--sh-blue);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-100);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-1px);
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--text); }

.nav-logo svg { flex-shrink: 0; }
.nav-logo-accent { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  padding: 7px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover { color: var(--blue); background: var(--blue-light); }
.nav-link.nav-active { color: var(--blue); font-weight: 600; }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  margin-left: 8px;
  border-radius: var(--r-sm) !important;
}
.nav-cta:hover {
  background: var(--blue-hover) !important;
  color: var(--white) !important;
  box-shadow: var(--sh-blue);
}

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-wrap:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-btn svg { transition: transform var(--t-fast); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  color: var(--text);
  text-decoration: none;
  transition: background var(--t-fast);
}
.nav-dropdown-item:hover { background: var(--gray-50); color: var(--text); }

.nav-dropdown-icon {
  width: 34px; height: 34px;
  background: var(--blue-light);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.nav-dropdown-icon svg { width: 16px; height: 16px; }

.nav-dropdown-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-dropdown-text span { font-size: 0.72rem; color: var(--text-muted); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 66px;
  background: var(--white);
  z-index: 999;
  padding: 20px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }

.nav-mobile-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.nav-mobile-services-label {
  padding: 16px 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-mobile-service {
  display: block;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile-cta {
  display: block;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: var(--r-sm);
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
}

/* ─── Hero (home) ────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 130px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,150,214,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hero-trust-label { font-size: 0.76rem; color: rgba(255,255,255,0.35); }
.hero-trust-pill {
  padding: 3px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hero-illustration { display: flex; align-items: center; justify-content: center; }
.hero-illustration svg { width: 100%; max-width: 460px; height: auto; }

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 104px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,150,214,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.2); }
.page-hero-breadcrumb .current { color: rgba(255,255,255,0.6); }

.page-hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}
.page-hero-illustration { display: flex; align-items: center; justify-content: flex-end; }
.page-hero-illustration svg { width: 100%; max-width: 320px; height: auto; }

/* ─── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.stats-bar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Section spacing ────────────────────────────────────────── */
.section-pad    { padding: 88px 0; }
.section-pad-sm { padding: 48px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.bg-subtle { background: var(--gray-50); }
.bg-navy   { background: var(--navy); }

/* ─── Service cards grid ─────────────────────────────────────── */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Center the orphaned last card when alone in its row — same width as siblings */
.grid-services > .card:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 40px) / 3);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: block;
  text-decoration: none;
  color: var(--text-body);
  position: relative;
  transition: all var(--t-base);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: transparent;
  transition: background var(--t-base);
}
.card:hover { background: var(--blue-light); border-color: var(--blue-border); color: var(--text-body); box-shadow: var(--sh-md); }
.card:hover::before { background: var(--blue); }
.card:hover .card-link { color: var(--blue); }

.card-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }

.card-service-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-400);
  transition: all var(--t-base);
}

/* ─── Industry cards ─────────────────────────────────────────── */
.grid-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-industry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: block;
  text-decoration: none;
  color: var(--text-body);
  transition: all var(--t-base);
}
.card-industry:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  color: var(--text-body);
}
.card-industry-icon { font-size: 1.8rem; display: block; margin-bottom: 16px; }
.card-industry h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-industry p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.card-industry-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 3px 9px;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* ─── Feature cards ──────────────────────────────────────────── */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(276px, 1fr));
  gap: 20px;
}
.card-feature {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t-base);
}
.card-feature:hover { border-color: var(--blue-border); box-shadow: var(--sh-md); }
.card-feature-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
}
.card-feature h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-feature p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Feature cards on dark */
.card-feature-dark {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: all var(--t-base);
}
.card-feature-dark:hover { border-color: rgba(0,150,214,0.3); background: rgba(0,150,214,0.05); }
.card-feature-dark .feat-icon {
  width: 44px; height: 44px;
  background: rgba(0,150,214,0.12);
  border: 1px solid rgba(0,150,214,0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #7FD3F5;
  margin-bottom: 18px;
}
.card-feature-dark h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card-feature-dark p { font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.65; margin: 0; }

/* ─── Step cards ─────────────────────────────────────────────── */
.step-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}
.step-card:hover { border-color: var(--blue-border); box-shadow: var(--sh-md); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ─── Services index — alternating rows ──────────────────────── */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all var(--t-base);
}
.svc-row:hover { border-color: var(--blue-border); box-shadow: var(--sh-md); }

.svc-row-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.svc-row-icon {
  width: 50px; height: 50px;
  background: var(--blue-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.svc-row-icon svg { width: 24px; height: 24px; }
.svc-row-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
.svc-row-title { font-size: 1.25rem; font-weight: 800; color: var(--text); margin: 0; letter-spacing: -0.02em; }
.svc-row-desc { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-size: 0.93rem; }

.svc-feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.svc-feature-tag {
  padding: 4px 11px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  color: var(--blue-dark);
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 600;
}
.svc-row-illu { display: flex; align-items: center; justify-content: center; }
.svc-row-illu svg { width: 100%; max-width: 300px; height: auto; }

/* ─── Service detail ─────────────────────────────────────────── */
.service-detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-feature-card {
  padding: 24px 24px 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  position: relative;
}
.service-feature-card:hover { border-color: var(--blue-border); box-shadow: var(--sh-sm); }
.service-feature-dot {
  position: absolute;
  top: 28px; left: 16px;
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
}
.service-feature-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.service-feature-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── Who-for grid ───────────────────────────────────────────── */
.who-for-grid { display: flex; flex-direction: column; gap: 10px; }
.who-for-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--text-body);
}
.who-for-check {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-top: 1px;
}

/* ─── Related services ───────────────────────────────────────── */
.related-services { display: flex; flex-wrap: wrap; gap: 10px; }
.related-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all var(--t-fast);
}
.related-service-link:hover { background: var(--blue); border-color: var(--blue); color: white; }
.related-service-link svg { width: 16px; height: 16px; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
.contact-detail-value a { color: var(--blue); }

/* ─── Form ───────────────────────────────────────────────────── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,150,214,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-note { text-align: center; font-size: 0.76rem; color: var(--text-muted); margin-top: 12px; }

.form-errors {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--r-sm);
  padding: 16px 20px 16px 36px;
  margin-bottom: 20px;
  list-style: disc;
}
.form-errors li { font-size: 0.87rem; color: #991B1B; margin-bottom: 4px; }

.form-success-banner {
  text-align: center;
  padding: 64px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.form-success-icon {
  width: 56px; height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin: 0 auto 20px;
  font-weight: 700;
}
.form-success-banner h3 { font-size: 1.3rem; margin-bottom: 12px; }
.form-success-banner p { color: var(--text-muted); max-width: 360px; margin: 0 auto 24px; }

/* ─── About entity card ──────────────────────────────────────── */
.about-entity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: 36px;
}
.about-entity-logo {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.about-entity-row {
  display: flex; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-entity-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  min-width: 120px; padding-top: 2px;
}
.about-entity-value { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.about-entity-value a { color: var(--blue); }

.about-badge {
  padding: 4px 12px;
  background: rgba(0,150,214,0.1);
  border: 1px solid rgba(0,150,214,0.2);
  color: #7FD3F5;
  border-radius: 4px;
  font-size: 0.72rem; font-weight: 600;
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; position: relative; }
.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 270px;
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); text-decoration: none;
}
.footer-logo:hover { color: var(--white); }
.footer-logo svg { flex-shrink: 0; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.8rem; color: rgba(255,255,255,0.28); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

/* ─── Reveal animation ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.30s; }
.reveal-delay-6 { transition-delay: 0.36s; }

/* ─── 404 ────────────────────────────────────────────────────── */
.not-found {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px;
  color: white;
}
.not-found h1 { color: white; margin-bottom: 12px; }
.not-found p { color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.not-found-num {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.55;
}

/* ─── Utilities ──────────────────────────────────────────────── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text-body);
}
.check-dot {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  color: var(--blue);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-illustration { display: none; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-illustration { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-row { grid-template-columns: 1fr; gap: 28px; }
  .svc-row-illu { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 32px 0; }
  .hero { padding: 100px 0 56px; }
  .page-hero { padding: 88px 0 48px; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-item:nth-child(2) { border-right: none; }
  .stats-bar-item { border-bottom: 1px solid var(--border); }
  .stats-bar-item:nth-last-child(-n+2) { border-bottom: none; }
  .grid-features { grid-template-columns: 1fr; }
  .grid-industries { grid-template-columns: 1fr 1fr; }
  .service-detail-features { grid-template-columns: repeat(2, 1fr); }
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .grid-services > .card:last-child:nth-child(3n + 1) { grid-column: 1; width: auto; justify-self: auto; }
  .grid-services > .card:last-child:nth-child(2n + 1) { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-wrap { padding: 28px 20px; }
  .about-entity-row { flex-direction: column; gap: 4px; }
  .about-entity-label { min-width: auto; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grid-industries { grid-template-columns: 1fr; }
  .service-detail-features { grid-template-columns: 1fr; }
  .grid-services { grid-template-columns: 1fr; }
  .grid-services > .card:last-child:nth-child(3n + 1) { grid-column: 1; width: auto; justify-self: auto; }
}
