@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #082f49;
  --ink-2: #0c425c;
  --ink-soft: #38596b;
  --cyan: #18a9c3;
  --cyan-dark: #0b829b;
  --cyan-soft: #dff6f8;
  --green: #2cb33c;
  --green-soft: #e9f9ec;
  --paper: #ffffff;
  --surface: #f4fafb;
  --surface-2: #eaf6f7;
  --line: #cfe5e9;
  --shadow: 0 24px 70px rgba(8, 47, 73, 0.11);
  --shadow-soft: 0 12px 40px rgba(8, 47, 73, 0.075);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 7vw, 6.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

p {
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding: 112px 0;
  overflow: clip;
}

.section--soft {
  background: var(--surface);
}

.section--dark {
  color: white;
  background: var(--ink);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: white;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

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

.section-head > div:first-child {
  max-width: 760px;
}

.section-head p {
  max-width: 480px;
  margin-bottom: 7px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  content: "";
}

.accent {
  color: var(--cyan);
}

.lead {
  color: var(--ink-2);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.muted {
  color: #67818f;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  max-width: 100%;
}

.button::after {
  font-size: 1.1em;
  content: "→";
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(4px);
}

.button--primary {
  color: white;
  background: var(--cyan);
  box-shadow: 0 14px 28px rgba(24, 169, 195, 0.22);
}

.button--primary:hover {
  background: var(--cyan-dark);
}

.button--dark {
  color: white;
  background: var(--ink);
}

.button--outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.button--outline:hover {
  border-color: var(--cyan);
  background: white;
}

.button--light {
  color: var(--ink);
  background: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan-dark);
  font-weight: 700;
}

.text-link::after {
  content: "↗";
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(207, 229, 233, 0.85);
  box-shadow: 0 8px 34px rgba(8, 47, 73, 0.06);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: 88px;
  height: 49px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--cyan-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
}

.site-nav > a {
  position: relative;
  padding: 9px 0;
  color: #345464;
  font-size: 0.91rem;
  font-weight: 500;
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav > .nav-cta {
  display: inline-flex;
  min-width: 138px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  color: white !important;
  background: var(--ink);
  flex: 0 0 auto;
  line-height: 1.2;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  flex: 0 0 44px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 800px;
  align-items: center;
  padding: calc(var(--header-h) + 72px) 0 86px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f3fbfc 54%, #e9f7f8 100%);
}

.hero::before {
  position: absolute;
  top: -230px;
  right: -150px;
  width: 650px;
  height: 650px;
  border: 92px solid rgba(24, 169, 195, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 72px;
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
}

.hero-copy p {
  max-width: 570px;
  font-size: 1.12rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-card {
  position: absolute;
  inset: 20px 0 0 60px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--ink), #07687d);
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 58px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-card::after {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(44, 179, 60, 0.11);
  filter: blur(12px);
  content: "";
}

.device {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.28));
}

.device--a36 {
  top: 48px;
  left: 16px;
  width: 47%;
  transform: rotate(-7deg);
}

.device--v80 {
  right: 8px;
  bottom: 12px;
  width: 54%;
  transform: rotate(5deg);
}

.device--orbit {
  right: -18px;
  bottom: 24px;
  width: 36%;
  opacity: 0.96;
  transform: rotate(2deg);
}

.floating-note {
  position: absolute;
  z-index: 5;
  right: 14px;
  bottom: 26px;
  width: 210px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 40px rgba(8, 47, 73, 0.15);
  backdrop-filter: blur(16px);
}

.floating-note span {
  display: block;
  color: #83edf1;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.hero-stat {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  color: var(--cyan-dark);
  font-size: 1.1rem;
}

.hero-stat span {
  color: #67818f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Full-width home hero */
.home-hero {
  position: relative;
  display: flex;
  min-height: clamp(520px, 100svh, 720px);
  align-items: center;
  padding: calc(var(--header-h) + 34px) 0 44px;
  overflow: hidden;
  color: var(--ink);
  background-color: #edf8ff;
  background-image: linear-gradient(90deg, rgba(248, 252, 255, 0.99) 0%, rgba(248, 252, 255, 0.95) 33%, rgba(248, 252, 255, 0.62) 49%, rgba(248, 252, 255, 0.08) 70%), url("../images/brand/rsc-hero-nairobi-phones-v3.webp");
  background-position: center;
  background-size: cover;
}

.home-hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 92px;
  background: linear-gradient(180deg, transparent, rgba(231, 246, 248, 0.4));
  content: "";
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
}

.home-hero-copy {
  max-width: 700px;
}

.home-hero-copy .eyebrow {
  margin-bottom: 0;
  color: var(--cyan-dark);
}

.home-hero-copy h1 {
  max-width: 700px;
  margin: 18px 0 16px;
  color: var(--ink);
  font-size: clamp(3.15rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-hero-copy h1 .hero-line {
  display: block;
  color: var(--cyan-dark);
}

.home-hero-copy h1 .hero-line--dark {
  color: var(--ink);
}

.home-hero-copy p {
  max-width: 470px;
  margin-bottom: 0;
  color: #496777;
  font-size: 1.06rem;
}

.home-hero-copy .button-row {
  margin-top: 24px;
}

.home-hero + .trust-bar {
  margin-top: 0;
  border-bottom: 1px solid var(--line);
  background: white;
}

.home-hero + .trust-bar .trust-bar-inner {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 500px;
  padding: calc(var(--header-h) + 88px) 0 88px;
  overflow: hidden;
  background: linear-gradient(145deg, #f4fbfc, #e7f6f8);
}

.page-hero::after {
  position: absolute;
  top: -260px;
  right: -110px;
  width: 640px;
  height: 640px;
  border: 86px solid rgba(24, 169, 195, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 70px;
}

.page-hero-grid > *,
.hero-grid > *,
.two-col > *,
.contact-grid > * {
  min-width: 0;
}

.page-hero h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
}

.page-hero p {
  max-width: 720px;
  font-size: 1.15rem;
}

.page-hero-mark {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink);
}

.page-hero-mark::before {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 45px solid rgba(24, 169, 195, 0.18);
  border-radius: 50%;
  content: "";
}

.page-hero-mark span {
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.07em;
}

.page-hero-mark img {
  position: relative;
  z-index: 2;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 24px 25px rgba(0, 0, 0, 0.28));
}

.page-hero-mark--orbit {
  background: #0a2340;
}

.page-hero-mark--orbit::before {
  display: none;
}

.page-hero-mark--orbit img {
  width: auto;
  height: 300px;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

/* Cards, grids and content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.two-col--center {
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.card p:last-child {
  margin-bottom: 0;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: linear-gradient(145deg, var(--cyan), var(--green));
  font-size: 1.15rem;
  font-weight: 700;
}

.number-box {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, white, var(--surface));
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.value-card:nth-child(7) {
  grid-column: 2;
}

.value-card .value-line {
  width: 48px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), #75e27d);
}

.value-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-soft);
}

.metric {
  padding: 34px;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  color: var(--cyan-dark);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.metric span {
  color: #67818f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Website-focused content components */
.trust-bar {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.trust-item {
  padding: 26px 30px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: #6a8492;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: #9fd5dd;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.service-number {
  display: block;
  margin-bottom: 44px;
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.steps-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 205px;
  padding: 30px;
  border-radius: 22px;
  color: white;
  background: var(--ink);
}

.step-card:nth-child(even) {
  background: var(--cyan-dark);
}

.step-card span {
  display: block;
  margin-bottom: 42px;
  color: #7cebf0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.step-card h3,
.step-card strong {
  display: block;
  color: white;
  font-size: 1.2rem;
}

.step-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li,
.pill-list span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: white;
  font-size: 0.88rem;
  font-weight: 500;
}

.statement-card {
  display: grid;
  min-height: 350px;
  align-content: end;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: white;
  background: linear-gradient(145deg, var(--ink), #0a5f73);
}

.statement-card h2,
.statement-card h3 {
  color: white;
}

.statement-card p {
  color: rgba(255, 255, 255, 0.72);
}

.statement-card p:last-child {
  margin-bottom: 0;
}

.compact-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.compact-value {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.compact-value h3,
.compact-value strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.16rem;
}

.compact-value p,
.compact-value span {
  display: block;
  color: var(--body);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Brand cards and product imagery */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.brand-panel {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.brand-panel--orbit {
  background: linear-gradient(145deg, #075269, #0b8097);
}

.brand-panel-copy {
  position: relative;
  z-index: 3;
  width: 62%;
  padding: 48px;
}

.brand-panel h3 {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.brand-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.brand-tag {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-panel-device {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 53%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 25px rgba(0, 0, 0, 0.25));
}

.brand-panel-device--back {
  z-index: 1;
  right: 115px;
  bottom: 14px;
  width: 39%;
  opacity: 0.86;
  transform: rotate(-7deg);
}

.brand-panel-device--orbit {
  right: -16px;
  bottom: -5px;
  width: 49%;
}

.brand-panel-device--framed {
  right: 18px;
  bottom: 26px;
  width: 41%;
  max-height: 360px;
  border-radius: 18px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.24);
  filter: none;
}

.product-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #eefafa, #bcebee);
}

.product-stage::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border: 52px solid rgba(24, 169, 195, 0.13);
  border-radius: 50%;
  content: "";
}

.product-stage .phone {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(8, 47, 73, 0.22));
}

.product-stage .phone--one {
  top: 36px;
  left: 15px;
  width: 53%;
  transform: rotate(-7deg);
}

.product-stage .phone--two {
  right: 8px;
  bottom: 34px;
  width: 46%;
  transform: rotate(7deg);
}

.product-stage .phone--three {
  bottom: 10px;
  left: 42px;
  width: 47%;
  transform: rotate(-2deg);
}

.product-stage-label {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 47, 73, 0.45), transparent 55%);
  content: "";
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.gallery-card {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.gallery-card--contain img {
  padding: 30px;
  object-fit: contain;
}

.gallery-card--dark {
  border-color: #0a2340;
  background: #0a2340;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.portfolio-gallery-main,
.portfolio-gallery-orbit {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.portfolio-gallery-main {
  gap: 10px;
  padding: 25px;
  background: #eaf8fa;
}

.portfolio-gallery-main img {
  width: 42%;
  max-height: 315px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(8, 47, 73, 0.18));
}

.portfolio-gallery-orbit {
  background: white;
}

.portfolio-gallery-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Process and lists */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 43px;
  right: -19px;
  width: 25px;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.process-step strong {
  display: block;
  margin-bottom: 10px;
  line-height: 1.35;
}

.process-step span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  content: "✓";
}

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

.activity-item {
  min-height: 100px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: 14px;
  color: var(--ink-soft);
  background: white;
}

.activity-item:nth-child(odd) {
  border-left-color: var(--green);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.capability {
  min-height: 150px;
  padding: 28px;
  border-radius: 20px;
  color: white;
  background: var(--ink);
}

.capability:nth-child(3n+2) {
  background: var(--cyan-dark);
}

.capability:nth-child(3n) {
  background: #269f35;
}

.capability strong {
  display: block;
  color: white;
  font-size: 1.2rem;
}

/* Organization chart */
.org-chart {
  overflow-x: auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.org-chart-inner {
  min-width: 960px;
}

.org-node {
  position: relative;
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 14px;
  border-radius: 15px;
  color: white;
  background: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.org-node--board {
  width: 230px;
  margin: 0 auto 34px;
}

.org-node--board::after,
.org-node--ceo::after {
  position: absolute;
  bottom: -34px;
  left: 50%;
  width: 2px;
  height: 34px;
  background: var(--cyan);
  content: "";
}

.org-node--ceo {
  width: 180px;
  margin: 0 auto 44px;
  background: var(--cyan);
}

.org-execs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.org-execs::before {
  position: absolute;
  top: -22px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.org-branch {
  position: relative;
}

.org-branch::before {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 2px;
  height: 22px;
  background: var(--cyan);
  content: "";
}

.org-branch > .org-node {
  background: #176d8b;
}

.org-team {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-left: 24px;
}

.org-team::before {
  position: absolute;
  top: -20px;
  bottom: 34px;
  left: 8px;
  width: 2px;
  background: #70c7d5;
  content: "";
}

.org-team .org-node {
  min-height: 58px;
  color: var(--ink);
  background: white;
  box-shadow: 0 8px 22px rgba(8, 47, 73, 0.06);
}

.org-team .org-node::before {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 16px;
  height: 2px;
  background: #70c7d5;
  content: "";
}

/* CTA and contact */
.cta-band {
  position: relative;
  padding: 76px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: linear-gradient(135deg, var(--ink), #075e72);
  box-shadow: var(--shadow);
}

.cta-band::after {
  position: absolute;
  top: -150px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 64px solid rgba(24, 169, 195, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-band > * {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  max-width: 760px;
  color: white;
}

.cta-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
}

.contact-panel {
  padding: 44px;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink);
}

.contact-panel h2,
.contact-panel h3 {
  color: white;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.contact-item-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: #78e9ee;
  font-weight: 700;
}

.contact-item small {
  display: block;
  color: #78e9ee;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  margin-top: 3px;
  color: white;
  line-height: 1.45;
}

.contact-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface-2), #bfe9ec);
}

.contact-visual img {
  position: absolute;
  right: -70px;
  bottom: -60px;
  width: 82%;
  filter: drop-shadow(0 30px 25px rgba(8, 47, 73, 0.22));
}

.contact-visual-copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding: 54px;
}

.form-panel {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span,
.form-field label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  background: white;
  box-shadow: 0 0 0 4px rgba(24, 169, 195, 0.12);
}

.form-note {
  margin: 16px 0 0;
  color: #718996;
  font-size: 0.82rem;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--cyan-dark);
  font-size: 0.86rem;
  font-weight: 500;
}

/* Footer */
.site-footer {
  padding: 78px 0 28px;
  color: white;
  background: #06293d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.7fr 1fr;
  gap: 54px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 120px;
  height: auto;
  aspect-ratio: 1755 / 792;
  object-fit: contain;
  margin-bottom: 22px;
  padding: 7px;
  border-radius: 12px;
  background: white;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-column h4 {
  margin-bottom: 20px;
  color: white;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
}

.footer-links a:hover {
  color: #7ae7ed;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
  animation: reveal-up 650ms ease both;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  :root {
    --header-h: 74px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 34px 24px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav > a {
    white-space: normal;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 13px 8px;
    font-size: 1.15rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 12px;
  }

  .hero-grid,
  .page-hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy h1 {
    font-size: clamp(3.2rem, 6.3vw, 4.1rem);
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-card {
    inset: 0;
  }

  .page-hero-mark {
    min-height: 310px;
  }

  .page-hero-mark img {
    max-height: 300px;
  }

  .page-hero-mark--orbit img {
    height: 280px;
    max-height: 280px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .three-col,
  .four-col,
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .process-step:not(:last-child)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
  }

  .service-grid,
  .compact-values {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .brand-copy {
    display: none;
  }

  .home-hero {
    min-height: 660px;
    padding: calc(var(--header-h) + 52px) 0 64px;
    background-image: linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.92) 43%, rgba(248, 252, 255, 0.54) 68%, rgba(248, 252, 255, 0.08) 100%), url("../images/brand/rsc-hero-nairobi-phones-v3.webp");
    background-position: 68% center;
  }

  .home-hero-copy h1 {
    max-width: 560px;
    font-size: clamp(2.85rem, 10vw, 4.4rem);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 56px);
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-card {
    border-radius: 28px;
  }

  .device--a36 {
    left: -5px;
    width: 52%;
  }

  .device--v80 {
    width: 60%;
  }

  .floating-note {
    right: 12px;
    bottom: 16px;
    width: 184px;
  }

  .hero-stats,
  .metric-strip,
  .trust-bar-inner,
  .brand-grid,
  .three-col,
  .four-col,
  .value-grid,
  .service-grid,
  .steps-four,
  .compact-values,
  .capability-grid,
  .gallery-grid,
  .portfolio-gallery,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .value-card:nth-child(7) {
    grid-column: auto;
  }

  .metric + .metric {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-bar {
    margin-top: -24px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .form-panel {
    padding: 30px;
  }

  .page-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 60px);
  }

  .page-hero-grid {
    gap: 38px;
  }

  .brand-panel {
    min-height: 610px;
  }

  .brand-panel-copy {
    width: 100%;
    padding: 34px;
  }

  .brand-panel-device {
    width: 67%;
  }

  .brand-panel-device--back {
    right: 90px;
    width: 50%;
  }

  .brand-panel-device--framed {
    right: 26px;
    bottom: 24px;
    width: 46%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }

  .cta-band {
    padding: 42px 28px;
  }

  .contact-panel,
  .contact-visual-copy {
    padding: 32px;
  }

  .contact-visual {
    min-height: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .home-hero-copy .button-row {
    gap: 10px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 3.15rem;
  }

  .brand img {
    width: 78px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .floating-note {
    display: none;
  }

  .card,
  .feature-card {
    padding: 26px;
  }

  .product-stage {
    min-height: 460px;
  }

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