*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
  scrollbar-width: thin;
  scrollbar-color: #c5c9d8 var(--paper);
  scrollbar-gutter: stable;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track {
  background: var(--paper);
}
html::-webkit-scrollbar-thumb {
  background: #c5c9d8;
  border-radius: 999px;
  border: 2px solid var(--paper);
}
html::-webkit-scrollbar-thumb:hover {
  background: #9aa3b8;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background-color: var(--paper);
  background-image: url("../img/bg/Ellipse-1629.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100dvh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 10000;
  background: #111;
  color: #fff;
  padding: .6rem 1rem;
  border-radius: .6rem;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  color: #333;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  margin: 0 0 .75rem;
}

p.eyebrow { font-size: 1.25rem; }

.display {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  text-align: center;
}

.display .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 60rem;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.125rem);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section-tight { padding-top: 1.5rem; }

h2 {
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: clamp(1.35rem, 2.5vw, 2.5rem);
}
h3 { font-weight: 600; letter-spacing: -0.02em; }

.site-header {
  position: relative;
  z-index: 50;
  min-height: 92px;
  display: flex;
  align-items: center;
  background: transparent;
}

.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 1.5rem), 90rem);
  gap: .75rem;
}

.logo img {
  height: 4.05rem;
  width: auto;
}

.header-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.desktop-nav > a,
.nav-drop > button {
  padding: 13px 20px;
  color: #000;
  border: 0;
  background: none;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-drop > button::after {
  content: "";
  display: inline-block;
  margin-left: .35rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}

.nav-drop { position: relative; }
.nav-drop-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: #fff;
  padding: .25rem 0;
  display: none;
  box-shadow: 0 10px 28px rgba(15, 18, 40, .1);
  z-index: 40;
}
.nav-drop:hover .nav-drop-list,
.nav-drop:focus-within .nav-drop-list {
  display: grid;
}
.nav-drop-list a {
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #33373d;
  text-transform: none;
}

.menu-toggle {
  width: 42px;
  height: 33px;
  border: 0;
  border-radius: 3px;
  background: rgba(0, 0, 0, .05);
  color: #111;
  display: none;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bars {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  position: relative;
}
.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}
.menu-toggle .bars::before { top: -7px; }
.menu-toggle .bars::after { top: 7px; }

.header-cta { justify-self: end; }

a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border: 0;
  border-radius: var(--pill);
  padding: 12px 24px;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .5px;
  line-height: 1.2;
  cursor: pointer;
  color: #fff;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6415b6;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6415b6;
  --bs-btn-active-border-color: transparent;
  background-image: var(--grad-brand);
  background-color: #7a4bff;
  box-shadow: none;
  white-space: nowrap;
  text-decoration: none;
}
a.btn:hover,
button.btn:hover,
a.btn:focus-visible,
button.btn:focus-visible {
  color: #fff;
  background-image: var(--grad-brand);
  background-color: #6415b6;
  border-color: transparent;
}

.btn .circle {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: inherit;
}
.btn .circle svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

a.btn-ghost,
button.btn-ghost {
  background: #fff;
  background-image: none;
  color: var(--purple-deep);
  box-shadow: none;
}

.btn-ghost:hover { color: var(--blue-deep); }

.hero {
  padding: clamp(2.5rem, 8vw, 8rem) 0 2rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 1rem;
  align-items: center;
}

.hero .eyebrow {
  text-align: left;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  background: linear-gradient(to right, #02bfff, #792b99);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .display,
.hero .lead { text-align: left; }
.hero .lead { margin-left: 0; }

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(115%, 36rem);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.photo-cta-band { padding: 0 0 3rem; margin-top: -3rem; }
.photo-cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-cta {
  background: linear-gradient(260deg, #f6f6f7, #e4e5ef);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,.16);
}
.photo-cta img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.photo-cta .btn { width: 100%; justify-content: center; border-radius: 0 0 10px 10px; margin-top: -.25rem; }

.stats {
  margin: 2rem 0 0;
  width: 100%;
  max-width: 52rem;
  min-height: 12rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 0 2px transparent;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #7ad4ff, #d9a6ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat {
  padding: 0 .8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 12rem;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #01CBFF 4%, #01CBFF 96%, transparent);
}

.stat img {
  width: 3rem;
  height: 3rem;
  margin: 0 auto .7rem;
  object-fit: contain;
}

.stat strong {
  display: block;
  color: #1a1a1a;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.stat strong,
.stat strong * { color: inherit; }

.stat .label {
  display: block;
  margin-top: .35rem;
  color: #5c5c68;
  font-weight: 500;
  font-size: 1.25rem;
}

.center { text-align: center; }
.blue { color: var(--blue); }
.purple { color: var(--purple); }
.title-accent {
  color: var(--purple);
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-weight: 600;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  justify-self: center;
  justify-items: center;
}

.service-card {
  background: linear-gradient(180deg, #efebff 0%, #e4e8ff 100%);
  border-radius: 1.4rem;
  padding: 1.5rem;
  min-height: 20rem;
  max-width: 30rem;
  min-width: 20rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(40, 50, 90, .06);
}

.service-card h3 {
  margin: 0 0 2rem;
  background: #fff;
  border-radius: 999px;
  text-align: center;
  padding: .7rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2a2a32;
  box-shadow: 0 6px 16px rgba(20, 24, 40, .06);
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0 0.4rem;
  display: grid;
  gap: 1rem;
  color: #2a2a32;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.service-card li i {
  color: #7b7b88;
  width: 1.55rem;
  height: 1.55rem;
  font-size: 1.35rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card .more {
  margin-top: auto;
  padding-top: 1.4rem;
  text-align: right;
  color: var(--purple-deep);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}

.section-intro {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}
.section-intro .kicker { color: var(--blue); font-weight: 400; font-size: clamp(1.5rem, 3vw, 1.5rem); }
.section-intro h2 {
  color: var(--purple);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  margin: 1rem 0 1rem;
}
.section-intro p { margin: 0 auto; max-width: 80rem; color: var(--text); }
.section-intro .values { justify-content: center; font-weight: 500; }

.split img.cover {
  width: 100%;
  border-radius: 1.6rem;
  object-fit: cover;
}
.split img.cover--crop-y {
  aspect-ratio: 1157 / 1126;
  height: auto;
  object-position: center;
}

.kicker { color: var(--purple); font-weight: 500; margin: 0 0 .5rem; }

.values {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.values i { color: var(--blue); margin-right: .4rem; }

.delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.delivery h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #6f7cff;
  margin: 0 0 2rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
  gap: 2.5rem 3.5rem;
  align-items: start;
}
.story__year {
  padding-top: .2rem;
  text-align: center;
}
.story__mark {
  margin: .35rem 0 .4rem;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: .9;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story__year p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}
.story h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}
.story-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: story;
}
.story-steps li {
  position: relative;
  padding-top: 1.1rem;
  border-top: 2px solid #dce3f5;
}
.story-steps li::before {
  counter-increment: story;
  content: counter(story, decimal-leading-zero);
  display: block;
  margin-bottom: .55rem;
  color: #2575FC;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.story-steps strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 1.05rem;
}
.story-steps p { margin: 0; color: var(--muted); }

.scope-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.75rem;
  margin: .35rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: scope;
}
.scope-list li {
  counter-increment: scope;
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: .7rem;
  align-items: center;
  padding: .82rem 0;
  border-bottom: 1px dashed #d4d8e6;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.scope-list li::before {
  content: counter(scope, decimal-leading-zero);
  color: #2575FC;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem 3rem;
  align-items: center;
  justify-items: center;
  margin-top: 1.5rem;
}
.partner-logos img {
  width: auto;
  max-width: 11rem;
  max-height: 3.25rem;
  height: auto;
  object-fit: contain;
}

.logo-carousel { position: relative; }
.logo-carousel__viewport {
  overflow: hidden;
}
.logo-carousel__track {
  display: flex;
  transition: transform .45s ease;
}
.logo-slide {
  flex: 0 0 25%;
  padding: .6rem;
}
.logo-slide .logo-card {
  background: #fff;
  border-radius: 1rem;
  min-height: 6.5rem;
  display: grid;
  place-items: center;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(30, 36, 70, .05);
}
.logo-slide img {
  max-height: 3.4rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.logo-carousel__dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 1rem;
}
.logo-carousel__dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 99px;
  background: #d7dbe6;
  padding: 0;
  cursor: pointer;
}
.logo-carousel__dots button.is-on {
  width: 22px;
  background: #7aa7ff;
}

.saas {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
.saas .kicker { color: #9aa0ad; }
.saas h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin: .15rem 0 1rem;
  color: #111;
}

.saas--v2 {
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}
.saas--v2 .saas-intro {
  text-align: center;
}
.saas--v2 .saas-intro h2 {
  margin-inline: auto;
  font-size: clamp(1.35rem, 2.5vw, 2.5rem);
  font-weight: 600;
  color: inherit;
  text-wrap: balance;
}
.saas--v2 .saas-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.saas-cards {
  display: grid;
  gap: 1rem;
}
.saas-card {
  background: #fff;
  border-radius: 1.4rem;
  padding: 2.4rem 2rem 2rem;
  box-shadow: 0 16px 40px rgba(30, 36, 70, .06);
  position: relative;
  overflow: hidden;
  min-height: 22rem;
}
.saas-cards .saas-card { min-height: 0; }
.saas-mark {
  position: absolute;
  color: #f4eef9;
  font-size: 6.4rem;
  pointer-events: none;
  line-height: 1;
}
.saas-mark-a { left: 8%; top: 20%; }
.saas-mark-b { right: 10%; bottom: 8%; }
.saas-card h3 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  position: relative;
}
.saas-card p { position: relative; }
.saas-card .btn { margin-top: 1.2rem; position: relative; float: right; }

.product-shot {
  margin-top: 2.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.product-shot img { width: 100%; }

.mobile-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.chips {
  display: grid;
  gap: .8rem;
  justify-items: start;
}

.chip {
  background: #fff;
  border-radius: 1rem;
  padding: .7rem 1rem;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.cta-band {
  background: #fff;
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1.4rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem 2rem;
  align-items: center;
  width: 100%;
  margin-inline: auto;
}

.cta-title {
  margin: 0 0 .45rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  color: #3494ff;
}

.cta-sub {
  margin: 0 auto 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 400;
  color: #111;
  max-width: 44rem;
}

.cta-band .q {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: min(26%, 11rem);
  opacity: .45;
  pointer-events: none;
}

.mark {
  width: 12rem;
  height: 10rem;
  border-radius: 50%;
  background: #fff url("../img/logo/Frame-1000017414.png") no-repeat -10% 22% / 260% auto;
  box-shadow: 0 10px 28px rgba(20, 24, 40, .08);
}

.mark img { display: none; }

.site-footer {
  padding: 3rem 0 1.2rem;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(2rem, 8vw, 10rem);
}
.footer-brand { display: grid; gap: .2rem; }

.site-footer h2 { font-size: 1.15rem; margin: 0 0 .8rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer a:hover { color: var(--blue-deep); }

.news {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  margin-top: .7rem;
  max-width: 22rem;
}

.news input {
  border: 0;
  flex: 1;
  padding: .75rem 1rem;
  min-width: 0;
  outline: none;
  box-shadow: none;
}
.news input:focus,
.news input:focus-visible,
.news input:active {
  border: 0;
  outline: none;
  box-shadow: none;
}

.news button {
  border: 0;
  width: 2.8rem;
  background: var(--grad-brand);
  color: #fff;
  cursor: pointer;
}

.socials { display: flex; gap: 1rem; margin-top: 3rem; }
.socials a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
}

.legal {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  margin-bottom: -1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

.lang-switch {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 0;
  background: #fff;
  border-radius: 999px;
  padding: .4rem .7rem;
  box-shadow: 0 8px 24px rgba(20, 24, 40, .12);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
}

.lang-switch__btn img,
.lang-switch__menu img {
  width: 18px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-switch__chev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid #111;
}

.lang-switch:has(:popover-open) .lang-switch__chev,
.lang-switch.is-open .lang-switch__chev {
  border-bottom: 0;
  border-top: 5px solid #111;
}

.lang-switch__menu {
  inset: auto 1.1rem 3.5rem auto;
  margin: 0;
  border: 0;
  background: #fff;
  border-radius: .85rem;
  padding: .45rem 0;
  min-width: 8rem;
  box-shadow: 0 12px 32px rgba(20, 24, 40, .14);
}

.lang-switch__menu:is(:popover-open, .\:popover-open) { display: grid; }

.lang-switch__menu a {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .85rem;
  font-size: .92rem;
}

.lang-switch__menu a:hover,
.lang-switch__menu a[aria-current="true"] { background: #f4f6fb; }

.nav-dialog {
  border: 0;
  border-radius: 1.5rem;
  padding: 0;
  width: min(28rem, calc(100% - 1.5rem));
  box-shadow: var(--shadow);
}
.nav-dialog::backdrop { background: rgba(12, 16, 32, 0.35); }
.nav-dialog nav { padding: 1.4rem 1.3rem 1.6rem; display: grid; gap: .35rem; }
.nav-dialog a {
  padding: .7rem .8rem;
  border-radius: .8rem;
  font-weight: 700;
}
.nav-dialog a:hover,
.nav-dialog a[aria-current="page"] { background: #eef3ff; color: var(--blue-deep); }
.nav-dialog .sub { padding-left: 1.2rem; font-weight: 600; color: var(--muted); }
.nav-close {
  margin: .8rem .8rem 0 auto;
  display: block;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.page-hero { padding: clamp(3rem, 8vw, 6rem) 0 2rem; text-align: center; }
.page-hero .btn { margin-top: 2rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: .4rem 0 1rem;
  color: var(--purple);
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}
.page-hero-shot {
  margin: 2rem auto 0;
  max-width: 56rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  background: #ffffff82;
}

.feature-grid,
.price-grid,
.icon-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid--2-3 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.feature-grid--2-3 > .card { grid-column: span 2; }
.feature-grid--2-3 > .card:nth-child(-n+2) { grid-column: span 3; }
.price-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.5rem; }
.icon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.icon-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.icon-grid .card h3,
h3.icon-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 .45rem;
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}

.icon-grid .card h3 .fa-star,
.icon-card-title .fa-star {
  flex-shrink: 0;
  margin-top: .12em;
  font-size: .85em;
  color: #111;
}

.icon-grid .card-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 2.75rem;
  height: auto;
  object-fit: contain;
  margin-top: .85rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.price-card { text-align: center; }
.price-card .amount { font-size: 2rem; font-weight: 700; margin: .4rem 0 1rem; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.2rem; text-align: left; display: grid; gap: .45rem; }
.note { text-align: center; color: var(--muted); margin-top: 1rem; }

.stats--story {
  max-width: none;
  margin-inline: auto;
}
.stats--story .stat { min-height: 15rem; padding: 1.4rem 1rem 1.6rem; }
.stats--story .stat-copy {
  margin: .65rem 0 0;
  max-width: 20rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 400;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.2rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7eaf3;
  border-radius: 1.35rem;
  padding: 1.8rem 1.55rem 1.5rem;
  text-align: left;
  box-shadow: 0 16px 40px rgba(28, 36, 70, .06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.plan-card--featured {
  border-color: transparent;
  box-shadow: 0 22px 50px rgba(52, 80, 180, .14);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(160deg, #6d5cff, #4aa4ff) border-box;
  border: 2px solid transparent;
}
.plan-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #3b4fd6;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan-card h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.plan-card__who {
  margin: .3rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  margin: 1.25rem 0 1.35rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(100deg, #e14aff -20%, #4a84ff 75% 100%);
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.plan-card__price span {
  font-size: .82rem;
  font-weight: 500;
  opacity: .9;
}
.plan-card__price b {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.plan-card ul {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .62rem;
}
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: #4b4d59;
  font-weight: 500;
  line-height: 1.35;
}
.plan-card li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: .12rem;
  border-radius: 50%;
  background: #eef3ff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%233b4fd6' d='M6.3 11.1 3.2 8l1.1-1.1 2 2 5.4-5.4L12.8 4.6z'/></svg>") center / .72rem no-repeat;
}
a.btn.plan-card__cta,
button.btn.plan-card__cta {
  margin-top: auto;
  width: 100%;
  max-width: 12rem;
  height: 3.25rem;
  align-self: center;
  justify-content: center;
  box-sizing: border-box;
  font-weight: 600;
  background-image: none;
  background-color: #2575FC;
}
a.btn.plan-card__cta:hover,
button.btn.plan-card__cta:hover {
  color: #fff;
  background-image: none;
  background-color: #6eb8ff;
}

.fee-list {
  max-width: 46rem;
  margin: 2rem auto 0;
}
.fee-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px dashed #d4d8e6;
}
.fee-row:last-child { border-bottom: 0; }
.fee-row h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.fee-row p { margin: .25rem 0 0; color: var(--muted); }
.fee-row p.fee-row__price {
  margin: 0;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(100deg, #6d5cff 0%, #4aa4ff 100%);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.media-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.media-card--plain {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-grid label { display: grid; gap: .35rem; font-weight: 600; }
.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid var(--line);
  border-radius: .7rem;
  padding: .75rem .85rem;
  background: #fff;
}

.form-grid .full { grid-column: 1 / -1; }

.consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 500;
}

[data-contact-form].card { padding: 2rem; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
}
.form-actions .consent {
  display: flex;
  min-width: 0;
  align-items: center;
  margin: 0;
  gap: 1rem;
}
.form-actions .consent input {
  accent-color: var(--blue);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.form-actions .btn { flex-shrink: 0; margin-left: auto; }

.cookie {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(50rem, calc(100% - 2rem));
  max-width: 50rem;
  z-index: 80;
  background: #111827;
  color: #fff;
  border-radius: 1rem;
  padding: .75rem 1rem;
  display: none;
  gap: .8rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  font-size: .92rem;
}
.cookie.is-on { display: flex; }
.cookie p { margin: 0; flex: 1; text-align: center; }
.cookie .actions { display: flex; gap: .5rem; flex-shrink: 0; }

.faq details {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: .7rem;
  box-shadow: var(--shadow);
}
.faq summary { cursor: pointer; font-weight: 700; }

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual,
  .photo-cta-band { display: none; }
  .hero .eyebrow,
  .hero .display,
  .hero .lead { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .stats { margin-inline: auto; }
}

@media (max-width: 991.98px) {
  .service-grid,
  .split,
  .delivery,
  .story,
  .story-steps,
  .saas,
  .mobile-block,
  .feature-grid,
  .price-grid,
  .plan-grid,
  .contact-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid--2-3 > .card { grid-column: auto; }

  .stats { grid-template-columns: 1fr; }
  .stat { min-height: auto; padding: 1.4rem .8rem; }
  .stat:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 14px;
    right: 14px;
    width: auto;
    height: 3px;
    background: linear-gradient(to right, transparent, #01CBFF 4%, #01CBFF 96%, transparent);
  }
  .icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-cta-grid { grid-template-columns: 1fr 1fr; }
  .logo-slide { flex-basis: 50%; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-sub { margin-inline: auto; }
  .mark { margin-inline: auto; }

  .split img.cover--crop-y,
  .saas .media-card { display: none; }

  .scope-list { grid-template-columns: 1fr 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-brand {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 1.5rem;
  }
  .footer-news { align-self: center; }
  .footer-col { display: none; }
  .news { max-width: none; }
}

@media (max-width: 575.98px) {
  .header-cta { display: none; }
  .site-header .wrap { grid-template-columns: auto 1fr; }
  .icon-grid { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-cta-grid { grid-template-columns: 1fr; }
  .fee-row { grid-template-columns: 1fr; align-items: start; }
  .fee-row__price { justify-self: start; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { margin-left: 0; width: 100%; justify-content: center; }
  .display { font-size: 2.15rem; }
  .btn { font-size: .95rem; padding: .65rem 1rem; }
  .cookie { flex-direction: column; align-items: stretch; bottom: 4.4rem; }
  .cta-band .q { display: none; }
  .logo-slide { flex-basis: 100%; }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .logo-carousel__track { transition: none; }
}
