:root {
  --ink: #0B1220;
  --brand: #0B1220;
  --brand-blue: #2F6BFF;
  --brand-orange: #FF8A00;
  --accent: #2F6BFF;
  --highlight: #FF8A00;
  --bg: #F5F7FB;
  --surface: #FFFFFF;
  --surfaceAlt: #EEF2F8;
  --line: rgba(11, 18, 32, 0.08);
  --text: #1A2333;
  --muted: #5B677A;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(11, 18, 32, 0.10);
  --shadowSoft: 0 10px 28px rgba(11, 18, 32, 0.06);
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(900px circle at 8% -10%, rgba(47, 107, 255, 0.08), transparent 55%),
    radial-gradient(700px circle at 92% 8%, rgba(255, 138, 0, 0.07), transparent 50%),
    linear-gradient(180deg, #F8FAFD 0%, var(--bg) 40%, #F3F6FB 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}
@media (min-width: 768px) {
  .container { max-width: 720px; }
}
@media (min-width: 992px) {
  .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

.container {
  padding-left: clamp(1rem, 3.5vw, 1.5rem);
  padding-right: clamp(1rem, 3.5vw, 1.5rem);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
}

a { color: var(--brand-blue); }
a:hover { color: #1f54d8; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 2000;
}
.skip-link:focus { left: 12px; }

/* ===== Buttons ===== */
.btn {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.01em;
  border-radius: 12px;
  padding: 0.72rem 1.25rem;
  transition: transform 180ms ease, box-shadow 200ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-lg { padding: 0.9rem 1.45rem; border-radius: 14px; }

.btn-brand {
  border: 0;
  color: #fff !important;
  background: linear-gradient(135deg, #FF8A00 0%, #2F6BFF 70%);
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.24);
}

.btn-brand:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(47, 107, 255, 0.3);
  color: #fff !important;
}

.btn-outline-brand {
  color: var(--ink) !important;
  border: 1.5px solid rgba(11, 18, 32, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline-brand:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 107, 255, 0.45);
  background: #fff;
  box-shadow: var(--shadowSoft);
  color: var(--ink) !important;
}

.btn-ghost-light {
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ===== Navbar ===== */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(11, 18, 32, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar .brand-logo,
.brand-logo {
  width: auto;
  height: 54px;
  max-width: 190px;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
}

@media (max-width: 576px) {
  .navbar .brand-logo,
  .brand-logo {
    height: 42px;
    max-width: 150px;
  }
}

.site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.55rem 0.85rem !important;
  border-radius: 10px;
  transition: color 160ms ease, background 160ms ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.bg-brand { background-color: var(--ink) !important; }

/* ===== Surfaces ===== */
.bg-surface { background: var(--surface); }
.bg-surface-alt { background: var(--surfaceAlt); }
.text-muted { color: var(--muted) !important; }
.text-white-75 { color: rgba(255, 255, 255, 0.78) !important; }
.letter-spacing { letter-spacing: 0.08em; }

.section-pad {
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.85rem;
}

.page-hero .section-eyebrow,
.about-hero .section-eyebrow,
.services-hero .section-eyebrow,
.home-hero .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 750;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
}

/* ===== Cards / panels ===== */
.card-soft,
.panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
}

.feature-tile {
  height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 200ms ease;
}

.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 107, 255, 0.28);
}

.feature-tile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
}

.feature-icon.alt {
  background: linear-gradient(135deg, var(--brand-blue), #0B1220);
}

.icon-gradient {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
}

.icon-gradient.orange {
  background: linear-gradient(135deg, #FF8A00, #d97706);
}

/* ===== Home hero (full-bleed, viewport-fit) ===== */
.home-hero {
  --nav-offset: 72px;
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--nav-offset));
  min-height: calc(100dvh - var(--nav-offset));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #070B14;
  color: #fff;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-hero__media .carousel,
.home-hero__media .carousel-inner,
.home-hero__media .carousel-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-0.8%, -0.5%, 0); }
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.88) 0%, rgba(7, 11, 20, 0.55) 48%, rgba(7, 11, 20, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.25) 0%, rgba(7, 11, 20, 0.72) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(2.5rem, 6vh, 4.5rem);
}

.home-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.home-hero__brand span {
  color: var(--brand-orange);
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 750;
  max-width: min(15ch, 100%);
  margin-bottom: 1rem;
}

.home-hero__copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  max-width: min(34rem, 100%);
  margin-bottom: 1.75rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-hero .carousel-indicators {
  bottom: 1.25rem;
  z-index: 3;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.home-hero .carousel-indicators [data-bs-target] {
  width: 2.2rem;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.home-hero .carousel-indicators .active {
  background: var(--brand-orange);
}

.home-hero .carousel-control-prev,
.home-hero .carousel-control-next {
  width: clamp(2.5rem, 6vw, 3.5rem);
  z-index: 3;
  opacity: 0.85;
}

.home-hero--fallback {
  background:
    radial-gradient(700px circle at 20% 20%, rgba(47, 107, 255, 0.28), transparent 55%),
    radial-gradient(600px circle at 80% 30%, rgba(255, 138, 0, 0.2), transparent 50%),
    linear-gradient(135deg, #070B14 0%, #121A2C 55%, #0B1220 100%);
}

/* ===== Trust strip ===== */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.trust-strip__item i {
  color: var(--brand-blue);
}

/* ===== Split / content sections ===== */
.split-section {
  position: relative;
}

.split-kicker {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.capability-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.capability-list li:last-child { border-bottom: 0; }

.capability-list i {
  color: var(--brand-blue);
  margin-top: 0.2rem;
}

.capability-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.capability-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===== Showcase / portfolio tiles ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.showcase-item {
  grid-column: span 3;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(47, 107, 255, 0.12), rgba(11, 18, 32, 0.04)),
    #fff;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 200ms ease, box-shadow 220ms ease;
}

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-item::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
}

.showcase-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.showcase-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .showcase-item { grid-column: span 6; }
}

@media (max-width: 575.98px) {
  .showcase-item { grid-column: span 12; }
}

/* ===== Testimonials ===== */
.quote-rail {
  display: grid;
  gap: 1rem;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadowSoft);
}

.quote-card p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.quote-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(600px circle at 15% 20%, rgba(47, 107, 255, 0.35), transparent 55%),
    radial-gradient(500px circle at 90% 80%, rgba(255, 138, 0, 0.28), transparent 50%),
    linear-gradient(135deg, #0B1220 0%, #152038 100%);
  padding: 4.5rem 0;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

/* ===== Page heroes (inner pages) ===== */
.page-hero,
.about-hero,
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  color: #fff;
  background:
    radial-gradient(700px circle at 12% 10%, rgba(47, 107, 255, 0.28), transparent 55%),
    radial-gradient(500px circle at 90% 30%, rgba(255, 138, 0, 0.18), transparent 50%),
    linear-gradient(135deg, #070B14 0%, #121A2C 60%, #0B1220 100%);
}

.page-hero h1,
.about-hero h1,
.services-hero h1 {
  color: #fff;
}

.page-hero .lead,
.about-hero .lead,
.services-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

/* ===== Service / about cards restyle ===== */
.section-alternate-white { background: #fff; }
.section-alternate-gray { background: var(--surfaceAlt); }

.service-card,
.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: #fff;
  box-shadow: var(--shadowSoft);
  transition: transform 200ms ease, box-shadow 220ms ease;
  height: 100%;
}

.service-card:hover,
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card.gradient-teal,
.service-card.gradient-blue,
.service-card.gradient-orange,
.service-card.gradient-purple,
.service-card.gradient-green,
.service-card.gradient-rose,
.about-gradient-teal,
.about-gradient-blue,
.about-gradient-purple,
.about-gradient-orange,
.about-gradient-green,
.about-gradient-rose {
  background: #fff;
}

.service-icon-badge,
.about-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
}

.service-icon-badge.badge-teal,
.service-icon-badge.badge-blue,
.service-icon-badge.badge-orange,
.service-icon-badge.badge-purple,
.service-icon-badge.badge-green,
.service-icon-badge.badge-rose,
.about-badge-teal,
.about-badge-blue,
.about-badge-purple,
.about-badge-orange,
.about-badge-green,
.about-badge-rose {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
}

.service-title,
.about-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-section-label,
.about-section-label {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.35rem;
}

.service-text,
.about-card-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-divider,
.about-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}

.service-card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.service-card ul li {
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.about-stat-pill {
  background: var(--surfaceAlt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--text);
  display: flex;
  align-items: center;
}

.ceo-profile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.ceo-photo-card {
  text-align: center;
}

.ceo-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  display: block;
  background: var(--surfaceAlt);
}

.ceo-photo-fallback {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8eef8, #f8fafc);
  color: var(--brand-blue);
  font-size: 3.5rem;
}

.ceo-photo-meta {
  margin-top: 1rem;
}

.ceo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 750;
  color: var(--ink);
}

.ceo-role {
  color: var(--brand-blue);
  font-weight: 650;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.ceo-company {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.ceo-heading {
  font-family: var(--font-display);
  font-weight: 750;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.ceo-subtitle {
  color: var(--brand);
  font-weight: 650;
}

.ceo-bio {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ceo-vision {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 122, 0, 0.08));
  border-left: 4px solid var(--brand-orange);
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.15rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .ceo-profile {
    padding: 1.25rem;
  }

  .ceo-photo,
  .ceo-photo-fallback {
    max-width: 320px;
    margin-inline: auto;
  }
}

.about-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-values-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.about-values-list li:last-child { border-bottom: 0; }
.about-values-list li i { color: var(--brand-orange); }

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-diagonal::before,
.section-diagonal::after { display: none; }

/* ===== Forms ===== */
.form-control,
.form-select {
  border-radius: 12px;
  border-color: rgba(11, 18, 32, 0.12);
  padding: 0.75rem 0.9rem;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(47, 107, 255, 0.45);
}

/* ===== Premium Footer ===== */
.site-footer {
  background:
    radial-gradient(700px circle at 10% 0%, rgba(47, 107, 255, 0.16), transparent 50%),
    radial-gradient(600px circle at 90% 20%, rgba(255, 138, 0, 0.10), transparent 45%),
    linear-gradient(180deg, #0A1020 0%, #070B14 55%, #05070C 100%);
  color: #fff;
  border-top: 1px solid rgba(47, 107, 255, 0.28);
}

.footer-main {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}

.footer-logo {
  width: min(100%, 220px);
  height: auto;
  display: block;
  border-radius: 12px;
  background: #000;
}

.footer-motto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-desc {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social__link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(47, 107, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.footer-social__link:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--brand-orange);
  background: rgba(255, 138, 0, 0.12);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.15rem;
  padding-top: 0.55rem;
  position: relative;
}

.footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.footer-heading::after {
  display: none;
}

.footer-heart {
  color: var(--brand-orange);
  margin-right: 0.35rem;
}

@media (min-width: 992px) {
  .footer-grid > .footer-col + .footer-col {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 1.25rem;
  }
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(226, 232, 240, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-link-icon {
  width: 1rem;
  text-align: center;
  font-size: 0.82rem;
}

.footer-link-icon.blue { color: var(--brand-blue); }
.footer-link-icon.orange { color: var(--brand-orange); }

.footer-chevron {
  color: var(--brand-blue);
  font-size: 0.7rem;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.75rem;
  align-items: start;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--brand-blue);
  margin-top: 0.2rem;
}

.footer-contact__label {
  display: block;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--brand-orange);
}

.footer-support-card {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(47, 107, 255, 0.28);
  background: linear-gradient(160deg, rgba(47, 107, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.footer-support-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
}

.footer-support-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.footer-support-card__text {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
}

.footer-support-card__cta {
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-support-card__cta:hover {
  color: #ffb14d;
}

.footer-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.footer-trust__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.footer-trust__item > i {
  color: var(--brand-blue);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.footer-trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.footer-trust__item span {
  display: block;
  color: rgba(226, 232, 240, 0.65);
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-legal {
  background: rgba(0, 0, 0, 0.35);
  padding: 1rem 0;
}

.footer-legal__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  color: rgba(226, 232, 240, 0.65);
  font-size: 0.84rem;
}

.footer-legal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  justify-content: center;
}

.footer-legal__links a {
  color: rgba(226, 232, 240, 0.72);
  text-decoration: none;
}

.footer-legal__links a:hover {
  color: var(--brand-orange);
}

.brand-dot { color: var(--brand-orange); }
.brand-blue { color: var(--brand-blue); }
.brand-orange { color: var(--brand-orange); }

@media (max-width: 991.98px) {
  .footer-legal__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .footer-trust__item {
    grid-template-columns: 28px 1fr;
  }

  .footer-support-card {
    grid-template-columns: 1fr;
  }
}

/* ===== Motion ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__media img { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* Legacy helpers still referenced by employee pages */
.card-soft {
  background: rgba(255, 255, 255, 0.95);
}

.card-soft:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.hero-gradient,
.cta-surface,
.bg-subtle-gradient {
  background:
    radial-gradient(700px circle at 12% 10%, rgba(47, 107, 255, 0.28), transparent 55%),
    radial-gradient(500px circle at 90% 30%, rgba(255, 138, 0, 0.18), transparent 50%),
    linear-gradient(135deg, #070B14 0%, #121A2C 60%, #0B1220 100%);
}

.hero-slider .carousel-item img {
  width: 100%;
  height: min(520px, 70vh);
  object-fit: cover;
}

.py-lg-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }

/* ===== Screen-fit / responsive hardening ===== */
main,
header,
footer,
section,
.row,
.col,
[class*="col-"] {
  max-width: 100%;
}

.page-hero,
.about-hero,
.services-hero {
  width: 100%;
  padding: clamp(2.75rem, 8vw, 4.5rem) 0 clamp(2.25rem, 6vw, 3.5rem);
}

.page-hero h1,
.about-hero h1,
.services-hero h1,
.display-5 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  max-width: 100%;
}

.footer-logo {
  width: min(100%, 220px);
}

.cta-band {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
}

.showcase-item {
  min-height: clamp(180px, 28vw, 220px);
}

@media (max-width: 991.98px) {
  .home-hero {
    --nav-offset: 64px;
    align-items: center;
  }

  .home-hero__content {
    padding-top: clamp(3.5rem, 8vh, 5rem);
    padding-bottom: clamp(3rem, 8vh, 4.5rem);
  }

  .home-hero h1 {
    max-width: 100%;
  }

  .trust-strip__item {
    font-size: 0.86rem;
  }
}

@media (max-width: 767.98px) {
  .home-hero {
    --nav-offset: 60px;
    min-height: calc(100svh - var(--nav-offset));
  }

  .home-hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .home-hero .carousel-control-prev,
  .home-hero .carousel-control-next {
    display: none;
  }

  .navbar .brand-logo,
  .brand-logo {
    height: 40px;
    max-width: min(46vw, 150px);
  }

  .feature-tile,
  .panel,
  .service-card,
  .about-card,
  .quote-card {
    padding: 1.15rem;
  }

  .section-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .py-lg-6 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
}

@media (max-width: 575.98px) {
  html { font-size: 15px; }

  .home-hero__brand {
    letter-spacing: 0.1em;
  }

  .cta-band .btn,
  .page-hero .btn,
  .about-hero .btn {
    width: 100%;
  }
}

/* ===== Trusted Clients (homepage) ===== */
.trusted-clients {
  background: #FFFFFF;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
}

.trusted-clients__header {
  max-width: 46rem;
  margin: 0 auto 2.75rem;
}

.trusted-clients__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 0.85rem;
}

.trusted-clients__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 750;
  color: #0B1220;
  margin-bottom: 0.9rem;
}

.trusted-clients__subtitle {
  color: #5B677A;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

.client-card {
  background: #FFFFFF;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: 1.6rem 1.35rem 1.45rem;
  text-align: center;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.client-card:hover {
  transform: scale(1.04);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.14);
  border-color: #2563EB;
}

.client-card__logo-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.08), rgba(255, 122, 0, 0.08));
  overflow: hidden;
}

.client-card__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.client-card:hover .client-card__logo {
  transform: scale(1.12);
}

.client-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #FF7A00, #2563EB);
  transition: transform 300ms ease;
}

.client-card:hover .client-card__icon {
  transform: scale(1.1);
}

.client-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 750;
  color: #0B1220;
  margin: 0 0 0.35rem;
}

.client-card__industry {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 0.7rem;
}

.client-card__desc {
  color: #5B677A;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
  min-height: 4.4em;
}

.client-card__link {
  font-weight: 700;
  font-size: 0.88rem;
  color: #FF7A00;
  text-decoration: none;
}

.client-card__link:hover {
  color: #2563EB;
}

.trusted-stats {
  margin-top: 3rem;
  padding: 1.75rem 0 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.trusted-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #2563EB;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.trusted-stat__label {
  color: #5B677A;
  font-size: 0.9rem;
  font-weight: 650;
}

.trusted-cta {
  margin-top: 3.25rem;
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 45%, #FF7A00 140%);
}

.trusted-cta__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 750;
  margin-bottom: 0.7rem;
}

.trusted-cta__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  max-width: 40rem;
}

.trusted-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 575.98px) {
  .trusted-cta__actions {
    flex-direction: column;
  }

  .trusted-cta__actions .btn {
    width: 100%;
  }

  .client-card__desc {
    min-height: 0;
  }
}
