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

.services-poster-page {
  position: relative;
  padding: 42px 22px 72px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 29, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 29, 92, 0.04) 1px, transparent 1px),
    #fff5f0;
  background-size: 34px 34px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.services-poster {
  position: relative;
  width: min(100%, 1380px);
  margin: 0 auto;
  color: #071f55;
}

.services-poster-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: start;
  gap: 24px;
  min-height: 252px;
  padding: 4px 18px 20px;
}

.services-title-block {
  justify-self: center;
  max-width: 1080px;
  text-align: center;
}

.services-top-pill,
.services-section-pill,
.ribbon-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--white);
  background: #071f55;
  border-radius: 999px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(7, 31, 85, 0.14);
}

.services-top-pill {
  margin-bottom: 16px;
  padding: 10px 36px;
  font-size: clamp(1.18rem, 2.4vw, 2rem);
}

.services-title-block h1 {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-family: "Arial Black", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5.35vw, 5.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.services-title-block h1 span,
.services-title-block h1 strong {
  white-space: nowrap;
}

.services-title-block h1 strong {
  color: #ef2f79;
}

.services-title-block p {
  max-width: 780px;
  margin: 0 auto;
  color: #071f55;
  font-size: clamp(1.16rem, 2.4vw, 1.9rem);
  font-weight: 850;
  line-height: 1.2;
}

.services-title-block p strong {
  color: #1177ba;
}

.services-brand-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 2px;
  text-align: center;
  text-transform: uppercase;
}

.services-brand-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  padding: 9px;
  background: var(--white);
  border: 2px solid rgba(17, 119, 186, 0.18);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(7, 31, 85, 0.13);
}

.services-brand-card strong {
  color: #071f55;
  font-size: 1rem;
  line-height: 1.22;
}

.services-doodle {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.services-doodle.heart {
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: rgba(239, 47, 121, 0.18);
}

.services-doodle.heart svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.services-doodle.plane {
  top: 164px;
  left: 6px;
  width: 82px;
  height: 54px;
  background: #ef2f79;
  clip-path: polygon(0 42%, 100% 0, 70% 100%, 48% 62%, 28% 82%);
  transform: rotate(-13deg);
}

.services-doodle.plane::after {
  content: "";
  position: absolute;
  left: 60px;
  top: -56px;
  width: 144px;
  height: 80px;
  border-top: 3px dashed rgba(17, 119, 186, 0.22);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.services-doodle.stars {
  top: 18px;
  right: 242px;
  display: flex;
  gap: 8px;
  color: #f7b733;
}

.services-doodle.stars svg {
  width: 28px;
  height: 28px;
}

.services-management-panel,
.services-results-panel,
.services-library-panel {
  position: relative;
  margin-top: 22px;
  padding: 56px 20px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(7, 31, 85, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 31, 85, 0.08);
}

.ribbon-heading {
  position: absolute;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 210px), 620px);
  min-height: 50px;
  padding: 10px 24px;
  background: #ef2f79;
  font-size: clamp(1rem, 2vw, 1.55rem);
  transform: translateX(-50%);
}

.ribbon-heading::before,
.ribbon-heading::after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 25px solid #ef2f79;
  border-bottom: 25px solid #ef2f79;
}

.ribbon-heading::before {
  left: -26px;
  border-left: 26px solid transparent;
}

.ribbon-heading::after {
  right: -26px;
  border-right: 26px solid transparent;
}

.services-management-panel > p {
  max-width: 940px;
  margin: 34px auto 24px;
  color: #111827;
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 650;
  line-height: 1.42;
  text-align: center;
}

.services-management-panel > p strong {
  color: #6d2ea7;
}

.services-management-panel > p em {
  color: #1177ba;
  font-style: normal;
  font-weight: 850;
}

.services-management-panel > p span {
  color: #ef2f79;
  font-weight: 950;
}

.social-bubble {
  position: absolute;
  top: 28px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(7, 31, 85, 0.16);
}

.social-bubble.instagram {
  left: 42px;
  background: linear-gradient(135deg, #6a4cff, #ef2f79 55%, #ff8a1f);
}

.social-bubble.facebook {
  right: 42px;
  background: #1769c2;
  font-family: Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 950;
  line-height: 1;
}

.social-bubble svg {
  width: 42px;
  height: 42px;
}

.services-offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.service-offer {
  min-height: 318px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 22px 14px 18px;
  background: rgba(255, 253, 247, 0.92);
  border: 2px solid rgba(239, 47, 121, 0.12);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 24px rgba(21, 50, 59, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(21, 50, 59, 0.12);
}

.service-offer span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.service-offer svg {
  width: 54px;
  height: 54px;
}

.service-offer h2 {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.service-offer p {
  margin: 0;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.46;
}

.service-offer.planning {
  border-color: rgba(239, 47, 121, 0.18);
}

.service-offer.planning h2,
.service-offer.planning svg {
  color: #ef2f79;
}

.service-offer.planning span {
  background: rgba(239, 47, 121, 0.08);
}

.service-offer.creative h2,
.service-offer.creative svg {
  color: #ff8a1f;
}

.service-offer.creative span {
  background: rgba(255, 138, 31, 0.1);
}

.service-offer.posting h2,
.service-offer.posting svg {
  color: #58ad35;
}

.service-offer.posting span {
  background: rgba(88, 173, 53, 0.1);
}

.service-offer.engagement h2,
.service-offer.engagement svg {
  color: #1177ba;
}

.service-offer.engagement span {
  background: rgba(17, 119, 186, 0.1);
}

.service-offer.growth h2,
.service-offer.growth svg {
  color: #6d2ea7;
}

.service-offer.growth span {
  background: rgba(109, 46, 167, 0.1);
}

.service-offer.reporting h2,
.service-offer.reporting svg {
  color: #13878d;
}

.service-offer.reporting span {
  background: rgba(19, 135, 141, 0.1);
}

.services-results-panel {
  padding-top: 50px;
}

.services-section-pill {
  position: absolute;
  top: -24px;
  left: 50%;
  width: min(calc(100% - 88px), 780px);
  min-height: 50px;
  padding: 10px 24px;
  font-size: clamp(0.96rem, 1.9vw, 1.34rem);
  transform: translateX(-50%);
}

.services-results-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.services-results-grid article {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 14px 26px;
  text-align: center;
  border-right: 1px solid rgba(7, 31, 85, 0.14);
}

.services-results-grid article:last-child {
  border-right: 0;
}

.result-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(7, 31, 85, 0.13);
}

.result-icon svg {
  width: 34px;
  height: 34px;
}

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

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

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

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

.result-icon.purple {
  background: #6d2ea7;
}

.services-results-grid h2 {
  margin: 0;
  color: #071f55;
  font-size: clamp(0.98rem, 1.7vw, 1.22rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.services-results-grid article:nth-child(1) h2 {
  color: #ef2f79;
}

.services-results-grid article:nth-child(2) h2 {
  color: #ff8a1f;
}

.services-results-grid article:nth-child(3) h2 {
  color: #58ad35;
}

.services-results-grid article:nth-child(4) h2 {
  color: #1177ba;
}

.services-results-grid article:nth-child(5) h2 {
  color: #6d2ea7;
}

.services-results-grid p {
  margin: 0;
  color: #111827;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.42;
}

.services-library-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 26px;
  padding: 28px 34px;
}

.library-copy h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #071f55;
  font-size: clamp(1.28rem, 2.5vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.library-copy h2 svg {
  width: 44px;
  height: 44px;
  color: #1177ba;
}

.library-copy h2 strong {
  color: #ef2f79;
}

.library-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.library-copy li {
  position: relative;
  padding-left: 34px;
  color: #071f55;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 800;
  line-height: 1.4;
}

.library-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #ef2f79;
  border-radius: 50%;
}

.library-copy li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 7px;
  height: 11px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.library-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 22px;
  background: rgba(255, 241, 235, 0.8);
  border: 1px solid rgba(239, 47, 121, 0.12);
  border-radius: var(--radius);
}

.library-icons span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #071f55;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.18;
  text-align: center;
}

.library-icons svg {
  width: 36px;
  height: 36px;
  color: #1177ba;
}

.library-icons span:nth-child(2) svg,
.library-icons span:nth-child(5) svg {
  color: #ff8a1f;
}

.library-icons span:nth-child(3) svg {
  color: #13878d;
}

.library-icons span:nth-child(4) svg {
  color: #6d2ea7;
}

.library-icons span:nth-child(6) svg {
  color: #ef2f79;
}

.services-demo-cta {
  width: min(100%, 670px);
  min-height: 86px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 18px;
  margin: 30px auto 0;
  padding: 12px 20px;
  color: var(--white);
  background: #ef2f79;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 20px 38px rgba(239, 47, 121, 0.3);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.services-demo-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(239, 47, 121, 0.36);
}

.services-demo-cta > svg:first-child {
  width: 52px;
  height: 52px;
}

.services-demo-cta > svg:last-child {
  width: 46px;
  height: 46px;
  padding: 8px;
  color: #ef2f79;
  background: var(--white);
  border-radius: 50%;
}

.services-demo-cta span {
  display: grid;
  gap: 2px;
}

.services-demo-cta strong {
  font-size: clamp(1.35rem, 3.2vw, 2.32rem);
  line-height: 1;
  text-transform: uppercase;
}

.services-demo-cta small {
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
  font-weight: 800;
}

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

  .services-poster-hero {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .services-brand-card img {
    width: 98px;
    height: 98px;
  }

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

  .service-offer {
    min-height: 280px;
  }

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

  .services-results-grid article {
    padding-inline: 12px;
  }

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

  .services-poster-page {
    padding: 34px 14px 56px;
  }

  .services-poster-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-inline: 0;
    text-align: center;
  }

  .services-title-block {
    justify-self: stretch;
  }

  .services-brand-card {
    order: -1;
    grid-template-columns: auto minmax(0, max-content);
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .services-brand-card img {
    width: 76px;
    height: 76px;
  }

  .services-doodle.heart,
  .services-doodle.stars {
    display: none;
  }

  .services-doodle.plane {
    top: 130px;
    left: 2px;
    transform: scale(0.72) rotate(-13deg);
  }

  .services-management-panel,
  .services-results-panel,
  .services-library-panel {
    margin-top: 18px;
  }

  .services-management-panel {
    padding: 132px 14px 18px;
  }

  .ribbon-heading {
    top: 18px;
    width: calc(100% - 70px);
    min-height: 46px;
    padding-inline: 14px;
  }

  .social-bubble {
    top: 72px;
    width: 58px;
    height: 58px;
    border-width: 4px;
  }

  .social-bubble.instagram {
    left: 18px;
  }

  .social-bubble.facebook {
    right: 18px;
    font-size: 2.45rem;
  }

  .social-bubble svg {
    width: 29px;
    height: 29px;
  }

  .services-management-panel > p {
    margin-top: 18px;
  }

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

  .services-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .services-results-grid article {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 31, 85, 0.1);
  }

  .services-results-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .services-library-panel {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

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

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

  .services-poster-page {
    padding-inline: 10px;
  }

  .services-top-pill {
    width: min(100%, 330px);
    min-height: 42px;
    padding: 9px 16px;
  }

  .services-title-block h1 {
    font-size: clamp(2.18rem, 13vw, 3.65rem);
  }

  .services-title-block h1 span,
  .services-title-block h1 strong {
    white-space: normal;
  }

  .services-title-block p {
    font-size: clamp(1.02rem, 5.3vw, 1.32rem);
  }

  .services-brand-card {
    grid-template-columns: 1fr;
  }

  .services-brand-card img {
    width: 70px;
    height: 70px;
  }

  .services-brand-card strong {
    font-size: 0.82rem;
  }

  .services-doodle.plane {
    display: none;
  }

  .ribbon-heading {
    width: calc(100% - 42px);
    font-size: 0.82rem;
  }

  .ribbon-heading::before,
  .ribbon-heading::after {
    display: none;
  }

  .services-management-panel {
    padding-top: 138px;
  }

  .services-offer-grid,
  .services-results-grid {
    grid-template-columns: 1fr;
  }

  .service-offer {
    min-height: 0;
    grid-template-columns: 66px minmax(0, 1fr);
    justify-items: start;
    gap: 8px 14px;
    text-align: left;
  }

  .service-offer span {
    grid-row: span 2;
    width: 58px;
    height: 58px;
  }

  .service-offer svg {
    width: 38px;
    height: 38px;
  }

  .services-results-grid article,
  .services-results-grid article:last-child {
    grid-column: auto;
  }

  .services-section-pill {
    width: calc(100% - 28px);
    min-height: 44px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .result-icon {
    width: 58px;
    height: 58px;
  }

  .result-icon svg {
    width: 28px;
    height: 28px;
  }

  .library-copy h2 {
    align-items: flex-start;
    font-size: 1.2rem;
  }

  .library-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 12px;
  }

  .services-demo-cta {
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    gap: 10px;
    min-height: 72px;
    padding: 10px 12px;
  }

  .services-demo-cta > svg:first-child {
    width: 38px;
    height: 38px;
  }

  .services-demo-cta > svg:last-child {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

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

.products-poster-page,
.contact-poster-page {
  position: relative;
  padding: 42px 22px 72px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 29, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 29, 92, 0.04) 1px, transparent 1px),
    #fff5f0;
  background-size: 34px 34px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.products-poster,
.contact-poster {
  position: relative;
  width: min(100%, 1380px);
  margin: 0 auto;
  color: #071f55;
}

.products-hero-card,
.contact-poster-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: start;
  gap: 26px;
  min-height: 250px;
  padding: 8px 18px 26px;
  text-align: center;
}

.products-hero-card > div:first-child,
.contact-poster-hero > div:first-child {
  justify-self: center;
  max-width: 1060px;
}

.products-top-pill,
.contact-top-pill,
.section-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 30px;
  color: var(--white);
  background: #071f55;
  border-radius: 999px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(7, 31, 85, 0.14);
}

.products-top-pill,
.contact-top-pill {
  margin-bottom: 16px;
  font-size: clamp(1.05rem, 2.1vw, 1.72rem);
}

.products-top-pill.small {
  min-height: 40px;
  margin-bottom: 12px;
  padding: 8px 18px;
  background: #ef2f79;
  font-size: 0.96rem;
}

.products-hero-card h1,
.contact-poster-hero h1 {
  margin-bottom: 12px;
  color: #071f55;
  font-family: "Arial Black", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5.6vw, 5.3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.products-hero-card h1 {
  color: #ef2f79;
}

.contact-poster-hero h1 {
  color: #071f55;
}

.products-hero-card p,
.contact-poster-hero p {
  max-width: 900px;
  margin: 0 auto;
  color: #071f55;
  font-size: clamp(1.06rem, 2vw, 1.42rem);
  font-weight: 850;
  line-height: 1.32;
}

.products-brand-card,
.contact-brand-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  text-transform: uppercase;
}

.products-brand-card img,
.contact-brand-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  padding: 9px;
  background: var(--white);
  border: 2px solid rgba(17, 119, 186, 0.18);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(7, 31, 85, 0.13);
}

.products-brand-card strong,
.contact-brand-card strong {
  color: #071f55;
  font-size: 1rem;
  line-height: 1.22;
}

.product-doodle,
.contact-doodle {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.product-plane,
.contact-plane {
  top: 164px;
  left: 10px;
  width: 82px;
  height: 54px;
  background: #ef2f79;
  clip-path: polygon(0 42%, 100% 0, 70% 100%, 48% 62%, 28% 82%);
  transform: rotate(-13deg);
}

.product-plane::after,
.contact-plane::after {
  content: "";
  position: absolute;
  left: 60px;
  top: -56px;
  width: 144px;
  height: 80px;
  border-top: 3px dashed rgba(17, 119, 186, 0.22);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.product-stars,
.contact-stars {
  top: 18px;
  right: 250px;
  display: flex;
  gap: 8px;
  color: #f7b733;
}

.product-stars svg,
.contact-stars svg {
  width: 28px;
  height: 28px;
}

.kit-showcase-panel,
.product-system-panel,
.custom-bag-panel,
.contact-main-panel {
  position: relative;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(7, 31, 85, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 31, 85, 0.08);
}

.kit-showcase-panel {
  padding: 60px 22px 24px;
}

.section-ribbon {
  position: absolute;
  top: -24px;
  left: 50%;
  width: min(calc(100% - 88px), 690px);
  background: #ef2f79;
  font-size: clamp(1rem, 2vw, 1.42rem);
  transform: translateX(-50%);
}

.panel-intro {
  max-width: 890px;
  margin: 0 auto 24px;
  color: #111827;
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 750;
  line-height: 1.42;
  text-align: center;
}

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

.kit-product-card {
  display: grid;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.94);
  border: 2px solid rgba(239, 47, 121, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(21, 50, 59, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.kit-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(21, 50, 59, 0.13);
}

.kit-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.kit-product-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.kit-product-card span {
  justify-self: center;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  color: var(--white);
  background: #071f55;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.kit-product-card h2,
.product-system-panel h2,
.custom-bag-panel h2,
.form-title h2 {
  margin: 0;
  color: #071f55;
  font-size: clamp(1.22rem, 2vw, 1.56rem);
  line-height: 1.1;
}

.kit-product-card:nth-child(1) h2 {
  color: #ef2f79;
}

.kit-product-card:nth-child(2) h2 {
  color: #ff8a1f;
}

.kit-product-card:nth-child(3) h2 {
  color: #1177ba;
}

.kit-product-card:nth-child(4) h2 {
  color: #58ad35;
}

.kit-product-card p,
.product-system-panel p,
.custom-bag-panel p {
  margin: 0;
  color: #111827;
  font-weight: 650;
  line-height: 1.48;
}

.product-system-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

.product-system-panel article {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 24px 18px;
  background: rgba(255, 253, 247, 0.92);
  border: 2px solid rgba(17, 119, 186, 0.12);
  border-radius: var(--radius);
  text-align: center;
}

.product-system-icon,
.contact-action-icon,
.form-title span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(7, 31, 85, 0.13);
}

.product-system-icon svg,
.contact-action-icon svg,
.form-title svg {
  width: 32px;
  height: 32px;
}

.product-system-icon.library {
  background: #1177ba;
}

.product-system-icon.erp {
  background: #6d2ea7;
}

.product-system-icon.app {
  background: #58ad35;
}

.product-system-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #071f55;
  font-size: 0.92rem;
  font-weight: 850;
  list-style: none;
}

.product-system-panel li::before {
  content: "- ";
  color: #ef2f79;
  font-weight: 950;
}

.custom-bag-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 28px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(255, 241, 235, 0.9)),
    linear-gradient(rgba(7, 29, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 29, 92, 0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.custom-bag-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3.3vw, 3rem);
  text-transform: uppercase;
}

.custom-bag-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.custom-bag-features span,
.contact-promise span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  color: #071f55;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(239, 47, 121, 0.12);
  border-radius: var(--radius);
  font-weight: 950;
}

.custom-bag-features svg,
.contact-promise svg {
  width: 22px;
  height: 22px;
  color: #ef2f79;
}

.products-demo-cta {
  width: min(100%, 720px);
  min-height: 86px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 18px;
  margin: 30px auto 0;
  padding: 12px 20px;
  color: var(--white);
  background: #ef2f79;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 20px 38px rgba(239, 47, 121, 0.3);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.products-demo-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(239, 47, 121, 0.36);
}

.products-demo-cta > svg:first-child,
.products-demo-cta > svg:last-child {
  width: 48px;
  height: 48px;
}

.products-demo-cta > svg:last-child {
  padding: 8px;
  color: #ef2f79;
  background: var(--white);
  border-radius: 50%;
}

.products-demo-cta span {
  display: grid;
  gap: 2px;
}

.products-demo-cta strong {
  font-size: clamp(1.28rem, 3vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.products-demo-cta small {
  font-size: clamp(0.88rem, 1.35vw, 1.04rem);
  font-weight: 800;
}

.contact-main-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 26px;
  padding: 28px;
}

.contact-info-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 58px 20px 20px;
  background: rgba(255, 253, 247, 0.88);
  border: 2px solid rgba(239, 47, 121, 0.12);
  border-radius: var(--radius);
}

.contact-info-panel .section-ribbon {
  width: min(calc(100% - 42px), 460px);
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
}

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

.contact-action-grid a {
  display: grid;
  gap: 9px;
  justify-items: center;
  min-height: 166px;
  padding: 18px 14px;
  color: #071f55;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 119, 186, 0.12);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 24px rgba(21, 50, 59, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-action-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(21, 50, 59, 0.12);
}

.contact-action-grid strong {
  font-size: 1.08rem;
  text-transform: uppercase;
}

.contact-action-grid small {
  color: #111827;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

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

.contact-action-icon.map {
  background: #ff8a1f;
}

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

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

.contact-poster-form {
  align-self: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 235, 0.72));
  border: 2px solid rgba(239, 47, 121, 0.16);
  box-shadow: 0 20px 44px rgba(7, 31, 85, 0.12);
}

.form-title {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}

.form-title span {
  background: #ef2f79;
}

.form-title p {
  margin: 4px 0 0;
  color: #071f55;
  font-weight: 800;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .products-hero-card,
  .contact-poster-hero {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .kit-product-grid,
  .contact-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-system-panel {
    grid-template-columns: 1fr;
  }

  .contact-main-panel,
  .custom-bag-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .products-poster-page,
  .contact-poster-page {
    padding: 34px 14px 56px;
  }

  .products-hero-card,
  .contact-poster-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-inline: 0;
  }

  .products-brand-card,
  .contact-brand-card {
    order: -1;
    grid-template-columns: auto minmax(0, max-content);
    justify-content: center;
    align-items: center;
  }

  .products-brand-card img,
  .contact-brand-card img {
    width: 76px;
    height: 76px;
  }

  .product-stars,
  .contact-stars {
    display: none;
  }

  .product-plane,
  .contact-plane {
    top: 130px;
    transform: scale(0.72) rotate(-13deg);
  }

  .kit-showcase-panel {
    padding: 56px 14px 18px;
  }

  .product-system-panel,
  .custom-bag-panel,
  .contact-main-panel {
    padding: 18px;
  }

  .contact-main-panel {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .products-poster-page,
  .contact-poster-page {
    padding-inline: 10px;
  }

  .products-top-pill,
  .contact-top-pill {
    width: min(100%, 330px);
    min-height: 42px;
    padding: 9px 16px;
    font-size: 0.86rem;
  }

  .products-hero-card h1,
  .contact-poster-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.65rem);
  }

  .products-hero-card p,
  .contact-poster-hero p {
    font-size: clamp(0.98rem, 5vw, 1.2rem);
  }

  .products-brand-card,
  .contact-brand-card {
    grid-template-columns: 1fr;
  }

  .products-brand-card img,
  .contact-brand-card img {
    width: 70px;
    height: 70px;
  }

  .products-brand-card strong,
  .contact-brand-card strong {
    font-size: 0.82rem;
  }

  .product-plane,
  .contact-plane {
    display: none;
  }

  .section-ribbon {
    width: calc(100% - 28px);
    min-height: 44px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .kit-product-grid,
  .custom-bag-features,
  .contact-action-grid {
    grid-template-columns: 1fr;
  }

  .kit-product-card img {
    aspect-ratio: 16 / 11;
  }

  .product-system-panel article {
    justify-items: start;
    text-align: left;
  }

  .custom-bag-panel h2 {
    font-size: clamp(1.55rem, 9vw, 2.4rem);
  }

  .products-demo-cta {
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    gap: 10px;
    min-height: 72px;
    padding: 10px 12px;
  }

  .products-demo-cta > svg:first-child,
  .products-demo-cta > svg:last-child {
    width: 36px;
    height: 36px;
  }

  .contact-info-panel {
    padding-inline: 14px;
  }

  .form-title {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .form-title span {
    width: 52px;
    height: 52px;
  }
}
