/* ===========================================================
   Kloud MSP — pixel-perfect HTML rebuild of Figma design
   Tokens distilled from /Page-3/Kloud-MSP/index.jsx
   =========================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1E6BFF;
  --blue-deep: #196EE0;
  --blue-dark: #0F1C44;
  --blue-darker: #0D1B4B;
  --blue-soft: #152558;
  --lime: #A3EF11;
  --lime-soft: #B2D690;
  --green: #57822F;
  --green-2: #83B356;
  --gold: #F5C518;
  --gold-warm: #F4B400;
  --ink: #0F1724;
  --ink-2: #1F2937;
  --gray-700: #374151;
  --gray-600: #4A5568;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --bg: #F7F8FC;
  --white: #FFFFFF;

  --font-display: "Zalando Sans SemiExpanded", "Zalando Sans Expanded", "Inter", -apple-system, system-ui, sans-serif;
  --font-body: "Zalando Sans SemiExpanded", "Zalando Sans Expanded", "Inter", -apple-system, system-ui, sans-serif;
  --font-num: "Inter", -apple-system, system-ui, sans-serif;
}

html,
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.page {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 96px;
  position: relative;
}

/* ---------- buttons & shared ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary--sm {
  height: 33px;
  padding: 0 22px;
  font-size: 14.79px;
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(163, 239, 17, 0.30);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-lime:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(163, 239, 17, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--lime);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

.section-eyebrow--lime {
  color: var(--lime);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38.4px;
  letter-spacing: -0.5px;
  text-align: center;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title--white {
  color: var(--white);
}

.section-title--left {
  text-align: left;
}

.section-sub {
  font-family: var(--font-display);
  font-size: 14px;
  text-align: center;
  color: var(--gray-600);
  line-height: 22px;
  margin-bottom: 56px;
}

.section-sub--white {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 96px;
  height: 90px;
  background: var(--white);
  position: relative;
  z-index: 30;
  border-bottom: 1px solid #f1f3f9;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-img--footer {
  filter: brightness(0) invert(1);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.logo-text--white {
  color: var(--white);
}

.logo-text .logo-k {
  color: var(--blue);
}

.logo-text .logo-msp {
  color: var(--lime);
  margin-left: 2px;
}

.vmware-tile span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #717171;
  letter-spacing: -0.5px;
}

.footer-bg {
  background: linear-gradient(180deg, rgb(13, 27, 75) 0%, rgb(10, 43, 110) 100%);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--blue);
}

.nav-links .caret {
  font-size: 10px;
  opacity: 0.6;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-pill a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-pill a:hover {
  color: var(--blue);
}

.phone-pill .sep {
  opacity: 0.3;
}

.mobile-only {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.2s ease;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: auto;
  padding: 40px 0 80px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("Hero Background.jpg") center / cover no-repeat;
  filter: saturate(1.05);
}

.hero-gradient {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  padding: 80px 96px 0;
  max-width: 1348px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(163, 239, 17, 0.4);
  background: rgba(163, 239, 17, 0.4);
  color: var(--lime);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(163, 239, 17, 0.18);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 54.4px;
  line-height: 61.47px;
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 17.3px;
  line-height: 30.24px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30.4px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
}

/* live ops card */
.live-ops {
  background: rgba(255, 255, 255, 0.07);
  border: 1.4px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  border-radius: 25.46px;
  padding: 30px;
  align-self: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.live-ops-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.14px;
  letter-spacing: 1.7px;
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.ops-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-row--last {
  border-bottom: 0;
}

.ops-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ops-icon--lime {
  background: rgba(163, 239, 17, 0.15);
  color: var(--lime);
}

.ops-icon--blue {
  background: rgba(30, 107, 255, 0.18);
  color: #ffffff;
}

.ops-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15.56px;
  color: var(--white);
  line-height: 1.27;
}

.ops-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18.39px;
  color: var(--white);
  margin-top: 2px;
  line-height: 1.23;
}

.ops-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.14px;
  padding: 3px 10px;
  border-radius: 28px;
}

.ops-badge--lime {
  background: rgba(163, 239, 17, 0.2);
  color: var(--lime);
}

.ops-badge--blue {
  background: rgba(30, 107, 255, 0.64);
  color: var(--white);
}

/* ---------- PARTNERS ---------- */
.partners {
  padding: 60px 96px;
  background: var(--white);
  text-align: center;
}

.partners-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--lime);
  margin-bottom: 28px;
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.partner-tile {
  height: 66px;
  background: var(--bg);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-tile img {
  max-width: 70%;
  max-height: 60%;
  object-fit: contain;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 96px 96px 110px;
  text-align: center;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(30, 107, 255, 0.09);
  border-radius: 18px;
  padding: 33px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  box-shadow: 0 18px 40px -16px rgba(15, 28, 68, 0.18);
  transform: translateY(-3px);
  border-color: rgba(30, 107, 255, 0.25);
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-icon--blue {
  background: rgba(30, 107, 255, 0.12);
  color: var(--blue);
}

.svc-icon--lime {
  background: rgba(163, 239, 17, 0.12);
  color: #6F9F0F;
}

.svc-icon--teal {
  background: rgba(0, 188, 180, 0.12);
  color: #00BCB4;
}

.svc-icon--orange {
  background: rgba(255, 150, 0, 0.12);
  color: #FF9600;
}

.svc-icon--purple {
  background: rgba(130, 0, 255, 0.12);
  color: #8200FF;
}

.svc-icon--green {
  background: rgba(0, 180, 120, 0.12);
  color: #00B478;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-family: var(--font-display);
  font-size: 13.5px;
  line-height: 22px;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.learn-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
}

.learn-more:hover {
  text-decoration: underline;
}

/* ---------- WHY US + PERFORMANCE ---------- */
.whyus {
  padding: 100px 96px;
  background: var(--bg);
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.whyus-left .section-eyebrow {
  text-align: left;
}

.whyus-left .section-title {
  text-align: left;
  font-size: 38.4px;
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 800;
}

.whyus-intro {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 23px;
  color: var(--gray-600);
  margin-bottom: 36px;
}

.whyus-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--gray-200);
}

.whyus-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.whyus-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  color: #0F1724;
}

.whyus-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: rgb(15, 23, 36);
  margin-bottom: 6px;
  line-height: 1;
}

.whyus-item p {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 21.45px;
  color: rgb(74, 85, 104);
}

/* perf card */
.perf-card {
  position: relative;
  border-radius: 40px;
  padding: 40px;
  color: var(--white);
  overflow: hidden;
  min-height: 520px;
}

.perf-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #0047FF 0%, #001A4D 100%);
  z-index: 0;
}

.perf-card>*:not(.perf-bg) {
  position: relative;
  z-index: 1;
}

.perf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.perf-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 38px;
}

.perf-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 14px;
  text-align: center;
}

.perf-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.perf-num--lime {
  color: var(--lime);
}

.perf-lbl {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
}

.perf-bar-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.perf-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.perf-bar-item {
  margin-bottom: 18px;
}

.perf-bar-item:last-child {
  margin-bottom: 0;
}

.perf-bar-row {
  padding-top: 0;
}

.perf-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.perf-bar-fill {
  height: 100%;
  border-radius: 999px;
}

.perf-bar-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1;
}

/* ---------- HOW IT WORKS ---------- */
.howit {
  padding: 96px 96px 110px;
  background: var(--bg);
  text-align: center;
}

.howit-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 16px auto 0;
}

.howit-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green-2) 100%);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 3px solid var(--white);
  margin-bottom: 18px;
  position: relative;
}

.step-circle--blue {
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue);
}

.step-circle--lime {
  background: var(--lime);
  box-shadow: 0 0 0 3px var(--lime);
}

.step-num {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--white);
}

.step-num--lime {
  background: var(--lime);
}

.step-num--blue {
  background: var(--blue);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-desc {
  font-family: var(--font-display);
  font-size: 12.5px;
  line-height: 20.6px;
  color: var(--gray-600);
}

/* ---------- LOCATIONS ---------- */
.locations {
  padding: 96px 96px 110px;
  background: var(--white);
  text-align: center;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
  margin-top: 16px;
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.loc-card:hover {
  box-shadow: 0 18px 40px -16px rgba(15, 28, 68, 0.16);
  transform: translateY(-3px);
}

.loc-photo {
  height: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.loc-photo--la {
  background: url("assets/la-map.png") center / cover no-repeat, #0F1C44;
}

.loc-photo--india {
  background: url("assets/india-map.png") center / cover no-repeat, #0F1C44;
}

.loc-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 75, 0.10) 0%, rgba(13, 27, 75, 0.55) 100%);
}

.loc-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 8px;
}

.loc-pill--white {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.loc-pill--lime {
  background: var(--lime);
  color: var(--ink);
}

.loc-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.loc-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(30, 107, 255, 0.10);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.loc-row-icon--lime {
  background: rgba(163, 239, 17, 0.18);
  color: #6F9F0F;
}

.loc-row-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.loc-row-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.loc-row-value--small {
  font-weight: 500;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 20px;
}

/* ---------- CERTIFICATIONS ---------- */
.certs {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
}

.certs-bg {
  background: url("Hero Background.jpg") center / cover no-repeat;
}

.certs-gradient {
  background: linear-gradient(135deg, rgba(13, 27, 75, 0.94), rgba(15, 28, 68, 0.92));
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: transform .2s ease, background .2s ease;
}

.cert-card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px);
}

.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(163, 239, 17, 0.15);
  color: var(--lime);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
  margin-bottom: 4px;
}

.cert-sub {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: #ffffff;
}

/* ---------- INDUSTRIES ---------- */
.industries {
  padding: 100px 96px;
  background: var(--white);
  text-align: center;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  text-align: left;
}

.ind-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.ind-card:hover {
  box-shadow: 0 16px 40px -16px rgba(15, 28, 68, 0.16);
  transform: translateY(-3px);
  border-color: rgba(30, 107, 255, 0.25);
}

.ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ind-icon--blue {
  background: rgba(30, 107, 255, 0.10);
  color: var(--blue);
}

.ind-icon--teal {
  background: rgba(20, 184, 166, 0.10);
  color: #14B8A6;
}

.ind-icon--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.ind-icon--lime {
  background: rgba(163, 239, 17, 0.18);
  color: #6F9F0F;
}

.ind-icon--orange {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

.ind-icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
}

.ind-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ind-card p {
  font-family: var(--font-display);
  font-size: 12.5px;
  line-height: 20px;
  color: var(--gray-600);
}

.ind-stats {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #0D1B4B, #152558 60%, #1E3A5F);
  padding: 36px 40px;
  border-radius: 18px;
  color: var(--white);
}

.ind-stat {
  flex: 1;
  text-align: center;
}

.ind-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
}

.ind-stat-num--lime {
  color: var(--lime);
}

.ind-stat-lbl {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.ind-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 96px;
  background: var(--bg);
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
  margin-top: 16px;
}

.testi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 30px;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: transform .2s, box-shadow .2s;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(15, 28, 68, 0.16);
}

.testi-stars {
  color: var(--gold-warm);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testi-quote {
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: serif;
  font-size: 90px;
  line-height: 0.9;
  color: rgba(30, 107, 255, 0.10);
  font-weight: 800;
}

.testi-text {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 24px;
  color: var(--ink-2);
  margin-bottom: 24px;
}

.testi-author {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.testi-avatar--blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.testi-avatar--lime {
  background: linear-gradient(135deg, var(--lime), var(--green-2));
  color: var(--ink);
}

.testi-avatar--teal {
  background: linear-gradient(135deg, #14B8A6, #0F766E);
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}

.testi-role {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--gray-500);
  margin-top: 2px;
}

.testi-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.testi-tag--blue {
  background: rgba(30, 107, 255, 0.10);
  color: var(--blue);
}

.testi-tag--lime {
  background: rgba(163, 239, 17, 0.18);
  color: #6F9F0F;
}

.testi-tag--teal {
  background: rgba(20, 184, 166, 0.12);
  color: #14B8A6;
}

.testi-stats {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px 40px;
}

.testi-stat {
  flex: 1;
  text-align: center;
}

.testi-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.5px;
}

.testi-stat-num--blue {
  color: var(--blue);
}

.testi-stat-num--lime {
  color: #6F9F0F;
}

.testi-stat-lbl {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--gray-500);
  margin-top: 4px;
}

.testi-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--gray-200);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-sub {
  font-family: var(--font-display);
  font-size: 14.5px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 34px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.cta-checks {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.check-item {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(163, 239, 17, 0.18);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ---------- BLOG ---------- */
.blog {
  padding: 100px 96px;
  background: var(--white);
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 16px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(15, 28, 68, 0.16);
}

.blog-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-thumb--cloud {
  background: linear-gradient(135deg, #1E6BFF, #0D1B4B);
}

.blog-thumb--security {
  background: linear-gradient(135deg, #A3EF11, #57822F);
}

.blog-thumb--health {
  background: linear-gradient(135deg, #14B8A6, #0F766E);
}

.blog-thumb-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.blog-thumb-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}

.blog-body {
  padding: 24px 24px 26px;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-body p {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 22px;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--gray-500);
}

.blog-meta-tag {
  font-weight: 700;
  font-size: 10.5px;
  padding: 4px 8px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-meta-tag--blue {
  background: rgba(30, 107, 255, 0.10);
  color: var(--blue);
}

.blog-meta-tag--lime {
  background: rgba(163, 239, 17, 0.18);
  color: #6F9F0F;
}

.blog-meta-tag--teal {
  background: rgba(20, 184, 166, 0.12);
  color: #14B8A6;
}

.dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-400);
  display: inline-block;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 96px;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.contact-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--lime);
  margin-bottom: 14px;
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: var(--ink);
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.contact-bar {
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  margin-bottom: 22px;
}

.contact-intro {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 24px;
  color: var(--gray-600);
  margin-bottom: 30px;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-row-icon--blue {
  background: rgba(30, 107, 255, 0.10);
  color: var(--blue);
}

.contact-row-icon--lime {
  background: rgba(163, 239, 17, 0.18);
  color: #6F9F0F;
}

.contact-row-icon--teal {
  background: rgba(20, 184, 166, 0.12);
  color: #14B8A6;
}

.contact-row-icon--orange {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

.contact-row-lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-row-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.contact-socials {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.soc-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 36px;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-sub {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-display);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  resize: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.15);
}

.form-submit {
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity .15s, transform .15s;
}

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

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  color: var(--white);
}

.footer-bg {
  background: url("footer-bg.jpg") center / cover no-repeat;
}

.footer-gradient {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .15s;
}

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

.footer-col--brand .logo {
  margin-bottom: 18px;
}

.footer-blurb {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.footer-socials a:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.footer-contact {
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--font-display);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 2;
}

/* ===========================================================
   RESPONSIVE DESIGN (Media Queries)
   =========================================================== */

@media (max-width: 1200px) {
  .container {
    padding: 0 48px;
  }

  .nav {
    padding: 18px 48px;
  }

  .partners,
  .services,
  .whyus,
  .howit,
  .locations,
  .industries,
  .testimonials,
  .blog,
  .contact,
  .footer-bottom {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-grid {
    padding-left: 48px;
    padding-right: 48px;
    gap: 40px;
  }

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

@media (max-width: 1024px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
  }

  .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .live-ops {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: left;
  }

  .services-grid,
  .blog-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whyus-grid,
  .loc-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .howit-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .howit-line {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .nav {
    height: 80px;
    padding: 0 48px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 40px 20px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid var(--gray-100);
    text-align: center;
  }

  .nav-links.nav-active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .partners,
  .services,
  .whyus,
  .howit,
  .locations,
  .industries,
  .testimonials,
  .blog,
  .contact,
  .footer-bottom {
    padding: 60px 20px;
  }

  .hero-grid {
    padding: 40px 20px 0;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.5;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

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

  .partners-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .services-grid,
  .blog-grid,
  .testi-grid,
  .certs-grid,
  .loc-grid,
  .whyus-grid,
  .contact-grid,
  .howit-track,
  .ind-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .ind-stats,
  .testi-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .ind-stat-divider,
  .testi-stat-divider {
    display: none;
  }

  .contact-form {
    padding: 30px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 30px 20px;
  }

  .phone-pill {
    display: none;
  }

  .nav-actions .btn-primary--sm {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

@media (max-width: 480px) {

  .container,
  .nav,
  .partners,
  .services,
  .whyus,
  .howit,
  .locations,
  .industries,
  .testimonials,
  .blog,
  .contact,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn-lime,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 24px;
  }

  .stat-num {
    font-size: 30px;
  }

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