@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --primary: #24a3a3;
  --primary-dark: #157c7c;
  --accent: #4fc9c4;
  --bg: #f5f8fc;
  --text: #16212f;
  --white: #ffffff;
  --border: #d7e3f0;
  --shadow: 0 18px 45px rgba(36, 163, 163, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(8px, -8px, 0) scale(1.01);
    opacity: 0.58;
  }
  100% {
    transform: translate3d(16px, -16px, 0) scale(1.02);
    opacity: 0.4;
  }
}

@keyframes ambientGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(12px, -10px, 0) scale(1.04);
    opacity: 0.62;
  }
  100% {
    transform: translate3d(-8px, 8px, 0) scale(1.06);
    opacity: 0.45;
  }
}

@keyframes edgePulse {
  0%,
  100% {
    opacity: 0.42;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 16px rgba(36, 163, 163, 0.2);
  }
  50% {
    opacity: 0.72;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 0 22px rgba(36, 163, 163, 0.34);
  }
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 64px;
  width: 190px;
  display: block;
  background: transparent;
  object-fit: contain;
}

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

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
}

nav a:hover {
  color: var(--primary-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(135deg, var(--primary) 0%, #1b8f8f 100%);
  color: var(--white);
  padding: 90px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -110px;
  top: -120px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  transform: rotate(18deg);
  z-index: -1;
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.04);
}

.hero::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 9%;
  width: 170px;
  height: 170px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(-18deg);
  z-index: -1;
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.05),
    0 0 0 28px rgba(255, 255, 255, 0.03);
}

.hero .container {
  position: relative;
}

.hero .container::before {
  content: "";
  position: absolute;
  inset: -10px -6px -10px -6px;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.82), transparent 78%);
  animation: gridDrift 18s ease-in-out infinite alternate;
  z-index: -1;
}

.hero .container::after {
  content: "";
  position: absolute;
  inset: -18px;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(36, 163, 163, 0.24), transparent 26%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(36, 163, 163, 0.18), transparent 22%);
  filter: blur(22px);
  opacity: 0.9;
  animation: ambientGlowDrift 12s ease-in-out infinite alternate;
  z-index: -2;
}

.hero-tech-overlay {
  position: absolute;
  top: 28px;
  right: 16px;
  width: min(280px, 36vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  pointer-events: none;
  z-index: 0;
}

.hero-tech-tile {
  min-height: 82px;
  display: grid;
  gap: 6px;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  animation: edgePulse 8s ease-in-out infinite;
}

.hero-tech-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.14) 48%, transparent 88%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.hero-tech-tile:hover::after {
  transform: translateX(100%);
}

.hero-tech-tile svg {
  width: 32px;
  height: 32px;
}

.hero-tech-tile span:last-child {
  font-size: 0.76rem;
  transform: translateY(1px);
}

.hero-tech-tile--ai {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(36, 163, 163, 0.18);
}

.hero-tech-tile--web {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(255, 255, 255, 0.08);
}

.hero-tech-tile--flutter {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(36, 163, 163, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(36, 163, 163, 0.16);
}

.hero-tech-tile--azure {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(7, 117, 185, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(7, 117, 185, 0.16);
}

.hero-tech-tile--wifi {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(18, 183, 165, 0.09));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(18, 183, 165, 0.16);
}

.hero-tech-tile--starlink {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(116, 104, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(116, 104, 255, 0.18);
}

.hero-tech-tile--surveillance {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(20, 74, 99, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(20, 74, 99, 0.16);
}

.hero-tech-tile--ussd {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(215, 85, 56, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(215, 85, 56, 0.16);
}

.hero-tech-tile--payments {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(38, 145, 170, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 47, 61, 0.2), 0 0 16px rgba(38, 145, 170, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero .hero-copy,
.hero .glass-card,
.hero .stats div,
.hero .hero-tech-overlay,
.hero .hero-tech-tile,
.hero .btn {
  filter: drop-shadow(0 0 18px rgba(36, 163, 163, 0.10));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.8;
}

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

h1,
h2,
h3 {
  color: #0f2535;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow,
.glass-card,
.glass-card h3,
.glass-card li,
.glass-card span,
.glass-card strong,
.stats div,
.cta-row .btn,
.cta-row .btn-secondary {
  color: var(--white);
}

.hero-copy .eyebrow,
.panel-label {
  opacity: 0.9;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.06rem;
  max-width: 680px;
  opacity: 0.95;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  background: var(--white);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: var(--shadow), 0 0 18px rgba(36, 163, 163, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(11, 70, 82, 0.24);
}

.btn-small {
  padding: 10px 16px;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 14px rgba(36, 163, 163, 0.14);
}

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

.stats div {
  background: rgba(255, 255, 255, 0.10);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 18px rgba(36, 163, 163, 0.16);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
}

.hero-card {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(36, 163, 163, 0.12));
}

.glass-card {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.10));
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(10, 48, 58, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 18px rgba(36, 163, 163, 0.16);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.32;
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: edgePulse 6s ease-in-out infinite;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.panel-label {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.8;
}

.glass-card ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 700;
}

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

.mini-grid div {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
}

.mini-grid strong {
  display: block;
  font-size: 1.2rem;
}

.trust-banner {
  background: #e9f4f4;
  border-top: 1px solid rgba(36, 163, 163, 0.12);
  border-bottom: 1px solid rgba(36, 163, 163, 0.12);
  padding: 24px 0;
}

.trust-label {
  text-align: center;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 18px;
  min-width: max-content;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  background: var(--white);
  border: 1px solid rgba(36, 163, 163, 0.24);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 8px 20px rgba(16, 81, 92, 0.08);
}

.logo-pill img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 80px 0;
}

.alt-bg {
  background: #edf4fb;
}

.executive-strip {
  background: linear-gradient(180deg, #f8fcfc 0%, #eef8f8 100%);
}

.executive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.executive-points {
  display: grid;
  gap: 16px;
}

.executive-points div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(16, 52, 73, 0.08);
}

.executive-points strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.footer-meta {
  margin-top: 8px;
  opacity: 0.88;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(36, 163, 163, 0.28);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(21, 124, 124, 0.36);
}

.whatsapp-float__icon-image {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.whatsapp-float__label {
  font-size: 0.9rem;
  white-space: nowrap;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 760px;
}

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

.service-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(16, 52, 73, 0.08);
  padding: 22px;
}

.card-visual {
  display: grid;
  place-items: center;
  min-height: 140px;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 1px solid rgba(21, 124, 124, 0.18);
  background:
    linear-gradient(135deg, rgba(36, 163, 163, 0.14), rgba(79, 201, 196, 0.24)),
    rgba(255, 255, 255, 0.8);
  overflow: hidden;
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-visual--service {
  background:
    radial-gradient(circle at top left, rgba(36, 163, 163, 0.22), transparent 45%),
    linear-gradient(135deg, rgba(79, 201, 196, 0.24), rgba(255, 255, 255, 0.95));
}

.card-visual--product {
  background:
    radial-gradient(circle at top right, rgba(36, 163, 163, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(36, 163, 163, 0.14), rgba(245, 248, 252, 0.96));
}

.card-visual--outcome {
  background:
    radial-gradient(circle at center, rgba(79, 201, 196, 0.2), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 247, 247, 0.96));
}

.card-visual--testimonial {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(233, 247, 247, 0.95));
}

.card-visual--case {
  background:
    radial-gradient(circle at bottom left, rgba(36, 163, 163, 0.2), transparent 48%),
    linear-gradient(135deg, rgba(240, 252, 252, 0.98), rgba(217, 245, 245, 0.96));
}

.card-visual img {
  width: 100%;
  max-height: 100%;
  object-fit: fill;
  border-radius: 14px;
  filter: drop-shadow(0 10px 18px rgba(36, 163, 163, 0.18));
}

.service-card:hover .card-visual,
.compare-card:hover .card-visual,
.impact-card:hover .card-visual,
.testimonial-card:hover .card-visual,
.case-card:hover .card-visual {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 16px 32px rgba(36, 163, 163, 0.16);
}

.product-heading {
  margin-top: 24px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.product-feature,
.compare-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(20, 52, 78, 0.12);
  border: 1px solid var(--border);
}

.product-feature {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbfb 100%);
}

.product-badge {
  display: inline-block;
  background: rgba(36, 163, 163, 0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-feature ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.product-compare {
  display: grid;
  gap: 18px;
}

.compare-card {
  padding: 24px;
}

.compare-card-alt {
  background: linear-gradient(180deg, #f8fdfd 0%, #eef8f8 100%);
}

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

.card,
.contact-box {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(20, 52, 78, 0.12);
}

.card {
  padding: 24px;
  border: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.client-strip span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 10px;
  font-weight: 700;
}

.testimonial-grid,
.case-study-grid,
.product-page-grid,
.impact-grid {
  display: grid;
  gap: 18px;
}

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

.case-study-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card,
.case-card,
.product-card,
.impact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(16, 52, 73, 0.08);
}

.impact-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.case-outcome {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary-dark);
  font-weight: 700;
}

.product-page-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.product-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.contact-box {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  background: #fbfdff;
}

.form-note,
.form-message {
  margin: 0;
  font-size: 0.92rem;
}

.form-message {
  min-height: 1.2rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(36, 163, 163, 0.22);
  border-color: var(--primary);
}

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

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 26px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .contact-box,
  .cards,
  .client-strip,
  .product-showcase,
  .service-grid,
  .testimonial-grid,
  .case-study-grid,
  .product-page-grid,
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-tech-overlay {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 330px);
    margin: 0 auto 22px;
  }

  .hero-card {
    max-width: 620px;
    margin: 0 auto;
  }

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

  nav {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 54px 0;
  }

  .nav {
    padding: 12px 0;
  }

  .logo-image {
    height: 50px;
    width: 160px;
  }

  nav {
    justify-content: center;
  }

  .hero-grid,
  .split,
  .contact-box,
  .cards,
  .client-strip,
  .stats,
  .product-showcase,
  .service-grid,
  .testimonial-grid,
  .case-study-grid,
  .product-page-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-tech-overlay {
    width: 100%;
    max-width: 300px;
    gap: 8px;
  }

  .hero-tech-tile {
    min-height: 68px;
  }

  .hero-tech-tile svg {
    width: 28px;
    height: 28px;
  }

  .service-card,
  .product-feature,
  .compare-card,
  .impact-card,
  .contact-box,
  .contact-form {
    gap: 12px;
  }

  .service-card,
  .product-feature,
  .compare-card,
  .impact-card {
    padding: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 11px 12px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 20px 0 24px;
  }

  .btn,
  .btn-small {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.96rem;
  }

  .stats {
    gap: 10px;
  }

  .stats div {
    padding: 14px;
  }

  .glass-card {
    padding: 20px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h1,
  .section-heading h2 {
    margin-bottom: 10px;
  }
}
