:root {
  --bg: #171b1f;
  --surface: #20262c;
  --surface-2: #262d34;
  --text: #f6f1e8;
  --muted: #c8bda9;
  --line: #3a434d;
  --accent: #22a076;
  --accent-2: #45c79b;
  --gold: #b18a4a;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1240px, 92vw); margin: 0 auto; }

.header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(8px);
  background: rgba(23, 27, 31, .86);
  border-bottom: 1px solid var(--line);
}
.topbar {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.topbar .container {
  min-height: 34px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.header-main .container {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px 12px;
}
.nav-left {
  display: flex;
  gap: 10px 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.nav-right {
  justify-self: end;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 14px;
  min-width: 0;
}
.nav-link {
  font-size: 12px; font-weight: 600; color: #ddd4c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 4px;
  border-bottom: 2px solid transparent;
  transition: .2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}
.nav-link:hover { color: #fff; border-color: #6f7a86; }
.nav-link[aria-current="page"] { color: var(--accent-2); border-color: var(--accent-2); }
.brand { justify-self: center; display: inline-flex; align-items: center; gap: 10px; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand strong { font-size: 20px; letter-spacing: -0.01em; }
.brand small { display: block; font-size: 10px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
  background: transparent;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  line-height: 1.2;
  transition: .2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}
.cta:hover {
  background: rgba(69, 199, 155, .14);
  color: #e8fff6;
  border-color: var(--accent-2);
}
.menu-btn {
  display: none; width: 40px; height: 40px; border: 1px solid var(--line);
  border-radius: 10px; background: #2a3036; color: #fff; cursor: pointer;
}
.mobile-panel { display: none; border-top: 1px solid var(--line); background: #20262c; }
.mobile-panel.open { display: block; }
.mobile-panel .container { padding: 10px 0 14px; }
.mobile-panel a { display: block; padding: 10px 0; font-weight: 600; color: #ddd4c8; }

.hero { padding: 44px 0 30px; }
.hero-wrap { display: grid; grid-template-columns: .92fr 1.08fr; gap: 14px; align-items: stretch; }
.hero-copy, .hero-media {
  border: 1px solid var(--line); border-radius: 16px; background: rgba(32, 38, 44, .94);
}
.hero-copy { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
  margin: 0 0 10px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--accent-2);
}
h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -0.02em; }
.lead { margin: 16px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; max-width: 56ch; }
.hero-actions { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; border-radius: 10px; font-size: 13px; font-weight: 700; padding: 11px 16px; }
.btn.primary { background: var(--accent); color: #fff; }
.btn.secondary { border: 1px solid #5a626e; background: transparent; color: #e9ddd0; }

.hero-media {
  overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; min-height: 460px;
}
.hero-main-img {
  position: relative;
  background-image:
    linear-gradient(to top, rgba(8,18,35,.68), rgba(8,18,35,.05)),
    url("../assets/images/hero/corporate-scale-strategy.jpg");
  background-size: cover; background-position: center;
}
.hero-side-stack { display: grid; grid-template-rows: 1fr 1fr; }
.side-img {
  position: relative;
  background-size: cover; background-position: center; border-left: 1px solid rgba(255,255,255,.2);
}
.side-img.one {
  background-image:
    linear-gradient(to top, rgba(8,18,35,.58), rgba(8,18,35,.06)),
    url("../assets/images/hero/cyber-defense-compliance.jpg");
}
.side-img.two {
  border-top: 1px solid rgba(255,255,255,.25);
  background-image:
    linear-gradient(to top, rgba(8,18,35,.58), rgba(8,18,35,.06)),
    url("../assets/images/hero/high-availability-infrastructure.jpg");
}
.hero-caption {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  color: #fff; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}

.section { padding: 20px 0 0; }
.section-card {
  border: 1px solid var(--line); border-radius: 16px; background: rgba(32, 38, 44, .94);
  padding: 30px; margin-bottom: 14px;
}
.section-title { margin: 0; font-size: clamp(29px, 3.7vw, 44px); line-height: 1.12; max-width: 22ch; }
.section-text { margin: 12px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 980px; }
.section-kicker {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.expertise-highlight {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid rgba(69, 199, 155, .45);
  background: linear-gradient(145deg, rgba(34, 160, 118, .14) 0%, rgba(32, 38, 44, .88) 55%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.expertise-highlight h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.expertise-highlight p {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: #e4dcd0;
}
.expertise-highlight p + p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.grid-3 { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-2 { margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tile {
  border: 1px solid var(--line); border-radius: 12px; background: rgba(38, 45, 52, .86); padding: 16px; transition: .2s ease;
}
.tile:hover { transform: translateY(-2px); border-color: #6f7a86; box-shadow: 0 10px 16px rgba(0, 0, 0, .22); }
.icon {
  width: 36px; height: 36px; border-radius: 8px; background: #334e48; color: #b9f0dc;
  display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-bottom: 10px;
}
.tile h3 { margin: 0; font-size: 19px; line-height: 1.33; }
.tile p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.62; }
.badge {
  display: inline-block; border-radius: 999px; padding: 6px 10px;
  background: #334e48; color: #b9f0dc; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}

.page-masthead { padding: 28px 0 0; }
.masthead-card {
  border: 1px solid var(--line); border-radius: 16px; background: rgba(32, 38, 44, .94);
  padding: 26px 28px;
}
.breadcrumbs {
  margin: 0 0 14px; font-size: 13px; color: var(--muted); line-height: 1.5;
}
.breadcrumbs a { color: var(--accent-2); border-bottom: 1px solid transparent; transition: .2s ease; }
.breadcrumbs a:hover { border-color: var(--accent-2); }
.breadcrumbs span.sep { margin: 0 8px; color: #6f7a86; user-select: none; }
.page-title { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing: -0.02em; }
.page-lead { margin: 12px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 62ch; }

.inner-wrap {
  padding: 18px 0 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
}
.main-col { min-width: 0; }
.aside-col { position: sticky; top: 96px; }
.content-card {
  border: 1px solid var(--line); border-radius: 16px; background: rgba(32, 38, 44, .94);
  padding: 28px 30px; margin-bottom: 14px;
}
.prose h2 {
  margin: 28px 0 0; font-size: clamp(22px, 2.5vw, 26px); line-height: 1.25; letter-spacing: -0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 12px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 72ch; }
.prose ul { margin: 12px 0 0; padding: 0 0 0 1.2em; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 72ch; }
.prose li { margin: 6px 0; }
.prose li::marker { color: var(--accent-2); }

.callout {
  margin-top: 20px; padding: 16px 18px; border-radius: 12px;
  border-left: 4px solid var(--accent); background: rgba(38, 45, 52, .75);
  font-size: 15px; line-height: 1.65; color: #ddd4c8;
}
.callout strong { color: var(--text); }

.aside-card {
  border: 1px solid var(--line); border-radius: 16px; background: rgba(32, 38, 44, .94);
  padding: 20px;
}
.aside-card h3 {
  margin: 0; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.aside-nav { margin: 12px 0 0; padding: 0; list-style: none; }
.aside-nav a {
  display: block; padding: 10px 0; font-size: 14px; font-weight: 600; color: #ddd4c8;
  border-bottom: 1px solid var(--line); transition: .2s ease;
}
.aside-nav li:last-child a { border-bottom: 0; }
.aside-nav a:hover { color: #fff; padding-left: 4px; }
.aside-nav a[aria-current="page"] { color: var(--accent-2); }
.aside-cta {
  margin-top: 16px; display: block; text-align: center; border-radius: 10px;
  padding: 11px 14px; font-size: 13px; font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #082119;
}
.aside-cta:hover { filter: brightness(1.06); }

.showcase-intro { margin-bottom: 8px; }
.showcase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px;
}
.showcase-card {
  display: block; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(38, 45, 52, .86); padding: 20px; transition: .2s ease;
}
.showcase-card:hover {
  transform: translateY(-2px); border-color: #6f7a86; box-shadow: 0 10px 16px rgba(0, 0, 0, .22);
}
.showcase-card .tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-2);
}
.showcase-card h3 { margin: 10px 0 0; font-size: 18px; line-height: 1.3; color: var(--text); }
.showcase-card p { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

.meta-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 18px;
}
.meta-item {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  background: rgba(38, 45, 52, .5);
}
.meta-item dt { margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.meta-item dd { margin: 6px 0 0; font-size: 15px; font-weight: 600; color: var(--text); }

.steps { margin-top: 18px; padding: 0; list-style: none; counter-reset: step; }
.prose ol.steps { padding-left: 0; list-style: none; }
.steps li {
  position: relative; padding-left: 44px; margin: 0 0 16px; color: var(--muted); font-size: 15px; line-height: 1.65;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 8px;
  background: #334e48; color: #b9f0dc; font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
}

.home-start { padding: 24px 0 12px; }
.start-strip {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(38, 45, 52, .55) 0%, rgba(32, 38, 44, .92) 100%);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}
.start-strip-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  flex: 0 0 auto;
}
.start-strip-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  flex: 1 1 auto;
  min-width: 0;
}
.start-strip-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(23, 27, 31, .45);
  font-size: 13px;
  font-weight: 600;
  color: #e9ddd0;
  transition: .2s ease;
}
.start-strip-links a:hover {
  border-color: var(--accent-2);
  color: #fff;
  background: rgba(34, 160, 118, .12);
}
.start-strip-links a span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #334e48;
  color: #b9f0dc;
  font-size: 12px;
  font-weight: 700;
}

.quote-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: rgba(38, 45, 52, .6);
  margin-bottom: 12px;
}
.quote-card blockquote { margin: 0; font-size: 15px; line-height: 1.65; color: #ddd4c8; font-style: italic; }
.quote-card cite { display: block; margin-top: 12px; font-size: 13px; font-style: normal; color: var(--muted); }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.doc-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(38, 45, 52, .86);
  padding: 10px;
}
.doc-preview {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}
.doc-card p {
  margin: 10px 2px 2px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.job-row {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.job-row:first-of-type { padding-top: 8px; }
.job-row h3 { margin: 0; font-size: 17px; }
.job-row p { margin: 4px 0 0; font-size: 14px; color: var(--muted); flex: 1 1 100%; }

.contact-block { margin-top: 12px; font-size: 16px; line-height: 1.8; color: var(--muted); }
.contact-block a { color: var(--accent-2); border-bottom: 1px solid transparent; }
.contact-block a:hover { border-color: var(--accent-2); }

.customers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.customer-logo-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(38, 45, 52, .86);
  padding: 14px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.customer-logo-card img {
  width: 100%;
  max-width: 150px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}
.customer-logo-card p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.footer { margin-top: 18px; background: #12100e; color: #d7c7b5; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 14px; padding: 40px 0; }
.footer-grid--compliance { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; }
.footer h4 { margin: 0; color: #fff; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer p, .footer li { margin: 0; font-size: 14px; line-height: 1.7; }
.footer ul { margin: 10px 0 0; padding: 0; list-style: none; }
.copy { border-top: 1px solid rgba(215,199,181,.2); text-align: center; font-size: 12px; padding: 12px 0; }


@media (max-width: 1120px) {
  .topbar, .nav-left, .nav-right { display: none; }
  .header-main .container { display: flex; justify-content: space-between; min-height: 72px; }
  .menu-btn { display: inline-block; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-media { min-height: 380px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-wrap { grid-template-columns: 1fr; }
  .aside-col { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .customers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .hero-media { grid-template-columns: 1fr; }
  .hero-side-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .side-img.two { border-top: 0; border-left: 1px solid rgba(255,255,255,.2); }
}
@media (max-width: 760px) {
  .section-card, .masthead-card, .content-card { padding: 22px; }
  .grid-3, .grid-2, .footer-grid, .showcase-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .start-strip { flex-direction: column; align-items: stretch; }
  .start-strip-links { flex-direction: column; align-items: stretch; }
  .start-strip-links a { justify-content: flex-start; }
}
