/* ============================================================
   TechUnited — Connecting IT
   Brand design system
   ============================================================ */

:root {
  --navy: #141b4d;
  --navy-dark: #0d1333;
  --navy-deep: #090e28;
  --purple: #7c3aed;
  --violet: #5b2ee5;
  --magenta: #c026d3;
  --ink: #20263b;
  --muted: #5b6274;
  --line: #e5e7f2;
  --bg: #ffffff;
  --bg-soft: #f5f6fc;
  --bg-softer: #fafbff;
  --grad: linear-gradient(120deg, #5b2ee5 0%, #8b2fe0 55%, #c026d3 100%);
  --grad-soft: linear-gradient(120deg, rgba(91, 46, 229, .08), rgba(192, 38, 211, .08));
  --shadow-sm: 0 1px 2px rgba(13, 19, 51, .06), 0 2px 8px rgba(13, 19, 51, .06);
  --shadow-md: 0 6px 16px rgba(13, 19, 51, .08), 0 16px 40px rgba(13, 19, 51, .10);
  --shadow-lg: 0 12px 28px rgba(13, 19, 51, .14), 0 32px 72px rgba(13, 19, 51, .18);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--magenta); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection { background: rgba(124, 58, 237, .18); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 58, 237, .35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 47, 224, .45);
}

.btn-outline {
  border-color: rgba(20, 27, 77, .25);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { color: var(--violet); transform: translateY(-2px); }

.btn-ghost-light {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  background: transparent;
}
.btn-ghost-light:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-sm { padding: 11px 20px; font-size: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Utility bar ---------- */

.utility-bar {
  background: var(--navy-dark);
  color: #c9cdea;
  font-size: 13px;
  position: relative;
  z-index: 60;
}

.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-height: 38px;
}

.utility-bar a {
  color: #c9cdea;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s ease, background .15s ease;
}

.utility-bar a:hover { color: #fff; background: rgba(255, 255, 255, .07); }

.utility-bar a svg { width: 14px; height: 14px; }

.utility-bar .sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .16); margin: 0 4px; }

/* ---------- Header / navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(13, 19, 51, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}

.nav-link:hover, .nav-item:focus-within > .nav-link, .nav-item:hover > .nav-link {
  color: var(--violet);
  background: rgba(124, 58, 237, .07);
}

.nav-link .chev { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-item:hover > .nav-link .chev { transform: rotate(180deg); }

.nav-link.active { color: var(--violet); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--grad);
}

/* Mega dropdown */

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 640px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 70;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown.narrow { min-width: 300px; }

.dropdown-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 28px;
}

.dropdown.narrow .dropdown-inner { grid-template-columns: 1fr; }

.dropdown-col .dropdown-title {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--magenta);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.dropdown-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14.5px;
  transition: background .14s ease, color .14s ease;
}

.dropdown-link:hover { background: var(--bg-soft); color: var(--violet); }

.dropdown-link .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

/* Hamburger */

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 90;
  background: var(--navy-deep);
  color: #dfe2f7;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s ease;
  visibility: hidden;
}

.mobile-nav.open { transform: translateX(0); visibility: visible; }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mobile-nav-head img { height: 40px; background: #fff; border-radius: 10px; padding: 4px 10px; }

.mobile-close {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.mobile-group { border-bottom: 1px solid rgba(255, 255, 255, .1); }

.mobile-group > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 4px;
  cursor: pointer;
}

.mobile-group > button .chev { width: 16px; height: 16px; transition: transform .2s ease; }
.mobile-group.open > button .chev { transform: rotate(180deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.mobile-group.open .mobile-submenu { max-height: 640px; }

.mobile-submenu .sub-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #b58cf5;
  margin: 10px 0 4px;
}

.mobile-submenu a {
  display: block;
  color: #c6cbe9;
  font-size: 15px;
  padding: 7px 4px 7px 14px;
}
.mobile-submenu a:hover { color: #fff; }

.mobile-nav .btn { width: 100%; margin-top: 22px; }

.mobile-utility { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.mobile-utility a { color: #aab0d8; font-size: 14px; }

/* Search overlay */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(9, 14, 40, .72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14vh 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s;
}

.search-overlay.open { opacity: 1; visibility: visible; }

.search-box {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  transform: translateY(-12px);
  transition: transform .2s ease;
}

.search-overlay.open .search-box { transform: translateY(0); }

.search-box form { display: flex; align-items: center; gap: 8px; }

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 17px;
  font-family: var(--font-body);
  padding: 14px 16px;
  color: var(--ink);
  background: transparent;
}

.search-hint { padding: 6px 18px 12px; font-size: 13px; color: var(--muted); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(124, 58, 237, .14), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(192, 38, 211, .10), transparent 60%),
    linear-gradient(180deg, #fbfbff 0%, #f4f5fd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 27, 77, .14) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(640px 420px at 12% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(640px 420px at 12% 20%, #000 0%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 76px 0 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(124, 58, 237, .09);
  border: 1px solid rgba(124, 58, 237, .18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

.hero-title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 38px; }

.hero-media { position: relative; }

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(20, 27, 77, .08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -28px -28px auto;
  width: 190px; height: 190px;
  background-image: radial-gradient(var(--purple) 2.4px, transparent 2.4px);
  background-size: 22px 22px;
  opacity: .35;
  z-index: -1;
}

.hero-media .float-card {
  position: absolute;
  left: -26px;
  bottom: 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-card .fc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.float-card .fc-icon svg { width: 22px; height: 22px; }
.float-card .fc-num { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); line-height: 1.1; }
.float-card .fc-label { font-size: 12.5px; color: var(--muted); }

/* Partner strip */

.partner-strip {
  border-top: 1px solid var(--line);
  background: #fff;
}

.partner-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 44px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.partner-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.partner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #9aa0b8;
  letter-spacing: .01em;
  transition: color .2s ease;
}
.partner-name:hover { color: var(--navy); }

/* ---------- Sections ---------- */

.section { padding: 88px 0; }
.section-light { background: var(--bg-soft); }
.section-navy {
  background:
    radial-gradient(800px 400px at 110% -10%, rgba(124, 58, 237, .35), transparent 60%),
    radial-gradient(600px 380px at -10% 110%, rgba(192, 38, 211, .28), transparent 55%),
    var(--navy-dark);
  color: #d6daf3;
}
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}

.section-title { font-size: clamp(27px, 3.2vw, 40px); margin-bottom: 14px; }
.section-lead { font-size: 17.5px; color: var(--muted); margin-bottom: 0; }
.section-navy .section-lead { color: #aab0d8; }

/* ---------- Grids & cards ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, .25);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 58, 237, .16);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }

.card-title { font-size: 20px; margin-bottom: 10px; }
.card-text { color: var(--muted); font-size: 15px; margin-bottom: 16px; }

.card-list li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 14.5px;
  color: var(--ink);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
}
.card-list li a { color: var(--ink); }
.card-list li a:hover { color: var(--violet); }

.card-link { margin-top: 6px; }

/* ---------- Stats band ---------- */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat {
  text-align: center;
  padding: 30px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  transition: background .2s ease, transform .2s ease;
}
.stat:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  background: linear-gradient(120deg, #b58cf5, #e879d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
  margin-bottom: 8px;
}

.stat-label { font-size: 14.5px; color: #b9bee0; }

/* ---------- Awards ---------- */

.awards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.award-chip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.award-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.award-chip .trophy {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.award-chip .trophy svg { width: 24px; height: 24px; }

.award-chip .award-year {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--magenta);
}
.award-chip .award-name { font-weight: 600; color: var(--navy); font-size: 15.5px; line-height: 1.4; }

/* ---------- Industries ---------- */

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.industry-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.industry-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192, 38, 211, .3);
}

.industry-tile .card-icon { width: 48px; height: 48px; margin-bottom: 16px; border-radius: 13px; }
.industry-tile .card-icon svg { width: 23px; height: 23px; }
.industry-tile h3 { font-size: 17px; margin-bottom: 8px; }
.industry-tile p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.industry-tile .link-arrow { font-size: 13.5px; }

/* ---------- Split (media + content) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 27, 77, .08);
}
.split-media::before {
  content: "";
  position: absolute;
  inset: -26px auto auto -26px;
  width: 170px; height: 170px;
  background-image: radial-gradient(var(--magenta) 2.2px, transparent 2.2px);
  background-size: 22px 22px;
  opacity: .28;
  z-index: 0;
}
.split-media img { position: relative; z-index: 1; }

.mini-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }

.mini-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.mini-link:hover { border-color: var(--purple); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--violet); }
.mini-link svg { width: 19px; height: 19px; color: var(--violet); flex-shrink: 0; }

/* ---------- News & insights cards ---------- */

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.news-thumb {
  height: 170px;
  position: relative;
  background: var(--grad);
  overflow: hidden;
}
.news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .35) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
  -webkit-mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
}
.news-thumb.t2 { background: linear-gradient(120deg, #141b4d, #5b2ee5); }
.news-thumb.t3 { background: linear-gradient(120deg, #8b2fe0, #e879d9); }

.news-thumb .thumb-icon {
  position: absolute;
  right: 20px; bottom: 20px;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.news-thumb .thumb-icon svg { width: 23px; height: 23px; }

.news-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}
.news-meta .date { color: var(--muted); font-weight: 500; letter-spacing: 0; text-transform: none; }

.news-body h3 { font-size: 17.5px; margin-bottom: 8px; }
.news-body h3 a { color: var(--navy); }
.news-body h3 a:hover { color: var(--violet); }
.news-body p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; flex: 1; }

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(560px 300px at 90% 0%, rgba(192, 38, 211, .4), transparent 60%),
    linear-gradient(120deg, #141b4d 20%, #3b1d8f 70%, #6d1ea8 100%);
  color: #fff;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .22) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: radial-gradient(420px 260px at 85% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(420px 260px at 85% 50%, #000, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 10px; }
.cta-banner p { color: #c9cdea; max-width: 520px; margin-bottom: 0; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Newsletter ---------- */

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}

.newsletter h3 { font-size: 23px; margin-bottom: 8px; }
.newsletter p { color: var(--muted); margin-bottom: 0; font-size: 15px; }

.newsletter form { display: flex; gap: 10px; }
.newsletter input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.newsletter input:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, .12); }

/* ---------- Footer ---------- */

.site-footer {
  background:
    radial-gradient(700px 340px at 105% 0%, rgba(124, 58, 237, .25), transparent 60%),
    var(--navy-deep);
  color: #a9aecf;
  padding: 68px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img { height: 46px; background: #fff; border-radius: 12px; padding: 5px 12px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 280px; }

.footer-col h4 {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: #a9aecf; font-size: 14.5px; transition: color .15s ease, padding-left .15s ease; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact svg { width: 17px; height: 17px; color: #b58cf5; flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.footer-legal { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-legal a { color: #a9aecf; }
.footer-legal a:hover { color: #fff; }
.footer-legal .sep { color: rgba(255, 255, 255, .25); }

.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  display: flex; align-items: center; justify-content: center;
  color: #c9cdea;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.social a:hover { background: var(--grad); color: #fff; transform: translateY(-2px); border-color: transparent; }
.social svg { width: 17px; height: 17px; }

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 380px at 92% -20%, rgba(124, 58, 237, .4), transparent 60%),
    radial-gradient(520px 320px at 0% 120%, rgba(192, 38, 211, .3), transparent 55%),
    var(--navy-dark);
  color: #fff;
  padding: 72px 0 64px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1.3px, transparent 1.3px);
  background-size: 26px 26px;
  mask-image: radial-gradient(500px 320px at 88% 30%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(500px 320px at 88% 30%, #000, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #9aa0c8;
  margin-bottom: 18px;
}
.breadcrumb a { color: #c9cdea; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255, 255, 255, .3); }
.breadcrumb [aria-current] { color: #e879d9; }

.page-hero h1 { color: #fff; font-size: clamp(32px, 4vw, 48px); max-width: 760px; }
.page-hero .lead { font-size: 18px; color: #c0c5e6; max-width: 680px; margin-bottom: 0; }

/* ---------- Feature grid (subpage detail blocks) ---------- */

.detail-block { padding: 72px 0; border-bottom: 1px solid var(--line); }
.detail-block:last-of-type { border-bottom: none; }
.detail-block:nth-child(even) { background: var(--bg-softer); }

.detail-head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; max-width: 780px; }
.detail-head .card-icon { flex-shrink: 0; margin-bottom: 0; }
.detail-head h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 8px; }
.detail-head p { color: var(--muted); margin-bottom: 0; font-size: 16.5px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feature-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  scroll-margin-top: 110px;
}
.feature-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(124, 58, 237, .25); }
.feature-item:target { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, .14), var(--shadow-md); }

.feature-item .fi-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 58, 237, .16);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  margin-bottom: 14px;
}
.feature-item .fi-icon svg { width: 21px; height: 21px; }
.feature-item h3 { font-size: 16.5px; margin-bottom: 7px; }
.feature-item p { font-size: 14px; color: var(--muted); margin-bottom: 0; }

.detail-cta { margin-top: 32px; }

/* ---------- Check list ---------- */

.check-list li {
  position: relative;
  padding: 7px 0 7px 34px;
  color: var(--ink);
  font-size: 15.5px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 58, 237, .25);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 15px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(-45deg);
}

/* ---------- Steps / process ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 10px;
}

.step h3 { font-size: 16.5px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); margin-bottom: 0; }

/* ---------- Contact / forms ---------- */

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-softer);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .12);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.info-card h3 { font-size: 17px; margin-bottom: 14px; }

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ink);
}
.contact-line svg { width: 19px; height: 19px; color: var(--violet); flex-shrink: 0; margin-top: 2px; }
.contact-line .cl-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }

.office-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.office-chips span {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  background: var(--grad-soft);
  border: 1px solid rgba(124, 58, 237, .18);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------- Logo wall / clients ---------- */

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.logo-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #9aa0b8;
  letter-spacing: .02em;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.logo-cell:hover { color: var(--navy); border-color: rgba(124, 58, 237, .3); transform: translateY(-3px); }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .dropdown { min-width: 560px; }
  .grid-4, .industry-grid, .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .main-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { min-height: 68px; }
  .hero-grid { grid-template-columns: 1fr; padding: 56px 0 52px; gap: 40px; }
  .hero-sub { max-width: none; }
  .hero-media { max-width: 640px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .awards-row { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 42px 32px; }
  .utility-bar .hide-m { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .grid-2, .grid-3, .grid-4, .feature-grid, .industry-grid, .steps, .logo-wall { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .mini-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .newsletter form { flex-direction: column; }
  .newsletter .btn { width: 100%; }
  .hero-media .float-card { left: 10px; bottom: 14px; }
  .form-card { padding: 26px 20px; }
  .hero-cta .btn { width: 100%; }
}
