/*
 * BOMTECH core styles
 * Foundations, layout and reusable page components.
 */

:root {
  --c-primary: #4351a5;
  --c-primary-dark: #35428d;
  --c-ink: #1f1f1f;
  --c-muted: #676767;
  --c-surface: #f6f3f2;
  --c-line: #e8e8e8;
  --c-white: #fff;
  --container: 1320px;
  --header-height: 80px;
  --header-offset: 20px;
  --header-max-width: 1389px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  margin: 0;
  background: var(--c-surface);
  color: var(--c-ink);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.icon {
  display: block;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}
.icon__fill {
  fill: currentColor;
  stroke: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.site-container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}
.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 9999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  border-radius: 8px;
}
.section {
  padding-block: 88px;
}
.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 28px;
  border: 2px solid var(--c-primary);
  border-radius: 999px;
  background: var(--c-primary);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: 0.2s ease;
}
.button:hover,
.button:focus-visible {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  transform: translateY(-1px);
}
.button .icon--arrow-right {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.button:hover .icon--arrow-right,
.button:focus-visible .icon--arrow-right {
  transform: translateX(3px);
}
.button--outline {
  background: transparent;
  color: var(--c-primary);
}
.button--outline:hover,
.button--outline:focus-visible {
  color: #fff;
}
.button--small {
  min-height: 48px;
  padding: 11px 24px;
  font-size: 16px;
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--c-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header {
  position: fixed;
  z-index: 50;
  top: var(--header-offset);
  left: 0;
  width: 100%;
}
.site-header__inner {
  display: grid;
  width: min(calc(100% - 50px), var(--header-max-width));
  height: var(--header-height);
  grid-template-columns: clamp(145px, 13vw, 180px) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(16px, 3.6vw, 64px);
  margin-inline: auto;
  padding: 6px clamp(18px, 3.8vw, 57px);
  border-radius: 8px;
  background: #fff;
}
.site-header__brand-slot {
  min-width: 0;
  justify-self: start;
}
.site-header__brand,
.site-header__brand-slot .custom-logo-link {
  display: flex;
  width: clamp(145px, 13vw, 180px);
  height: 67px;
  align-items: center;
}
.site-header__brand img,
.site-header__brand-slot .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.site-header__nav {
  min-width: 0;
  justify-self: center;
}
.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
}
.site-header__menu a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
}
.site-header__menu a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-header__menu a:hover::after,
.site-header__menu a:focus-visible::after,
.site-header__menu .current-menu-item a::after {
  transform: scaleX(1);
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(10px, 1.5vw, 18px);
}
.site-header__nav-actions,
.site-header__toggle {
  display: none;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 0;
  max-height: 100vh;
  overflow: hidden;
  padding-top: 120px;
}
.hero__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  display: grid;
  height: calc(100vh - 120px);
  min-height: 0;
  grid-template-columns: minmax(0, clamp(560px, 50vw, 700px)) minmax(360px, 1fr);
  align-items: center;
  gap: 18px;
}
.hero__copy {
  position: relative;
  z-index: 3;
  padding-top: 0;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.hero h1 span {
  display: block;
  color: #626262;
}
.hero__copy > p {
  max-width: 610px;
  margin: 24px 0 42px;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 300;
  line-height: 1.3;
}
.hero .button {
  min-width: 218px;
}
.hero__product {
  position: relative;
  height: 100%;
  min-height: 0;
}
.hero__product-composite {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -32px;
  width: clamp(580px, 50vw, 950px);
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}
@media (min-width: 1384px) {
  .hero__product-composite {
    right: calc((1320px - 100vw) / 2);
  }
}

.hero__product-mobile-camera,
.hero__note {
  display: none;
}
.hero__product-mobile-camera {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 50%;
  width: clamp(350px, 31vw, 440px);
  height: clamp(470px, 38vw, 540px);
  object-fit: contain;
  transform: translateX(-45%);
}
.hero__note {
  position: absolute;
  z-index: 1;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 74px;
  background: rgba(67, 81, 165, 0.11);
  color: #626262;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.25;
}
.hero__note span {
  display: grid;
  flex: 0 0 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 21px;
  line-height: 1;
}
.hero__note span .icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}
.hero__note--one {
  top: 82px;
  right: 0;
  width: 318px;
}
.hero__note--two {
  top: 340px;
  right: -6px;
  width: 318px;
}
.hero__note--three {
  top: 342px;
  left: -265px;
  width: 330px;
}
.recommendation {
  position: relative;
  overflow: clip;
  padding: 128px 0 76px;
}
.recommendation::before {
  position: absolute;
  z-index: -1;
  top: -62px;
  right: -8%;
  left: -8%;
  height: 132px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  filter: blur(44px);
}
.recommendation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 565px);
  align-items: start;
  gap: 34px;
}
.recommendation__copy {
  padding-top: 22px;
}
.recommendation__copy h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.marker-note {
  width: min(520px, 80%);
  margin: 22px 0 0 auto;
  padding: 15px 34px;
  border-radius: 74px;
  background: rgba(67, 81, 165, 0.1);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.035em;
  text-align: center;
  transform: rotate(-4deg);
}
.recommendation__visual {
  position: relative;
  height: 440px;
}
.recommendation__visual > img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(454px, 100%);
  height: auto;
  aspect-ratio: 454 / 431;
  border-radius: 300px 38px 10px 38px;
  object-fit: cover;
}
.quote-card {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  left: 0;
  display: flex;
  width: min(430px, 100%);
  min-height: 142px;
  align-items: flex-start;
  gap: clamp(16px, 1.5vw, 22px);
  padding: clamp(22px, 2vw, 28px);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.05);
}
.quote-card__icon {
  display: grid;
  flex: 0 0 40px;
  height: 40px;
  place-items: center;
  border-radius: 5px;
  background: var(--c-primary);
  color: #fff;
}
.quote-card__icon .icon {
  width: 23px;
  height: 23px;
}
.quote-card strong,
.quote-card small {
  display: block;
}
.quote-card strong {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.quote-card small {
  margin-top: 9px;
  color: var(--c-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.45;
}
.problem-solution {
  padding: 48px 0 92px;
}
.problem-solution__grid {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 32px;
}
.problem-card,
.solution-card {
  position: relative;
  min-height: 360px;
  padding: 32px 54px;
  border-radius: 46px;
}
.problem-card {
  background: #fff;
}
.solution-card {
  overflow: hidden;
  background-color: var(--c-primary);
  background-image:
    linear-gradient(90deg, rgba(48, 60, 143, 0.92), rgba(67, 81, 165, 0.58)),
    var(--solution-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.round-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  background: rgba(67, 81, 165, 0.12);
  color: var(--c-primary);
}
.round-icon .icon {
  width: 27px;
  height: 27px;
  stroke-width: 2;
}
.round-icon--light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.problem-card h3,
.solution-card h3 {
  margin: 68px 0 16px;
  font-size: 20px;
}
.problem-card ul,
.solution-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
}
.benefit-list {
  padding: 84px 0 110px;
}
.benefit-list__grid {
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(360px, 440px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 54px);
}
.benefit-list h2,
.business-benefits h2,
.software-features h2,
.gallery h2 {
  margin: 0 0 clamp(34px, 3.8vw, 58px);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.decorated-heading {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
}
.decorated-heading > span,
.decorated-heading__row > span,
.decorated-heading__subline {
  min-width: 0;
}
.decorated-heading__sparkle {
  --sparkle-width: clamp(104px, 14vw, 192px);
  display: block;
  flex: 0 1 var(--sparkle-width);
  width: var(--sparkle-width);
  max-width: 38%;
  height: auto;
  margin-left: calc(var(--sparkle-width) * -0.38);
}
.decorated-heading--stacked {
  display: block;
}
.decorated-heading__row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
}
.decorated-heading__subline {
  display: block;
  padding-left: 19%;
}
.benefit-list ol {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  display: grid;
  min-height: 66px;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 22px;
  padding: 10px 22px;
  color: #323232;
  font-size: 18px;
}
.benefit-list li span {
  color: #8c87a0;
  font-size: 15px;
}
.benefit-list li.is-active {
  min-height: 82px;
  border-left: 2px solid var(--c-primary);
  border-radius: 0 6px 6px 0;
  background: rgba(67, 81, 165, 0.08);
  font-weight: 600;
}
.benefit-list li.is-active span {
  color: var(--c-primary);
}
.benefit-list__image {
  width: 100%;
  max-width: 440px;
  height: 500px;
  border-radius: 44px;
  object-fit: cover;
}
.intro-statement {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  text-align: center;
}
.intro-statement__inner {
  position: relative;
  isolation: isolate;
  max-width: 970px;
}
.intro-statement h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.2;
}
.intro-statement p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--c-muted);
  font-size: 18px;
  font-weight: 300;
}
.intro-statement__glow {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(72vw, 650px);
  max-width: none;
  height: auto;
  margin: 0;
  opacity: 0.88;
  transform: translate(-50%, -50%);
  visibility: visible;
  pointer-events: none;
  user-select: none;
}
.business-benefits {
  padding: 72px 0 28px;
}
.business-benefits h2 {
  position: relative;
  max-width: 920px;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.08;
}
.business-benefits__visual {
  position: relative;
  min-height: 520px;
}
.business-benefits__visual img {
  width: 100%;
  height: 470px;
  border-radius: 38px;
  object-fit: cover;
}
.business-benefits__visual p {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(620px, 56%);
  margin: 0;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(246, 243, 243, 0.93);
  color: var(--c-muted);
  font-size: 16px;
  font-weight: 300;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}
.stats-grid__item {
  min-height: 126px;
  padding: 11px 14px;
  border: 1px solid var(--c-line);
  border-radius: 15px;
  background: #fff;
}
.stats-grid strong,
.stats-grid span {
  display: block;
}
.stats-grid strong {
  font-size: 35px;
  font-weight: 300;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.stats-grid__item--compatibility strong {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.stats-grid span {
  margin-top: 3px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  line-height: 1.3;
}
.trust-strip {
  padding: 54px 0 88px;
  background: transparent;
  color: #fff;
}
.trust-strip__grid {
  display: grid;
  min-height: 124px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: var(--c-primary);
}
.trust-strip__grid > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.trust-strip__grid > div:last-child {
  border: 0;
}
.trust-strip strong {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--c-primary);
}
.trust-strip strong .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}
.trust-strip span {
  max-width: 280px;
  font-size: 13px;
  line-height: 1.35;
}
.software-features {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 82px 0;
  border-radius: 40px;
  background: #fff;
}
.software-features__grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(340px, 430px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 4.5vw, 60px);
}
.software-features__title {
  max-width: 520px;
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.feature-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 20px 26px 20px 58px;
  border-bottom: 1px solid #e4e4e4;
  background: transparent;
  color: #444;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.feature-list li::before {
  position: absolute;
  top: 50%;
  left: 26px;
  width: 7px;
  height: 7px;
  background: var(--c-primary);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.feature-list li.is-active {
  z-index: 1;
  min-height: 98px;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.09);
}
.software-features__grid > img {
  width: 100%;
  max-width: 430px;
  height: 620px;
  border-radius: 44px;
  object-fit: cover;
}
.offer {
  overflow: clip;
  padding: 122px 0 126px;
}
.offer__grid {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(240px, 310px) minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 2.4vw, 32px);
}
.offer__support {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
}
.offer__support > img {
  width: 240px;
  height: 150px;
  margin: 0 0 24px;
  border-radius: 18px 130px 18px 18px;
  object-fit: cover;
}
.offer__support h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 400;
}
.offer__support ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--c-muted);
  font-size: 12px;
}
.offer__product-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.offer__product {
  width: 100%;
  max-width: 300px;
  height: 430px;
  margin: 0;
  border-radius: 160px 160px 20px 20px;
  object-fit: cover;
}
.offer__copy {
  padding-bottom: 2px;
}
.offer__copy h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.offer__heading-row {
  max-width: 580px;
}
.offer__heading-line {
  display: block;
}
.offer__heading-line--with-sparkle {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
}
.offer__heading-sparkle {
  display: block;
  flex: 0 0 auto;
  width: clamp(82px, 9vw, 112px);
  height: auto;
}
.offer__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 28px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 300;
  line-height: 1;
}
.offer__price small {
  font-size: 15px;
  font-weight: 400;
}
.offer__price span {
  font: inherit;
}
.offer__copy h3 {
  margin: 0 0 14px;
  font-size: 15px;
}
.offer__copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--c-muted);
  font-size: 12px;
}
.offer__copy li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.offer__check {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  color: var(--c-primary);
  stroke-width: 2.2;
}
.offer__copy .button {
  width: 100%;
  min-height: 54px;
}
.gallery {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 82px 0 94px;
  border-radius: 40px;
  background: #fff;
}
.gallery h2 {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 46px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.gallery__grid a {
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery__grid a:hover img {
  transform: scale(1.025);
}
.contact {
  padding: 112px 0 124px;
  background:
    linear-gradient(rgba(246, 243, 243, 0.32), rgba(246, 243, 243, 0.32)),
    url("../images/hero-bg.webp") center / cover no-repeat;
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(350px, 430px) minmax(0, 650px);
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 70px);
}
.contact-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: 38px 42px;
  border-radius: 10px;
  background: var(--c-primary);
  color: #fff;
}
.contact-card::before,
.contact-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}
.contact-card::before {
  right: -58px;
  bottom: -78px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
}
.contact-card::after {
  right: 35px;
  bottom: 35px;
  width: 115px;
  height: 115px;
  background: rgba(255, 255, 255, 0.11);
}
.contact-card h2 {
  margin: 0;
  font-size: 25px;
}
.contact-card > p {
  width: 240px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.contact-card address {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 19px;
  margin-top: 58px;
  font-style: normal;
  font-size: 13px;
}
.contact-card__line {
  display: flex;
  align-items: center;
  gap: 11px;
}
.contact-card__icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  color: #fff;
}
.contact-card__icon .icon {
  width: 18px;
  height: 18px;
}
.contact-form {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 2px;
}
.contact-form label {
  display: grid;
  gap: 5px;
  color: #696969;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  background: #fff;
  padding: 10px 16px;
  outline: 0;
}
.contact-form input:not([type="checkbox"]) {
  height: 42px;
}
.contact-form textarea {
  min-height: 84px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(67, 81, 165, 0.12);
}
.contact-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 10px;
  font-weight: 400;
}
.contact-form .checkbox input {
  width: 15px;
  height: 15px;
  margin-top: 1px;
}
.contact-form__website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form .button {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  font-size: 14px;
}
.faq {
  width: min(100%, 1440px);
  margin-top: 20px;
  margin-inline: auto;
  overflow: hidden;
  padding: 42px 0 88px;
  border-radius: 32px;
  background: var(--c-white);
}
.faq__grid {
  display: grid;
  width: min(calc(100% - 110px), 1240px);
  grid-template-columns: minmax(0, clamp(500px, 43vw, 620px)) minmax(0, 1fr);
  align-items: start;
  gap: clamp(56px, 7vw, 86px);
}
.faq__heading {
  position: relative;
  width: min(520px, 45vw);
  max-width: none;
  padding-top: 11px;
}
.faq__heading h2 {
  margin: 0;
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.accordion {
  display: grid;
  gap: clamp(20px, 2vw, 29px);
}
.accordion__item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f5f5;
  color: var(--c-ink);
  transition: background-color 180ms ease, color 180ms ease;
}
.accordion__item h3 {
  margin: 0;
}
.accordion__item button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: clamp(72px, 6vw, 82px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(17px, 1.6vw, 21px) clamp(18px, 2vw, 25px);
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.accordion__item button > span:first-child {
  min-width: 0;
}
.accordion__icon {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  flex: 0 0 clamp(38px, 3vw, 42px);
  width: clamp(38px, 3vw, 42px);
  height: clamp(38px, 3vw, 42px);
  border: 5px solid var(--c-white);
  border-radius: 11px;
  background: var(--c-primary);
  background-clip: padding-box;
  transition: transform 180ms ease, border-color 180ms ease;
}
.accordion__icon::before,
.accordion__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--c-white);
  content: "";
  transform: translate(-50%, -50%);
}
.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__item.is-open {
  --faq-notch-scale: 1;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--c-primary);
  color: var(--c-white);
}
.accordion__item.is-open button {
  min-height: clamp(76px, 6vw, 82px);
  align-items: flex-start;
  padding: 24px 86px 8px 31px;
  color: var(--c-white);
}
.accordion__item.is-open button::after {
  position: absolute;
  z-index: 0;
  top: calc(24px * var(--faq-notch-scale));
  right: 0;
  width: calc(72px * var(--faq-notch-scale));
  height: calc(49px * var(--faq-notch-scale));
  background: url("../images/faq-active-notch.svg") 100% 0 / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}
.accordion__item.is-open .accordion__icon {
  position: absolute;
  z-index: 2;
  top: calc(31px * var(--faq-notch-scale));
  right: calc(30px * var(--faq-notch-scale));
  width: calc(35px * var(--faq-notch-scale));
  height: calc(35px * var(--faq-notch-scale));
  flex-basis: auto;
  border: 0;
  border-radius: calc(8px * var(--faq-notch-scale));
  background: var(--c-primary);
}
.accordion__item.is-open .accordion__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.accordion__item.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.accordion__panel {
  max-width: none;
  overflow: hidden;
  padding: 0 clamp(24px, 2.1vw, 30px) clamp(25px, 2.2vw, 32px);
  opacity: 1;
  transition: height 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  will-change: height, opacity;
}
.accordion__panel p {
  max-width: 58ch;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.006em;
}
@media (prefers-reduced-motion: reduce) {
  .accordion__panel {
    transition: none;
  }
}
.lightbox {
  width: min(92vw, 1100px);
  padding: 48px 18px 18px;
  border: 0;
  border-radius: 20px;
  background: #111;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
.lightbox.is-open-fallback {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 9999;
  display: block;
  transform: translate(-50%, -50%);
}
.lightbox img {
  max-width: min(92vw, 1180px);
  max-height: 86vh;
  margin: auto;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  top: 8px;
  right: 14px;
  border: 0;
  background: none;
  color: #fff;
}
.lightbox button .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}

/* Generic WordPress templates. */
.site-main {
  min-height: 70vh;
  padding: 150px 0 100px;
}
.content-layout {
  max-width: 980px;
}
.page-heading {
  margin-bottom: 48px;
}
.page-heading h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.entry-content {
  font-size: 18px;
}
.entry-content > * + * {
  margin-top: 1.4em;
}
.entry-hero {
  width: 100%;
  margin-bottom: 45px;
  border-radius: 32px;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.post-card {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
}
.post-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
}
.post-card h2 {
  font-size: 26px;
}
.error-page {
  position: relative;
  display: grid;
  min-height: 820px;
  place-items: center;
  overflow: hidden;
  padding: 150px 0 80px;
  background: linear-gradient(145deg, var(--c-surface), #fff);
}
.error-page__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 81, 165, 0.18), transparent 65%);
  filter: blur(10px);
}
.error-page__inner {
  position: relative;
  max-width: 900px;
  text-align: center;
}
.error-page__code {
  margin: 0;
  color: rgba(67, 81, 165, 0.17);
  font-size: 220px;
  font-weight: 700;
  line-height: 0.8;
}
.error-page h1 {
  margin: 30px 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}
.error-page__inner > p:not(.error-page__code) {
  max-width: 650px;
  margin: 0 auto 36px;
  color: var(--c-muted);
  font-size: 18px;
}
.error-page .button-group {
  justify-content: center;
}

/* Footer. */
.site-footer {
  /* Visible page-background gap between the FAQ card and footer bar. */
  padding: 32px 0 24px;
  background: var(--c-surface);
  color: #000;
}
.site-footer__bar {
  display: grid;
  width: min(100%, 1440px);
  min-height: 80px;
  grid-template-columns: clamp(145px, 13vw, 180px) minmax(0, 1fr) clamp(180px, 15vw, 216px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  margin: 0 auto;
  padding: 6px clamp(24px, 4.7vw, 67px);
  border-radius: 8px;
  background: #fff;
}
.site-footer__brand,
.site-footer__bar > .custom-logo-link {
  display: flex;
  width: clamp(145px, 13vw, 180px);
  height: 67px;
  align-items: center;
}
.site-footer__brand img,
.site-footer__bar > .custom-logo-link .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.site-footer__nav {
  min-width: 0;
}
.site-footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 45px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
}
.site-footer__menu a {
  white-space: nowrap;
}
.site-footer__cta {
  width: 216px;
}

.wordmark {
  color: #151515;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* Accessibility and resilient media states. */
:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}

.site-header__toggle:focus-visible,
.site-header__menu a:focus-visible,
.site-footer__menu a:focus-visible {
  border-radius: 8px;
}

.form-notice {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.form-notice--success {
  border: 1px solid #2e7d32;
  color: #205b24;
}

.form-notice--error {
  border: 1px solid #b3261e;
  color: #8c1d18;
}

img.is-image-missing {
  visibility: hidden;
}

.has-image-missing {
  background:
    radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.72),
      transparent 32%
    ),
    linear-gradient(135deg, #e9e9f5, #cbd0ef);
}

.hero__background.has-image-missing {
  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(255, 255, 255, 0.34),
      transparent 28%
    ),
    linear-gradient(135deg, #5868bb, #303d8b);
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox button:focus-visible {
  outline-color: #fff;
}

/* Intrinsic sizing safeguards. */
.site-header__inner > *,
.hero__content > *,
.recommendation__grid > *,
.problem-solution__grid > *,
.benefit-list__grid > *,
.software-features__grid > *,
.offer__grid > *,
.contact__grid > *,
.faq__grid > * {
  min-width: 0;
}

.contact-card,
.contact-form,
.site-footer__bar {
  overflow-wrap: anywhere;
}
