:root { --text-muted: #a2afc0; }

.city-sequence {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.city-video:not([src]) + .city-sequence,
.city-sequence {
  display: block;
}

.journey-section {
  --journey-bg: #020712;
  --journey-blue: #1186ff;
  --journey-cyan: #31d0ff;
  --journey-text: #f8fbff;
  --journey-muted: #abc0dd;
  position: relative;
  padding: clamp(48px, 7vw, 88px) clamp(22px, 4vw, 70px) clamp(56px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--journey-text);
  background: #020712;
  border-block: 1px solid rgba(83, 166, 255, .16);
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(77,156,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,156,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  opacity: .6;
}

.journey-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto clamp(28px, 4vw, 56px);
  z-index: 2;
}

.journey-logo {
  width: 64px;
  height: 64px;
}

.journey-wordmark strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1;
  letter-spacing: .25em;
  color: #fff;
}

.journey-wordmark span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .62em;
  color: #93aabc;
}

.journey-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 64px);
  max-width: 920px;
}

.journey-header h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 700;
  color: #fff;
}

.journey-header p {
  margin: 18px auto 0;
  color: #93aabc;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 400;
  letter-spacing: -.01em;
  max-width: 560px;
}

.journey-timeline {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}

.journey-track {
  display: none;
}

.journey-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 28px);
}

.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-num {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid #4ea4ff;
  background: #061129;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px #020712;
}

.journey-card {
  width: 100%;
  flex: 1;
  padding: 28px 22px 36px;
  border: 1px solid rgba(80,167,255,.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 20, 41, .78), rgba(3, 9, 21, .78));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.journey-card::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 56px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #168bff, #36d7ff);
}

.journey-step:hover .journey-card {
  border-color: rgba(100, 175, 255, .55);
  transform: translateY(-4px);
}

.journey-icon {
  width: 86px;
  height: 86px;
  margin: 4px 0 18px;
  color: #1f8bff;
}

.journey-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.journey-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-stroke-thin {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-fill-soft {
  fill: #31d0ff;
}

.journey-card h3 {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
}

.journey-card p {
  margin: 0;
  color: #93aabc;
  max-width: 200px;
  font-size: clamp(13px, .85vw, 15px);
  line-height: 1.45;
  font-weight: 400;
  text-wrap: balance;
}

@media (max-width: 1180px) {
  .journey-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey-card {
    padding: 24px 18px 32px;
  }
}

@media (max-width: 760px) {
  .journey-section {
    padding: 40px 16px 52px;
  }

  .journey-brand {
    gap: 12px;
    margin-bottom: 24px;
  }

  .journey-logo {
    width: 50px;
    height: 50px;
  }

  .journey-wordmark strong {
    font-size: 17px;
  }

  .journey-wordmark span {
    font-size: 10px;
  }

  .journey-header {
    text-align: left;
    margin-bottom: 28px;
  }

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

  .journey-num {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .journey-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }
}

.short-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 3rem;
  border-block: 1px solid var(--border);
  background: #080d17;
}
.short-strip span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--border);
  color: var(--text-muted);
  font: 500 .68rem var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.short-strip span:last-child { border-right: 1px solid var(--border); }

#services, #why { padding-block: clamp(5rem, 8vw, 8rem); }

.outcomes-showcase {
  position: relative;
  overflow: hidden;
  padding-inline: clamp(1.25rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 52% 105%, rgba(34, 94, 255, .32), transparent 26rem),
    radial-gradient(circle at 70% 18%, rgba(31, 92, 255, .12), transparent 24rem),
    #040812;
  border-top: 1px solid rgba(107, 139, 186, .16);
  border-bottom: 1px solid rgba(107, 139, 186, .16);
}
.outcomes-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(73, 120, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 120, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0, transparent 68%);
}
.outcomes-header {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto 3rem;
  text-align: center;
}
.outcomes-header h2 {
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(3rem, 5.2vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.07em;
}
.outcomes-header h2 span { color: #225fff; }
.outcomes-header p {
  margin: 1.35rem auto 0;
  color: #b7c0ce;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}
.outcome-grid {
  position: relative;
  z-index: 1;
  max-width: 1840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.outcome-card {
  min-width: 0;
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-rows: 372px 1fr;
  border: 1px solid rgba(113, 145, 194, .28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 19, 33, .9), rgba(5, 10, 20, .96));
  box-shadow: inset 0 1px rgba(255,255,255,.05);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), border-color .7s cubic-bezier(.16, 1, .3, 1), box-shadow .7s cubic-bezier(.16, 1, .3, 1);
}
.outcome-card:hover {
  transform: none;
  border-color: rgba(88, 145, 255, .72);
  box-shadow: 0 28px 70px rgba(18, 68, 184, .22), inset 0 1px rgba(255,255,255,.08);
}
.outcome-card.featured {
  border-color: rgba(97, 149, 255, .9);
  box-shadow: 0 28px 90px rgba(30, 90, 255, .28), inset 0 0 0 1px rgba(145, 183, 255, .24);
}
.outcome-picture {
  position: relative;
  min-height: 0;
  height: 372px;
  padding: 1.55rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 95%, rgba(23, 88, 255, .35), transparent 44%),
    linear-gradient(180deg, rgba(10, 20, 38, .72), rgba(4, 9, 18, .94));
  border-bottom: 1px solid rgba(113, 145, 194, .18);
}
.outcome-picture::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background:
    linear-gradient(rgba(56, 107, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 107, 255, .12) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(420px) rotateX(64deg);
  transform-origin: 50% 100%;
  opacity: .45;
}
.outcome-picture.image-backed {
  padding: 0;
  background: #050b16;
}
.outcome-picture.image-backed::after { display: none; }
.outcome-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .9s cubic-bezier(.16, 1, .3, 1);
}
.outcome-card:hover .outcome-art {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.outcome-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.55rem 2rem 1.6rem;
  min-height: 172px;
}
.outcome-copy h3 {
  margin: 0;
  color: #f4f7fb;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.outcome-copy p {
  margin: .9rem 0 1.55rem;
  color: #b4bdc9;
  font-size: .95rem;
  line-height: 1.5;
}
.outcome-copy a {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  width: fit-content;
  margin-top: auto;
  color: #3b8dff;
  text-decoration: none;
  font-weight: 600;
}
.outcome-copy a::after {
  content: '\2192';
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(93, 143, 217, .25);
  border-radius: 50%;
  color: #6aa4ff;
  background: rgba(255,255,255,.025);
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .5s cubic-bezier(.16,1,.3,1);
}
.outcome-copy a:hover::after { transform: translateX(6px); border-color: rgba(93, 143, 217, .62); }

.google-word { color: #f6f7fb; font-size: 1.25rem; font-weight: 700; letter-spacing: -.04em; }
.search-bar {
  margin-top: .75rem;
  height: 40px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0 .9rem 0 1.05rem;
  border-radius: 999px;
  background: rgba(24, 38, 62, .88);
  color: #e8eef9;
  font-size: .72rem;
}
.search-bar b, .search-bar i { width: 12px; height: 12px; margin-left: auto; border: 2px solid #3b8dff; border-radius: 50%; }
.search-bar i { margin-left: 0; border-radius: 0; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.search-tabs { display: flex; gap: 1.35rem; margin: .85rem 0; color: #7e8b9e; font-size: .65rem; }
.search-tabs span:first-child { color: #fff; border-bottom: 2px solid #fff; padding-bottom: .35rem; }
.result-card {
  position: relative;
  z-index: 1;
  padding: .9rem;
  border: 1px solid rgba(108, 137, 185, .18);
  border-radius: 12px;
  background: rgba(6, 14, 29, .82);
}
.result-mark {
  float: left;
  width: 24px;
  height: 24px;
  margin-right: .65rem;
  display: grid;
  place-items: center;
  border: 1px solid #b7c0ce;
  border-radius: 50%;
  color: #fff;
  font-size: .72rem;
}
.result-card strong { color: #f3f7ff; font-size: .75rem; }
.result-card small { display: block; color: #4d94ff; font-size: .62rem; }
.result-card em {
  position: absolute;
  right: .85rem;
  top: .8rem;
  padding: .28rem .55rem;
  border-radius: 8px;
  color: #67a5ff;
  background: rgba(43, 91, 221, .18);
  font-size: .6rem;
  font-style: normal;
}
.result-card p { clear: both; margin: .9rem 0 .45rem; color: #72b3ff; font-size: .9rem; line-height: 1.25; }
.rating { color: #d5dde9; font-size: .68rem; }
.rating span { display: inline-block; width: 7px; height: 7px; clip-path: polygon(50% 0, 61% 36%, 98% 36%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 36%, 39% 36%); background: #ffd34d; }
.map-grid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 138px;
  background: radial-gradient(circle at 52% 40%, rgba(53, 117, 255, .38), transparent 30%);
}
.pin {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #67aeff, #1b52ff);
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 0 34px rgba(45, 103, 255, .7);
}
.pin::after {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #10204a;
}

.mini-browser {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: .9rem;
  border: 1px solid rgba(108, 137, 185, .22);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 16, 31, .96), rgba(5, 12, 24, .84));
}
.browser-nav { display: flex; align-items: center; gap: 1rem; color: #9ca8b9; font-size: .57rem; }
.browser-nav strong { margin-right: auto; color: #fff; letter-spacing: .16em; }
.browser-nav button, .site-hero button, .enquiry-form button {
  border: 0;
  border-radius: 5px;
  background: #225fff;
  color: #fff;
  font-size: .6rem;
}
.browser-nav button { padding: .48rem .7rem; border: 1px solid rgba(97,149,255,.72); background: transparent; color: #58a3ff; }
.site-hero { position: relative; z-index: 2; width: 54%; margin-top: 2.3rem; }
.site-hero h4 { margin: 0; color: #fff; font-size: 1.5rem; line-height: 1.05; letter-spacing: -.05em; }
.site-hero h4 span { color: #2b70ff; }
.site-hero p { color: #8d9bad; font-size: .58rem; line-height: 1.55; }
.site-hero button { padding: .55rem .85rem; }
.building {
  position: absolute;
  right: 1rem;
  bottom: 3.5rem;
  width: 45%;
  height: 145px;
  transform: skewY(-13deg);
  background: linear-gradient(140deg, rgba(44, 111, 255, .75), rgba(20, 31, 49, .82));
  clip-path: polygon(24% 18%, 100% 0, 100% 100%, 0 100%, 0 34%);
}
.building i {
  display: inline-block;
  width: 22%;
  height: 28%;
  margin: 7% 4%;
  background: linear-gradient(#ffd690, #5b7eb4);
  opacity: .8;
}
.partner-row {
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .9rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(108,137,185,.18);
  border-radius: 10px;
}
.partner-row span { padding: .7rem .5rem; color: #dfe8f5; font-size: .6rem; border-right: 1px solid rgba(108,137,185,.18); }
.partner-row span:last-child { border-right: 0; }

.enquiry-form {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 1rem;
  border: 1px solid rgba(106, 150, 230, .26);
  border-radius: 10px;
  background: rgba(8, 17, 33, .9);
}
.enquiry-form strong { display: block; margin-bottom: .85rem; color: #fff; font-size: .8rem; }
.enquiry-form label { display: block; margin-bottom: .55rem; color: #aeb8c8; font-size: .58rem; }
.enquiry-form label span {
  display: block;
  margin-top: .22rem;
  padding: .5rem .55rem;
  border: 1px solid rgba(107,139,186,.16);
  border-radius: 5px;
  color: #e8eef9;
  background: rgba(3, 8, 18, .48);
}
.enquiry-form button { width: 100%; margin-top: .2rem; padding: .7rem; font-weight: 700; }
.enquiry-stack {
  position: absolute;
  z-index: 2;
  top: 2.1rem;
  right: 1.3rem;
  width: 40%;
  display: grid;
  gap: 1rem;
}
.enquiry-stack div {
  min-height: 74px;
  padding: 1rem;
  border: 1px solid rgba(107,139,186,.17);
  border-radius: 10px;
  background: rgba(11, 22, 41, .86);
}
.enquiry-stack b { display: block; color: #fff; font-size: .78rem; }
.enquiry-stack span { color: #8d9bad; font-size: .62rem; }
.enquiry-stack i {
  float: right;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #baffce;
  background: rgba(44, 195, 91, .42);
  font-size: .58rem;
  font-style: normal;
}

.ops-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34% 1fr;
  min-height: 300px;
  border: 1px solid rgba(108, 137, 185, .2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(6, 13, 25, .9);
}
.ops-shell aside { padding: 1rem .65rem; border-right: 1px solid rgba(108,137,185,.17); }
.ops-shell aside strong { display: block; margin-bottom: 1rem; color: #fff; font-size: .55rem; }
.ops-shell aside span { display: block; padding: .45rem .5rem; color: #8f9aae; font-size: .55rem; border-radius: 4px; }
.ops-shell aside .active { color: #fff; background: rgba(38, 90, 223, .42); }
.ops-shell main { padding: 1rem; }
.ops-shell h4 { margin: 0 0 .75rem; color: #fff; font-size: 1rem; }
.metric, .invoice-list, .workflow-list {
  padding: .8rem;
  border: 1px solid rgba(108,137,185,.15);
  border-radius: 8px;
  background: rgba(13, 25, 45, .68);
}
.metric small { display: block; color: #8f9aae; font-size: .55rem; }
.metric strong { display: inline-block; margin-top: .25rem; color: #fff; font-size: 1.1rem; }
.metric em { margin-left: .45rem; color: #58d384; font-size: .55rem; font-style: normal; }
.spark {
  float: right;
  width: 80px;
  height: 36px;
  background: linear-gradient(135deg, transparent 10%, #2a69ff 11% 16%, transparent 17% 32%, #2a69ff 33% 38%, transparent 39% 52%, #2a69ff 53% 58%, transparent 59% 72%, #2a69ff 73% 78%, transparent 79%);
}
.invoice-list, .workflow-list { margin-top: .75rem; }
.invoice-list b, .workflow-list b { display: block; margin-bottom: .45rem; color: #fff; font-size: .62rem; }
.invoice-list span, .workflow-list span { display: flex; justify-content: space-between; color: #b9c3d0; font-size: .55rem; padding: .24rem 0; }
.invoice-list i, .workflow-list i { color: #6fdc8d; font-style: normal; }

.pricing { padding-block: clamp(5rem, 8vw, 8rem); border-top: 1px solid var(--border); }
.short-packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--border);
  background: var(--border);
  perspective: 1400px;
  align-items: stretch;
}
.short-package {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: 520px;
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.25rem, 1.8vw, 1.75rem);
  /* No overflow:hidden — the <details> needs room to grow when opened.
     The hover shine on ::before is kept inside via its own border-radius
     and clip-path so the rounded corners still look right. */
  background: rgba(6,12,24,.72);
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.short-package::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  clip-path: inset(0 round inherit);
  background: linear-gradient(115deg, transparent 15%, rgba(85,215,255,.055) 46%, transparent 75%);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}
.short-package::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  clip-path: inset(0 round inherit);
  background: radial-gradient(circle at 50% 0%, rgba(85,215,255,.18), transparent 55%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}
.short-package:hover::before { opacity: 1; transform: translateX(30%); }
.short-package:hover::after { opacity: 1; }
.short-package.featured {
  background: linear-gradient(145deg, rgba(16,58,104,.62), rgba(6,12,24,.88) 64%);
}
.short-package.featured::after {
  background: radial-gradient(circle at 50% 0%, rgba(85,215,255,.34), transparent 60%);
}
.short-package > span {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font: 500 .62rem var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-block;
}
.short-package small {
  position: absolute;
  top: clamp(1.5rem, 2vw, 2rem);
  right: clamp(1.25rem, 1.8vw, 1.75rem);
  z-index: 1;
  display: inline-block;
  width: fit-content;
  margin-left: 0;
  padding: .22rem .5rem;
  border-radius: 99px;
  color: #04101f;
  background: var(--cyan);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: middle;
}
.short-package h3 {
  position: relative;
  z-index: 1;
  margin: 1.1rem 0 .55rem;
  font-size: clamp(1.35rem, 1.6vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.short-package > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.5;
}

/* Deliverable list — clear, scannable, exactly what each package provides */
.package-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  align-content: start;
  margin: 0;
  padding: 1rem 0;
  border-block: 1px solid var(--border);
  list-style: none;
}
.package-highlights li {
  position: relative;
  padding-left: 1.15rem;
  color: #c4cfdb;
  font-size: .76rem;
  line-height: 1.45;
}
.package-highlights li::before {
  content: '';
  position: absolute;
  top: .5em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(85,215,255,.55);
}

.package-details {
  position: relative;
  z-index: 1;
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.package-details summary {
  min-height: 64px;
  padding: .7rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #d9f2ff;
  cursor: pointer;
  list-style: none;
  font-size: .72rem;
  font-weight: 600;
}
.package-details summary::-webkit-details-marker { display: none; }
.package-details summary i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85,215,255,.3);
  border-radius: 50%;
  color: var(--cyan);
  font: 400 .85rem/1 var(--font-mono);
  flex: 0 0 auto;
  transition: border-color .25s ease, background .25s ease;
}
.package-details[open] summary i {
  background: rgba(85,215,255,.12);
  transform: rotate(45deg);
}
.deliverables { padding: .25rem 0 .75rem; }
.deliverable-row {
  padding: .8rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .3rem;
  border-top: 1px solid rgba(95,171,255,.1);
}
.deliverable-row b { color: #e7eef6; font-size: .74rem; font-weight: 600; }
.deliverable-row span { color: var(--text-muted); font-size: .72rem; line-height: 1.5; }

.short-package > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: .5rem;
  margin-top: 0;
  padding: .7rem 0;
  color: #d9f2ff;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.short-package > a::after {
  content: '\2192';
  color: var(--cyan);
  font-size: .95rem;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.short-package > a:hover::after { transform: translateX(4px); }

.demo-entry { padding-block: clamp(5rem, 8vw, 8rem); }
.demo-entry-card { max-width: 1400px; }
.demo-entry-content p { max-width: 45ch; }

#why .why-grid { gap: 0; border-top: 1px solid var(--border); }
#why .why-card { padding: 2.5rem; border: 0; border-right: 1px solid var(--border); border-radius: 0; background: transparent; }
#why .why-card:first-child { padding-left: 0; }
#why .why-card:last-child { border-right: 0; }
#why .why-card p { color: var(--text-muted); }

.process { border-top: 1px solid var(--border); }
.process-grid { grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); }
.process-step { min-height: 220px; padding: 2rem; border: 0; border-right: 1px solid var(--border); border-radius: 0; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child { border-right: 0; }
.process-title { margin-top: 2.5rem; }

.contact {
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 113, 255, .12), transparent 28rem),
    #05070d;
}
.contact-content {
  max-width: 900px;
  padding-inline: 1.25rem;
}
.contact .section-label {
  margin-bottom: 1rem;
  color: #8fa0b6;
  letter-spacing: .18em;
}
.contact .section-title {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.contact .section-title .accent {
  color: #1684ff;
  text-shadow: none;
}
.contact-desc {
  max-width: 620px;
  margin: 1.35rem auto 0;
  color: #9eaabc;
}
.contact-form {
  max-width: 760px;
  margin: 2.75rem auto 0;
  display: grid;
  gap: .75rem;
  text-align: left;
}
.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.contact-field {
  display: block;
  min-width: 0;
  padding: .9rem 1rem .85rem;
  border: 1px solid rgba(114, 142, 184, .28);
  border-radius: 9px;
  background: rgba(12, 18, 31, .86);
  box-shadow: inset 0 1px rgba(255,255,255,.03);
  transition: border-color .25s cubic-bezier(.16, 1, .3, 1), background .25s cubic-bezier(.16, 1, .3, 1);
}
.contact-field:focus-within {
  border-color: rgba(28, 140, 255, .95);
  background: rgba(9, 16, 30, .98);
}
.field-label {
  display: block;
  margin-bottom: .4rem;
  color: #e2ecf8;
  font-size: .66rem;
  font-weight: 700;
  line-height: 1;
}
.contact-input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eef6ff;
  text-align: left;
  font-size: .94rem;
  line-height: 1.45;
}
.contact-input::placeholder { color: #8997aa; opacity: 1; }
textarea.contact-input {
  min-height: 96px;
  resize: vertical;
}
.contact-input-group {
  margin-top: .25rem;
  display: flex;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.contact-submit {
  width: auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 8px;
  background: #1684ff;
  color: #04101f;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(22, 132, 255, .25);
}
.contact-submit:hover {
  background: #3aa0ff;
  transform: translateY(-1px);
}
.contact-submit:active { transform: translateY(0); }
.contact-error { min-height: 1.1rem; }
.contact-alternative {
  margin-top: 1.5rem;
  color: #7f8da1;
  font-size: .82rem;
}

.footer-brand { max-width: 360px; }
.footer-tag { margin: .8rem 0 0; color: var(--text-muted); font-size: .75rem; line-height: 1.55; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.footer-contact a { color: var(--text-muted); text-decoration: none; font-size: .72rem; }
.footer-location, .footer-contact small { color: #526176; font-size: .65rem; }

@media (max-width: 1100px) {
  .short-packages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .outcome-card { grid-template-rows: 340px 1fr; }
  .outcome-picture { height: 340px; }
}
@media (max-width: 760px) {
  .short-strip { grid-template-columns: repeat(2, 1fr); padding: 0 1.25rem; }
  .short-strip span { min-height: 62px; }
  .outcomes-showcase { padding-inline: 1rem; }
  .outcomes-header { margin-bottom: 2rem; text-align: left; }
  .outcomes-header h2 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { grid-template-rows: 318px 1fr; }
  .outcome-picture { height: 318px; padding: 1.1rem; }
  .outcome-copy { min-height: 0; padding: 1.35rem; }
  .browser-nav span { display: none; }
  .site-hero { width: 58%; }
  .enquiry-form { width: 56%; padding: .8rem; }
  .enquiry-stack { width: 38%; right: .9rem; gap: .7rem; }
  .enquiry-stack div { min-height: 64px; padding: .75rem; }
  .ops-shell { grid-template-columns: 31% 1fr; }
  .ops-shell aside span:nth-of-type(2),
  .ops-shell aside span:nth-of-type(3) { display: none; }
  .short-packages { grid-template-columns: 1fr; }
  .short-package {
    min-height: 0;
    grid-template-rows: auto;
    padding: 2rem 1.35rem;
  }
  .short-package small {
    position: static;
    margin-top: .7rem;
  }
  .short-package h3 { font-size: 2rem; }
  .short-package > p { margin-bottom: 1.25rem; }
  .package-highlights { margin-bottom: 0; }
  .package-details summary { min-height: 58px; }
  .short-package > a { margin-top: 1rem; }
  .package-highlights { grid-template-columns: 1fr; }
  .deliverable-row { grid-template-columns: 1fr; gap: .35rem; }
  #why .why-grid, .process-grid { grid-template-columns: 1fr; }
  #why .why-card, #why .why-card:first-child { padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .process-step, .process-step:first-child { min-height: 0; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .contact .section-title {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
    text-align: left;
  }
  .contact-desc { margin-inline: 0; text-align: left; }
  .contact-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; }
  .footer-contact { align-items: flex-start; }
}
