:root {
  --ink: #15323b;
  --ink-deep: #082f3a;
  --muted: #64767e;
  --paper: #fffdf7;
  --white: #ffffff;
  --sky: #e7f8fb;
  --mint: #e9f8ee;
  --peach: #fff0e8;
  --sun-soft: #fff4c9;
  --teal: #13878d;
  --teal-dark: #0b6269;
  --coral: #f36f5b;
  --sun: #f7b733;
  --leaf: #44a65a;
  --blue: #1769c2;
  --line: rgba(21, 50, 59, 0.13);
  --shadow: 0 22px 62px rgba(17, 45, 55, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

::selection {
  color: var(--white);
  background: var(--teal);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 8px clamp(18px, 3.4vw, 54px);
  color: var(--white);
  background:
    linear-gradient(90deg, #083846 0%, #0b747c 52%, #288a5a 100%);
  border-bottom: 4px solid var(--sun);
  box-shadow: 0 12px 28px rgba(7, 58, 70, 0.22);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

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

.header-brand {
  justify-self: start;
}

.brand-logo {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px;
  max-height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  object-position: center;
  padding: 5px;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.footer-logo {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px;
  max-height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  object-position: center;
  padding: 5px;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.brand-name {
  color: var(--white);
  font-size: clamp(1.02rem, 1.34vw, 1.24rem);
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--sun);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle svg {
  width: 19px;
  height: 19px;
}

.main-nav {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.nav-pages,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-pages {
  justify-content: center;
}

.nav-actions {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
  transform: translateY(-1px);
}

.nav-action {
  font-size: 0.82rem;
}

.nav-demo {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
  box-shadow: 0 14px 28px rgba(247, 183, 51, 0.24);
}

.nav-demo:hover {
  background: #f9ad17f0;
}

.nav-demo svg {
  width: 17px;
  height: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--teal);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(46, 100, 215, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.section-panel {
  position: relative;
  isolation: isolate;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 0;
  aspect-ratio: 1717 / 916;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  user-select: none;
}

.hero-slider-track {
  width: 100%;
  height: 100%;
  display: flex;
  transform: translateX(0);
  transition: transform 760ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.hero-slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  object-position: center;
}

.ticker-band {
  overflow: hidden;
  padding: 12px 0;
  color: var(--ink);
  background: var(--sun);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding-left: 12px;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-showcase,
.services-section,
.products-section,
.contact-section,
.process-band,
.kit-band {
  padding: 92px 24px;
}

.section-heading,
.page-hero-copy,
.color-band-inner,
.process-grid,
.kit-band {
  width: min(100%, var(--max));
  min-width: 0;
  margin-inline: auto;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  background: var(--coral);
  border-radius: 99px;
}

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

h1,
.section-heading h2,
.page-hero h1,
.color-band h2,
.kit-copy h2,
.contact-copy h2 {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-heading h1,
.section-heading h2,
.page-hero h1,
.color-band h2,
.kit-copy h2,
.contact-copy h2 {
  max-width: 840px;
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4.6vw, 4.7rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.page-hero-copy p,
.color-band p,
.kit-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.spotlight-grid,
.service-grid,
.product-stage,
.process-grid {
  width: min(100%, var(--max));
  min-width: 0;
  display: grid;
  gap: 18px;
  margin: 0 auto;
}

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

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

.spotlight-card,
.service-card,
.product-card,
.process-step {
  position: relative;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(24, 51, 60, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.spotlight-card:hover,
.service-card:hover,
.product-card:hover,
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 135, 141, 0.3);
  box-shadow: var(--shadow);
}

.spotlight-card {
  min-height: 320px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(231, 248, 251, 0.92));
}

.spotlight-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 232, 0.94));
}

.spotlight-card:nth-child(3) {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(233, 248, 238, 0.94));
}

.spotlight-number,
.product-card span,
.process-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(21, 50, 59, 0.24);
  font-size: 2.45rem;
  font-weight: 950;
  line-height: 1;
}

.spotlight-card svg,
.service-card svg,
.product-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--teal);
}

.spotlight-card:nth-child(2) svg,
.service-card:nth-child(3n + 2) svg,
.product-card:nth-child(2) svg {
  color: var(--coral);
}

.spotlight-card:nth-child(3) svg,
.service-card:nth-child(3n) svg,
.product-card:nth-child(3) svg {
  color: var(--leaf);
}

.spotlight-card h2,
.service-card h3,
.product-card h3,
.process-step h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.7vw, 1.58rem);
  line-height: 1.18;
}

.spotlight-card p,
.service-card p,
.product-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 950;
}

.about-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6vw, 88px) 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 12% 78%, rgba(255, 211, 225, 0.38), transparent 22%),
    #fff1eb;
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(7, 29, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 29, 92, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.about-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  display: grid;
  grid-template-columns: 1.08fr 0.78fr 1fr;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  margin: 0 auto;
}

.about-brand-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 390px);
  padding: 10px 16px 10px 12px;
  color: #071f55;
  background: rgba(255, 241, 235, 0.78);
  border: 1px solid rgba(239, 47, 121, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(21, 50, 59, 0.08);
  transform: translateX(-50%);
}

.about-brand-badge img {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  object-fit: contain;
  padding: 7px;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 31, 85, 0.14);
}

.about-brand-badge strong {
  display: block;
  font-size: 1.85rem;
  line-height: 0.98;
}

.about-brand-badge span {
  display: block;
  margin-top: 4px;
  color: #071f55;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-title {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.18em;
  margin: 0 0 22px;
  color: #061b5c;
  font-family: "Arial Black", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(3.8rem, 6.1vw, 5.9rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.about-title strong {
  color: #ef2f79;
}

.about-tagline {
  max-width: 560px;
  margin: 0;
  color: #071f55;
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  font-weight: 900;
  line-height: 1.25;
}

.about-tagline strong {
  color: #ef2f79;
}

.about-tagline em {
  color: #106bc7;
  font-style: normal;
}

.about-description {
  max-width: 520px;
  margin: 22px 0 28px;
  padding: 18px 0;
  color: #1d2730;
  border-top: 2px dashed rgba(239, 47, 121, 0.42);
  border-bottom: 2px dashed rgba(239, 47, 121, 0.24);
  font-size: 1.04rem;
  line-height: 1.55;
  font-weight: 650;
}

.about-services h2 {
  width: min(100%, 300px);
  min-height: 44px;
  display: grid;
  place-items: center;
  margin: 0 0 20px;
  color: var(--white);
  background: #ef2f79;
  border-radius: 999px;
  font-size: 1.08rem;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(239, 47, 121, 0.2);
}

.about-services {
  display: grid;
  gap: 16px;
}

.about-services article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.about-services h3,
.growth-icons h3 {
  margin: 0 0 4px;
  color: #071f55;
  font-size: 1rem;
  line-height: 1.18;
}

.about-services p,
.growth-icons p,
.growth-panel > p {
  margin: 0;
  color: #26333c;
  font-size: 0.92rem;
  line-height: 1.42;
  font-weight: 650;
}

.about-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 20px rgba(21, 50, 59, 0.14);
}

.about-icon svg {
  width: 25px;
  height: 25px;
}

.about-icon.pink {
  background: #ef2f79;
}

.about-icon.orange {
  background: #ff8a1f;
}

.about-icon.green {
  background: #58ad35;
}

.about-icon.blue {
  background: #1177ba;
}

.about-icon.purple {
  background: #5d42a4;
}

.about-phone-wrap {
  position: relative;
  align-self: start;
  display: grid;
  place-items: center;
  min-height: 710px;
  padding-top: 120px;
}

.paper-plane {
  position: absolute;
  top: 12px;
  right: 8px;
  width: 68px;
  height: 44px;
  background: #f05088;
  clip-path: polygon(0 42%, 100% 0, 70% 100%, 48% 62%, 28% 82%);
  transform: rotate(-9deg);
  opacity: 0.9;
}

.paper-plane::after {
  content: "";
  position: absolute;
  left: -72px;
  top: 38px;
  width: 86px;
  height: 42px;
  border-bottom: 3px dashed rgba(239, 47, 121, 0.5);
  border-radius: 50%;
  transform: rotate(20deg);
}

.about-phone {
  position: relative;
  width: min(100%, 310px);
  min-height: 590px;
  padding: 44px 18px 18px;
  background: #ffffff;
  border: 12px solid #171717;
  border-radius: 42px;
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 104px;
  height: 26px;
  background: #080808;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.phone-top,
.profile-row,
.profile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.phone-top {
  margin-bottom: 20px;
  color: #0c1736;
}

.phone-top svg {
  width: 20px;
  height: 20px;
}

.profile-row {
  align-items: center;
  text-align: center;
}

.profile-logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #0c1736;
  background: #fff9ed;
  border: 3px solid #ef2f79;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.profile-row strong {
  display: block;
  color: #0c1736;
  font-size: 0.98rem;
}

.profile-row span {
  display: block;
  color: #333;
  font-size: 0.66rem;
  font-weight: 700;
}

.profile-bio {
  margin: 18px 0 14px;
  color: #111;
  font-size: 0.78rem;
  line-height: 1.34;
}

.profile-bio strong {
  display: block;
  margin-bottom: 4px;
}

.profile-bio p {
  margin-bottom: 3px;
}

.profile-bio span {
  color: #ef2f79;
  font-weight: 900;
}

.profile-actions button {
  flex: 1;
  min-height: 31px;
  color: #111;
  background: #f3f5f8;
  border: 1px solid #d9dde3;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
}

.profile-actions button:first-child {
  color: var(--white);
  background: #0a84ff;
  border-color: #0a84ff;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0 14px;
  text-align: center;
}

.story-row span {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 58px;
  color: #242c38;
  font-size: 0.58rem;
  font-weight: 800;
}

.story-row span::before {
  content: "";
  position: absolute;
  top: 0;
  width: 38px;
  height: 38px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)) padding-box,
    url("assets/herobanner4.png") center / cover padding-box,
    linear-gradient(135deg, #ef2f79, #ff8a1f, #58ad35) border-box;
  border: 2px solid transparent;
  border-radius: 50%;
}

.story-row span:nth-child(2)::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)) padding-box,
    url("assets/herobanner3.png") center / cover padding-box,
    linear-gradient(135deg, #ef2f79, #ff8a1f, #58ad35) border-box;
}

.story-row span:nth-child(3)::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)) padding-box,
    url("assets/herobanner2.png") center / cover padding-box,
    linear-gradient(135deg, #ef2f79, #ff8a1f, #58ad35) border-box;
}

.story-row span:nth-child(4)::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)) padding-box,
    url("assets/herobanner1.png") center / cover padding-box,
    linear-gradient(135deg, #ef2f79, #ff8a1f, #58ad35) border-box;
}

.story-row svg {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #ef2f79;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.9));
  transform: translateX(-50%);
}

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

.post-grid span {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(7, 31, 85, 0.18), rgba(255, 255, 255, 0)),
    url("assets/herobanner4.png") center / cover;
  border-radius: 5px;
}

.post-grid span:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(239, 47, 121, 0.18), rgba(255, 255, 255, 0)),
    url("assets/herobanner3.png") center / cover;
}

.post-grid span:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(16, 107, 199, 0.18), rgba(255, 255, 255, 0)),
    url("assets/herobanner2.png") center / cover;
}

.post-grid span:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(88, 173, 53, 0.18), rgba(255, 255, 255, 0)),
    url("assets/herobanner1.png") center / cover;
}

.growth-panel {
  align-self: start;
  padding-top: 22px;
}

.growth-cloud {
  width: min(100%, 280px);
  min-height: 96px;
  display: grid;
  place-items: center;
  margin: 0 0 22px auto;
  padding: 18px 24px;
  color: #071f55;
  background: rgba(255, 255, 255, 0.72);
  border: 2px dashed #62b7dc;
  border-radius: 52% 48% 50% 50% / 44% 42% 58% 56%;
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 1.16;
  text-align: center;
  box-shadow: 0 12px 28px rgba(21, 50, 59, 0.1);
}

.growth-panel > h2 {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 10px 22px;
  color: var(--white);
  background: #071f55;
  border-radius: 999px;
  font-size: clamp(1.18rem, 2.1vw, 1.85rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.growth-panel > p {
  max-width: 560px;
  margin-bottom: 28px;
  color: #071f55;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  font-weight: 900;
  text-align: center;
}

.growth-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.growth-icons article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 5px;
  text-align: center;
}

.growth-icons article::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 22px solid #ef2f79;
}

.growth-icons article:nth-child(2)::before {
  border-bottom-color: #ff8a1f;
}

.growth-icons article:nth-child(3)::before {
  border-bottom-color: #58ad35;
}

.growth-icons article:nth-child(4)::before {
  border-bottom-color: #1177ba;
}

.growth-icons article:nth-child(5)::before {
  border-bottom-color: #5d42a4;
}

.growth-icons .about-icon {
  width: 50px;
  height: 50px;
}

.growth-icons h3 {
  font-size: 0.83rem;
  text-transform: uppercase;
}

.growth-icons p {
  font-size: 0.78rem;
}

.why-panel {
  position: relative;
  margin-top: 26px;
  padding: 30px 18px 18px;
  border: 2px dashed rgba(17, 119, 186, 0.35);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
}

.why-panel > h2 {
  position: absolute;
  top: -22px;
  left: 50%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 9px 24px;
  color: var(--white);
  background: #1177ba;
  border-radius: 999px;
  font-size: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #071f55;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.18;
}

.why-grid svg {
  width: 30px;
  height: 30px;
  color: #1177ba;
}

.why-grid article:nth-child(2) svg {
  color: #24a6d9;
}

.why-grid article:nth-child(3) svg {
  color: #071f55;
}

.why-grid article:nth-child(4) svg {
  color: #1177ba;
}

.why-grid article:nth-child(5) svg {
  color: #ef2f79;
}

.about-ribbon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(180px, 0.72fr) minmax(280px, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 16px 22px;
  border: 2px dashed rgba(239, 47, 121, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.ribbon-heart {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #ef2f79;
  border-radius: 50%;
}

.ribbon-heart svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.about-ribbon p {
  margin: 0;
  color: #071f55;
  font-weight: 850;
  line-height: 1.28;
}

.about-ribbon strong {
  color: #071f55;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.about-ribbon em {
  color: #ef2f79;
  font-style: normal;
}

.about-ribbon a {
  grid-column: 3;
  justify-self: center;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 28px;
  color: var(--white);
  background: #ef2f79;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(239, 47, 121, 0.18);
}

.color-band {
  padding: 84px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, #073846 0%, #0b777e 46%, #2b8e5e 100%);
}

.color-band .eyebrow,
.color-band p {
  color: rgba(255, 255, 255, 0.86);
}

.color-band .eyebrow::before {
  background: var(--sun);
}

.color-band h2 {
  color: var(--white);
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.mini-metrics span {
  min-width: 170px;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
}

.mini-metrics strong {
  color: var(--teal-dark);
  font-size: 2rem;
  line-height: 1;
}

.page-hero {
  position: relative;
  padding: 92px 24px 76px;
  overflow: hidden;
  background:
    linear-gradient(120deg, var(--sky), var(--sun-soft) 48%, var(--peach));
}

.page-hero::after,
.redesigned-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(21, 50, 59, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 50, 59, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

.page-hero-pills {
  width: min(100%, var(--max));
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px auto 0;
}

.page-hero-pills span,
.kit-list span,
.contact-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(21, 50, 59, 0.1);
}

.redesigned-section {
  position: relative;
  isolation: isolate;
}

.services-section {
  background:
    linear-gradient(180deg, var(--paper), #f1fbf8);
}

.rich-grid .service-card {
  border-top: 6px solid var(--teal);
}

.rich-grid .service-card:nth-child(3n + 2) {
  border-top-color: var(--coral);
}

.rich-grid .service-card:nth-child(3n) {
  border-top-color: var(--sun);
}

.products-section {
  background:
    linear-gradient(120deg, rgba(255, 240, 232, 0.96), rgba(255, 246, 218, 0.82) 54%, rgba(232, 248, 250, 0.88));
}

.rich-products .product-card {
  min-height: 320px;
  background: rgba(255, 255, 255, 0.9);
}

.process-band {
  background: var(--white);
}

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

.process-step span {
  color: var(--white);
  background: var(--teal);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-size: 1rem;
}

.process-step:nth-child(2) span {
  background: var(--coral);
}

.process-step:nth-child(3) span {
  color: var(--ink);
  background: var(--sun);
}

.kit-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 34px;
  background: var(--paper);
}

.kit-list {
  display: grid;
  gap: 12px;
}

.kit-list svg,
.contact-highlights svg {
  width: 17px;
  height: 17px;
  color: var(--leaf);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  width: min(100%, var(--max));
  min-width: 0;
  margin: 0 auto;
}

.redesigned-contact {
  position: relative;
  padding-block: 86px;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid var(--line);
  border-top: 6px solid var(--sun);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #37515a;
  font-size: 0.91rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbfa;
  border: 1px solid rgba(24, 51, 60, 0.14);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(19, 135, 141, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.15fr) auto;
  gap: 24px;
  align-items: start;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.86);
  background: var(--ink-deep);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-logo {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px;
  max-height: 56px;
  flex-basis: 56px;
  padding: 5px;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.footer-brand .brand-text {
  display: grid;
  gap: 2px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.site-footer p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.42;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
}

.footer-contact-icon.map {
  background: #ef2f79;
}

.footer-contact-icon.mail {
  background: #1177ba;
}

.footer-contact-icon.phone {
  background: #58ad35;
}

.footer-contact-icon.direction {
  background: #ff8a1f;
}

.footer-contact-icon.facebook {
  background: #1769c2;
}

.footer-contact-icon.instagram {
  background: linear-gradient(135deg, #6a4cff, #ef2f79 55%, #ff8a1f);
}

.footer-contact a {
  color: var(--white);
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--sun);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 900;
}

.site-footer nav a:hover {
  color: var(--sun);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.86rem;
}

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

.reveal.can-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.can-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    gap: 14px;
    padding-inline: 18px;
  }

  .main-nav {
    gap: 10px;
  }

  .nav-link {
    padding-inline: 11px;
  }

  .about-layout {
    grid-template-columns: 1fr 0.82fr;
  }

  .growth-panel {
    grid-column: 1 / -1;
    padding-top: 10px;
  }

  .growth-icons {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 7px 12px;
    overflow: visible;
  }

  .brand-logo {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px;
    max-height: 46px;
    flex-basis: 46px;
    padding: 4px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    background:
      linear-gradient(180deg, #083846 0%, #0b747c 100%);
    border-bottom: 4px solid var(--sun);
    box-shadow: 0 20px 32px rgba(7, 58, 70, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-pages,
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-actions {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-actions .nav-demo {
    order: 1;
  }

  .library-action {
    order: 2;
  }

  .erp-action {
    order: 3;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
    padding: 11px 12px;
  }

  .nav-demo {
    justify-content: center;
  }

  .home-showcase,
  .services-section,
  .products-section,
  .contact-section,
  .process-band,
  .kit-band,
  .page-hero {
    padding: 70px 18px;
  }

  .spotlight-grid,
  .service-grid,
  .product-stage,
  .process-grid,
  .kit-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-showcase {
    padding: 58px 18px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-title {
    justify-content: center;
    text-align: center;
  }

  .about-tagline,
  .about-description {
    max-width: 100%;
  }

  .about-phone-wrap {
    min-height: 0;
    padding-top: 112px;
  }

  .paper-plane {
    top: -18px;
    right: 12%;
    transform: scale(0.78) rotate(-9deg);
  }

  .growth-panel {
    padding-top: 0;
  }

  .growth-panel > h2 {
    width: 100%;
    text-align: center;
  }

  .growth-panel > p {
    max-width: 100%;
    text-align: center;
  }

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

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

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

  .about-ribbon {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .about-ribbon strong,
  .about-ribbon a {
    grid-column: 1 / -1;
  }

  .about-ribbon a {
    justify-self: stretch;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-contact p {
    grid-template-columns: 32px minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .brand-name {
    max-width: 180px;
  }

  .section-heading h1,
  .section-heading h2,
  .page-hero h1,
  .color-band h2,
  .kit-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .mini-metrics span {
    width: 100%;
  }

  .about-title {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .about-tagline {
    font-size: clamp(1.18rem, 6vw, 1.55rem);
  }

  .about-services article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
  }

  .about-icon {
    width: 48px;
    height: 48px;
  }

  .about-phone {
    width: min(100%, 292px);
    min-height: 560px;
    padding-inline: 14px;
  }

  .about-brand-badge {
    width: min(100%, 340px);
    gap: 10px;
    padding: 9px 12px;
  }

  .about-brand-badge img {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .about-brand-badge strong {
    font-size: 1.5rem;
  }

  .about-brand-badge span {
    font-size: 0.68rem;
  }

  .growth-icons {
    grid-template-columns: 1fr;
  }

  .growth-cloud {
    margin-inline: auto;
  }

  .why-panel > h2 {
    width: calc(100% - 28px);
    white-space: normal;
    text-align: center;
  }

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

  .why-grid article:last-child {
    grid-column: auto;
  }

  .about-ribbon {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-ribbon strong,
  .about-ribbon a {
    grid-column: auto;
  }
}
