:root {
  --bg0: #070b16;
  --bg1: #0a0f1f;
  --panel: rgba(14, 20, 36, .55);
  --panel2: rgba(15, 20, 34, .78);
  --stroke: rgba(255, 255, 255, .10);
  --text: #eaf0ff;
  --muted: rgba(255, 255, 255, .72);
  --muted2: rgba(255, 255, 255, .58);
  --gold: #d7b14a;
  --gold2: #b9912f;
  --accent: #f5c86a;
  /* modern gold */
  --accent2: #7ae3ff;
  /* subtle cyan glow */
  --blue: #5aa7ff;
  --blue2: #2f7cff;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --radius: 18px;
  --radius2: 22px;
  --container: 1160px;
}

/* ---------- GLOBAL ---------- */
/* .transform-skew {
  transform: scale(0.75) skew(0deg, 25deg);
} */

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.chip svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  /* fill: var(--accent); */
  flex-shrink: 0;
  stroke-width: 1;
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
  font-size: small;
}

/*----- GLOBAL END -----*/

/*---Ring animation---*/
.planetary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* THE ORBIT RING */
.ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  animation: orbit 12s linear infinite;
}

/* each ring different speed (nice effect) */
.ring:nth-child(2) {
  width: 220px;
  height: 220px;
  animation-duration: 18s;
}

.ring:nth-child(3) {
  width: 280px;
  height: 280px;
  animation-duration: 26s;
}

/* THE DOT */
.ring-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffb347;
  /* TAB gold/orange */
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 179, 71, .8);
}

/* ROTATION */
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ═══ ABOUT / WHY US ═══ */
.about {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-left .sec-tag {
  text-align: left;
}

.about-left .sec-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.chk {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chk-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-dot svg {
  width: 9px;
  height: 9px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 3;
}

.chk span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.about-right {
  display: flex;
  justify-content: center;
}

.visual-box {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 16px;
  background: rgba(201, 162, 39, 0.015);
  border: 1px solid rgba(201, 162, 39, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 40%, rgba(201, 162, 39, 0.04), transparent 55%);
}

.ring {
  position: absolute;
  border: 1px solid rgba(201, 162, 39, 0.05);
  border-radius: 50%;
  animation: rot 28s linear infinite;
}

.ring:nth-child(1) {
  width: 50%;
  height: 50%;
}

.ring:nth-child(2) {
  width: 72%;
  height: 72%;
  animation-duration: 38s;
  animation-direction: reverse;
}

.ring:nth-child(3) {
  width: 90%;
  height: 90%;
  animation-duration: 55s;
}

.ring-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
}

@keyframes rot {
  to {
    transform: rotate(360deg);
  }
}

.vis-center {
  position: relative;
  z-index: 2;
  width: 802px;
  height: 802px;
  border-radius: 10px;
  border: 1.5px solid rgba(201, 162, 39, 0.2);
  background: rgba(201, 162, 39, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-center svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* ---------- BACKGROUND (STARS + CONSTELLATIONS) ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1400px 700px at 20% 15%, rgba(90, 167, 255, .10), transparent 60%),
    radial-gradient(1200px 700px at 90% 30%, rgba(215, 177, 74, .11), transparent 55%),
    linear-gradient(180deg, #070b16 0%, #0a0f1f 100%);
}

.bg::before {
  content: "";
  position: absolute;
  inset: -2px;
  opacity: .95;
  /* multiple star layers */
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, .9) 50%, transparent 55%),
    radial-gradient(1px 1px at 18% 72%, rgba(255, 255, 255, .7) 50%, transparent 55%),
    radial-gradient(1px 1px at 30% 40%, rgba(255, 255, 255, .8) 50%, transparent 55%),
    radial-gradient(1px 1px at 43% 18%, rgba(255, 255, 255, .85) 50%, transparent 55%),
    radial-gradient(1px 1px at 56% 65%, rgba(255, 255, 255, .75) 50%, transparent 55%),
    radial-gradient(1px 1px at 62% 30%, rgba(255, 255, 255, .9) 50%, transparent 55%),
    radial-gradient(1px 1px at 74% 22%, rgba(255, 255, 255, .7) 50%, transparent 55%),
    radial-gradient(1px 1px at 82% 58%, rgba(255, 255, 255, .8) 50%, transparent 55%),
    radial-gradient(1px 1px at 92% 30%, rgba(255, 255, 255, .85) 50%, transparent 55%),

    radial-gradient(2px 2px at 14% 35%, rgba(90, 167, 255, .8) 50%, transparent 55%),
    radial-gradient(2px 2px at 68% 44%, rgba(215, 177, 74, .8) 50%, transparent 55%),
    radial-gradient(2px 2px at 88% 70%, rgba(90, 167, 255, .65) 50%, transparent 55%),

    radial-gradient(1px 1px at 25% 85%, rgba(255, 255, 255, .6) 50%, transparent 55%),
    radial-gradient(1px 1px at 51% 82%, rgba(255, 255, 255, .7) 50%, transparent 55%),
    radial-gradient(1px 1px at 77% 88%, rgba(255, 255, 255, .6) 50%, transparent 55%);
  filter: drop-shadow(0 0 6px rgba(90, 167, 255, .10));
}

/* Subtle constellation glow */
.bg-glow {
  position: absolute;
  width: 900px;
  height: 700px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
}

.glow-a {
  left: -200px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(90, 167, 255, .35), transparent 55%);
}

.glow-b {
  right: -220px;
  top: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(215, 177, 74, .35), transparent 55%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* SVG constellation overlay */
.bg-constellations {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
  filter: drop-shadow(0 0 10px rgba(90, 167, 255, .12)) drop-shadow(0 0 12px rgba(215, 177, 74, .10));
}

.bg-constellations .lines path {
  fill: none;
  stroke: rgba(90, 167, 255, .55);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .55;
}

.bg-constellations .stars circle {
  fill: rgba(255, 255, 255, .92);
  opacity: .75;
}

.bg-constellations .stars circle:nth-child(3n) {
  fill: rgba(215, 177, 74, .95);
  opacity: .65;
}

.bg-constellations .stars circle:nth-child(4n) {
  fill: rgba(90, 167, 255, .95);
  opacity: .70;
}

/* ---------- LAYOUT ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  /* background: linear-gradient(135deg, var(--accent), var(--gold-dark)); */
  background-color: var(--gold2);
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(201, 162, 39, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--gold-glow);
}

.btn-gold svg {
  width: 13px;
  height: 13px;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}


a {
  color: inherit;
  text-decoration: none
}

a.link {
  color: rgba(90, 167, 255, .95)
}

a.link:hover {
  color: #9cc7ff
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  gap: 10px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px)
}

.btn:active {
  transform: translateY(0px)
}

.btn-primary {
  background: linear-gradient(180deg, rgba(215, 177, 74, .95), rgba(185, 145, 47, .95));
  color: #10121a;
  border-color: rgba(215, 177, 74, .55);
  box-shadow: 0 12px 30px rgba(215, 177, 74, .18);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(215, 177, 74, .22)
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
}

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

.muted {
  color: var(--muted)
}

.small {
  font-size: 12.5px;
  line-height: 1.4
}



/* ---------- TOPBAR ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(8, 10, 18, .78), rgba(8, 10, 18, .35));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 14px 0; */
  gap: 14px;
}

.side-by-side {
  display: inline-block;
  /* box-sizing: border-box; */
  /* vertical-align: top; */
  padding: 10px;
}

.left {
  width: 30%;

}

.right {
  width: 70%;
}

.brand {
  font-size: 0;
  width: 300px;
  gap: 12px;
}


.brand-mark {
  width: 44px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .8px;
  color: #0c101d;
  background: linear-gradient(180deg, rgba(90, 167, 255, .95), rgba(47, 124, 255, .85));
  box-shadow: 0 12px 30px rgba(90, 167, 255, .18);
}

.brand-text strong {
  display: block;
  font-size: 15px
}

.brand-text small {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px
}

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

.nav a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .78);
  padding: 10px 6px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: rgba(255, 255, 255, .92)
}

.nav a.active {
  color: rgba(255, 255, 255, .95);
  border-bottom-color: rgba(90, 167, 255, .75);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255, 255, 255, .85);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 10, 18, .62);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, .84);
}

.mobile-nav .btn {
  margin-top: 10px;
  width: 100%
}

.mobile-nav.show {
  display: block
}

/* ---------- HERO ---------- */
.hero {
  padding: 44px 0 26px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .80);
  font-size: 13px;
}

.pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(215, 177, 74, .95);
  box-shadow: 0 0 14px rgba(215, 177, 74, .35);
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.5px;
  font-weight: bolder;
  display: block;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.accent {
  color: var(--gold)
}

.lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
}

.hero-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.tech {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
}

.ico {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(90, 167, 255, .18);
  border: 1px solid rgba(90, 167, 255, .25);
  display: inline-block;
}

.ico.aws {
  background: rgba(215, 177, 74, .14);
  border-color: rgba(215, 177, 74, .25)
}

.ico.gcp {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14)
}

.ico.k8s {
  background: rgba(90, 167, 255, .14);
  border-color: rgba(90, 167, 255, .22)
}

.ico.shield {
  background: rgba(47, 124, 255, .16);
  border-color: rgba(47, 124, 255, .26)
}

.ico.check {
  background: rgba(215, 177, 74, .12);
  border-color: rgba(215, 177, 74, .22)
}

.ico.rag {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14)
}

/* ---------- HERO ARCH CARD ---------- */
.hero-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 35% 30%, rgba(90, 167, 255, .22), transparent 55%),
    radial-gradient(420px 260px at 75% 45%, rgba(215, 177, 74, .18), transparent 60%);
  opacity: .7;
  pointer-events: none;
}

.glass {
  position: relative;
  padding: 18px;
}

.glass-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(90, 167, 255, .95);
  box-shadow: 0 0 16px rgba(90, 167, 255, .35);
}

.glass-title {
  font-weight: 700
}

.badge {
  margin-left: auto;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
}

.arch {
  display: grid;
  gap: 12px;
  margin: 14px 0 12px;
}

.arch-col {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.arch-arrow {
  opacity: .7;
  color: rgba(255, 255, 255, .70);
  font-weight: 700;
}

.arch-box {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 14, 26, .55);
  padding: 12px 12px;
}

.arch-box small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  margin-bottom: 5px;
}

.arch-box strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.25;
  color: rgba(255, 255, 255, .92);
}

.arch-box.highlight {
  background: rgba(10, 18, 32, .68);
  border-color: rgba(90, 167, 255, .22);
}

.arch-box.ai {
  border-color: rgba(215, 177, 74, .20);
}

.mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mini span {
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .76);
}

.glass-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.kpi small {
  display: block;
  color: rgba(255, 255, 255, .60);
  font-size: 12px
}

.kpi strong {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .90)
}

/* ---------- STRIP ---------- */
.strip {
  padding: 10px 0 22px;
  position: relative;
  z-index: 1;
}

.strip-end-to-end {
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
  z-index: 1;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);

  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 30%,
      black 50%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 30%,
      black 50%,
      transparent 100%);
}

.strip-label {
  color: rgba(255, 255, 255, .74);
  font-size: 13px
}

.chips {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .15);
  /* border: 1px solid rgba(255, 255, 255, .10); */
  color: rgba(255, 255, 255, .78);
}


.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .15);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .78);
}

/* ---------- SECTIONS ---------- */
.services {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.8;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.2;
}

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.sec-desc {
  max-width: 460px;
  margin: 14px auto 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-dim);
}

.section {
  padding: 52px 0;
  position: relative;
  z-index: 1;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.4px;
}

.section-head p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  max-width: 64ch;
  line-height: 1.5;
}

/* ---------- CARDS ---------- */

.cards {
  display: grid;
  gap: 14px;
  margin: 6px 0 12px;
}

.card {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 12px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.card-header {
  display: flex;
  align-items: center;
  /* vertical alignment */
  gap: 14px;
  /* space between icon and text */
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}


.card:hover {
  background: rgba(201, 162, 39, 0.02);
  border-color: rgba(201, 162, 39, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 162, 39, 0.04);

  h3 {
    color: var(--gold);
  }
}



.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  position: relative;
}

.card p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dim);
  position: relative;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.3s;
  position: relative;
  opacity: 0.7;
}

.card:hover .card-link {
  opacity: 1;
}

.card-link:hover {
  gap: 10px;
}

.card-link svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}





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

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  padding: 18px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5
}

.card-dark {
  background: rgba(6, 10, 20, .62);
  border-color: rgba(255, 255, 255, .10);
  position: relative;
  overflow: hidden;
}

.card-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 140px at 30% 30%, rgba(90, 167, 255, .18), transparent 65%),
    radial-gradient(240px 140px at 80% 60%, rgba(215, 177, 74, .14), transparent 70%);
  opacity: .65;
  pointer-events: none;
}

.card-dark>* {
  position: relative
}

.card-icon {
  margin-bottom: 10px
}

.icon {
  width: 42px;
  height: 42px;
  /* display: inline-block; */
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 14, 26, .55);
  position: relative;
  overflow: hidden;
}

.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(90, 167, 255, .35), transparent 55%);
  opacity: .85;
}

.icon.shield::before {
  background: radial-gradient(circle at 30% 30%, rgba(215, 177, 74, .30), transparent 60%)
}

.icon.migrate::before {
  background: radial-gradient(circle at 30% 30%, rgba(90, 167, 255, .25), transparent 60%)
}

.icon.modernize::before {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .18), transparent 60%)
}

.icon.data::before {
  background: radial-gradient(circle at 30% 30%, rgba(90, 167, 255, .32), transparent 60%)
}

/* ---------- CTA WIDE ---------- */
.cta-wide {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .00));
}

.cta-wide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-wide-copy h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -.3px;
  max-width: 42ch;
}

.cta-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.logo-pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  font-size: 12.5px;
}

/* ---------- SOLUTIONS ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.solution {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  padding: 18px;
}

.solution h3 {
  margin: 0 0 8px
}

.solution .solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 10px;
}

.solution .solution-points span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .76);
}

.solution-foot {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.45;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  padding: 18px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(215, 177, 74, .95);
  color: #0f121a;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5
}

/* ---------- METRICS ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  padding: 18px;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 26px;
  letter-spacing: -.4px;
  color: var(--gold)
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .74);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 10px;
}

details {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(255, 255, 255, .90);
}

.faq-body {
  margin-top: 10px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.5;
}

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 14, 26, .55);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .20);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .45)
}

textarea {
  resize: vertical;
  min-height: 120px
}

select option {
  color: #111
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 10, 18, .45);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .92)
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .cards-3 {
    grid-template-columns: 1fr
  }

  .cards-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

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

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

  .contact {
    grid-template-columns: 1fr
  }

  .nav {
    display: none
  }

  .nav-toggle {
    display: inline-block
  }
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr
  }

  .cards-4 {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .metrics {
    grid-template-columns: 1fr
  }

  .strip-inner {
    flex-direction: column;
    align-items: flex-start
  }
}