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

:root {
  --primary: #1d9ea0;
  --primary-dark: #0b5d69;
  --primary-soft: #dff8f7;
  --accent: #3f5cff;
  --accent-soft: #edf1ff;
  --navy: #0f172a;
  --bg: #eef3f8;
  --panel: #ffffff;
  --panel-alt: #f7f9fc;
  --text: #16212f;
  --muted: #53657a;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 45px rgba(11, 93, 105, 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%;
}

.admin-body {
  background: #f8fafc;
}

#admin-wrapper {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.admin-sidebar {
  width: 280px;
  min-height: 100vh;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  box-shadow: 12px 0 30px rgba(15, 23, 42, 0.12);
}

.bg-gradient-primary {
  background: linear-gradient(180deg, #0f172a 0%, #1f2937 100%);
}

.sidebar-brand {
  padding: 10px 8px 18px;
}

.sidebar-brand-logo {
  width: 170px;
  height: auto;
  filter: brightness(0) invert(1);
}

.sidebar-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateX(2px);
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 82px;
}

.admin-topbar-title span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #4b5563;
}

.admin-topbar-title h1 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  color: #111827;
}

.admin-user-pill {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.12);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.admin-page-content {
  min-height: calc(100vh - 82px);
}

.card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.card-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.text-xs {
  font-size: 0.72rem;
}

@media (max-width: 991.98px) {
  #admin-wrapper {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    min-height: auto;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .sidebar-nav .nav-item {
    flex: 1 1 180px;
  }
}

.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;
  box-shadow: inset 0 -24px 54px rgba(5, 30, 37, 0.12);
}

.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));
}

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

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-inline-cta {
  margin-top: 26px;
  margin-bottom: 28px;
}

.hero-wizard {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(6, 32, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0f2535;
}

.wizard-header {
  margin-bottom: 18px;
}

.wizard-badge {
  display: inline-block;
  background: rgba(36, 163, 163, 0.09);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wizard-header h2 {
  margin: 12px 0 0;
  color: #0f2535;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1.1;
}

.wizard-recommendation {
  margin: 12px 0 0;
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.wizard-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid rgba(15, 37, 53, 0.08);
  background: #f5fbfb;
  color: #0f2535;
  border-radius: 16px;
  min-height: 58px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.wizard-option:hover,
.wizard-option.active {
  background: linear-gradient(135deg, rgba(36, 163, 163, 0.12), rgba(42, 197, 193, 0.08));
  border-color: rgba(36, 163, 163, 0.26);
  box-shadow: 0 10px 18px rgba(36, 163, 163, 0.1);
}

.wizard-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(36, 163, 163, 0.12);
  color: var(--primary-dark);
}

.wizard-form {
  display: grid;
  gap: 10px;
}

.wizard-form label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #53657a;
}

.wizard-form select,
.wizard-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.9);
  color: #0f2535;
  font: inherit;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wizard-form select:focus,
.wizard-form textarea:focus {
  outline: none;
  border-color: rgba(36, 163, 163, 0.7);
  box-shadow: 0 0 0 4px rgba(36, 163, 163, 0.12);
}

.wizard-form textarea {
  resize: vertical;
  min-height: 96px;
}

.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(15, 37, 53, 0.08);
  margin-top: 18px;
  padding-top: 16px;
}

.wizard-footer span {
  font-size: 0.9rem;
  color: #53657a;
  font-weight: 600;
}

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

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

  .hero-wizard {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-wizard {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .wizard-options {
    grid-template-columns: 1fr;
  }

  .wizard-option {
    min-height: 56px;
    padding: 12px 13px;
  }

  .wizard-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

.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;
}

.section-cta {
  margin-top: 28px;
  margin-bottom: 0;
}

.section-cta--compact {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(135deg, #0b4d4d 0%, #18b4b0 100%);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(11, 77, 77, 0.28), 0 0 0 4px rgba(24, 180, 176, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.btn::before {
  content: "◉";
  font-size: 0.7rem;
  line-height: 1;
  opacity: 0.9;
  display: inline-block;
  transform: translateY(-1px);
}

.btn::after {
  content: "→";
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 42px rgba(11, 77, 77, 0.36), 0 0 0 6px rgba(24, 180, 176, 0.16);
  filter: brightness(1.12);
  background: linear-gradient(135deg, #0a423f 0%, #1dc8c3 100%);
}

.btn:hover::after {
  transform: translateX(3px);
}

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

.btn-secondary {
  background: linear-gradient(135deg, rgba(12, 93, 90, 0.96), rgba(26, 167, 162, 0.92));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 24px rgba(12, 93, 90, 0.22);
}

.product-feature .cta-row,
.compare-card .cta-row {
  margin: 18px 0 0;
  justify-content: flex-start;
}

.product-feature .btn,
.compare-card .btn {
  min-width: 180px;
  padding-inline: 22px;
}

@media (max-width: 600px) {
  .product-feature .btn,
  .compare-card .btn,
  .cta-row .btn {
    width: 100%;
    min-width: 100%;
    padding: 14px 18px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding: 72px 0;
  }
}

.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 {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #f8fffe 0%, #eefaf9 100%);
  border-top: 1px solid rgba(36, 163, 163, 0.08);
  border-bottom: 1px solid rgba(36, 163, 163, 0.08);
  padding: 24px 0 30px;
  margin-top: -18px;
  border-radius: 26px 26px 0 0;
  box-shadow: none;
}

.trust-label {
  text-align: center;
  margin-bottom: 18px;
  color: rgba(15, 23, 42, 0.78);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  color: var(--primary-dark);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.logo-pill:hover,
.logo-pill:focus-visible {
  background: #ffffff;
  border-color: rgba(36, 163, 163, 0.12);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.logo-pill img {
  max-height: 62px;
  width: auto;
  max-width: 84%;
  display: block;
  object-fit: contain;
  filter: saturate(1.05);
  opacity: 1;
}

@media (max-width: 640px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .logo-pill {
    min-height: 88px;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .logo-pill img {
    max-height: 52px;
    max-width: 88%;
  }
}

.team-page-hero {
  padding-bottom: 28px;
}

.team-page-hero .eyebrow {
  margin-bottom: 12px;
}

.team-page-hero h1 {
  margin-bottom: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.team-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.96) 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 26px;
  padding: 26px 20px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 70px;
  background: linear-gradient(90deg, rgba(36, 163, 163, 0.14), rgba(63, 92, 255, 0.10));
  opacity: 0.75;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.09);
  border-color: rgba(36, 163, 163, 0.12);
}

.team-avatar {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0b5d69 0%, #3dc0c4 100%);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 28px rgba(11, 93, 105, 0.24), inset 0 2px 6px rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.team-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 1.12rem;
  color: var(--navy);
}

.team-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.text-center {
  text-align: center;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section + .section {
  margin-top: 8px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(780px, 78vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(36, 163, 163, 0.28) 18%, rgba(36, 163, 163, 0.14) 50%, rgba(36, 163, 163, 0.28) 82%, transparent 100%);
  opacity: 0.9;
}

.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: 32px;
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.08;
}

.premium-section-heading {
  text-align: left;
  margin-bottom: 28px;
  padding: 24px 26px 16px;
  border-radius: 24px;
  border: 1px solid rgba(36, 163, 163, 0.12);
  background: linear-gradient(135deg, rgba(36, 163, 163, 0.06), rgba(79, 201, 196, 0.08), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 38px rgba(36, 163, 163, 0.08);
}

.premium-section-heading--centered {
  text-align: center;
}

.premium-section-heading--centered h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.premium-section-heading .eyebrow {
  display: inline-flex;
  margin: 0;
  background: rgba(36, 163, 163, 0.08);
  color: var(--primary-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.premium-section-heading h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.premium-split {
  align-items: stretch;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(36, 163, 163, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 250, 0.95));
  box-shadow: 0 20px 40px rgba(15, 37, 53, 0.06);
}

.premium-approach-copy,
.premium-approach-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.premium-approach-copy {
  padding-right: 10px;
}

.premium-approach-copy h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.premium-approach-text {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(36, 163, 163, 0.08);
}

.premium-approach-text p {
  margin: 0;
  color: rgba(15, 37, 53, 0.8);
  font-size: 1.06rem;
  line-height: 1.8;
}

.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: cover;
  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);
}

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

.digital-card,
.process-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 251, 0.96));
  border: 1px solid rgba(36, 163, 163, 0.12);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 38px rgba(19, 50, 75, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.digital-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(79, 201, 196, 0.7));
}

.digital-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 163, 163, 0.2);
  box-shadow: 0 20px 42px rgba(19, 50, 75, 0.12);
}

.digital-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(36, 163, 163, 0.14), rgba(36, 163, 163, 0.04));
  color: var(--primary-dark);
  font-size: 1.8rem;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(36, 163, 163, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-row-centered {
  justify-content: center;
  margin-top: 26px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.pricing-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(19, 50, 75, 0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card-featured {
  background: linear-gradient(180deg, #f4fdfd 0%, #edf9fa 100%);
  border-color: rgba(36, 163, 163, 0.3);
  transform: translateY(-4px);
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(36, 163, 163, 0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: #0f2535;
  letter-spacing: -0.04em;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(15, 37, 53, 0.8);
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.quote-form-wrap {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 24px 64px rgba(15, 37, 53, 0.12), 0 8px 18px rgba(36, 163, 163, 0.08);
}

.quote-form-header {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12, 93, 90, 0.12), rgba(26, 167, 162, 0.18));
  border: 1px solid rgba(36, 163, 163, 0.14);
}

.quote-form-header .eyebrow {
  margin: 0 0 8px;
  color: var(--primary-dark);
}

.quote-form-header h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: #0f2535;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 16px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.floating-field {
  position: relative;
  display: block;
}

.floating-field span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  font-weight: 700;
  color: #526277;
  pointer-events: none;
  background: transparent;
  transition: all 0.18s ease;
  padding: 0 4px;
}

.floating-field input,
.floating-field select,
.floating-field textarea {
  width: 100%;
  min-height: 58px;
  box-sizing: border-box;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 22px 16px 12px;
  font: inherit;
  color: #0f2535;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease, filter 0.18s ease;
}

.floating-field input:hover,
.floating-field select:hover,
.floating-field textarea:hover {
  border-color: rgba(36, 163, 163, 0.44);
  transform: translateY(-1px);
  filter: brightness(1.01);
}

.floating-field textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 28px;
}

.floating-field input::placeholder,
.floating-field textarea::placeholder {
  color: transparent;
}

.floating-field input:focus,
.floating-field select:focus,
.floating-field textarea:focus {
  outline: none;
  border-color: rgba(36, 163, 163, 0.9);
  box-shadow: 0 0 0 4px rgba(36, 163, 163, 0.12), 0 0 18px rgba(36, 163, 163, 0.12);
  background: rgba(255, 255, 255, 0.96);
  animation: fieldGlow 0.35s ease;
}

@keyframes fieldGlow {
  0% { box-shadow: 0 0 0 0 rgba(36, 163, 163, 0.12); }
  50% { box-shadow: 0 0 0 5px rgba(36, 163, 163, 0.18), 0 0 18px rgba(36, 163, 163, 0.18); }
  100% { box-shadow: 0 0 0 4px rgba(36, 163, 163, 0.12), 0 0 18px rgba(36, 163, 163, 0.12); }
}

.floating-field input:focus + span,
.floating-field input:not(:placeholder-shown) + span,
.floating-field select:focus + span,
.floating-field select:valid + span,
.floating-field textarea:focus + span,
.floating-field textarea:not(:placeholder-shown) + span {
  top: 12px;
  transform: translateY(0);
  font-size: 0.72rem;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.96);
}

.premium-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #0c5d5a 0%, #1aa7a2 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 28px rgba(12, 93, 90, 0.26), inset 0 1px 1px rgba(255,255,255,0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.premium-cta:hover,
.premium-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(12, 93, 90, 0.32);
  filter: brightness(1.03);
}

@media (max-width: 900px) {
  .digital-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .contact-box {
    grid-template-columns: 1fr;
  }

  .quote-form-wrap {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .digital-grid,
  .process-grid,
  .pricing-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 20px;
  }

  .quote-form-wrap {
    padding: 18px;
  }
}

.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 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
  border: 1px solid rgba(36, 163, 163, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(79, 201, 196, 0.6));
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 163, 163, 0.2);
  box-shadow: 0 20px 38px rgba(19, 50, 75, 0.12);
}

.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: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.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;
}

.form-message-error {
  color: #b00020;
}

.form-error {
  margin: 4px 0 0;
  color: #b00020;
  font-size: 0.88rem;
}

.input-error {
  border-color: #b00020;
}

.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;
}

.admin-topbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(36, 163, 163, 0.08);
}

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

.admin-brand {
  gap: 14px;
  display: flex;
  align-items: center;
}

.admin-brand-copy p,
.admin-brand-copy h1 {
  margin: 0;
}

.admin-brand-copy p {
  color: rgba(22, 33, 47, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-brand-copy h1 {
  font-size: 1.2rem;
  font-weight: 700;
}

.admin-section {
  padding: 36px 0;
}

.admin-container {
  display: grid;
  gap: 24px;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.admin-action-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-card {
  background: #fff;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(36, 163, 163, 0.1);
  box-shadow: 0 22px 46px rgba(36, 163, 163, 0.08);
}

.admin-card-panel {
  max-width: 680px;
}

.admin-card-full {
  width: 100%;
}

.admin-grid {
  display: grid;
  gap: 20px;
}

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

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

@media (min-width: 1200px) {
  .admin-dashboard-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .admin-card-user {
    grid-column: span 2;
  }
}

@media (min-width: 1600px) {
  .admin-dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-card-user {
    grid-column: 1 / -1;
  }
}

.admin-card-highlight {
  background: linear-gradient(135deg, #f5fbfb 0%, #eef7f8 100%);
}

.admin-card-user {
  border: 1px solid rgba(34, 121, 145, 0.16);
  box-shadow: 0 24px 40px rgba(34, 121, 145, 0.08);
}

.admin-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.admin-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 121, 145, 0.1);
  color: #1f5464;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.admin-card-pill:hover,
.admin-card-pill:focus {
  background: rgba(34, 121, 145, 0.18);
  color: #0f3f4d;
  transform: translateY(-1px);
}

.pill-icon {
  display: inline-flex;
}

.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.admin-card-wide {
  grid-column: span 3;
}

.admin-summary-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.admin-summary-row > div {
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(36, 163, 163, 0.08);
  text-align: center;
}

.admin-summary-row strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.admin-summary-row span {
  color: #526277;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-media-grid,
.admin-user-list {
  display: grid;
  gap: 16px;
}

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

.admin-user-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-user-tile {
  padding: 18px;
  border-radius: 18px;
  background: #f9fbfc;
  border: 1px solid rgba(36, 163, 163, 0.08);
  box-shadow: 0 12px 28px rgba(15, 48, 60, 0.05);
}

.admin-user-tile strong {
  display: block;
  margin-bottom: 8px;
}

.admin-user-tile span,
.admin-user-tile small {
  display: block;
  color: #475569;
}

.lead-filters {
  margin-bottom: 22px;
}

.lead-filter-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  padding: 18px;
  border-radius: 20px;
  background: #f5fafb;
  border: 1px solid rgba(36, 163, 163, 0.08);
}

.lead-filter-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  color: #334155;
}

.lead-filter-form select,
.lead-filter-form input {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #fff;
  color: #0f172a;
}

.lead-filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.lead-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.lead-kpi-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(21, 122, 154, 0.06), rgba(13, 148, 136, 0.06));
  border: 1px solid rgba(36, 163, 163, 0.08);
}

.lead-kpi-card span {
  display: block;
  margin-bottom: 8px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.lead-kpi-card strong {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  color: #0f172a;
}

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

.lead-column {
  min-height: 360px;
  background: linear-gradient(180deg, #0f172a 0%, #111b2f 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.lead-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.08);
}

.status-new {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.18));
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.status-qualified {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(14, 165, 233, 0.18));
  color: #0369a1;
  border: 1px solid rgba(8, 145, 178, 0.12);
}

.status-replied {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(147, 51, 234, 0.18));
  color: #7c3aed;
  border: 1px solid rgba(168, 85, 247, 0.12);
}

.status-won {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.2));
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.executive-kpis .card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 118, 110, 0.92));
  color: #eff6ff;
}

.executive-kpi-card .card-body {
  padding: 1rem 1.1rem;
}

.executive-kpi-card .text-uppercase,
.executive-kpi-card .fs-2 {
  color: #f8fafc;
}

.executive-kpi-primary {
  background: linear-gradient(135deg, #0f172a 0%, #122f3d 100%);
}

.executive-kpi-info {
  background: linear-gradient(135deg, #10263c 0%, #103f61 100%);
}

.executive-kpi-success {
  background: linear-gradient(135deg, #0d3d38 0%, #0e625b 100%);
}

.executive-kpi-warning {
  background: linear-gradient(135deg, #3e2b19 0%, #7a4b2a 100%);
}

.mini-trend {
  display: inline-flex;
  width: 52px;
  height: 8px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.mini-trend span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7dd3fc 0%, #2dd4bf 100%);
}

.lead-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.lead-name {
  color: #111827;
  font-size: 0.98rem;
}

.lead-company {
  margin-top: 4px;
}

.lead-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.06);
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.lead-contact {
  font-size: 0.78rem;
  color: #334155;
  margin-bottom: 0.85rem;
}

.executive-lead-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.lead-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.lead-card p,
.lead-card small {
  margin: 5px 0;
  color: #475569;
}

.lead-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.lead-empty {
  padding: 16px 12px;
  color: #64748b;
  text-align: center;
  border: 1px dashed rgba(100, 116, 139, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.lead-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.lead-detail-box {
  background: #f8fbfc;
  border: 1px solid rgba(36, 163, 163, 0.08);
  border-radius: 20px;
  padding: 20px;
}

.lead-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.lead-detail-list strong {
  color: #0f172a;
}

.admin-media-card {
  border-radius: 18px;
  overflow: hidden;
  background: #f9fbfc;
  border: 1px solid rgba(36, 163, 163, 0.08);
  box-shadow: 0 12px 28px rgba(15, 48, 60, 0.08);
}

.admin-media-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.admin-media-meta {
  padding: 14px;
}

.admin-media-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
  vertical-align: middle;
}

.admin-table th {
  font-weight: 700;
  color: rgba(22, 33, 47, 0.72);
}

.admin-thumb {
  width: 100px;
  max-height: 64px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(36, 163, 163, 0.12);
  background: #fff;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7f8;
  color: #157c7c;
  font-weight: 700;
  font-size: 0.9rem;
}

.admin-badge-muted {
  background: #f3f5f8;
  color: #5b6b7b;
}

.admin-action-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
  color: #324251;
}

.admin-login-section {
  min-height: calc(100vh - 100px);
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  padding: 32px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(36, 163, 163, 0.12);
  box-shadow: 0 28px 62px rgba(36, 163, 163, 0.12);
}

.admin-login-intro {
  margin-bottom: 24px;
}

.admin-login-intro p {
  margin: 0;
  color: #475569;
}

.btn.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(36, 163, 163, 0.18);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(36, 163, 163, 0.08);
}

@media (max-width: 1200px) {
  .lead-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .admin-dashboard-grid,
  .admin-grid-2,
  .lead-detail-grid,
  .admin-summary-row {
    grid-template-columns: 1fr;
  }

  .lead-board {
    grid-template-columns: 1fr;
  }

  .admin-page-header {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 640px) {
  .admin-card,
  .admin-login-card {
    padding: 18px;
  }

  .lead-column {
    min-height: unset;
    padding: 12px;
  }

  .lead-column-header {
    font-size: 0.95rem;
  }

  .status-pill {
    font-size: 0.68rem;
  }

  .executive-lead-actions {
    grid-template-columns: 1fr;
  }

  .lead-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-topbar-title h1 {
    font-size: 1.1rem;
  }

  .sidebar-nav .nav-link {
    padding: 0.7rem 0.75rem;
    font-size: 0.9rem;
  }

  .admin-action-bar {
    justify-content: center;
  }

  .admin-card-header {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-media-grid {
    grid-template-columns: 1fr;
  }
}

.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;
  }

  .map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile-specific tweaks for map sizing */
@media (max-width: 640px) {
  .map-container {
    padding-bottom: 75%; /* slightly taller aspect for phones */
  }
  .map-container iframe {
    min-height: 260px; /* ensure usable tappable area */
  }
}

@media (max-width: 380px) {
  .map-container {
    padding-bottom: 90%; /* very small screens: taller map */
  }
  .map-container iframe {
    min-height: 220px;
  }
}

/* Map card: map fills entire card as background with overlay and content on top */
.map-card {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
}
.map-card .map-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.map-card .map-background {
  background: linear-gradient(180deg,#e9eef2 0%,#d7e4ea 100%);
  background-size: cover;
}
.map-card .map-background iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ensure the iframe covers the card area even if aspect ratios differ */
.map-card .map-background iframe {
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .map-card .map-background iframe {
    width: 140%;
    height: 140%;
  }
}

@media (max-width: 480px) {
  .map-card .map-background iframe {
    width: 180%;
    height: 180%;
  }
}
.map-card .map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none; /* allow clicks to reach the iframe */
  transition: background 200ms ease;
}
.map-card .map-content {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  color: #fff;
  padding: 20px;
  max-width: 420px;
  background: rgba(0,0,0,0.45);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.map-card .map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  z-index: 4;
  pointer-events: none;
}

.map-controls {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-small { padding: 8px 12px; font-size: 0.9rem; border-radius: 6px; }
.map-card:hover .map-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.28) 100%); }

@media (max-width: 900px) {
  .map-card { min-height: 360px; }
}
@media (max-width: 640px) {
  .map-card { min-height: 300px; }
  .map-card .map-content { padding: 16px; max-width: calc(100% - 40px); left: 50%; transform: translateX(-50%); top: 18px; }
  .map-card .map-pin { transform: translate(-50%, -60%); }
}

  .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;
  }
}
