:root {
  --blue: #0b0aa3;
  --cyan: #02d2fe;
  --ink: #111111;
  --text: #425466;
  --muted: #616161;
  --line: rgba(0, 0, 0, 0.14);
  --soft-blue: #eef0ff;
  --soft-sky: #f1f7fb;
  --cream: #fbf8f1;
  --white: #ffffff;
  --radius: 8px;
  --max: 1160px;
  --font: "Lato", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font);
  /* Keep the existing type hierarchy while making every text style
     slightly smaller and denser across all pages. */
  font-size-adjust: 0.465;
  color: var(--ink);
  background: var(--white);
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(2, 210, 254, 0.55);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 20px rgba(11, 10, 163, 0.08);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 146px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 16px;
  color: var(--ink);
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.site-nav a.is-active {
  color: var(--blue);
  font-weight: 700;
}

.header-cta,
.btn,
.search-button {
  border: 0;
  cursor: pointer;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.search-button {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 0;
  background: transparent;
}

.search-button::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(45deg);
  transform-origin: left center;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--cyan);
  font-size: 15px;
  font-weight: 700;
}

.header-cta span {
  font-size: 18px;
  line-height: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--soft-blue);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 114px 20px 34px;
  color: var(--ink);
  background: var(--soft-sky);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 15%, rgba(2, 210, 254, 0.2), transparent 26%),
    radial-gradient(circle at 7% 84%, rgba(11, 10, 163, 0.12), transparent 30%),
    var(--soft-sky);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 0;
  width: min(100%, 1280px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(11, 10, 163, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(11, 10, 163, 0.13);
  text-align: left;
}

.hero__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(42px, 5vw, 72px);
  border-right: 1px solid rgba(11, 10, 163, 0.1);
}

.hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(41px, 4.05vw, 66px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: none;
  letter-spacing: -0.045em;
}

.hero h1 span {
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -8px;
  bottom: -10px;
  height: 14px;
  border-bottom: 4px solid var(--cyan);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.hero h1 strong {
  color: var(--cyan);
  font-weight: 700;
}

.hero__copy {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.hero__system {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(11, 10, 163, 0.96), rgba(11, 10, 163, 0.84));
}

.hero__system::before,
.hero__system::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__system::before {
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 54px solid rgba(2, 210, 254, 0.24);
}

.hero__system::after {
  bottom: -110px;
  left: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.035),
    0 0 0 68px rgba(2, 210, 254, 0.05);
}

.hero__ai-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  margin: 0;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__ai-mark::before {
  content: "AI";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero__signals {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(210px, 0.84fr);
  gap: 10px;
  width: 100%;
  min-height: 480px;
  margin: 20px 0 0;
}

.hero__signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero__signal {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.hero__signal::after {
  content: "";
  position: absolute;
  inset: auto -24px -28px auto;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(2, 210, 254, 0.26), transparent 40%),
    radial-gradient(circle at center, rgba(11, 10, 163, 0.08), transparent 68%);
  opacity: 0.9;
  pointer-events: none;
}

.hero__signal-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.68;
}

.hero__signal h2,
.hero__signal h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero__signal--featured {
  justify-content: flex-end;
  gap: 14px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.2);
  background-color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(2, 210, 254, 0.72), transparent 30%),
    linear-gradient(155deg, var(--soft-blue), var(--white)),
    var(--white);
}

.hero__signal--featured h2 {
  max-width: 420px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.98;
}

.hero__signal--featured p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.84;
}

.hero__signal h3 {
  position: relative;
  z-index: 1;
  max-width: 210px;
  font-size: 20px;
  line-height: 1.08;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 34px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(11, 10, 163, 0.1);
}

.hero__proof span {
  display: grid;
  gap: 4px;
  padding: 22px 30px;
  border: 0;
  border-right: 1px solid rgba(11, 10, 163, 0.1);
  border-radius: 0;
  background: var(--white);
  text-align: left;
}

.hero__proof span:last-child {
  border-right: 0;
}

.hero__proof strong {
  color: var(--blue);
  font-size: 18px;
}

.hero__proof small {
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
}

.btn--primary {
  color: var(--white);
  background: var(--cyan);
  box-shadow: 0 16px 36px rgba(2, 210, 254, 0.32);
}

.btn--ghost {
  border: 1px solid rgba(11, 10, 163, 0.26);
  color: var(--blue);
  background: transparent;
}

.btn--outline {
  border: 1px solid rgba(11, 10, 163, 0.26);
  color: var(--blue);
  background: transparent;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.industries {
  padding: 68px 0;
}

.section__heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section__heading h2,
.team-band h2,
.modal__panel h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.03em;
}

.section__heading p:not(.eyebrow),
.team-band p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services {
  width: 100%;
  max-width: none;
  padding: 28px 0 96px;
  background: #eef0ff;
}

.services__shell {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 28px 24px 24px;
}

.services__heading {
  margin-bottom: 34px;
}

.services__heading h2 {
  max-width: 30ch;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 0.98;
  margin-right: auto;
  margin-left: auto;
}

.services__heading p:not(.eyebrow) {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.services__ornament {
  position: absolute;
  width: 250px;
  height: 250px;
  opacity: 0.95;
  pointer-events: none;
  overflow: hidden;
}

.services__ornament--tl {
  top: -110px;
  left: -108px;
  border-radius: 0 0 999px 0;
  background:
    radial-gradient(circle at 28% 30%, rgba(2, 210, 254, 0.9) 0 12px, transparent 13px),
    radial-gradient(circle at 52% 52%, rgba(11, 10, 163, 0.88) 0 16px, transparent 17px),
    radial-gradient(circle at 78% 24%, rgba(2, 210, 254, 0.95) 0 10px, transparent 11px),
    linear-gradient(135deg, rgba(11, 10, 163, 0.18), rgba(2, 210, 254, 0.14));
  clip-path: inset(0 0 40% 40%);
}

.services__ornament--br {
  right: -108px;
  bottom: -122px;
  border-radius: 999px 0 0 0;
  background:
    radial-gradient(circle at 22% 66%, rgba(2, 210, 254, 0.95) 0 12px, transparent 13px),
    radial-gradient(circle at 50% 40%, rgba(11, 10, 163, 0.88) 0 16px, transparent 17px),
    radial-gradient(circle at 74% 74%, rgba(2, 210, 254, 0.88) 0 10px, transparent 11px),
    linear-gradient(315deg, rgba(11, 10, 163, 0.18), rgba(2, 210, 254, 0.14));
  clip-path: inset(40% 40% 0 0);
}

.service-card {
  display: grid;
  gap: 16px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  appearance: none;
  cursor: pointer;
  transition: 0.24s ease;
  text-align: left;
  box-shadow: 0 12px 28px rgba(11, 10, 163, 0.05);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(11, 10, 163, 0.08);
}

.service-card.is-active {
  border-color: rgba(11, 10, 163, 0.18);
  box-shadow: 0 18px 40px rgba(11, 10, 163, 0.12);
}

.service-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(2, 210, 254, 0.28), 0 18px 42px rgba(11, 10, 163, 0.14);
}

.service-card--lead,
.service-card--demand {
  grid-column: span 6;
  min-height: 340px;
}

.service-card--consultancy,
.service-card--automation,
.service-card--brand {
  grid-column: span 4;
  min-height: 252px;
}

.service-card--influencer {
  grid-column: span 8;
  min-height: 258px;
}

.service-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.service-card__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82) 0 7px, transparent 8px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(11, 10, 163, 0.05);
}

.service-card__mark--lead {
  background-color: rgba(2, 210, 254, 0.14);
}

.service-card__mark--demand {
  background-color: rgba(255, 215, 89, 0.20);
}

.service-card__mark--consultancy {
  background-color: rgba(255, 181, 73, 0.20);
}

.service-card__mark--automation {
  background-color: rgba(110, 214, 137, 0.18);
}

.service-card__mark--brand {
  background-color: rgba(2, 210, 254, 0.16);
}

.service-card__mark--influencer {
  background-color: rgba(186, 213, 63, 0.20);
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.service-card__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-card__list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 34px 8px 12px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(11, 10, 163, 0.06);
}

.service-card__list span::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 12px;
  color: rgba(11, 10, 163, 0.45);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-56%);
}

.service-card__list--two span {
  min-height: 38px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(11, 10, 163, 0.10);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  width: fit-content;
}

.badge--soon {
  background: rgba(255, 215, 89, 0.24);
  color: #d28f00;
}

.services__promo {
  grid-column: span 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 22px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 10, 163, 0.08);
  box-shadow: 0 16px 34px rgba(11, 10, 163, 0.07);
  min-height: 258px;
}

.services__promo-copy {
  display: grid;
  gap: 10px;
}

.services__promo-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services__promo-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.services__promo-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
}

.services__promo-copy .btn {
  width: fit-content;
  border-color: rgba(11, 10, 163, 0.22);
}

.services__promo img {
  width: 100%;
  max-width: 240px;
  justify-self: end;
  filter: drop-shadow(0 20px 36px rgba(11, 10, 163, 0.16));
}

.industry-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}

.industry-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  padding: 12px 20px;
  transition: 0.2s ease;
  font-size: 14px;
}

.industry-filter.is-active,
.industry-filter:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.industry-panel {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 38px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 247, 251, 0.95) 100%);
  box-shadow: 0 26px 70px rgba(11, 10, 163, 0.06);
}

.industry-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.industry-list span {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 16px 20px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 16px;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s ease;
}

.industry-list span:hover {
  border-color: var(--blue);
  background: var(--soft-blue);
}

.industry-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 560px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(238, 240, 255, 0.85), rgba(255, 255, 255, 0.98));
}

.industry-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  transition: opacity 0.18s ease;
}

.industry-visual img.is-switching {
  opacity: 0;
}

.process {
  width: 100%;
  padding: 72px 0 88px;
  background: var(--white);
}

.process__heading {
  width: min(calc(100% - 40px), 1620px);
  margin: 0 auto;
  text-align: center;
}

.process__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -0.03em;
}

.process-steps {
  width: min(calc(100% - 40px), 1620px);
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 12px;
  margin: 44px auto 20px;
  padding-bottom: 34px;
  border-bottom: 2px solid #eeeeee;
  overflow-x: auto;
  scrollbar-width: thin;
}

.process-step {
  display: grid;
  gap: 7px;
  align-content: start;
  justify-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.process-step:hover,
.process-step.is-active {
  color: var(--blue);
  transform: translateY(-2px);
}

.process-step__label {
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 700;
}

.process-step__index {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--soft-blue);
  cursor: ew-resize;
}

.process-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.process-carousel__track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.process-carousel__track.is-wheel-scrolling {
  transition: none;
}

.process-slide {
  position: relative;
  overflow: hidden;
  flex: 0 0 min(50vw, 1387px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 540px;
  margin: 0;
  background: var(--soft-blue);
}

.process-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.process-slide__content {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: min(480px, calc(100% - 48px));
  padding: 22px 24px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(11, 10, 163, 0.14);
  backdrop-filter: blur(10px);
}

.process-slide__content span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-slide__content h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.process-slide__content p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.process-slide__diagram {
  position: relative;
  width: 100%;
  min-height: 540px;
  background:
    radial-gradient(circle at 76% 18%, rgba(2, 210, 254, 0.22), transparent 24%),
    linear-gradient(180deg, var(--soft-blue), #e7e9ff);
}

.process-slide__diagram::before,
.process-slide__diagram::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.process-slide__diagram::before {
  top: 34px;
  right: 42px;
  width: 112px;
  height: 112px;
  border: 22px solid rgba(11, 10, 163, 0.07);
}

.process-slide__diagram::after {
  top: 112px;
  left: 48%;
  width: 76px;
  height: 76px;
  background: rgba(255, 215, 89, 0.7);
  transform: rotate(12deg);
  border-radius: 18px;
}

.process-diagram__node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  width: min(180px, 28%);
  padding: 16px 18px;
  border: 1px solid rgba(11, 10, 163, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(11, 10, 163, 0.08);
}

.process-diagram__node small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-diagram__node strong {
  color: var(--ink);
  font-size: 19px;
}

.process-diagram__node span {
  color: var(--text);
  font-size: 12px;
}

.process-diagram__node--a {
  top: 72px;
  left: 7%;
}

.process-diagram__node--b {
  top: 190px;
  left: 37%;
}

.process-diagram__node--c {
  top: 72px;
  right: 7%;
}

.process-slide__diagram--growth .process-diagram__node--a {
  top: 190px;
}

.process-slide__diagram--growth .process-diagram__node--b {
  top: 126px;
}

.process-slide__diagram--growth .process-diagram__node--c {
  top: 58px;
}

.process-diagram__line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(11, 10, 163, 0.35);
  transform-origin: left center;
}

.process-diagram__line::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
}

.process-diagram__line--one {
  top: 164px;
  left: 24%;
  width: 22%;
  transform: rotate(18deg);
}

.process-diagram__line--two {
  top: 226px;
  left: 57%;
  width: 21%;
  transform: rotate(-24deg);
}

.process-slide__diagram--growth .process-diagram__line--one {
  top: 230px;
  transform: rotate(-10deg);
}

.process-slide__diagram--growth .process-diagram__line--two {
  top: 176px;
  transform: rotate(-12deg);
}

.process-diagram__chip {
  position: absolute;
  z-index: 2;
  top: 300px;
  left: 50%;
  padding: 8px 14px;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
}

.process-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

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

.process-arrow::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 18px;
  height: 18px;
  border-top: 6px solid rgba(17, 17, 17, 0.28);
  border-right: 6px solid rgba(17, 17, 17, 0.28);
}

.process-arrow--prev {
  left: 18px;
}

.process-arrow--prev::before {
  left: 22px;
  transform: rotate(-135deg);
}

.process-arrow--next {
  right: 18px;
}

.process-arrow--next::before {
  right: 22px;
  transform: rotate(45deg);
}

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

.audience-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.audience-index {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 15px;
  font-weight: 900;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.audience-grid h3 {
  margin: 18px 0 12px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.audience-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 210, 254, 0.55);
  background: linear-gradient(145deg, var(--white), #f0fbff);
  box-shadow: 0 20px 44px rgba(11, 10, 163, 0.12);
}

.audience-grid article:hover .audience-index {
  color: var(--white);
  background: var(--cyan);
  transform: scale(1.05);
}

.audience-grid article:hover h3 {
  color: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
  .audience-grid article,
  .audience-index,
  .audience-grid h3 {
    transition: none;
  }

  .audience-grid article:hover,
  .audience-grid article:hover .audience-index {
    transform: none;
  }
}

.audience-lead {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.audience-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-grid li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.audience-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
}

.team-band {
  background: var(--soft-sky);
  padding: 76px 24px;
}

.team-principle {
  display: grid;
  gap: 5px;
  margin: 0 0 16px;
  padding: 18px 20px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 14px 14px 0;
  background: var(--white);
}

.team-principle strong {
  color: var(--blue);
  font-size: 17px;
}

.team-principle span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.team-band__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.team-band__content h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.08;
  margin: 0;
  text-transform: none;
  letter-spacing: -0.03em;
}

.team-band__content p {
  margin: 18px 0 24px;
}

.team-band__visual img {
  width: 100%;
  border-radius: 16px;
}

.recommendation {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--white);
}

.recommendation__frame {
  width: min(calc(100% - 40px), 1560px);
  margin: 0 auto;
}

.recommendation__frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(11, 10, 163, 0.14);
}

.pricing-simple {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 56px 60px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 24px;
  background: var(--soft-blue);
}

.pricing-simple h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.pricing-simple li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.pricing-simple li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

@media (max-width: 760px) {
  .pricing-simple {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 38px 30px;
  }
}

@media (max-width: 620px) {
  .pricing-simple {
    gap: 24px;
    padding: 32px 24px;
    border-radius: 20px;
  }

  .pricing-simple h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .pricing-simple li {
    font-size: 16px;
  }
}

/* Final accessibility override: applies to every component, including later additions. */
@media (prefers-reduced-motion: reduce) {
  html,
  html:focus-within {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }

  .reveal-motion-ready .page-reveal,
  .reveal-motion-ready .page-reveal.is-revealed {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Floating centered navigation capsule */
.site-header {
  top: 0;
  width: min(calc(100% - 36px), 1180px);
  min-height: 66px;
  padding: 9px 11px 9px 20px;
  border: 1px solid rgba(11, 10, 163, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 18px 48px rgba(11, 10, 163, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.3), transparent 34%, rgba(2, 210, 254, 0.035));
  pointer-events: none;
}

.brand img {
  width: 132px;
}

.site-nav {
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue);
  background: rgba(238, 240, 255, 0.75);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--blue);
  background: rgba(238, 240, 255, 0.88);
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(2, 210, 254, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(2, 210, 254, 0.3);
}

@media (max-width: 920px) {
  .site-header {
    top: 0;
    width: min(calc(100% - 20px), 720px);
    min-height: 60px;
    padding: 8px 9px 8px 16px;
    border-radius: 999px;
  }

  .brand img {
    width: 122px;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
  }

  .site-header.is-open .site-nav {
    gap: 5px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid rgba(11, 10, 163, 0.08);
    border-radius: 20px;
    background: rgba(238, 240, 255, 0.5);
  }

  .site-header.is-open .site-nav a {
    padding: 11px 13px;
  }

  .site-header.is-open .header-actions {
    padding: 4px 8px 8px;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 18px);
  }

  .brand img {
    width: 116px;
  }
}

/* Light scroll reveals for page sections */
.reveal-motion-ready .page-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.68s ease-out,
    transform 0.68s cubic-bezier(0.22, 0.7, 0.24, 1);
}

.reveal-motion-ready .page-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 620px) {
  .reveal-motion-ready .page-reveal {
    transform: translateY(16px);
    transition-duration: 0.56s;
  }

  .reveal-motion-ready .page-reveal.is-revealed {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-motion-ready .page-reveal,
  .reveal-motion-ready .page-reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.faq-question:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(2, 210, 254, 0.28);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  width: 100%;
  margin: 72px 0 0;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 36px 36px 0 0;
  background:
    radial-gradient(circle at 6% 8%, rgba(2, 210, 254, 0.2), transparent 31%),
    radial-gradient(circle at 96% 90%, rgba(62, 72, 255, 0.32), transparent 35%),
    linear-gradient(135deg, #07172f 0%, #0c0b69 52%, #1714aa 100%);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(16, 22, 82, 0.18);
}

.footer__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.footer__cta {
  min-height: 150px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #18cff2;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__cta h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.footer__cta-button {
  min-width: 220px;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 999px;
  color: #07084e;
  background: #16caf2;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.footer__cta-button:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 32px rgba(1, 7, 52, 0.25);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.7fr) minmax(210px, 0.85fr);
  gap: 54px;
  padding: 38px 24px 30px;
}

.footer__logo {
  width: 138px;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer__social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.footer h3 {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer__col a:hover {
  color: #18cff2;
  transform: translateX(3px);
}

.footer p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer__contact p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 24px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer__bottom a {
  display: inline;
  margin-bottom: 0;
}


.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
}

.modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 32px), 520px);
  transform: translate(-50%, -50%);
  padding: 34px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal__close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}

label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--text);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.modal__panel .btn {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  min-height: 22px;
  color: var(--blue);
  font-weight: 700;
}

.search-panel {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  place-items: start center;
  padding: 110px 20px 24px;
  background: rgba(11, 10, 163, 0.16);
  backdrop-filter: blur(10px);
}

.search-panel.is-open {
  display: grid;
}

.search-panel__box {
  width: min(100%, 680px);
  padding: 22px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(11, 10, 163, 0.18);
}

.search-panel__top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-panel__top input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(11, 10, 163, 0.14);
  border-radius: 14px;
  color: var(--ink);
}

.search-panel__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11, 10, 163, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
}

.search-panel__results {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.search-panel__results a,
.search-panel__empty {
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--soft-sky);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.search-panel__results a span {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 13px;
}

.booking__layout {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  align-items: start;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  padding: 34px;
  background: var(--white);
}

.booking__heading {
  margin-bottom: 20px;
}

.booking__heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  text-transform: none;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.booking__heading p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.booking__field {
  margin-bottom: 14px;
}

.booking__field input,
.booking__field textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 18px 18px;
  background: rgba(11, 10, 163, 0.02);
  font-size: 15px;
  color: var(--ink);
}

.booking__field input::placeholder,
.booking__field textarea::placeholder {
  color: #8a9b8f;
}

.booking__field textarea {
  min-height: 72px;
  resize: vertical;
}

.booking__field:nth-child(2) input {
  background: #F1F7FB;
}

.booking__submit {
  width: 100%;
  margin-top: 8px;
  min-height: 54px;
  font-size: 16px;
}

.booking__assurance {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

section[id],
footer[id] {
  scroll-margin-top: 120px;
}

.partner-strip {
  width: 100%;
  margin: 0 auto;
  padding: 64px 20px 84px;
  background: var(--white);
}

.partner-strip__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.partner-strip p {
  margin: 0;
  color: var(--ink);
  text-transform: none;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
}

.partner-strip strong {
  color: #9f9f9f;
  font-size: 17px;
  font-weight: 500;
  text-transform: none;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 30s linear 1.2s infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(54px, 6vw, 96px);
  padding-right: clamp(54px, 6vw, 96px);
}

.partner-logo {
  flex: 0 0 auto;
  height: 1em;
  font-size: 54px;
  background-image: url("assets/client-logos.png");
  background-repeat: no-repeat;
  background-size: 90em 1em;
  background-position: calc(-1 * var(--logo-x)) 0;
}

.partner-logo--duck {
  --logo-x: 3.5em;
  width: 5em;
}

.partner-logo--dapio {
  --logo-x: 16.2em;
  width: 2.9em;
}

.partner-logo--statum {
  width: 5.62em;
  background-image: url("assets/statum-logo.svg");
  background-position: center;
  background-size: contain;
}

.partner-logo--kppay {
  --logo-x: 40.7em;
  width: 3.9em;
}

.partner-logo--retailhub {
  --logo-x: 54.2em;
  width: 4.6em;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none;
  }
}

@media (max-width: 920px) {

  .about-hero,
  .about-split,
  .about-growth__panel {
    grid-template-columns: 1fr;
  }

  .about-split--reverse .about-split__copy,
  .about-split--reverse .about-split__visual {
    order: initial;
  }

  .about-hero {
    padding-top: 132px;
  }

  .about-hero__visual {
    order: -1;
  }

  .about-audience__grid,
  .about-services__grid,
  .about-served__grid,
  .about-capabilities__grid,
  .about-why__grid,
  .about-values__missions,
  .about-values__principles,
  .about-team__grid,
  .about-results__grid,
  .about-contact__layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-card--lead,
  .service-card--demand,
  .service-card--consultancy,
  .service-card--automation,
  .service-card--brand,
  .service-card--influencer,
  .services__promo {
    grid-column: span 6;
  }

  .services__promo {
    grid-column: span 6;
    grid-template-columns: 1fr 200px;
  }

  .demand-intro,
  .demand-expect {
    grid-template-columns: 1fr;
  }

  .demand-service-grid {
    grid-template-columns: 1fr;
  }

  .demand-service-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .demand-summary__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .demand-summary__inner p {
    max-width: none;
  }

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

  .recommendation {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open {
    border-radius: 0;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 14px;
    justify-content: start;
    padding: 12px 0;
  }

  .site-header.is-open .header-actions {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero__content {
    padding: 118px 20px 54px;
  }

  .hero h1 span::after {
    bottom: -4px;
    height: 8px;
    border-bottom-width: 3px;
  }

  .partner-strip__inner {
    align-items: flex-start;
    text-align: left;
  }

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

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

  .industry-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }

  .industry-visual {
    min-height: 320px;
  }

  .industry-visual img {
    max-height: 280px;
  }

  .process-steps {
    grid-template-columns: repeat(7, minmax(190px, 1fr));
    justify-content: start;
    overflow-x: auto;
  }

  .process-slide {
    flex-basis: 100vw;
    min-height: 430px;
  }

  .process-arrow {
    width: 46px;
    height: 46px;
  }

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

  .team-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .team-band__visual {
    display: none;
  }

  .team-band__content p {
    text-align: left;
  }

  .about-growth__panel {
    padding: 24px;
  }

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

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

  .footer__cta {
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .services-hero {
    padding-top: 122px;
    padding-bottom: 40px;
  }

  .services-hero h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .service-subtitle {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.55;
  }

  .service-detail {
    gap: 24px;
    padding-bottom: 28px;
  }

  .service-content h2 {
    margin-top: 22px;
  }

  .service-content h3 {
    margin-top: 20px;
  }

  .service-content p {
    font-size: 15px;
  }

  .service-media-grid {
    margin-top: 18px;
  }

  .service-media--hero {
    min-height: 240px;
  }

  .service-media figcaption {
    display: none;
  }

  .services {
    padding-top: 18px;
    padding-bottom: 72px;
  }

  .services__shell {
    width: min(calc(100% - 24px), var(--max));
    padding: 18px 16px 18px;
  }

  .services__heading {
    margin-bottom: 24px;
  }

  .services__heading h2 {
    max-width: none;
    font-size: clamp(32px, 9vw, 46px);
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card--lead,
  .service-card--demand,
  .service-card--consultancy,
  .service-card--automation,
  .service-card--brand,
  .service-card--influencer,
  .services__promo {
    grid-column: auto;
  }

  .service-card {
    padding: 18px;
    gap: 12px;
  }

  .service-card__head {
    gap: 8px 10px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card__list {
    grid-template-columns: 1fr;
  }

  .service-card__list span {
    min-height: 38px;
    font-size: 13px;
  }

  .services__promo {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .services__promo-copy p {
    font-size: 22px;
  }

  .services__promo img {
    max-width: 220px;
    justify-self: start;
  }

  .leadgen-tabs {
    width: min(100%, var(--max));
  }

  .leadgen-tab {
    padding: 10px 14px;
    font-size: 13px;
  }

  .leadgen-panel {
    padding: 18px;
    gap: 16px;
  }

  .leadgen-package__stats {
    grid-template-columns: 1fr;
  }

  .leadgen-why__art {
    min-height: 220px;
  }

  .demand-service-grid,
  .leadgen-diff__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero__content {
    padding: 96px 16px 40px;
  }

  .hero h1 {
    font-size: clamp(32px, 11vw, 48px);
    line-height: 1.04;
  }

  .hero__copy {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero__signals {
    width: min(100%, 720px);
    margin-top: 24px;
  }

  .hero__ai-mark {
    margin-top: 22px;
  }

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

  .hero__signal--featured h2 {
    font-size: clamp(22px, 5.5vw, 30px);
  }

  .hero__signal h3 {
    max-width: none;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    margin-top: 24px;
    gap: 10px;
  }

  .hero__signals {
    gap: 12px;
  }

  .hero__proof span {
    padding: 14px 16px;
  }

  .hero__proof strong {
    font-size: 16px;
  }

  .hero__proof small {
    font-size: 12px;
  }

  .section {
    padding: 60px 0;
  }

  .industries {
    padding: 48px 0;
  }

  .partner-strip {
    padding: 44px 16px 72px;
  }

  .partner-strip__inner {
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .partner-strip p {
    font-size: 20px;
    line-height: 1.08;
  }

  .partner-strip strong {
    font-size: 16px;
    line-height: 1.15;
  }

  .partner-logo {
    font-size: 36px;
  }

  .industry-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    margin-right: -16px;
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: none;
  }

  .industry-filters::-webkit-scrollbar {
    display: none;
  }

  .industry-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
  }

  .industry-panel {
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
  }

  .industry-list span {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .industry-visual {
    min-height: 240px;
    border-radius: 18px;
  }

  .industry-visual img {
    max-height: 220px;
    border-radius: 18px;
  }

  .process {
    padding: 64px 0 72px;
  }

  .process__heading {
    width: min(calc(100% - 24px), 1620px);
  }

  .process__heading h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .process-steps {
    width: min(calc(100% - 24px), 1620px);
    grid-template-columns: repeat(7, minmax(160px, 1fr));
    gap: 10px;
    margin: 28px auto 14px;
    padding-bottom: 18px;
  }

  .process-step__label {
    font-size: clamp(14px, 4vw, 18px);
  }

  .process-slide {
    flex-basis: 100vw;
    min-height: 320px;
  }

  .process-slide__diagram {
    min-height: 320px;
  }

  .process-diagram__node {
    width: 29%;
    padding: 10px;
    border-radius: 12px;
  }

  .process-diagram__node strong {
    font-size: 14px;
  }

  .process-diagram__node span {
    display: none;
  }

  .process-diagram__chip {
    top: 190px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .process-slide__content {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 18px;
    border-radius: 16px;
  }

  .process-slide__content h3 {
    font-size: 24px;
  }

  .process-slide__content p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
  }

  .process-arrow {
    width: 40px;
    height: 40px;
  }

  .process-arrow::before {
    top: 12px;
    width: 14px;
    height: 14px;
    border-top-width: 4px;
    border-right-width: 4px;
  }

  .process-arrow--prev::before {
    left: 18px;
  }

  .process-arrow--next::before {
    right: 18px;
  }

  .booking__layout {
    padding: 28px;
  }

  .footer__strip {
    height: 40px;
    margin-top: 28px;
  }

  .footer {
    width: calc(100% - 24px);
    margin-block: 48px 12px;
    padding: 12px;
    border-radius: 28px;
  }

  .leadgen-diff__grid,
  .leadgen-package__stats {
    grid-template-columns: 1fr;
  }

  .leadgen-hero__facts {
    grid-template-columns: 1fr;
  }

  .leadgen-highlights--facts {
    grid-template-columns: 1fr;
  }

  .leadgen-map__cards {
    grid-template-columns: 1fr;
  }

  .leadgen-flow {
    padding: 20px 14px;
  }

  .leadgen-flow__lane {
    min-height: auto;
    padding: 22px 12px;
  }

  .leadgen-flow__node--circle,
  .leadgen-flow__node--demo,
  .leadgen-flow__node--ghost,
  .leadgen-flow__node--customer {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 14px 24px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__brand p {
    max-width: none;
  }

  .footer__col {
    min-width: 0;
  }

  .footer__bottom {
    gap: 8px;
    font-size: 12px;
  }

  .footer__cta {
    min-height: 0;
    padding: 24px 20px;
    flex-direction: column;
    gap: 22px;
    border-radius: 20px;
  }

  .footer__cta-button {
    width: 100%;
  }

  .team-band {
    padding: 64px 16px;
  }

  .team-band__content h2 {
    font-size: clamp(26px, 8vw, 38px);
  }

  .about-audience__grid,
  .about-services__grid,
  .about-served__grid,
  .about-capabilities__grid,
  .about-why__grid,
  .about-values__missions,
  .about-values__principles,
  .about-team__grid,
  .about-results__grid,
  .about-contact__layout {
    grid-template-columns: 1fr;
  }

  .about-growth__panel {
    padding: 22px;
  }

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

  .demand-intro__copy h2,
  .demand-expect__copy h2,
  .demand-summary__inner h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .demand-intro__stats article,
  .demand-expect__copy li {
    padding-left: 16px;
    padding-right: 16px;
  }

  .demand-intro__stats strong {
    font-size: 16px;
  }

  .demand-service-card {
    grid-template-columns: 1fr;
  }

  .demand-service-card img {
    max-width: 100%;
  }

  .demand-summary__inner {
    padding: 36px 0;
  }

  .booking__heading {
    margin-bottom: 16px;
  }

  .booking__field input,
  .booking__field textarea {
    padding: 16px 16px;
  }
}

.services-hero {
  background: linear-gradient(180deg, var(--soft-blue) 0%, rgba(238, 240, 255, 0.55) 56%, #ffffff 100%);
  padding: 144px 20px 52px;
  text-align: center;
}

.services-hero__content {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.services-hero:has(+ .service-detail) {
  text-align: left;
}

.services-hero:has(+ .service-detail) .services-hero__content {
  margin: 0 auto;
}

.services-hero:has(+ .service-detail) h1 {
  max-width: 860px;
  line-height: 1.02;
}

.services-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.03em;
}

.about-page {
  overflow-x: hidden;
  background: var(--white);
}

.about-page .section {
  padding: 72px 0;
}

.about-hero {
  width: min(calc(100% - 40px), 1260px);
  margin: 0 auto;
  padding: 132px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.about-hero>*,
.about-split>*,
.about-growth__panel>*,
.about-contact__layout>* {
  min-width: 0;
}

.about-hero__content h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: none;
  letter-spacing: -0.03em;
}

.about-hero__lead {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.12;
}

.about-hero__copy {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.about-hero__visual {
  display: flex;
  justify-content: center;
}

.about-hero__visual img {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(11, 10, 163, 0.10);
}

.about-served__grid,
.about-team__grid,
.about-results__grid {
  display: grid;
  gap: 18px;
}

.about-served__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.about-served__grid article {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(11, 10, 163, 0.03);
}

.about-served__grid span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: center;
}

.about-split--reverse .about-split__copy {
  order: 2;
}

.about-split--reverse .about-split__visual {
  order: 1;
}

.about-split__copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.04;
  text-transform: none;
  letter-spacing: -0.03em;
}

.about-split__copy p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
  margin: 0 0 14px;
}

.about-split__visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(11, 10, 163, 0.08);
}

.about-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-audience__grid article {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 247, 251, 0.88) 100%);
  box-shadow: 0 14px 36px rgba(11, 10, 163, 0.04);
}

.about-audience__grid span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-services__grid article {
  padding: 24px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 10, 163, 0.04);
}

.about-services__grid img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
}

.about-services__grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.about-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-capabilities__grid article {
  padding: 20px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 247, 251, 0.92) 100%);
  box-shadow: 0 14px 34px rgba(11, 10, 163, 0.04);
}

.about-capabilities__grid img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 14px;
}

.about-capabilities__grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.about-capabilities__grid p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.section__heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-why__grid article {
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 10, 163, 0.04) 0%, rgba(241, 247, 251, 0.92) 100%);
  box-shadow: 0 14px 34px rgba(11, 10, 163, 0.04);
}

.about-why__grid article p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.about-why__grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.about-why__grid p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.about-values__missions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.about-values__signature {
  display: block;
  width: min(320px, 55vw);
  margin: -4px 0 22px;
}

.about-values__missions article {
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 10, 163, 0.04);
}

.about-values__missions span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(2, 210, 254, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-values__missions p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.68;
}

.about-values__principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.about-values__principles article {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  background: linear-gradient(180deg, rgba(238, 240, 255, 0.88), rgba(241, 247, 251, 0.95));
}

.about-values__principles h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.about-values__principles p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.about-growth__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(238, 240, 255, 0.95), rgba(241, 247, 251, 0.9));
  border: 1px solid rgba(11, 10, 163, 0.08);
  box-shadow: 0 26px 70px rgba(11, 10, 163, 0.06);
}

.about-growth__copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.03em;
}

.about-growth__copy p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.about-growth__timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.about-growth__timeline article {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.about-growth__timeline strong {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-growth__timeline h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.about-growth__timeline p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.about-growth__visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(11, 10, 163, 0.12);
}

.about-team__grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-team__grid article {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 247, 251, 0.92) 100%);
  box-shadow: 0 14px 34px rgba(11, 10, 163, 0.04);
}

.about-team__grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cyan), var(--blue));
}

.about-team__grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.about-team__grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-team__grid p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.about-results__grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-results__grid article {
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 10, 163, 0.04);
}

.about-results__grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.about-results__grid p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.about-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 14px;
  align-items: start;
}

.about-contact__form,
.about-contact__info {
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.10);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 247, 251, 0.90) 100%);
  box-shadow: 0 16px 44px rgba(11, 10, 163, 0.05);
}

.about-contact__form h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.03em;
}

.about-contact__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-contact__fields label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.about-contact__fields input,
.about-contact__fields textarea {
  min-width: 0;
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.about-contact__message {
  grid-column: 1 / -1;
}

.about-contact__message textarea {
  min-height: 110px;
  resize: vertical;
}

.about-contact__fields .btn {
  justify-self: start;
  grid-column: 1 / -1;
}

.about-contact__info {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
}

.about-contact__bg {
  width: 100%;
  max-width: 280px;
  justify-self: end;
  opacity: 0.9;
}

.about-contact__card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  background: rgba(255, 255, 255, 0.75);
}

.about-contact__card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-contact__card a,
.about-contact__card p,
.about-contact__social a {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-contact__social a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  background: var(--white);
}

.services-grid-page {
  padding: 80px 0;
}

.services-grid-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-tile {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
  position: relative;
}

.service-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(11, 10, 163, 0.1);
  transform: translateY(-4px);
}

.service-tile__icon {
  margin-bottom: 20px;
}

.service-tile h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--ink);
}

.service-tile p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.service-tile__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 20px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 20px;
  transition: 0.2s ease;
}

.service-tile:hover .service-tile__arrow {
  background: var(--blue);
  color: var(--white);
}

.services-cta {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-blue) 100%);
  padding: 96px 0 108px;
}

.services-cta__inner {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  text-align: center;
}

.services-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
}

.services-cta p {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 17px;
}

/* ── Featured Services ── */
.services-featured {
  padding: 60px 0 24px;
}

.services-featured__inner {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Featured card base */
.sfc {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 36px 36px 40px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.sfc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.sfc:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

/* Branded backgrounds */
.sfc--lead {
  background: linear-gradient(145deg, #0b0aa3 0%, #1a1ad4 45%, #02d2fe 100%);
}

.sfc--content {
  background: linear-gradient(145deg, #0b0aa3 0%, #1e40af 50%, #3b82f6 100%);
}

.sfc--influencer {
  background: linear-gradient(145deg, #0b0aa3 0%, #6d28d9 45%, #a855f7 100%);
  grid-column: 1 / -1;
}

/* Badge */
.sfc__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  margin-bottom: 16px;
}

/* Body */
.sfc__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sfc__icon {
  margin-bottom: 16px;
}

.sfc__icon svg {
  display: block;
}

.sfc__body h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.sfc__body>p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 52ch;
}

.sfc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}

.sfc__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}

.sfc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.sfc__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 700;
  transition: gap 0.25s ease;
}

.sfc:hover .sfc__cta {
  gap: 12px;
}

/* Decorative circles */
.sfc__decor {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.sfc__decor svg {
  width: auto;
  height: auto;
  max-width: none;
}

/* ── Secondary Services ── */
.services-secondary {
  padding: 48px 0 64px;
}

.services-secondary__inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.services-secondary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.service-card-sm {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-sm:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(11, 10, 163, 0.08);
  transform: translateY(-3px);
}

.service-card-sm__icon {
  margin-bottom: 16px;
}

.service-card-sm__icon svg {
  display: block;
}

.service-card-sm h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.service-card-sm p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}

.service-card-sm__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 18px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-card-sm:hover .service-card-sm__arrow {
  background: var(--blue);
  color: var(--white);
  transform: translateX(4px);
}

/* Hero subtitle */
.services-hero__sub {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .services-grid-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .sfc--influencer {
    grid-column: 1;
  }

  .sfc {
    padding: 28px 24px 32px;
  }

  .sfc__decor {
    opacity: 0.3;
  }
}

@media (max-width: 620px) {
  .services-grid-page__grid {
    grid-template-columns: 1fr;
  }

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

  .services-featured {
    padding: 40px 0 16px;
  }

  .sfc__body>p {
    max-width: none;
  }
}

.service-detail {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  width: min(calc(100% - 40px), 1320px);
  padding: 8px 0 44px;
}

.service-sidebar {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(238, 240, 255, 0.45) 100%);
  box-shadow: 0 18px 40px rgba(11, 10, 163, 0.06);
}

.service-sidebar h3 {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--blue);
}

.service-sidebar a {
  display: block;
  padding: 10px 12px;
  margin-bottom: 4px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  transition: 0.2s ease;
}

.service-sidebar a:hover {
  background: var(--soft-blue);
  color: var(--blue);
}

.service-sidebar p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.service-content h2 {
  margin: 28px 0 12px;
  color: var(--blue);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: none;
  letter-spacing: -0.03em;
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.service-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.demand-page .services-hero {
  padding-bottom: 48px;
}

.demand-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.demand-intro__copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.03;
  text-transform: none;
  letter-spacing: -0.03em;
}

.demand-intro__copy p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.demand-intro__stats {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.demand-intro__stats article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.demand-intro__stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 17px;
}

.demand-intro__stats span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.demand-intro__visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(11, 10, 163, 0.14);
}

.demand-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.demand-service-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(11, 10, 163, 0.05);
}

.demand-service-card img {
  width: 100%;
  border-radius: 14px;
}

.demand-service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--ink);
}

.demand-service-card p {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.demand-service-card a {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.demand-expect {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.demand-expect__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: -0.03em;
}

.demand-expect__copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.demand-expect__copy li {
  position: relative;
  padding: 14px 16px 14px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
}

.demand-expect__copy li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.demand-expect__visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(11, 10, 163, 0.12);
}

.demand-summary {
  background: var(--soft-blue);
}

.demand-summary__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
}

.demand-summary__inner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: -0.03em;
}

.demand-summary__inner p {
  max-width: 760px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 920px) {

  .demand-intro,
  .demand-expect,
  .demand-service-grid {
    grid-template-columns: 1fr;
  }

  .demand-service-card {
    grid-template-columns: 1fr;
  }

  .demand-summary__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .demand-summary__inner p {
    max-width: none;
  }
}

@media (max-width: 620px) {

  .demand-intro__copy h2,
  .demand-expect__copy h2,
  .demand-summary__inner h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .demand-intro__stats article,
  .demand-expect__copy li {
    padding-left: 16px;
    padding-right: 16px;
  }

  .demand-service-card a {
    display: inline-block;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .demand-summary__inner {
    padding: 36px 0;
  }
}

.leadgen-page .services-hero {
  padding-bottom: 48px;
}

.leadgen-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.62fr);
  gap: 22px;
  row-gap: 18px;
  align-items: start;
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  text-align: left;
}

.leadgen-hero__art {
  grid-column: 1 / -1;
  margin: 0;
  max-width: none;
  justify-self: stretch;
  margin-top: 18px;
}

.leadgen-hero__art img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 26px 68px rgba(11, 10, 163, 0.1);
  display: block;
}

.leadgen-hero__content {
  width: 100%;
  max-width: 760px;
}

.leadgen-hero__content h1 {
  max-width: 760px;
}

.leadgen-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.leadgen-hero__facts {
  display: grid;
  gap: 14px;
}

.leadgen-hero__facts article {
  padding: 24px 26px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 251, 0.98));
  box-shadow: 0 10px 34px rgba(11, 10, 163, 0.05);
}

.leadgen-hero__facts span {
  display: block;
  color: #7d8aa7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.leadgen-hero__facts strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.leadgen-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding-top: 48px;
}

.leadgen-intro__copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.03;
  text-transform: none;
  letter-spacing: -0.03em;
}

.leadgen-intro__copy p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.leadgen-highlights {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

.leadgen-highlights article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.leadgen-highlights strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 17px;
}

.leadgen-highlights span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.leadgen-intro__visual {
  align-self: stretch;
}

.leadgen-deck-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 240, 255, 0.94));
  box-shadow: 0 26px 70px rgba(11, 10, 163, 0.08);
}

.leadgen-deck-card__eyebrow {
  margin: 0;
  color: #7d8aa7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.leadgen-deck-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.leadgen-deck-card__steps {
  display: grid;
  gap: 10px;
}

.leadgen-deck-card__steps span {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 10, 163, 0.09);
  border-radius: 18px;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.45;
}

.leadgen-deck-card__steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  background: var(--white);
}

.leadgen-deck-card__focus {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(2, 210, 254, 0.09);
}

.leadgen-deck-card__focus-label {
  margin: 0;
  color: #7d8aa7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.leadgen-deck-card__focus strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.leadgen-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.leadgen-map__intro h2 {
  margin: 0;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: none;
}

.leadgen-map__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: start;
}

.leadgen-map__card {
  min-height: 178px;
  padding: 28px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
  box-shadow: 0 12px 34px rgba(11, 10, 163, 0.04);
}

.leadgen-map__kicker {
  margin: 0 0 16px;
  color: #3b7cff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.leadgen-map__card p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.48;
}

.leadgen-calculator {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.leadgen-calculator__copy h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: none;
}

.leadgen-calculator__copy p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.leadgen-calculator__art {
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.98));
  box-shadow: 0 20px 54px rgba(11, 10, 163, 0.08);
}

.leadgen-calculator__art img {
  display: block;
  width: 100%;
  height: auto;
}

.leadgen-calculator__panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 251, 0.96));
  box-shadow: 0 18px 52px rgba(11, 10, 163, 0.06);
}

.leadgen-calculator__panel label {
  display: grid;
  gap: 8px;
}

.leadgen-calculator__label-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.leadgen-calculator__panel span {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leadgen-calculator__panel strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.leadgen-calculator__panel input[type="range"] {
  width: 100%;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  accent-color: var(--blue);
  cursor: pointer;
}

.leadgen-calculator__panel input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 124, 255, 0.22), rgba(2, 210, 254, 0.36));
}

.leadgen-calculator__panel input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -7px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(11, 10, 163, 0.2);
}

.leadgen-calculator__panel input[type="range"]::-moz-range-track {
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 124, 255, 0.22), rgba(2, 210, 254, 0.36));
}

.leadgen-calculator__panel input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(11, 10, 163, 0.2);
}

.leadgen-calculator__results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.leadgen-calculator__results article {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
}

.leadgen-calculator__results strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.1;
}

.leadgen-calculator__results span {
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
}

.leadgen-cases {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.leadgen-cases__intro {
  width: min(100%, 760px);
}

.leadgen-cases__intro h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: none;
}

.leadgen-cases__intro p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.leadgen-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.leadgen-case-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(11, 10, 163, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 251, 0.94));
  box-shadow: 0 16px 42px rgba(11, 10, 163, 0.05);
}

.leadgen-case-card__index {
  margin: 0;
  color: #9aa6be;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.leadgen-case-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.leadgen-case-card p:last-of-type {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.leadgen-case-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 10, 163, 0.08);
}

.leadgen-case-card__meta span {
  color: #9aa6be;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.leadgen-case-card__meta strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.leadgen-comparison {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.leadgen-comparison__intro {
  width: min(100%, 760px);
}

.leadgen-comparison__intro h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: none;
}

.leadgen-comparison__intro p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.leadgen-comparison__table {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 251, 0.96));
  box-shadow: 0 18px 52px rgba(11, 10, 163, 0.06);
}

.leadgen-comparison__row {
  display: grid;
  grid-template-columns: minmax(140px, 1.05fr) minmax(110px, 0.65fr) minmax(180px, 1.1fr) minmax(160px, 0.9fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.leadgen-comparison__row--head {
  border: 0;
  background: transparent;
  padding-top: 4px;
  padding-bottom: 0;
  color: #7d8aa7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.leadgen-comparison__row strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.leadgen-comparison__row span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.leadgen-comparison__row--highlight {
  border-color: rgba(2, 210, 254, 0.18);
  background: linear-gradient(180deg, rgba(239, 247, 255, 1), rgba(230, 246, 255, 0.96));
}

.leadgen-comparison__row--highlight strong,
.leadgen-comparison__row--highlight span:last-child {
  color: var(--blue);
  font-weight: 900;
}

.leadgen-framework {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.leadgen-framework__intro {
  width: min(100%, 760px);
}

.leadgen-framework__intro h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: none;
}

.leadgen-framework__intro p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.leadgen-framework__art {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.98));
  box-shadow: 0 24px 60px rgba(11, 10, 163, 0.08);
}

.leadgen-framework__art img {
  display: block;
  width: 100%;
  height: auto;
}

.leadgen-framework__cycle {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(11, 10, 163, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 251, 0.96));
  box-shadow: 0 18px 52px rgba(11, 10, 163, 0.06);
}

.leadgen-framework__cycle-head {
  color: #7d8aa7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.leadgen-framework__cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.leadgen-framework__cycle-grid article {
  padding: 18px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.leadgen-framework__cycle-grid span {
  display: block;
  margin-bottom: 8px;
  color: #7d8aa7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.leadgen-framework__cycle-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

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

.leadgen-framework__card {
  padding: 20px 22px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 10, 163, 0.04);
}

.leadgen-framework__label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.leadgen-framework__card p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

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

.leadgen-framework__results > div {
  padding: 22px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
}

.leadgen-framework__sectionlabel {
  margin: 0 0 10px;
  color: #7d8aa7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.leadgen-framework__results h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.leadgen-framework__results li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.leadgen-framework__results li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

.leadgen-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 2fr 1fr 1fr;
  gap: 0;
  padding: 30px 20px 24px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(250, 250, 255, 0.98), rgba(241, 247, 251, 0.92));
  box-shadow: 0 20px 54px rgba(11, 10, 163, 0.06);
  overflow: hidden;
}

.leadgen-flow__lane {
  position: relative;
  min-height: 410px;
  padding: 28px 20px 18px;
}

.leadgen-flow__lane + .leadgen-flow__lane {
  border-left: 1px solid rgba(11, 10, 163, 0.1);
}

.leadgen-flow__lane h3 {
  margin: 0 0 28px;
  color: #3b7cff;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  text-transform: none;
}

.leadgen-flow__node {
  display: inline-grid;
  gap: 4px;
  min-width: 138px;
  padding: 14px 18px;
  border: 1px solid rgba(11, 10, 163, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(11, 10, 163, 0.05);
}

.leadgen-flow__node strong {
  font-size: 20px;
}

.leadgen-flow__node span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.leadgen-flow__step,
.leadgen-flow__path {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.leadgen-flow__step {
  margin-top: 18px;
}

.leadgen-flow__path {
  grid-template-columns: minmax(120px, max-content) auto minmax(120px, max-content) auto minmax(120px, max-content) auto minmax(120px, max-content) auto minmax(120px, max-content);
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 0;
  margin-top: 18px;
}

.leadgen-flow__path--response {
  grid-template-columns: minmax(150px, max-content) auto minmax(120px, max-content) auto minmax(160px, max-content);
  margin-top: 24px;
}

.leadgen-flow__metric {
  display: grid;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(59, 124, 255, 0.08);
  border: 1px solid rgba(59, 124, 255, 0.12);
  text-align: center;
}

.leadgen-flow__metric strong {
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.leadgen-flow__metric span {
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
}

.leadgen-flow__path-arrow,
.leadgen-flow__arrow--down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  color: #3b7cff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform-origin: center;
}

.leadgen-flow__path-arrow--wide {
  font-size: 20px;
}

.leadgen-flow__path-arrow {
  animation: leadgen-arrow-x 1.8s ease-in-out infinite;
}

.leadgen-flow__arrow--down {
  animation: leadgen-arrow-y 1.8s ease-in-out infinite;
}

.leadgen-flow__path-arrow--wide {
  animation-duration: 2.1s;
}

.leadgen-flow__path .leadgen-flow__path-arrow:nth-of-type(2n),
.leadgen-flow__step .leadgen-flow__arrow--down:nth-of-type(2n) {
  animation-delay: 0.2s;
}

.leadgen-flow__path .leadgen-flow__path-arrow:nth-of-type(3n),
.leadgen-flow__step .leadgen-flow__arrow--down:nth-of-type(3n) {
  animation-delay: 0.35s;
}

@keyframes leadgen-arrow-x {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.72;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

@keyframes leadgen-arrow-y {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leadgen-flow__path-arrow,
  .leadgen-flow__arrow--down {
    animation: none;
  }
}

.leadgen-flow__node--circle {
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  min-width: 156px;
  margin: 34px auto 0;
  border-radius: 50%;
  background: var(--white);
}

.leadgen-flow__node--circle strong {
  font-size: 22px;
}

.leadgen-flow__connector,
.leadgen-flow__arrow {
  color: #3b7cff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.leadgen-flow__connector {
  margin-top: 18px;
}

.leadgen-flow__connector--curved {
  margin-top: 42px;
  font-size: 16px;
  opacity: 0.85;
}

.leadgen-flow__row {
  display: grid;
  grid-template-columns: minmax(120px, max-content) 60px minmax(120px, max-content);
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.leadgen-flow__row--lower {
  grid-template-columns: minmax(120px, max-content) 46px minmax(120px, max-content) 56px minmax(120px, max-content);
  margin-top: 60px;
}

.leadgen-flow__subrow {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.leadgen-flow__node--accent {
  border-color: rgba(59, 124, 255, 0.5);
  background: rgba(59, 124, 255, 0.1);
  color: var(--blue);
  font-weight: 900;
}

.leadgen-flow__node--blue {
  border-color: rgba(2, 210, 254, 0.34);
  background: rgba(2, 210, 254, 0.16);
  color: var(--blue);
  font-weight: 900;
}

.leadgen-flow__node--demo {
  margin: 20px auto 0;
  min-width: 170px;
  border-color: rgba(59, 124, 255, 0.6);
  background: linear-gradient(180deg, rgba(59, 124, 255, 0.96), rgba(11, 10, 163, 0.9));
  color: var(--white);
  font-weight: 900;
}

.leadgen-flow__node--ghost {
  margin: 70px auto 0;
  min-width: 210px;
  color: var(--text);
}

.leadgen-flow__node--small {
  min-width: 166px;
  border-color: rgba(11, 10, 163, 0.08);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
}

.leadgen-flow__node--customer {
  margin: 76px auto 0;
  border: 0;
  background: linear-gradient(180deg, #2cc58b, #1cbf72);
  color: var(--white);
  font-weight: 900;
}

.leadgen-flow__lane--reach .leadgen-flow__connector {
  margin-top: 24px;
}

.leadgen-flow__lane--reach .leadgen-flow__connector::before,
.leadgen-flow__lane--nurture .leadgen-flow__connector::before,
.leadgen-flow__lane--sale .leadgen-flow__connector::before,
.leadgen-flow__lane--close .leadgen-flow__connector::before {
  content: "";
  position: absolute;
}

.leadgen-diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.leadgen-diff__card {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.leadgen-diff__card img {
  width: 31px;
  height: 31px;
}

.leadgen-diff__card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.leadgen-diff__card p strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.3;
}

.leadgen-diff__card p span {
  display: block;
  color: var(--text);
  line-height: 1.55;
}

.leadgen-timeline {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  padding-top: 10px;
}

.leadgen-timeline__intro {
  width: min(100%, 760px);
  margin-bottom: 18px;
}

.leadgen-timeline__intro h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 3.9vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-transform: none;
}

.leadgen-timeline__intro p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.leadgen-timeline__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 14px 2px 8px;
  scrollbar-width: none;
}

.leadgen-timeline__track::-webkit-scrollbar {
  display: none;
}

.leadgen-timeline__card {
  min-width: 220px;
  padding: 24px;
  border: 1px solid rgba(11, 10, 163, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
  box-shadow: 0 12px 36px rgba(11, 10, 163, 0.04);
}

.leadgen-timeline__week {
  margin: 0 0 14px;
  color: #3b7cff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.leadgen-timeline__card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.leadgen-timeline__card p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.leadgen-tabs {
  width: min(calc(100% - 40px), 1320px);
}

.leadgen-tablist {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.leadgen-tab {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.2s ease;
}

.leadgen-tab:hover,
.leadgen-tab.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.leadgen-panels {
  display: grid;
  gap: 18px;
}

.leadgen-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(238, 240, 255, 0.92), rgba(241, 247, 251, 0.92));
}

.leadgen-panel.is-active {
  display: grid;
}

.leadgen-panel__copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.08;
  color: var(--ink);
}

.leadgen-panel__copy p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.leadgen-panel__copy .btn {
  margin-top: 8px;
  width: fit-content;
}

.leadgen-panel__media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(11, 10, 163, 0.14);
}

.leadgen-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: center;
}

.leadgen-package__copy h2,
.leadgen-why__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: -0.03em;
}

.leadgen-package__copy p,
.leadgen-why__copy p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.leadgen-package__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.leadgen-package__stats span {
  display: grid;
  gap: 6px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
}

.leadgen-package__stats strong {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.leadgen-package__stats small {
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}

.leadgen-package__visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 68px rgba(11, 10, 163, 0.14);
}

.leadgen-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.leadgen-why__copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.leadgen-why__copy li {
  position: relative;
  padding: 14px 16px 14px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
}

.leadgen-why__copy li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.leadgen-why__art {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.leadgen-why__art-top,
.leadgen-why__art-bottom,
.leadgen-why__art-badge {
  position: absolute;
  display: block;
  object-fit: contain;
}

.leadgen-why__art-top {
  top: 10px;
  left: 50%;
  width: min(92%, 460px);
  transform: translateX(-50%);
}

.leadgen-why__art-bottom {
  left: 50%;
  bottom: 18px;
  width: min(92%, 420px);
  transform: translateX(-50%);
}

.leadgen-why__art-badge {
  left: 50%;
  bottom: 8px;
  width: 126px;
  transform: translateX(-50%);
}

.service-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.service-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.service-media--hero {
  min-height: 260px;
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-sky) 100%);
}

.service-media img {
  width: 100%;
  height: auto;
}

.service-media--hero img {
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  padding: 10px;
}

.service-media figcaption {
  padding: 10px 12px 12px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-media:not(.service-media--hero) {
  display: none;
}

.service-sub-list {
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.service-sub-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.service-sub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

@media (max-width: 920px) {

  .services-hero__content,
  .service-detail,
  .services-cta__inner {
    width: min(100%, var(--max));
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-sidebar {
    position: static;
    display: none;
  }

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

  .leadgen-intro,
  .leadgen-package,
  .leadgen-why,
  .leadgen-panel {
    grid-template-columns: 1fr;
  }

  .leadgen-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leadgen-hero__art {
    max-width: 100%;
    justify-self: stretch;
  }

  .leadgen-hero__content h1 {
    margin-left: auto;
    margin-right: auto;
  }

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

  .leadgen-map {
    grid-template-columns: 1fr;
  }

  .leadgen-map__intro h2 {
    max-width: none;
  }

  .leadgen-map__cards {
    grid-template-columns: 1fr 1fr;
  }

  .leadgen-flow {
    grid-template-columns: 1fr;
  }

  .leadgen-flow__lane + .leadgen-flow__lane {
    border-left: 0;
    border-top: 1px solid rgba(11, 10, 163, 0.1);
  }

  .leadgen-diff__grid,
  .leadgen-package__stats {
    grid-template-columns: 1fr 1fr;
  }

  .leadgen-highlights--facts {
    grid-template-columns: 1fr 1fr;
  }

  .leadgen-why__art {
    min-height: 280px;
  }

  .leadgen-hero__actions {
    justify-content: center;
  }

  .leadgen-hero__art img {
    border-radius: 24px;
  }

  .leadgen-flow__path,
  .leadgen-flow__path--response {
    grid-template-columns: 1fr;
  }

  .leadgen-flow__path-arrow,
  .leadgen-flow__arrow--down {
    transform: rotate(90deg);
  }

  .leadgen-calculator {
    grid-template-columns: 1fr;
  }

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

  .leadgen-cases__grid {
    grid-template-columns: 1fr;
  }

  .leadgen-comparison__row {
    grid-template-columns: 1fr 1fr;
  }

  .leadgen-comparison__row--head {
    display: none;
  }

  .leadgen-framework__cycle-grid,
  .leadgen-framework__grid,
  .leadgen-framework__results {
    grid-template-columns: 1fr 1fr;
  }

  .leadgen-framework__results > div,
  .leadgen-framework__card {
    padding: 18px;
  }

  .leadgen-framework__art {
    border-radius: 26px;
  }

  .leadgen-calculator__art {
    border-radius: 24px;
  }

}

@media (max-width: 620px) {
  .leadgen-hero__facts,
  .leadgen-highlights--facts,
  .leadgen-map__cards,
  .leadgen-calculator__results,
  .leadgen-cases__grid,
  .leadgen-comparison__row,
  .leadgen-framework__cycle-grid,
  .leadgen-framework__grid,
  .leadgen-framework__results {
    grid-template-columns: 1fr;
  }

  .leadgen-hero__art img {
    border-radius: 20px;
  }

  .leadgen-framework__art {
    border-radius: 22px;
  }

  .leadgen-calculator__art {
    border-radius: 20px;
  }
}

.service-subtitle {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 48px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.diff-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.diff-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--soft-blue);
}

.diff-card__icon svg {
  width: 24px;
  height: 24px;
}

.diff-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--ink);
}

.diff-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.service-card-item {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.service-card-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(11, 10, 163, 0.08);
}

.service-card-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card-item h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--ink);
}

.service-card-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.service-card-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.service-card-item__link::after {
  content: "\2192";
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
  padding: 32px;
  background: var(--soft-blue);
  border-radius: 16px;
}

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

.stat-item__num {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  color: var(--text);
}

.feature-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

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

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-features {
    grid-template-columns: 1fr;
  }
}

/* Markets globe section */
.markets {
  background: var(--soft-blue);
  overflow: hidden;
}

.markets__globe-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 48px auto 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 40% 40%, #0d1b3e 0%, #060e24 70%, #020714 100%);
  box-shadow: 0 0 80px rgba(2, 210, 254, 0.08), 0 0 200px rgba(11, 10, 163, 0.12);
}

.markets__globe {
  width: 100%;
  height: 100%;
}

.markets__tooltip {
  position: absolute;
  pointer-events: none;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
  white-space: nowrap;
}

.markets__tooltip.is-visible {
  opacity: 1;
}

.markets__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.market-card {
  padding: 20px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.market-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(2, 210, 254, 0.1);
  transform: translateY(-2px);
}

.market-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--ink);
}

.market-card__count {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--soft-blue);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.market-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .markets__globe-wrap {
    max-width: 500px;
  }

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

@media (max-width: 620px) {
  .markets__globe-wrap {
    max-width: 320px;
  }

  .markets__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .market-card {
    padding: 14px;
  }
}

/* Home hero: responsive editorial layout */
@media (max-width: 920px) {
  .hero {
    padding: 94px 16px 24px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 28px;
  }

  .hero__intro {
    padding: 52px 44px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 10, 163, 0.1);
  }

  .hero__system {
    padding: 18px;
  }

  .hero__signals {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    min-height: 440px;
    margin-top: 18px;
  }

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

  .hero__proof span:nth-child(2n) {
    border-right: 0;
  }

  .hero__proof span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 10, 163, 0.1);
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 86px 10px 16px;
  }

  .hero__content {
    padding: 0;
    border-radius: 22px;
  }

  .hero__intro {
    padding: 34px 22px 38px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.98;
  }

  .hero__copy {
    margin-top: 24px;
  }

  .hero__actions {
    margin-top: 26px;
  }

  .hero__actions .btn {
    flex: 1 1 160px;
  }

  .hero__system {
    padding: 14px;
  }

  .hero__ai-mark {
    width: 100%;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero__signals {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 14px;
  }

  .hero__signal--featured {
    min-height: 360px;
    padding: 24px;
  }

  .hero__signal--featured h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

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

  .hero__signal {
    min-height: 144px;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .hero__proof span {
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 10, 163, 0.1);
  }

.hero__proof span:last-child {
    border-bottom: 0;
  }
}

/* Home hero: premium growth-system composition */
.hero {
  padding: 112px 20px 56px;
  background: #e9efff;
}

.hero__bg {
  background:
    radial-gradient(circle at 86% 17%, rgba(2, 210, 254, 0.28), transparent 25%),
    radial-gradient(circle at 8% 85%, rgba(11, 10, 163, 0.16), transparent 29%),
    linear-gradient(135deg, #f4f7ff 0%, #e8edff 46%, #effbff 100%);
}

.hero__content {
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, 0.97fr);
  width: min(100%, 1420px);
  border-color: rgba(11, 10, 163, 0.13);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 42px 110px rgba(11, 10, 163, 0.16),
    0 4px 12px rgba(11, 10, 163, 0.05);
}

.hero__intro {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 6vw, 94px) clamp(42px, 5.5vw, 86px);
  border-right-color: rgba(11, 10, 163, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), #fff),
    #fff;
}

.hero__intro::after {
  content: "";
  position: absolute;
  left: clamp(42px, 5.5vw, 86px);
  bottom: 36px;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0.7;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(11, 10, 163, 0.14);
  border-radius: 999px;
  background: rgba(238, 240, 255, 0.7);
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(2, 210, 254, 0.12);
}

.hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(48px, 4.75vw, 78px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero__copy {
  max-width: 590px;
  margin-top: 32px;
  color: var(--text);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 38px;
}

.hero__actions .btn {
  min-height: 54px;
  padding-inline: 27px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.hero__actions .btn:hover {
  transform: translateY(-2px);
}

.hero__actions .btn--primary {
  box-shadow: 0 14px 34px rgba(2, 210, 254, 0.24);
}

.hero__system {
  position: relative;
  display: grid;
  min-height: 650px;
  padding: 22px;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 12%, rgba(2, 210, 254, 0.34), transparent 27%),
    radial-gradient(circle at 88% 88%, rgba(60, 109, 255, 0.34), transparent 32%),
    linear-gradient(145deg, #080773 0%, var(--blue) 48%, #1717bd 100%);
}

.hero__system::before {
  top: -125px;
  right: -104px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.hero__system::after {
  bottom: -152px;
  left: -112px;
  width: 315px;
  height: 315px;
  border: 1px solid rgba(2, 210, 254, 0.22);
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025), 0 0 0 84px rgba(2, 210, 254, 0.035);
}

.hero__visual-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero__visual-topline {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero__ai-mark {
  flex: 0 1 auto;
  margin: 0;
  padding: 7px 11px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(4, 4, 66, 0.28);
  font-size: 10px;
  letter-spacing: 0.11em;
}

.hero__ai-mark::before {
  width: 25px;
  height: 25px;
  font-size: 10px;
}

.hero__visual-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__visual-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(2, 210, 254, 0.1), 0 0 18px rgba(2, 210, 254, 0.72);
  animation: hero-status-pulse 2.4s ease-in-out infinite;
}

.hero__signal--featured {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-content: center;
  gap: 17px;
  width: min(100%, 510px);
  min-height: 350px;
  margin: 24px auto 18px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 4%, rgba(2, 210, 254, 0.35), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 255, 0.95));
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.27),
    0 0 0 10px rgba(255, 255, 255, 0.035);
  animation: hero-card-float 7s ease-in-out infinite;
}

.hero__signal--featured::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11, 10, 163, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cyan) 0 3px, transparent 4px),
    rgba(255, 255, 255, 0.55);
}

.hero__signal--featured h2 {
  max-width: 430px;
  color: var(--ink);
  font-size: clamp(34px, 3.35vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero__signal--featured p:last-child {
  max-width: 420px;
  color: var(--text);
  font-size: 15px;
}

.hero__signal-flow {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero__signal-flow .hero__signal {
  justify-content: flex-start;
  gap: 7px;
  min-height: 108px;
  padding: 17px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.hero__signal-flow .hero__signal:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 210, 254, 0.58);
  background: rgba(255, 255, 255, 0.17);
}

.hero__signal-flow .hero__signal::after {
  display: none;
}

.hero__signal-flow .hero__signal-kicker {
  margin: 0;
  color: var(--cyan);
  opacity: 1;
}

.hero__signal-flow .hero__signal h3 {
  max-width: none;
  color: var(--white);
  font-size: 16px;
  line-height: 1.16;
}

.hero__visual-route {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2, 210, 254, 0.68), transparent);
  transform: rotate(-9deg);
  transform-origin: center;
}

.hero__visual-route i {
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(2, 210, 254, 0.85);
  animation: hero-route 4.8s linear infinite;
}

.hero__visual-route i:nth-child(2) { animation-delay: -1.2s; }
.hero__visual-route i:nth-child(3) { animation-delay: -2.4s; }
.hero__visual-route i:nth-child(4) { animation-delay: -3.6s; }

.hero__visual-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero__visual-orbit--one {
  top: 86px;
  right: -94px;
  width: 250px;
  height: 250px;
}

.hero__visual-orbit--two {
  bottom: 52px;
  left: -86px;
  width: 190px;
  height: 190px;
  border-color: rgba(2, 210, 254, 0.18);
}

.hero__proof {
  position: relative;
  z-index: 3;
  background: var(--white);
}

.hero__proof span {
  min-height: 112px;
  align-content: center;
  padding: 24px 30px;
  transition: background-color 0.25s ease;
}

.hero__proof span:hover {
  background: rgba(238, 240, 255, 0.68);
}

@keyframes hero-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hero-route {
  from { left: 0; opacity: 0; }
  12%, 82% { opacity: 1; }
  to { left: 100%; opacity: 0; }
}

@keyframes hero-status-pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1120px) {
  .hero__content {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(44px, 5.3vw, 64px);
  }

  .hero__intro {
    padding-inline: clamp(38px, 4.5vw, 58px);
  }

  .hero__signal-flow .hero__signal {
    padding: 14px;
  }
}

@media (max-width: 920px) {
  .hero {
    padding: 96px 16px 36px;
  }

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

  .hero__intro {
    padding: 58px 50px 70px;
    border-right: 0;
  }

  .hero__intro::after {
    left: 50px;
    bottom: 32px;
  }

  .hero__system {
    min-height: 610px;
    border-top: 1px solid rgba(11, 10, 163, 0.1);
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 84px 9px 28px;
  }

  .hero__content {
    border-radius: 26px;
  }

  .hero__intro {
    padding: 36px 23px 56px;
  }

  .hero__intro::after {
    left: 23px;
    bottom: 26px;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
    line-height: 1.3;
  }

  .hero h1 {
    font-size: clamp(38px, 12.2vw, 54px);
    line-height: 0.95;
  }

  .hero__copy {
    margin-top: 25px;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .hero__system {
    min-height: 0;
    padding: 10px;
  }

  .hero__visual-frame {
    padding: 14px;
    border-radius: 20px;
  }

  .hero__visual-topline {
    align-items: flex-start;
  }

  .hero__ai-mark {
    width: auto;
    max-width: 75%;
    margin: 0;
  }

  .hero__visual-status {
    font-size: 0;
  }

  .hero__signal--featured {
    min-height: 350px;
    margin: 18px 0 12px;
    padding: 27px 23px;
    border-radius: 23px;
  }

  .hero__signal--featured h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .hero__signal-flow {
    grid-template-columns: 1fr;
  }

  .hero__signal-flow .hero__signal {
    min-height: 92px;
  }

  .hero__proof span {
    min-height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__signal--featured,
  .hero__visual-route i,
  .hero__visual-status i {
    animation: none;
  }
}

/* Animated growth receipt */
.growth-receipt {
  padding: 76px 20px;
  overflow: hidden;
  background: var(--white);
}

.growth-receipt__heading {
  width: min(100%, 1280px);
  margin: 0 auto 28px;
  text-align: center;
}

.growth-receipt__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.growth-receipt__stage {
  position: relative;
  width: min(100%, 1280px);
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 22%, rgba(2, 210, 254, 0.55), transparent 25%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.16), transparent 23%),
    linear-gradient(135deg, #0b0aa3 0%, #211fbe 58%, #123bc4 100%);
  box-shadow: 0 24px 64px rgba(11, 10, 163, 0.14);
}

.growth-receipt__stage::before,
.growth-receipt__stage::after {
  position: absolute;
}

.growth-receipt__stage::before {
  content: "2,000+\A$12M+\A60+\A40+";
  top: 70px;
  left: 7%;
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.06em;
  white-space: pre;
}

.growth-receipt__stage::after {
  content: "";
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.growth-receipt__printer {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 68%;
  width: min(500px, calc(100% - 48px));
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #cfd9f7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.growth-receipt__printer::before {
  content: "LIGENIQO / RESULTS";
  position: absolute;
  top: 16px;
  left: 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.growth-receipt__printer span {
  position: absolute;
  right: 24px;
  bottom: 14px;
  left: 24px;
  height: 8px;
  border-radius: 999px;
  background: #090922;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.12);
}

.growth-receipt__paper {
  position: absolute;
  z-index: 2;
  top: 112px;
  left: 68%;
  width: min(450px, calc(100% - 84px));
  margin: 0;
  padding: 28px 34px 26px;
  color: #10101a;
  background:
    repeating-linear-gradient(0deg, rgba(11, 10, 163, 0.018) 0 1px, transparent 1px 5px),
    #fffef8;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  clip-path: inset(0 0 100% 0);
  transform: translateX(-50%) translateY(-26px) scaleY(0.96);
  transform-origin: top center;
}

.growth-receipt__paper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 12px;
  background: linear-gradient(135deg, transparent 50%, #fffef8 51%) 0 0 / 18px 18px repeat-x;
}

.growth-receipt.is-visible .growth-receipt__paper {
  animation: growthReceiptFeed 0.78s cubic-bezier(0.22, 0.74, 0.2, 1) 0.04s forwards;
}

.growth-receipt__paper-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.growth-receipt__rule {
  height: 1px;
  margin: 16px 0;
  background: repeating-linear-gradient(90deg, #20202a 0 7px, transparent 7px 12px);
  opacity: 0.48;
}

.growth-receipt__row,
.growth-receipt__total {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: baseline;
}

.growth-receipt__row {
  margin: 0 0 13px;
  opacity: 0;
  transform: translateY(10px);
}

.growth-receipt.is-visible .growth-receipt__row {
  animation: growthReceiptLine 0.24s ease-out calc(0.38s + var(--receipt-row) * 0.11s) forwards;
}

.growth-receipt__row span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.growth-receipt__row strong {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.growth-receipt__total {
  grid-template-columns: 74px 1fr;
  color: var(--blue);
  opacity: 0;
  transform: translateY(10px);
}

.growth-receipt.is-visible .growth-receipt__total {
  animation: growthReceiptLine 0.28s ease-out 0.88s forwards;
}

.growth-receipt__total span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-receipt__total strong {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.growth-receipt__barcode {
  width: 54%;
  height: 22px;
  margin: 18px auto 0;
  background: repeating-linear-gradient(90deg, #111 0 2px, transparent 2px 5px, #111 5px 6px, transparent 6px 10px);
  opacity: 0;
}

.growth-receipt.is-visible .growth-receipt__barcode {
  animation: growthReceiptLine 0.24s ease-out 1.02s forwards;
}

@keyframes growthReceiptFeed {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(-50%) translateY(-26px) scaleY(0.96);
  }
  65% {
    clip-path: inset(0 0 8% 0);
  }
  100% {
    clip-path: inset(0 0 -16px 0);
    transform: translateX(-50%) translateY(0) scaleY(1);
  }
}

@keyframes growthReceiptLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .growth-receipt__stage::before {
    display: none;
  }

  .growth-receipt__printer,
  .growth-receipt__paper {
    left: 50%;
  }
}

@media (max-width: 620px) {
  .growth-receipt {
    padding: 58px 10px;
  }

  .growth-receipt__heading {
    margin-bottom: 24px;
  }

  .growth-receipt__stage {
    min-height: 500px;
    border-radius: 24px;
  }

  .growth-receipt__printer {
    top: 38px;
    width: calc(100% - 32px);
    height: 68px;
  }

  .growth-receipt__printer::before {
    top: 16px;
    left: 20px;
    font-size: 9px;
  }

  .growth-receipt__printer span {
    right: 20px;
    bottom: 16px;
    left: 20px;
  }

  .growth-receipt__paper {
    top: 92px;
    width: calc(100% - 44px);
    padding: 25px 20px 24px;
  }

  .growth-receipt__paper-head {
    font-size: 10px;
  }

  .growth-receipt__row {
    margin-bottom: 13px;
  }

  .growth-receipt__row strong {
    font-size: 17px;
  }

  .growth-receipt__total {
    grid-template-columns: 58px 1fr;
  }

  .growth-receipt__total strong {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .growth-receipt__row,
  .growth-receipt__total,
  .growth-receipt__barcode {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .growth-receipt__paper {
    animation: none !important;
    clip-path: inset(0 0 -16px 0);
    transform: translateX(-50%);
  }
}

/* Industries: clearer category navigation and content relationship */
.industries {
  width: min(calc(100% - 40px), 1240px);
  padding-top: 84px;
  padding-bottom: 96px;
}

.industries .section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.industry-explorer {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(11, 10, 163, 0.1);
  border-radius: 30px;
  background: var(--soft-sky);
  box-shadow: 0 28px 70px rgba(11, 10, 163, 0.08);
}

.industry-filters {
  counter-reset: industry-filter;
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.industry-filter {
  counter-increment: industry-filter;
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 68px;
  padding: 12px 14px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.industry-filter::before {
  content: "0" counter(industry-filter);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.industry-filter::after {
  content: "\2192";
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.industry-filter:hover {
  border-color: transparent;
  background: var(--soft-blue);
  color: var(--blue);
  transform: translateX(2px);
}

.industry-filter.is-active {
  border-color: transparent;
  background: var(--blue);
  color: var(--white);
  transform: none;
  box-shadow: 0 12px 28px rgba(11, 10, 163, 0.2);
}

.industry-filter.is-active::before,
.industry-filter.is-active::after {
  color: var(--cyan);
}

.industry-filter.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.industry-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(360px, 1.22fr);
  gap: 12px;
  align-items: stretch;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

.industry-list {
  counter-reset: industry-market;
  display: grid;
  grid-template-columns: 1fr;
  align-content: stretch;
  gap: 8px;
}

.industry-list span {
  counter-increment: industry-market;
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid rgba(11, 10, 163, 0.09);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 8px 22px rgba(11, 10, 163, 0.035);
}

.industry-list span::before {
  content: counter(industry-market);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.industry-list span:hover {
  border-color: rgba(11, 10, 163, 0.18);
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11, 10, 163, 0.07);
}

.industry-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 450px;
  padding: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 16%, rgba(2, 210, 254, 0.24), transparent 25%),
    linear-gradient(145deg, var(--soft-blue), var(--white));
}

.industry-visual::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 74px;
  height: 74px;
  border: 16px solid rgba(11, 10, 163, 0.08);
  border-radius: 50%;
}

.industry-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 18px 28px rgba(11, 10, 163, 0.12));
}

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

  .industry-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    margin: 0;
    padding: 8px;
    scrollbar-width: none;
  }

  .industry-filter {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    width: auto;
    min-height: 48px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .industry-filter::after {
    display: none;
  }

  .industry-panel {
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr);
    gap: 10px;
  }

  .industry-visual {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .industries {
    width: min(calc(100% - 24px), 1240px);
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .industries .section__heading {
    margin-bottom: 24px;
  }

  .industry-explorer {
    gap: 10px;
    padding: 9px;
    border-radius: 24px;
  }

  .industry-filters {
    border-radius: 17px;
  }

  .industry-filter {
    font-size: 13px;
  }

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

  .industry-visual {
    order: -1;
    min-height: 280px;
    padding: 0;
    border-radius: 17px;
  }

  .industry-visual img {
    max-height: none;
  }

  .industry-list {
    gap: 7px;
  }

  .industry-list span {
    min-height: 62px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 14px;
  }
}

/* Keep the navigation capsule floating after legacy responsive rules. */
@media (max-width: 920px) {
  .site-header {
    top: 0;
    width: min(calc(100% - 20px), 720px);
    min-height: 60px;
    padding: 8px 9px 8px 16px;
    border-radius: 999px;
  }

  .site-header.is-open {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
  }

  .site-header.is-open .site-nav {
    gap: 5px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid rgba(11, 10, 163, 0.08);
    border-radius: 20px;
    background: rgba(238, 240, 255, 0.5);
  }

  .site-header.is-open .site-nav a {
    padding: 11px 13px;
  }

  .site-header.is-open .header-actions {
    padding: 4px 8px 8px;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 18px);
  }
}

/* Editorial Ligeniqo story and results */
.agency-story {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.agency-story__intro {
  display: grid;
  justify-items: center;
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 148px) 0 clamp(100px, 11vw, 158px);
  text-align: center;
}

.agency-story__intro .eyebrow {
  margin: 0 0 25px;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.19em;
}

.agency-story__intro h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.1vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-transform: none;
}

.agency-story__intro h2 span {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  background: linear-gradient(90deg, var(--blue), #315ce5 48%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.agency-story__intro > p:last-child {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.agency-story__results {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: clamp(64px, 8vw, 120px) clamp(180px, 25vw, 420px);
  min-height: 600px;
  padding: clamp(76px, 8vw, 116px) clamp(56px, 9vw, 150px);
  overflow: hidden;
  border-radius: 44px 44px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(2, 210, 254, 0.2), transparent 29%),
    radial-gradient(circle at 86% 76%, rgba(48, 82, 255, 0.32), transparent 33%),
    linear-gradient(145deg, #030319 0%, #050440 43%, #0b0aa3 100%);
}

.agency-story__results::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 17%;
  right: 17%;
  height: 32px;
  border-radius: 0 0 32px 32px;
  background: var(--white);
}

.agency-story__results::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  pointer-events: none;
}

.agency-story__glow {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(72vw, 900px);
  aspect-ratio: 1.8;
  border: 1px solid rgba(2, 210, 254, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(2, 210, 254, 0.025),
    0 0 0 86px rgba(92, 91, 255, 0.025),
    inset 0 0 120px rgba(2, 210, 254, 0.055);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.agency-story__brandmark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: min(34vw, 430px);
  transform: translate(-50%, -50%);
  opacity: 0.74;
}

.agency-story__brandmark::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(2, 210, 254, 0.18);
  filter: blur(80px);
  animation: agency-glow 5.5s ease-in-out infinite;
}

.agency-story__brandmark img {
  position: relative;
  width: 100%;
}

.agency-story__fact {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  width: min(100%, 230px);
}

.agency-story__fact:nth-of-type(even) {
  justify-self: end;
  text-align: right;
}

.agency-story__fact strong {
  color: var(--white);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.agency-story__fact span {
  max-width: 190px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.agency-story__fact:nth-of-type(even) span {
  justify-self: end;
}

@keyframes agency-glow {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 920px) {
  .agency-story__intro {
    padding-block: 90px 110px;
  }

  .agency-story__results {
    gap: 90px 160px;
    min-height: 540px;
    padding: 78px 50px;
    border-radius: 34px 34px 0 0;
  }

  .agency-story__brandmark {
    width: min(38vw, 320px);
  }
}

@media (max-width: 620px) {
  .agency-story__intro {
    width: min(100% - 36px, 980px);
    padding-block: 72px 84px;
  }

  .agency-story__intro h2 {
    font-size: clamp(32px, 9.5vw, 44px);
  }

  .agency-story__intro > p:last-child {
    margin-top: 24px;
    font-size: 16px;
  }

  .agency-story__results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 210px 20px;
    min-height: 670px;
    padding: 72px 22px 62px;
    border-radius: 28px 28px 0 0;
  }

  .agency-story__results::before {
    left: 24%;
    right: 24%;
    height: 22px;
  }

  .agency-story__brandmark {
    width: min(62vw, 270px);
  }

  .agency-story__fact {
    align-content: start;
    width: 100%;
  }

  .agency-story__fact:nth-of-type(even) {
    text-align: right;
  }

  .agency-story__fact strong {
    font-size: clamp(32px, 10vw, 45px);
  }

  .agency-story__fact span {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agency-story__brandmark::before {
    animation: none;
  }
}

/* Compact white brand mark inside the dark hero system. */
.hero__ai-mark::before {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    rgba(255, 255, 255, 0.12)
    url("assets/logo-mark-white.svg") center / 17px 17px no-repeat;
}

/* Compact the story into one desktop viewport. */
.agency-story__intro {
  padding: clamp(58px, 6vw, 82px) 0 clamp(72px, 7vw, 96px);
}

.agency-story__intro .eyebrow {
  margin-bottom: 20px;
}

.agency-story__intro h2 {
  max-width: 860px;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.06;
}

.agency-story__intro h2 span {
  margin-top: 6px;
}

.agency-story__intro > p:last-child {
  max-width: 540px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.48;
}

.agency-story__results {
  grid-template-rows: repeat(2, minmax(112px, 1fr));
  gap: clamp(36px, 4vw, 58px) clamp(150px, 24vw, 400px);
  min-height: 480px;
  padding: clamp(54px, 5vw, 68px) clamp(48px, 8vw, 124px);
  border-radius: 38px 38px 0 0;
}

.agency-story__results::before {
  height: 24px;
  border-radius: 0 0 24px 24px;
}

.agency-story__brandmark {
  width: min(28vw, 330px);
}

.agency-story__fact {
  width: min(100%, 205px);
}

.agency-story__fact strong {
  font-size: clamp(34px, 3.4vw, 48px);
}

.agency-story__fact span {
  max-width: 175px;
  margin-top: 9px;
  font-size: 13px;
}

@media (max-width: 920px) {
  .agency-story__intro {
    padding-block: 68px 82px;
  }

  .agency-story__results {
    gap: 66px 130px;
    min-height: 500px;
    padding: 64px 42px 58px;
    border-radius: 32px 32px 0 0;
  }

  .agency-story__brandmark {
    width: min(38vw, 280px);
  }
}

@media (max-width: 620px) {
  .agency-story__intro {
    padding-block: 58px 68px;
  }

  .agency-story__intro h2 {
    font-size: clamp(30px, 9.2vw, 40px);
  }

  .agency-story__intro > p:last-child {
    font-size: 15px;
  }

  .agency-story__results {
    gap: 180px 16px;
    min-height: 610px;
    padding: 60px 18px 52px;
    border-radius: 26px 26px 0 0;
  }

  .agency-story__brandmark {
    width: min(60vw, 220px);
  }

  .agency-story__fact strong {
    font-size: clamp(30px, 9.5vw, 40px);
  }
}

/* Partner logos collected inside one premium capsule. */
.partner-strip {
  padding: 48px 20px 66px;
}

.partner-strip__inner {
  gap: 15px;
  width: min(100%, 1340px);
}

.partner-strip strong {
  margin-bottom: 12px;
}

.logo-marquee {
  position: relative;
  width: 100%;
  padding: 29px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 15% 0%, rgba(2, 210, 254, 0.2), transparent 30%),
    radial-gradient(circle at 88% 100%, rgba(59, 90, 255, 0.34), transparent 31%),
    linear-gradient(110deg, #030319 0%, #07064b 48%, #1111a2 100%);
  box-shadow:
    0 22px 54px rgba(11, 10, 163, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(2, 210, 254, 0.08);
  isolation: isolate;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(38px, 7vw, 100px);
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #040421 12%, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #10109b 12%, transparent);
}

.logo-marquee__track {
  position: relative;
  z-index: 2;
  animation-duration: 36s;
}

.logo-marquee__group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: clamp(28px, 3.5vw, 54px);
  padding-right: clamp(28px, 3.5vw, 54px);
}

.partner-logo {
  justify-self: center;
  align-self: center;
  font-size: 42px;
  opacity: 0.8;
  filter: grayscale(1) brightness(0) invert(1);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.partner-logo--duck {
  font-size: 35px;
}

.partner-logo--dapio {
  font-size: 48px;
}

.partner-logo--statum {
  font-size: 37px;
}

.partner-logo--kppay {
  font-size: 46px;
}

.partner-logo--retailhub {
  font-size: 42px;
}

.partner-logo--image {
  width: 164px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  background: none;
}

.partner-logo--new {
  width: 174px;
}

.partner-logo--eqvi {
  width: 126px;
  filter: none;
}

.partner-logo--crm {
  width: 166px;
  filter: none;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.035);
}

@media (max-width: 620px) {
  .partner-strip {
    padding: 38px 12px 54px;
  }

  .partner-strip__inner {
    gap: 12px;
  }

  .partner-strip strong {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .logo-marquee {
    padding: 23px 0;
    border-radius: 30px;
  }

  .logo-marquee__group {
    grid-auto-columns: 144px;
    gap: 24px;
    padding-right: 24px;
  }

  .partner-logo {
    font-size: 32px;
  }

  .partner-logo--duck {
    font-size: 28px;
  }

  .partner-logo--dapio,
  .partner-logo--kppay {
    font-size: 36px;
  }

  .partner-logo--statum {
    font-size: 29px;
  }

  .partner-logo--retailhub {
    font-size: 33px;
  }

  .partner-logo--image {
    width: 128px;
    height: 36px;
  }

  .partner-logo--eqvi {
    width: 100px;
  }

  .partner-logo--crm {
    width: 132px;
  }
}

/* How we work: interactive dark system modules */
.team-band {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 112px) 24px clamp(88px, 9vw, 126px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(2, 210, 254, 0.18), transparent 27%),
    radial-gradient(circle at 86% 88%, rgba(50, 72, 255, 0.32), transparent 31%),
    linear-gradient(145deg, #020217 0%, #06053d 48%, #0b0aa3 100%);
}

.team-band::before,
.team-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.team-band::before {
  top: 110px;
  left: 50%;
  width: min(78vw, 1080px);
  aspect-ratio: 2.3;
  border: 1px solid rgba(2, 210, 254, 0.14);
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.018);
  transform: translateX(-50%) rotate(-5deg);
}

.team-band::after {
  right: -150px;
  bottom: -210px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  width: min(100%, 1280px);
}

.team-band__content {
  display: grid;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.team-band__content .eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.team-band__content h2 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.team-band__content > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.52;
  text-align: center;
}

.team-band__principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
  perspective: 1200px;
}

.team-principle {
  --module-accent: #02d2fe;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 150px auto;
  gap: 27px;
  min-width: 0;
  min-height: 390px;
  margin: 0;
  padding: 28px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 58px rgba(0, 0, 0, 0.18);
  outline: none;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.team-principle:nth-child(2) {
  --module-accent: #6c72ff;
}

.team-principle:nth-child(3) {
  --module-accent: #33a5ff;
}

.team-principle:hover,
.team-principle:focus-visible,
.team-principle:focus-within {
  z-index: 6;
  border-color: color-mix(in srgb, var(--module-accent) 62%, white 10%);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 34px 74px rgba(0, 0, 0, 0.3), 0 0 54px color-mix(in srgb, var(--module-accent) 18%, transparent);
  transform: translateY(-11px);
}

.team-principle__object {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-self: end;
  height: 116px;
  padding: 25px 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px 16px 22px 22px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--module-accent) 54%, #11113b), #101034 78%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -13px 24px rgba(0, 0, 0, 0.26),
    0 24px 32px rgba(0, 0, 0, 0.3);
  transform: rotateX(7deg);
  transform-origin: bottom center;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.team-principle__object::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 15px;
  width: 48%;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: color-mix(in srgb, var(--module-accent) 45%, #11113b);
  transform: skewX(-20deg);
  transform-origin: bottom left;
}

.team-principle__object::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.team-principle:hover .team-principle__object,
.team-principle:focus-visible .team-principle__object,
.team-principle:focus-within .team-principle__object {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -13px 24px rgba(0, 0, 0, 0.22), 0 34px 45px rgba(0, 0, 0, 0.38);
  transform: rotateX(0deg) translateY(-7px) scale(1.02);
}

.team-principle__object img {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  opacity: 0.9;
}

.team-principle__object span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.team-principle__copy {
  display: grid;
  align-content: start;
  gap: 10px;
  text-align: left;
}

.team-principle__copy strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1.16;
}

.team-principle__copy > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.48;
}

.team-principle__tags {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.team-principle__tags span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 6, 60, 0.84);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-principle__tags span:nth-child(1) {
  top: 82px;
  left: -14px;
}

.team-principle__tags span:nth-child(2) {
  top: 26px;
  right: -12px;
  transition-delay: 0.05s;
}

.team-principle__tags span:nth-child(3) {
  top: 152px;
  right: -18px;
  transition-delay: 0.1s;
}

.team-principle:hover .team-principle__tags span,
.team-principle:focus-visible .team-principle__tags span,
.team-principle:focus-within .team-principle__tags span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-band__cta {
  justify-self: center;
  min-width: 190px;
  margin-top: 2px;
  box-shadow: 0 16px 34px rgba(2, 210, 254, 0.2);
}

@media (max-width: 920px) {
  .team-band__inner {
    gap: 38px;
    text-align: initial;
  }

  .team-band__principles {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    margin: 12px auto 0;
  }

  .team-principle {
    grid-template-columns: 170px minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    min-height: 230px;
  }

  .team-principle__object {
    align-self: center;
  }

  .team-principle__copy {
    align-content: center;
  }
}

@media (max-width: 620px) {
  .team-band {
    padding: 68px 14px 78px;
  }

  .team-band__content h2 {
    font-size: clamp(34px, 10.5vw, 45px);
  }

  .team-band__content > p:last-child {
    font-size: 15px;
  }

  .team-band__principles {
    gap: 14px;
  }

  .team-principle {
    grid-template-columns: 1fr;
    grid-template-rows: 132px auto;
    min-height: 340px;
    padding: 22px;
  }

  .team-principle__object {
    height: 104px;
  }

  .team-principle__tags {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px;
  }

  .team-principle__tags span,
  .team-principle__tags span:nth-child(n) {
    position: static;
    min-height: 30px;
    padding: 0 10px;
    opacity: 1;
    transform: none;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-principle,
  .team-principle__object,
  .team-principle__tags span {
    transition: none;
  }
}

/* Compact How we work section */
.team-band {
  padding: clamp(56px, 6vw, 76px) 24px clamp(62px, 6.5vw, 84px);
}

.team-band::before {
  top: 40px;
  width: min(72vw, 920px);
  opacity: 0.5;
}

.team-band::after {
  display: none;
}

.team-band__inner {
  gap: 28px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.team-band__content {
  justify-items: start;
  max-width: 760px;
  margin: 0;
  text-align: left;
}

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

.team-band__content h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.team-band__content > p:last-child {
  max-width: 650px;
  margin: 16px 0 0;
  font-size: 15px;
  text-align: left;
}

.team-band__principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  perspective: none;
}

.team-principle {
  display: flex;
  min-height: 0;
  padding: 20px;
  gap: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  transform: none;
}

.team-principle:hover,
.team-principle:focus-visible,
.team-principle:focus-within {
  border-color: rgba(2, 210, 254, 0.48);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.team-principle__number {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.team-principle__copy {
  gap: 7px;
}

.team-principle__copy strong {
  font-size: 17px;
}

.team-principle__copy > span {
  font-size: 13px;
  line-height: 1.42;
}

@media (max-width: 760px) {
  .team-band__principles {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .team-principle {
    min-height: 0;
    padding: 18px;
  }
}

/* Home services: editorial cards with accessible detail dialogs. */
.home-services {
  padding: clamp(78px, 8vw, 116px) 24px;
  background: #f7f8fb;
}

.home-services__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  gap: 44px;
  align-items: end;
  width: min(100%, 1280px);
  margin: 0 auto 42px;
}

.home-services__heading .eyebrow {
  margin: 0 0 16px;
}

.home-services__heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-services__heading > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 18px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.home-service-card {
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.home-service-card__visual {
  position: relative;
  display: block;
  height: clamp(360px, 34vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(11, 10, 163, 0.08);
  border-radius: 28px;
  background: linear-gradient(145deg, #eef0ff, #d9f8ff);
  box-shadow: 0 18px 44px rgba(11, 10, 163, 0.08);
  isolation: isolate;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.home-service-card__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 28, 0.02) 42%, rgba(3, 3, 28, 0.24));
  pointer-events: none;
}

.home-service-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.home-service-card--consulting .home-service-card__visual img {
  transform: scale(1);
}

.home-service-card__badge,
.home-service-card__number,
.home-service-card__open {
  position: absolute;
  z-index: 4;
}

.home-service-card__badge {
  top: 22px;
  left: 50%;
  min-width: 104px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 7, 47, 0.55);
  box-shadow: 0 12px 26px rgba(3, 3, 28, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}

.home-service-card__number {
  right: 22px;
  bottom: 21px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.home-service-card__open {
  bottom: 18px;
  left: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(3, 3, 28, 0.14);
  font-size: 22px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.35s ease;
}

.home-service-card__copy {
  display: grid;
  gap: 8px;
  padding: 19px 4px 0;
}

.home-service-card__copy strong {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.home-service-card__copy > span {
  max-width: 390px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.home-service-card:hover .home-service-card__visual,
.home-service-card:focus-visible .home-service-card__visual {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(11, 10, 163, 0.15);
}

.home-service-card:hover .home-service-card__visual img,
.home-service-card:focus-visible .home-service-card__visual img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.02);
}

.home-service-card--consulting:hover .home-service-card__visual img,
.home-service-card--consulting:focus-visible .home-service-card__visual img {
  transform: scale(1.055);
}

.home-service-card:hover .home-service-card__open,
.home-service-card:focus-visible .home-service-card__open {
  color: var(--white);
  background: var(--blue);
  transform: rotate(8deg);
}

.home-service-card:focus-visible {
  outline: 0;
}

.home-service-card--lead { order: 1; }
.home-service-card--brand { order: 2; }
.home-service-card--influencer { order: 3; }
.home-service-card--paid { order: 4; }
.home-service-card--demand { order: 5; }
.home-service-card--consulting { order: 6; }
.home-service-card--automation { order: 7; }
.home-service-card--web { order: 8; }

.home-service-card--lead { order: 1; }
.home-service-card--brand { order: 2; }
.home-service-card--influencer { order: 3; }
.home-service-card--paid { order: 4; }
.home-service-card--demand { order: 5; }
.home-service-card--consulting { order: 6; }
.home-service-card--automation { order: 7; }
.home-service-card--web { order: 8; }

.home-service-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.home-service-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.home-service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 23, 0.72);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}

.home-service-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(2, 210, 254, 0.18), transparent 32%),
    var(--white);
  box-shadow: 0 34px 100px rgba(2, 2, 23, 0.34);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-service-modal.is-open .home-service-modal__panel {
  transform: translateY(0) scale(1);
}

.home-service-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(11, 10, 163, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.home-service-modal__index {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 16px;
  font-weight: 900;
}

.home-service-modal__panel .eyebrow {
  margin: 0 0 12px;
}

.home-service-modal__panel h2 {
  max-width: 590px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-service-modal__copy {
  max-width: 620px;
  margin: 22px 0 28px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.home-service-modal__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-service-modal__points span {
  min-height: 88px;
  padding: 18px;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(145deg, var(--soft-blue), rgba(241, 247, 251, 0.86));
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.home-service-modal__cases {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(11, 10, 163, 0.14);
}

.home-service-modal__case {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(11, 10, 163, 0.1);
}

.home-service-modal__case > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-service-modal__case p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .home-services__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .home-service-card__visual {
    height: 430px;
  }
}

@media (max-width: 620px) {
  .home-services {
    padding: 68px 14px 78px;
  }

  .home-services__heading {
    margin-bottom: 30px;
  }

  .home-services__heading h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .home-services__heading > p {
    font-size: 15px;
  }

  .home-services__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-service-card__visual {
    height: min(118vw, 480px);
    border-radius: 24px;
  }

  .home-service-modal {
    padding: 10px;
  }

  .home-service-modal__panel {
    max-height: calc(100dvh - 20px);
    padding: 30px 22px 26px;
    border-radius: 26px;
  }

  .home-service-modal__index {
    width: 52px;
    height: 52px;
    margin-bottom: 32px;
  }

  .home-service-modal__panel h2 {
    padding-right: 40px;
    font-size: clamp(34px, 11vw, 46px);
  }

  .home-service-modal__points {
    grid-template-columns: 1fr;
  }

  .home-service-modal__points span {
    min-height: 0;
  }

  .home-service-modal__case {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-service-card__visual,
  .home-service-card__visual img,
  .home-service-card__open,
  .home-service-modal,
  .home-service-modal__panel {
    transition: none;
  }
}

/* Service card order */
.home-service-card--lead { order: 1; }
.home-service-card--brand { order: 2; }
.home-service-card--influencer { order: 3; }
.home-service-card--paid { order: 4; }
.home-service-card--demand { order: 5; }
.home-service-card--consulting { order: 6; }
.home-service-card--automation { order: 7; }
.home-service-card--web { order: 8; }

/* Site-wide airier composition: smaller typography and narrower content blocks. */
:root {
  --max: 1080px;
}

/* Leadership — senior team feature on the About page. */
.site-nav a[href*="about/index.html"],
.footer__col a[href*="about/index.html"] {
  display: none;
}

.leadership {
  width: min(1120px, calc(100% - 40px));
  margin: 52px auto;
  padding: 42px 46px 46px;
  color: #fff;
  overflow: hidden;
  position: relative;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 42%, rgba(31, 161, 255, 0.28), transparent 27%),
    radial-gradient(circle at 9% 12%, rgba(0, 204, 247, 0.14), transparent 27%),
    linear-gradient(125deg, #06162d 0%, #09084d 48%, #1816aa 100%);
  box-shadow: 0 34px 80px rgba(10, 19, 77, 0.18);
}

.leadership::before,
.leadership::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(96, 212, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.leadership::before {
  width: 680px;
  height: 680px;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.leadership::after {
  width: 880px;
  height: 360px;
  left: 50%;
  bottom: -265px;
  transform: translateX(-50%);
}

.leadership__intro {
  max-width: 660px;
  margin: 0 auto 26px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.leadership__intro .eyebrow {
  color: #15caf1;
}

.leadership__intro h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.leadership__intro > p:last-child {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.leadership__stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.leadership-card {
  min-height: 232px;
  padding: 16px;
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 350ms ease, border-color 350ms ease, background 350ms ease, box-shadow 350ms ease;
}

.leadership-card::before {
  content: "";
  width: 210px;
  height: 210px;
  position: absolute;
  right: -82px;
  top: -92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 202, 241, 0.3), transparent 68%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 350ms ease, transform 450ms ease;
}

.leadership-card:hover {
  transform: translateY(-7px);
  border-color: rgba(56, 205, 255, 0.52);
  background: rgba(255, 255, 255, 0.115);
  box-shadow: 0 26px 45px rgba(0, 0, 24, 0.28);
}

.leadership-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.leadership-card__topline,
.leadership-card__tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.leadership-card__topline {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leadership-card__role {
  padding: 7px 13px;
  border-radius: 999px;
  color: #0b0aa3;
  background: #fff;
  letter-spacing: 0.08em;
}

.leadership-card__portrait {
  width: 172px;
  height: 200px;
  margin: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 191, 255, 0.18);
  filter: saturate(0.86) contrast(1.04);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.leadership-card:hover .leadership-card__portrait {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 19px 38px rgba(0, 191, 255, 0.3);
}

.leadership-card--ceo .leadership-card__portrait {
  object-position: center 30%;
}

.leadership-card__details {
  min-width: 0;
  padding: 46px 4px 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.leadership-card__content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.leadership-card__content p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.5;
}

.leadership-card__tags {
  margin-top: 17px;
  flex-wrap: wrap;
}

.leadership-card__tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
}

@media (max-width: 920px) {
  .leadership {
    width: min(100% - 24px, 720px);
    padding: 40px 20px 24px;
    border-radius: 30px;
  }

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

  .leadership-card {
    min-height: 218px;
  }
}

@media (max-width: 560px) {
  .leadership {
    margin-block: 30px;
    padding-inline: 14px;
  }

  .leadership__intro {
    margin-bottom: 28px;
  }

  .leadership-card {
    min-height: 0;
    padding: 14px;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 15px;
    border-radius: 23px;
  }

  .leadership-card__portrait {
    width: 118px;
    height: 154px;
    border-radius: 18px;
  }

  .leadership-card__topline {
    top: 13px;
    right: 13px;
  }

  .leadership-card__details {
    padding-top: 42px;
  }

  .leadership-card__content p {
    font-size: 0.78rem;
  }

  .leadership-card__tags {
    gap: 5px;
    margin-top: 11px;
  }

  .leadership-card__tags span {
    padding: 4px 7px;
    font-size: 0.6rem;
  }
}

/* FAQ deck — questions behave like cards pulled from a filing stack. */
.faq-deck-section {
  width: min(1120px, calc(100% - 40px));
  margin: 62px auto 76px;
  padding: 44px 48px 32px;
  overflow: hidden;
  position: relative;
  border-radius: 38px;
  background:
    radial-gradient(circle at 14% 16%, rgba(28, 210, 244, 0.18), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(82, 76, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #07172f 0%, #0b0a57 50%, #1714a9 100%);
  box-shadow: 0 34px 80px rgba(16, 22, 82, 0.18);
}

.faq-deck__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.65fr);
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 12;
  color: #fff;
}

.faq-deck__heading .eyebrow {
  color: #16caf2;
}

.faq-deck__heading h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.faq-deck__heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.faq-deck__stage {
  height: 445px;
  margin-top: 26px;
  position: relative;
  perspective: 1400px;
}

.faq-deck__ambient {
  width: min(650px, 76%);
  height: 280px;
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(39, 191, 255, 0.2);
  filter: blur(72px);
}

.faq-deck {
  width: 100%;
  height: 100%;
  position: relative;
}

.faq-card {
  --faq-x: 0px;
  --faq-y: 0px;
  --faq-rotate: 0deg;
  --faq-scale: 1;
  width: min(720px, calc(100% - 110px));
  min-height: 340px;
  position: absolute;
  left: 50%;
  top: 24px;
  transform:
    translateX(calc(-50% + var(--faq-x)))
    translateY(var(--faq-y))
    rotate(var(--faq-rotate))
    scale(var(--faq-scale));
  transform-origin: 50% 100%;
  border-radius: 30px;
  filter: saturate(0.72) brightness(0.77);
  opacity: 0.72;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease, opacity 450ms ease;
}

.faq-card.is-instant {
  transition: none;
}

.faq-card.is-active {
  filter: none;
  opacity: 1;
}

.faq-card__select {
  width: 100%;
  min-height: 340px;
  padding: 24px 28px 21px;
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  color: #111223;
  cursor: pointer;
  background:
    linear-gradient(rgba(15, 19, 45, 0.032) 1px, transparent 1px) 0 0 / 100% 7px,
    linear-gradient(145deg, #fff 0%, #f8fbff 58%, #e8f7ff 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 30, 0.34);
}

.faq-card__select::before {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  right: -98px;
  top: -112px;
  border: 34px solid rgba(18, 194, 240, 0.1);
  border-radius: 50%;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-card.is-active .faq-card__select:hover::before {
  transform: translate(-16px, 16px) rotate(18deg);
}

.faq-card__select:focus-visible {
  outline: 3px solid #13c9ef;
  outline-offset: 4px;
}

.faq-card__topline,
.faq-card__foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
  color: #1113a4;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faq-card__body {
  margin: auto 0;
  display: grid;
  position: relative;
  z-index: 1;
}

.faq-card__label {
  color: #10bfeb;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-card__body strong {
  max-width: 600px;
  margin-top: 8px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.faq-card__rule {
  width: 100%;
  height: 1px;
  margin: 23px 0 19px;
  background: repeating-linear-gradient(90deg, rgba(10, 10, 87, 0.4) 0 8px, transparent 8px 14px);
}

.faq-card__answer {
  max-width: 620px;
  margin-top: 8px;
  color: #45536a;
  font-size: 0.96rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease 120ms, transform 380ms ease 120ms;
}

.faq-card.is-active .faq-card__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-card__foot {
  margin-top: auto;
  color: rgba(17, 18, 35, 0.48);
  font-size: 0.58rem;
}

.faq-card.is-active .faq-card__foot span:last-child {
  color: #1113a4;
}

.faq-deck__controls {
  min-height: 54px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 15;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(4, 5, 43, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faq-deck__arrow,
.faq-deck__pagination button {
  border: 0;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  background: transparent;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.faq-deck__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
}

.faq-deck__arrow:hover {
  color: #090a76;
  background: #fff;
  transform: scale(1.04);
}

.faq-deck__pagination {
  display: flex;
  gap: 4px;
}

.faq-deck__pagination button {
  min-width: 38px;
  height: 36px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
}

.faq-deck__pagination button:hover,
.faq-deck__pagination button.is-active {
  color: #090a76;
  background: #fff;
}

@media (max-width: 760px) {
  .faq-deck-section {
    width: min(100% - 24px, 680px);
    margin-block: 36px 52px;
    padding: 40px 18px 22px;
    border-radius: 30px;
  }

  .faq-deck__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-deck__heading > p {
    max-width: 430px;
  }

  .faq-deck__stage {
    height: 430px;
    margin-top: 22px;
  }

  .faq-card {
    width: calc(100% - 36px);
    min-height: 350px;
  }

  .faq-card__select {
    min-height: 350px;
    padding: 24px 22px 20px;
  }

  .faq-card__answer {
    font-size: 0.86rem;
  }

  .faq-deck__controls {
    gap: 5px;
  }

  .faq-deck__arrow {
    width: 38px;
    height: 38px;
  }

  .faq-deck__pagination button {
    min-width: 31px;
    height: 32px;
    font-size: 0.58rem;
  }
}

@media (max-width: 420px) {
  .faq-deck__stage {
    height: 460px;
  }

  .faq-card,
  .faq-card__select {
    min-height: 375px;
  }

  .faq-card__topline span:last-child,
  .faq-card__foot span:first-child {
    display: none;
  }

  .faq-deck__pagination button {
    min-width: 27px;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-card,
  .faq-card__answer,
  .faq-card__select::before {
    transition: none;
  }
}

/* Application brief — final conversion block before the footer. */
.application {
  width: 100%;
  margin: 72px 0 0;
  padding: 18px clamp(18px, 3vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 14%, rgba(21, 204, 243, 0.2), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(72, 66, 255, 0.26), transparent 35%),
    linear-gradient(135deg, #06162d 0%, #0b0a61 52%, #1714aa 100%);
  box-shadow: 0 30px 80px rgba(15, 20, 79, 0.18);
}

.application::before {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  left: -280px;
  bottom: -310px;
  border: 1px solid rgba(59, 211, 255, 0.22);
  border-radius: 50%;
}

.application__intro {
  min-height: 100%;
  padding: 38px 30px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.application__brand {
  width: fit-content;
  margin-bottom: 52px;
  padding: 8px 13px 8px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.application__brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.application__intro .eyebrow {
  color: #17caf2;
}

.application__intro h2 {
  max-width: 430px;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(2.35rem, 4.6vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.application__lead {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.55;
}

.application__steps {
  margin: 46px 0 38px;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.application__steps li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.application__steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.application__steps li > span {
  color: #16caf2;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.application__steps strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
}

.application__steps p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
  line-height: 1.45;
}

.application__direct {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.application__direct a {
  color: #fff;
  font-weight: 800;
}

.application-form {
  padding: 30px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  color: #141526;
  background:
    linear-gradient(rgba(18, 20, 55, 0.025) 1px, transparent 1px) 0 0 / 100% 8px,
    #fff;
  box-shadow: 0 26px 60px rgba(2, 3, 35, 0.3);
}

.application-form__head {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e4e8f0;
}

.application-form__head span {
  color: #0b0aa3;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.application-form__head strong {
  color: #0f1120;
  font-size: 0.95rem;
}

.application-form__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.application-field {
  display: grid;
  gap: 8px;
}

.application-field--wide,
.application-field--message {
  grid-column: 1 / -1;
}

.application-field > span,
.application-options legend {
  color: #2d3348;
  font-size: 0.7rem;
  font-weight: 800;
}

.application-field input,
.application-field select,
.application-field textarea {
  width: 100%;
  border: 1px solid #dfe3ef;
  border-radius: 14px;
  outline: none;
  color: #151728;
  background: rgba(247, 249, 253, 0.86);
  font: inherit;
  font-size: 0.84rem;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.application-field input,
.application-field select {
  height: 50px;
  padding: 0 15px;
}

.application-field textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
}

.application-field input:focus,
.application-field select:focus,
.application-field textarea:focus {
  border-color: #15c7ef;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 199, 239, 0.12);
}

.application-field input::placeholder,
.application-field textarea::placeholder {
  color: #969dac;
}

.application-options {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.application-options legend {
  margin-bottom: 12px;
}

.application-options legend span {
  margin-right: 7px;
  color: #0b0aa3;
}

.application-options__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.application-options label {
  position: relative;
  cursor: pointer;
}

.application-options input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.application-options label span {
  min-height: 38px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  border: 1px solid #dfe3ef;
  border-radius: 999px;
  color: #4c5367;
  background: #f8f9fc;
  font-size: 0.7rem;
  font-weight: 700;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.application-options label:hover span {
  transform: translateY(-2px);
  border-color: #b7c1d7;
}

.application-options input:checked + span {
  color: #fff;
  border-color: #1113a4;
  background: #1113a4;
}

.application-options input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(21, 199, 239, 0.18);
}

.application-form__grid--selects {
  margin-top: 24px;
}

.application-field--message {
  margin-top: 22px;
}

.application-consent {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #737a8c;
  cursor: pointer;
  font-size: 0.68rem;
  line-height: 1.4;
}

.application-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #1113a4;
}

.application-form__submit-row {
  margin-top: 23px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.application-form__submit {
  min-height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(100deg, #08c5ed, #2733dc);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(21, 71, 220, 0.22);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.application-form__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(21, 71, 220, 0.3);
}

.application-form__submit span:last-child {
  font-size: 1.05rem;
}

.application-form__submit-row > p {
  margin: 0;
  color: #72798c;
  font-size: 0.62rem;
  line-height: 1.5;
}

.application-form .form-note {
  margin: 14px 0 0;
  color: #0b0aa3;
  font-size: 0.76rem;
  font-weight: 800;
}

@media (max-width: 920px) {
  .application {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .application__intro {
    padding: 32px 26px 24px;
  }

  .application__brand {
    margin-bottom: 36px;
  }

  .application__steps {
    margin-block: 34px 28px;
  }
}

@media (max-width: 620px) {
  .application {
    margin-top: 48px;
    padding: 10px;
  }

  .application__intro {
    padding: 28px 18px 22px;
  }

  .application__lead {
    font-size: 0.84rem;
  }

  .application__direct {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .application-form {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .application-form__grid,
  .application-form__submit-row {
    grid-template-columns: 1fr;
  }

  .application-form__submit-row > p {
    padding-left: 4px;
  }
}

body {
  font-size-adjust: 0.445;
}

@media (min-width: 921px) {
  .site-header {
    width: min(calc(100% - 64px), 1080px);
    min-height: 60px;
    padding: 7px 9px 7px 18px;
  }

  .brand img {
    width: 120px;
  }

  .site-nav a {
    padding: 8px 13px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 17px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero__content {
    width: min(100%, 1160px);
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    border-radius: 30px;
  }

  .hero__intro {
    padding: clamp(42px, 4.5vw, 60px);
  }

  .hero h1 {
    font-size: clamp(38px, 3.55vw, 56px);
  }

  .hero__copy {
    max-width: 510px;
    margin-top: 25px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 29px;
  }

  .hero__actions .btn {
    min-height: 48px;
    padding-inline: 23px;
  }

  .hero__system {
    min-height: 570px;
    padding: 17px;
  }

  .hero__visual-frame {
    padding: 19px;
    border-radius: 24px;
  }

  .hero__signal--featured {
    width: min(100%, 450px);
    min-height: 300px;
    margin: 19px auto 14px;
    padding: 34px;
    border-radius: 25px;
  }

  .hero__signal--featured h2 {
    font-size: clamp(30px, 2.9vw, 44px);
  }

  .hero__signal-flow .hero__signal {
    min-height: 92px;
    padding: 14px;
  }

  .hero__proof span {
    min-height: 88px;
    padding: 18px 23px;
  }

  .hero__proof strong {
    font-size: 16px;
  }

  .partner-strip {
    padding-block: 54px 70px;
  }

  .partner-strip__inner,
  .home-services__heading,
  .home-services__grid,
  .team-band__inner,
  .growth-receipt__heading,
  .growth-receipt__stage {
    width: min(100%, 1120px);
  }

  .logo-marquee {
    padding-block: 24px;
  }

  .home-services {
    padding-block: 94px 104px;
  }

  .home-services__heading {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
    gap: 70px;
    margin-bottom: 36px;
  }

  .home-services__heading h2 {
    max-width: 720px;
    font-size: clamp(34px, 3.8vw, 54px);
  }

  .home-services__heading > p {
    max-width: 350px;
    font-size: 15px;
  }

  .home-services__grid {
    gap: 42px 18px;
  }

  .home-service-card__visual {
    height: clamp(320px, 29vw, 405px);
    border-radius: 24px;
  }

  .home-service-card__copy strong {
    font-size: 19px;
  }

  .home-service-card__copy > span {
    font-size: 14px;
  }

  .agency-story__intro {
    width: min(100% - 80px, 820px);
    padding-block: 78px 88px;
  }

  .agency-story__intro h2 {
    max-width: 760px;
    font-size: clamp(30px, 3.2vw, 44px);
  }

  .agency-story__intro > p:last-child {
    max-width: 500px;
    margin-top: 22px;
    font-size: 15px;
  }

  .agency-story__results {
    grid-template-rows: repeat(2, minmax(100px, 1fr));
    gap: 34px clamp(160px, 23vw, 360px);
    min-height: 420px;
    padding: 50px clamp(70px, 10vw, 135px);
  }

  .agency-story__brandmark {
    width: min(25vw, 300px);
  }

  .agency-story__fact strong {
    font-size: clamp(30px, 3.1vw, 44px);
  }

  .agency-story__fact span {
    font-size: 12px;
  }

  .process {
    padding-block: 64px 76px;
  }

  .process__heading,
  .process-steps {
    width: min(calc(100% - 80px), 1180px);
  }

  .process__heading h2 {
    font-size: clamp(29px, 3vw, 40px);
  }

  .process-steps {
    grid-template-columns: repeat(7, minmax(150px, 1fr));
    margin-top: 34px;
    padding-bottom: 26px;
  }

  .process-step__label {
    font-size: clamp(13px, 1vw, 16px);
  }

  .process-slide,
  .process-slide__diagram {
    min-height: 460px;
  }

  .process-slide {
    flex-basis: min(50vw, 1100px);
  }

  .process-slide__content {
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: min(420px, calc(100% - 40px));
    padding: 18px 20px;
  }

  .process-slide__content h3 {
    font-size: clamp(21px, 1.9vw, 29px);
  }

  .audience-grid {
    gap: 14px;
  }

  .audience-grid article {
    padding: 22px;
  }

  .audience-index {
    width: 46px;
    height: 46px;
  }

  .audience-grid h3 {
    margin-top: 15px;
    font-size: 17px;
  }

  .audience-grid li {
    font-size: 14px;
  }

  .industries {
    width: min(calc(100% - 80px), 1120px);
    padding-block: 78px 88px;
  }

  .industry-explorer {
    grid-template-columns: minmax(220px, 0.31fr) minmax(0, 1fr);
    padding: 11px;
  }

  .industry-filter {
    min-height: 58px;
    font-size: 13px;
  }

  .industry-list span {
    padding: 13px 15px;
    font-size: 13px;
  }

  .industry-visual {
    min-height: 450px;
  }

  .team-band {
    padding-block: 86px 98px;
  }

  .team-band__inner {
    gap: 38px;
  }

  .team-band__content h2 {
    max-width: 700px;
    font-size: clamp(34px, 3.7vw, 52px);
  }

  .team-band__content > p:last-child {
    margin-top: 19px;
    font-size: 14px;
  }

  .team-band__principles {
    gap: 16px;
  }

  .team-principle {
    grid-template-rows: 126px auto;
    gap: 22px;
    min-height: 330px;
    padding: 22px;
  }

  .team-principle__object {
    height: 100px;
  }

  .team-principle__copy strong {
    font-size: 18px;
  }

  .team-principle__copy > span {
    font-size: 13px;
  }

  .growth-receipt {
    padding-block: 68px;
  }

  .growth-receipt__heading h2 {
    font-size: clamp(30px, 3.2vw, 46px);
  }

  .growth-receipt__stage {
    min-height: 460px;
  }

  .booking__layout {
    grid-template-columns: minmax(0, 620px);
    padding: 28px;
  }

  .booking__heading h2 {
    font-size: clamp(26px, 2.5vw, 34px);
  }

  .booking__field input,
  .booking__field textarea {
    padding: 15px 16px;
    font-size: 14px;
  }
}

/* Compact eight-card services grid. */
@media (min-width: 921px) {
  .home-services {
    min-height: 0;
    padding: 40px 24px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-services__heading {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
    gap: 58px;
    margin-bottom: 18px;
  }

  .home-services__heading .eyebrow {
    margin-bottom: 10px;
  }

  .home-services__heading h2 {
    max-width: 650px;
    font-size: clamp(32px, 3vw, 43px);
    line-height: 0.96;
  }

  .home-services__heading > p {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.45;
  }

  .home-services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .home-service-card__visual {
    height: clamp(138px, 12.5vw, 160px);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(11, 10, 163, 0.07);
  }

  .home-service-card--paid .home-service-card__visual img,
  .home-service-card--web .home-service-card__visual img {
    object-fit: contain;
    padding: 12px;
  }

  .home-service-card--consulting .home-service-card__visual img {
    transform: scale(1);
  }

  .home-service-card--consulting:hover .home-service-card__visual img,
  .home-service-card--consulting:focus-visible .home-service-card__visual img {
    transform: scale(1.055);
  }

  .home-service-card__badge {
    top: 11px;
    min-width: 72px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .home-service-card__number {
    right: 12px;
    bottom: 10px;
    font-size: 9px;
  }

  .home-service-card__open {
    width: 32px;
    height: 32px;
    bottom: 9px;
    left: 9px;
    font-size: 15px;
  }

  .home-service-card__copy {
    gap: 4px;
    padding: 8px 3px 0;
  }

  .home-service-card__copy strong {
    font-size: 14px;
    line-height: 1.14;
  }

  .home-service-card__copy > span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .home-service-card:hover .home-service-card__visual,
  .home-service-card:focus-visible .home-service-card__visual {
    transform: translateY(-5px);
    box-shadow: 0 19px 38px rgba(11, 10, 163, 0.13);
  }
}

/* Leadership and results combined into one compact brand story. */
.agency-story__person {
  width: 154px;
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.agency-story__person--founder {
  left: calc(50% - 245px);
}

.agency-story__person--ceo {
  left: calc(50% + 245px);
}

.agency-story__person img {
  width: 94px;
  height: 94px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 26, 0.34), 0 0 30px rgba(0, 203, 246, 0.13);
  filter: saturate(0.86) contrast(1.04);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.agency-story__person:hover img {
  transform: translateY(-5px) scale(1.04);
  border-color: #24d3f5;
  box-shadow: 0 20px 44px rgba(0, 0, 26, 0.42), 0 0 38px rgba(0, 203, 246, 0.26);
}

.agency-story__person div {
  display: grid;
  gap: 2px;
}

.agency-story__person strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.agency-story__person span {
  color: #18ccf3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .agency-story__person--founder {
    left: calc(50% - 190px);
  }

  .agency-story__person--ceo {
    left: calc(50% + 190px);
  }

  .agency-story__person img {
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .agency-story__results {
    min-height: 640px;
  }

  .agency-story__brandmark {
    top: 43%;
  }

  .agency-story__person {
    top: 57%;
    width: 128px;
  }

  .agency-story__person--founder {
    left: calc(50% - 76px);
  }

  .agency-story__person--ceo {
    left: calc(50% + 76px);
  }

  .agency-story__person img {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .agency-story__person strong {
    font-size: 11px;
  }
}

@media (min-width: 921px) {
  .agency-story__intro {
    width: min(calc(100% - 80px), 1180px);
  }

  .agency-story__intro h2 {
    max-width: 1180px;
    font-size: clamp(30px, 2.7vw, 40px);
    white-space: nowrap;
  }

  .agency-story__intro h2 span {
    white-space: normal;
  }
}

/* Full-screen opening mark. The floating navigation appears after this first scene. */
.logo-intro {
  min-height: 100svh;
  position: relative;
  z-index: 30;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(2, 210, 254, 0.17), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(58, 73, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #04152b 0%, #080645 48%, #1512a2 100%);
}

.logo-intro::before {
  content: "";
  width: min(76vw, 1050px);
  aspect-ratio: 1.9;
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(48, 210, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(2, 210, 254, 0.025),
    0 0 0 120px rgba(89, 84, 255, 0.025),
    inset 0 0 130px rgba(2, 210, 254, 0.045);
  animation: logo-intro-orbit 13s ease-in-out infinite alternate;
}

.logo-intro::after {
  content: "";
  width: min(34vw, 460px);
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(2, 210, 254, 0.19);
  filter: blur(105px);
  animation: logo-intro-glow 5.5s ease-in-out infinite;
}

.logo-intro__mark {
  width: min(48vw, 570px);
  position: relative;
  animation: logo-intro-reveal 1.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo-intro__mark img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 52px rgba(0, 0, 28, 0.34));
  animation: logo-intro-breathe 5.5s 1.35s ease-in-out infinite;
}

.logo-intro__tagline {
  margin: clamp(18px, 2.1vw, 28px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 30, 0.38);
}

.logo-intro__cta {
  position: absolute;
  z-index: 6;
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(22px, 4svh, 42px));
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 0 24px 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 30, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  animation: logo-intro-cta-reveal 0.9s 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.logo-intro__cta span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.22s ease;
}

.logo-intro__cta:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 22px 56px rgba(0, 0, 30, 0.3), 0 0 30px rgba(2, 210, 254, 0.12);
  transform: translate(-50%, -3px);
}

.logo-intro__cta:hover span {
  transform: translate(2px, -2px);
}

@keyframes logo-intro-cta-reveal {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes logo-intro-reveal {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(24px) scale(0.86);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-intro-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes logo-intro-orbit {
  from { transform: rotate(-7deg) scale(0.96); }
  to { transform: rotate(5deg) scale(1.04); }
}

@keyframes logo-intro-glow {
  0%, 100% { opacity: 0.5; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 620px) {
  .logo-intro__mark {
    width: min(70vw, 330px);
  }

  .logo-intro::before {
    width: 118vw;
    aspect-ratio: 1.15;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-intro::before,
  .logo-intro::after,
  .logo-intro__mark,
  .logo-intro__mark img,
  .logo-intro__tagline,
  .logo-intro__cta {
    animation: none;
  }
}

/* Case-study showcase replacing the duplicated receipt metrics. */
.cases-showcase {
  padding: 82px 20px 92px;
  overflow: hidden;
  background: #fff;
}

.cases-showcase__heading {
  width: min(100%, 1180px);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 70px;
  align-items: end;
}

.cases-showcase__heading .eyebrow {
  color: #10c9f1;
}

.cases-showcase__heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.cases-showcase__heading > p {
  max-width: 400px;
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cases-showcase__grid {
  width: min(100%, 1180px);
  min-height: 560px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 15%, rgba(2, 210, 254, 0.16), transparent 27%),
    radial-gradient(circle at 88% 85%, rgba(69, 62, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #06162d 0%, #0b0a5d 54%, #1714aa 100%);
  box-shadow: 0 28px 72px rgba(11, 10, 90, 0.16);
}

.case-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #fff;
  background: #10115a;
  isolation: isolate;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.case-card--featured {
  grid-row: 1 / -1;
}

.case-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms ease;
}

.case-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 6, 43, 0.04) 22%, rgba(4, 5, 40, 0.88) 100%),
    linear-gradient(90deg, rgba(6, 10, 61, 0.45), transparent 60%);
}

.case-card__topline {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card__topline span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(6, 9, 57, 0.36);
  backdrop-filter: blur(12px);
}

.case-card__content {
  max-width: 620px;
  padding: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.case-card__result {
  display: block;
  margin-bottom: 10px;
  color: #19d0f4;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card h3 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.case-card:not(.case-card--featured) h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
}

.case-card p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 211, 248, 0.58);
  box-shadow: 0 24px 45px rgba(0, 0, 30, 0.32);
}

.case-card:hover > img {
  transform: scale(1.055);
  filter: saturate(0.94) contrast(1.06);
}

@media (max-width: 820px) {
  .cases-showcase__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cases-showcase__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .case-card,
  .case-card--featured {
    min-height: 340px;
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .cases-showcase {
    padding: 58px 10px 66px;
  }

  .cases-showcase__heading {
    padding-inline: 10px;
  }

  .cases-showcase__grid {
    padding: 10px;
    gap: 10px;
    border-radius: 26px;
  }

  .case-card,
  .case-card--featured {
    min-height: 320px;
    border-radius: 20px;
  }
}

/* Immersive analytics tunnel behind the opening Ligeniqo mark. */
.logo-intro__mark {
  z-index: 4;
}

.logo-intro__tunnel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  perspective: 1200px;
  pointer-events: none;
}

.logo-intro__tunnel::before,
.logo-intro__tunnel::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 38%;
  opacity: 0.42;
  background: repeating-linear-gradient(90deg, transparent 0 74px, rgba(80, 218, 255, 0.08) 75px 76px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.logo-intro__tunnel::before {
  left: -4%;
  transform: perspective(900px) rotateY(56deg);
}

.logo-intro__tunnel::after {
  right: -4%;
  transform: perspective(900px) rotateY(-56deg);
}

.data-screen {
  position: absolute;
  width: clamp(142px, 16vw, 236px);
  padding: clamp(11px, 1.2vw, 17px);
  overflow: hidden;
  border: 1px solid rgba(130, 225, 255, 0.26);
  border-radius: clamp(12px, 1.3vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, rgba(19, 44, 92, 0.76), rgba(27, 20, 133, 0.5)), rgba(7, 8, 50, 0.58);
  box-shadow: 0 22px 60px rgba(0, 0, 25, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0.82;
  transform-style: preserve-3d;
}

.data-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.09), transparent 38%);
  pointer-events: none;
}

.data-screen__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(201, 230, 255, 0.62);
  font-size: clamp(8px, 0.7vw, 11px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-screen > strong {
  display: block;
  font-size: clamp(24px, 3.2vw, 50px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.data-screen > small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  text-transform: uppercase;
}

.data-screen svg {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 8px;
  overflow: visible;
}

.data-screen__gridline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

.data-screen__line {
  fill: none;
  stroke: #18d5ff;
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(24, 213, 255, 0.65));
}

.data-screen__value-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.data-screen__value-row strong {
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1;
}

.data-screen__value-row i {
  color: #59f1c4;
  font-size: 9px;
  font-style: normal;
}

.data-screen__bars {
  height: 44px;
  margin-top: 10px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.data-screen__bars i {
  flex: 1;
  height: 35%;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(#20ddff, #3e57ff);
}

.data-screen__bars i:nth-child(2) { height: 48%; }
.data-screen__bars i:nth-child(3) { height: 42%; }
.data-screen__bars i:nth-child(4) { height: 70%; }
.data-screen__bars i:nth-child(5) { height: 64%; }
.data-screen__bars i:nth-child(6) { height: 96%; }

.social-screen__head,
.social-screen__profile,
.social-screen__stats,
.routing-row,
.channel-row {
  display: flex;
  align-items: center;
}

.social-screen__head {
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
}

.social-screen__head b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  color: #07156a;
  background: #1bd7ff;
}

.social-screen__head i {
  margin-left: auto;
  font-style: normal;
  letter-spacing: 0.12em;
}

.social-screen__profile {
  gap: 8px;
  margin-top: 12px;
}

.social-screen__profile > i {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #1cd7ff 54%, #3831ef);
}

.social-screen__profile span {
  display: grid;
  gap: 2px;
  font-size: 8px;
}

.social-screen__profile small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
}

.social-screen__post {
  display: grid;
  gap: 4px;
  margin-top: 11px;
}

.social-screen__post span {
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.17);
}

.social-screen__post span:nth-child(2) { width: 86%; }
.social-screen__post span:nth-child(3) { width: 66%; }

.social-screen__stats {
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(131, 229, 255, 0.85);
  font-size: 7px;
}

.social-screen__visual {
  height: 56px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 4px;
  margin-top: 11px;
}

.social-screen__visual i {
  border-radius: 6px;
  background: radial-gradient(circle at 68% 30%, rgba(47, 228, 255, 0.7), transparent 24%), linear-gradient(145deg, #132c68, #2c20b0);
}

.social-screen__visual i:nth-child(2) { background: linear-gradient(145deg, #25d9fb, #223d9f); }
.social-screen__visual i:nth-child(3) { background: linear-gradient(145deg, #29318d, #6c3aff); }

.data-table {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 7px 10px;
  align-items: center;
  font-size: 8px;
}

.data-table b { color: #fff; }
.data-table i { color: #52e7bf; font-size: 7px; font-style: normal; }

.data-screen__ring {
  width: 56px;
  aspect-ratio: 1;
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#1bd7ff 0 76%, rgba(255,255,255,.09) 76%);
}

.data-screen__ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #11106e;
}

.data-screen__ring span { position: relative; font-size: 9px; font-weight: 800; }

.channel-row {
  display: grid;
  grid-template-columns: 48px 1fr 18px;
  gap: 8px;
  margin-top: 9px;
  font-size: 8px;
}

.channel-row i {
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1ddaff 0 var(--value), rgba(255,255,255,.1) var(--value));
}

.routing-row { gap: 7px; margin-top: 9px; font-size: 8px; }
.routing-row i { width: 6px; height: 6px; border-radius: 50%; background: #29e3bd; box-shadow: 0 0 8px #29e3bd; }
.routing-row b { margin-left: auto; color: #7de7ff; }

.data-screen--meetings { left: 3%; top: 13%; transform: perspective(900px) rotateY(33deg) rotateZ(-2deg); animation: data-drift-left 7s ease-in-out infinite; }
.data-screen--velocity { left: 20%; top: 15%; width: clamp(124px, 13vw, 190px); transform: perspective(900px) rotateY(28deg) rotateZ(2deg) scale(.83); animation: data-drift-left 8.5s -3s ease-in-out infinite; }
.data-screen--linkedin { left: 5%; top: 56%; width: clamp(150px, 17vw, 250px); transform: perspective(900px) rotateY(35deg) rotateZ(2deg); animation: data-drift-left 9s -5s ease-in-out infinite; }
.data-screen--accounts { left: 24%; top: 70%; width: clamp(130px, 14vw, 205px); transform: perspective(900px) rotateY(28deg) rotateZ(-2deg) scale(.82); animation: data-drift-left 8s -1s ease-in-out infinite; }
.data-screen--pipeline { right: 3%; top: 12%; min-height: 125px; transform: perspective(900px) rotateY(-33deg) rotateZ(2deg); animation: data-drift-right 7.5s -2s ease-in-out infinite; }
.data-screen--channels { right: 21%; top: 14%; width: clamp(128px, 14vw, 205px); transform: perspective(900px) rotateY(-28deg) rotateZ(-2deg) scale(.82); animation: data-drift-right 9s -4s ease-in-out infinite; }
.data-screen--social { right: 4%; top: 55%; width: clamp(150px, 17vw, 250px); transform: perspective(900px) rotateY(-35deg) rotateZ(-2deg); animation: data-drift-right 8s -1s ease-in-out infinite; }
.data-screen--capacity { right: 25%; top: 73%; width: clamp(108px, 11vw, 160px); transform: perspective(900px) rotateY(-25deg) rotateZ(3deg) scale(.82); animation: data-drift-right 7s -3s ease-in-out infinite; }
.data-screen--routing { right: 30%; top: 27%; width: clamp(112px, 12vw, 170px); transform: perspective(900px) rotateY(-22deg) scale(.7); opacity: .48; animation: data-drift-right 10s -6s ease-in-out infinite; }

@keyframes data-drift-left {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px -10px; }
}

@keyframes data-drift-right {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px 10px; }
}

@media (max-width: 620px) {
  .data-screen { opacity: 0.62; }

  .data-screen--velocity,
  .data-screen--accounts,
  .data-screen--channels,
  .data-screen--routing,
  .data-screen--capacity {
    display: none;
  }

  .data-screen--meetings { left: -13%; top: 14%; }
  .data-screen--linkedin { left: -14%; top: 62%; }
  .data-screen--pipeline { right: -13%; top: 15%; }
  .data-screen--social { right: -14%; top: 61%; }
}

@media (prefers-reduced-motion: reduce) {
  .data-screen { animation: none; }
}

/* Client case cards: flip preview with a structured case modal. */
.cases-showcase__grid {
  min-height: 470px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 16px;
}

.case-flip {
  min-width: 0;
  min-height: 434px;
  padding: 0;
  position: relative;
  border: 0;
  border-radius: 24px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  perspective: 1300px;
  font: inherit;
  text-align: left;
}

.case-flip__inner {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-flip:hover .case-flip__inner,
.case-flip:focus-visible .case-flip__inner,
.case-flip.is-flipped .case-flip__inner {
  transform: rotateY(180deg);
}

.case-flip:focus-visible {
  outline: 3px solid #17d1f4;
  outline-offset: 5px;
}

.case-flip__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 40px rgba(0, 0, 25, 0.18);
  transition: opacity 0.16s ease;
}

.case-flip__face::before,
.case-flip__face::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.case-flip__face::before {
  width: 280px;
  aspect-ratio: 1;
  right: -110px;
  top: 50px;
  border: 1px solid rgba(89, 224, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 80px rgba(55, 77, 255, 0.025);
}

.case-flip__face::after {
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.09), transparent 31%);
}

.case-flip__front {
  padding: 23px;
  color: #fff;
  background: radial-gradient(circle at 86% 24%, rgba(37, 219, 255, 0.24), transparent 29%), linear-gradient(145deg, #0a1832 0%, #0d0b72 58%, #1916b5 100%);
  opacity: 1;
  transform: rotateY(0deg) translateZ(1px);
}

.case-flip--organic .case-flip__front {
  background: radial-gradient(circle at 16% 78%, rgba(26, 212, 247, 0.22), transparent 31%), linear-gradient(145deg, #10114e 0%, #18117d 57%, #3322bd 100%);
}

.case-flip--kilde .case-flip__front {
  background: radial-gradient(circle at 86% 70%, rgba(64, 111, 255, 0.32), transparent 32%), linear-gradient(145deg, #071b32 0%, #0a2672 52%, #1211a7 100%);
}

.case-flip__back {
  padding: 23px;
  opacity: 0;
  transform: rotateY(180deg) translateZ(1px);
  color: #111223;
  background: linear-gradient(rgba(13, 22, 72, 0.035) 1px, transparent 1px) 0 0 / 100% 8px, linear-gradient(145deg, #fff 0%, #f5f8ff 63%, #e5f8ff 100%);
  border-color: rgba(21, 46, 140, 0.14);
}

.case-flip:hover .case-flip__front,
.case-flip:focus-visible .case-flip__front,
.case-flip.is-flipped .case-flip__front {
  opacity: 0;
}

.case-flip:hover .case-flip__back,
.case-flip:focus-visible .case-flip__back,
.case-flip.is-flipped .case-flip__back {
  opacity: 1;
}

.case-flip__topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-flip__back .case-flip__topline {
  color: #1715a5;
}

.case-client-logo {
  position: relative;
  z-index: 2;
  margin: auto 0;
}

.case-client-logo.partner-logo {
  align-self: flex-start;
  justify-self: auto;
  opacity: 1;
  filter: grayscale(1) brightness(0) invert(1);
  transform: none;
}

.case-client-logo--statum.partner-logo {
  font-size: clamp(34px, 3.3vw, 47px);
}

.case-client-logo--wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff;
  font-size: clamp(2rem, 3.25vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.case-client-logo--kilde {
  letter-spacing: 0.13em;
}

.case-flip__front-copy,
.case-flip__back-copy {
  display: grid;
  gap: 9px;
  position: relative;
  z-index: 2;
}

.case-flip__front-copy small,
.case-flip__back-copy small {
  color: #19d1f4;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-flip__front-copy strong {
  max-width: 320px;
  font-size: clamp(1.25rem, 1.75vw, 1.7rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.case-flip__back-copy {
  margin-block: auto;
}

.case-flip__back-copy strong {
  max-width: 320px;
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.case-flip__hint,
.case-flip__open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.case-flip__hint i,
.case-flip__open i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-style: normal;
}

.case-flip__open {
  color: #1113a4;
}

.case-flip__open i {
  border-color: rgba(17, 19, 164, 0.18);
}

.case-flip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.case-flip__tags i {
  padding: 6px 9px;
  border: 1px solid rgba(17, 19, 164, 0.14);
  border-radius: 999px;
  color: #4b5575;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  font-style: normal;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  place-items: center;
  padding: 22px;
}

.case-modal.is-open {
  display: grid;
}

.case-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(2, 4, 35, 0.8);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.case-modal__panel {
  width: min(1260px, 100%);
  max-height: calc(100svh - 44px);
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 36px;
  color: #111223;
  background: #f7f8fd;
  box-shadow: 0 40px 100px rgba(0, 0, 34, 0.46);
  animation: case-modal-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.case-modal__panel::before {
  content: "";
  width: 430px;
  aspect-ratio: 1;
  position: absolute;
  left: 38%;
  top: -310px;
  border: 58px solid rgba(20, 205, 244, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.case-modal__close {
  position: fixed;
  z-index: 4;
  top: 32px;
  right: max(32px, calc((100vw - 1260px) / 2 + 20px));
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 15, 70, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-modal__layout {
  min-height: min(760px, calc(100svh - 44px));
  display: grid;
  grid-template-columns: 220px minmax(390px, 1fr) minmax(290px, 0.72fr);
  position: relative;
  z-index: 1;
}

.case-modal__identity {
  padding: 34px 26px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 34px 0 0 34px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(28, 201, 238, 0.22), transparent 36%),
    linear-gradient(165deg, #0a2a47 0%, #101064 56%, #1714aa 100%);
}

.case-modal__index {
  color: #19c8ed;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-modal__brandmark {
  min-height: 116px;
  margin: 54px 0 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.case-modal__brandmark img {
  width: 82%;
  max-height: 68px;
  display: block;
  object-fit: contain;
}

.case-modal__brandmark .partner-logo {
  width: 88%;
  height: 64px;
  display: block;
  filter: brightness(0) invert(1);
}

.case-modal__brandmark--text {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.case-modal__identity-copy {
  margin-top: auto;
}

.case-modal__identity .eyebrow {
  margin: 0 0 9px;
  color: #19c8ed;
  font-size: 0.62rem;
}

.case-modal__client {
  display: block;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.case-modal__content {
  padding: 42px clamp(28px, 4vw, 54px) 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: linear-gradient(rgba(14, 29, 83, 0.038) 1px, transparent 1px) 0 0 / 100% 9px, rgba(255, 255, 255, 0.84);
}

.case-modal__kicker {
  margin: 0;
  color: #1113a4;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-modal h2 {
  max-width: 650px;
  margin: 18px 0 28px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.case-modal__story {
  display: grid;
  gap: 9px;
  position: relative;
  z-index: 1;
}

.case-modal__story section {
  padding: 16px 18px 17px;
  border: 1px solid rgba(17, 19, 164, 0.11);
  border-radius: 18px;
  background: rgba(246, 248, 255, 0.82);
}

.case-modal__story section > span {
  color: #1113a4;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-modal__story h3 {
  margin: 7px 0 0;
  color: #101125;
  font-size: 0.84rem;
  line-height: 1.25;
}

.case-modal__story p {
  margin: 9px 0 0;
  color: #3e4967;
  font-size: 0.76rem;
  line-height: 1.47;
}

.case-modal__story .case-modal__result {
  color: #fff;
  background: linear-gradient(145deg, #101060, #1714aa);
}

.case-modal__result > span,
.case-modal__result h3,
.case-modal__result p {
  color: rgba(255, 255, 255, 0.82);
}

.case-modal__content > .btn {
  width: fit-content;
  margin-top: auto;
  align-self: flex-start;
}

.case-modal__tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.case-modal__tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.6rem;
}

.case-modal__gallery {
  min-height: 100%;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.45fr) minmax(150px, 0.55fr);
  gap: 10px;
  overflow: hidden;
  background: #eaf0ff;
}

.case-modal__visual {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 164, 0.1);
  border-radius: 24px;
  background: linear-gradient(145deg, #eff5ff, #dce8ff);
}

.case-modal__visual:first-child {
  grid-column: 1 / -1;
}

.case-modal__visual:nth-child(2):last-child {
  grid-column: 1 / -1;
}

.case-modal__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-modal__visual:hover img {
  transform: scale(1.035);
}

.case-modal__visual--1 img[src$=".svg"] {
  padding: 20px;
  object-fit: contain;
  background: linear-gradient(145deg, #0c2137, #11258a);
}

.case-modal__visual img[src*="industry-"] {
  padding: 18px 8px 0;
  object-fit: contain;
  background: radial-gradient(circle at 70% 20%, #dff9ff, #eef0ff 56%, #d9e2ff);
}

.case-modal__visual img[src*="marketing-automation"] {
  padding: 14px;
  object-fit: contain;
  background: linear-gradient(145deg, #eef2ff, #dce8ff);
}

@keyframes case-modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .cases-showcase__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .case-flip {
    min-height: 360px;
  }

  .case-modal__layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .case-modal__gallery {
    min-height: 360px;
    grid-column: 1 / -1;
    grid-template-rows: 240px 150px;
  }

  .case-modal__content > .btn {
    margin-top: 22px;
  }
}

@media (max-width: 620px) {
  .case-flip {
    min-height: 330px;
  }

  .case-flip__front,
  .case-flip__back {
    padding: 20px;
  }

  .case-modal {
    padding: 10px;
  }

  .case-modal__panel {
    max-height: calc(100dvh - 20px);
    border-radius: 24px;
  }

  .case-modal__close {
    top: 18px;
    right: 18px;
  }

  .case-modal__layout {
    display: block;
  }

  .case-modal__identity {
    min-height: 250px;
    padding: 26px 20px 22px;
    border-radius: 22px 22px 0 0;
  }

  .case-modal__brandmark {
    width: 54%;
    min-height: 92px;
    margin: 32px 0 24px;
  }

  .case-modal__identity-copy {
    margin-top: 0;
  }

  .case-modal__content {
    padding: 30px 20px 28px;
  }

  .case-modal h2 {
    margin-block: 16px 22px;
  }

  .case-modal__content > .btn {
    width: 100%;
  }

  .case-modal__gallery {
    min-height: 500px;
    padding: 10px;
    grid-template-rows: 300px 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-flip__inner,
  .case-modal__panel {
    transition: none;
    animation: none;
  }
}

/* Keep continuous decoration paused until its section is close to the viewport. */
.motion-managed *,
.motion-managed *::before,
.motion-managed *::after {
  animation-play-state: paused !important;
}

.motion-managed.is-motion-active *,
.motion-managed.is-motion-active *::before,
.motion-managed.is-motion-active *::after {
  animation-play-state: running !important;
}

/* A site-wide motion safety net, including interactions added after the original build. */
@media (prefers-reduced-motion: reduce) {
  html,
  html:focus-within {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }

  .reveal-motion-ready .page-reveal,
  .reveal-motion-ready .page-reveal.is-revealed {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Keep the navigation capsule visible above every scene, including the opening logo screen. */
body .site-header {
  top: calc(env(safe-area-inset-top, 0px) + 18px);
  z-index: 100;
}

html {
  scroll-padding-top: 118px;
}

main > section,
footer[id] {
  scroll-margin-top: 118px;
}

@media (max-width: 920px) {
  body .site-header {
    top: calc(env(safe-area-inset-top, 0px) + 12px);
  }
}

@media (max-width: 620px) {
  body .site-header {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
  }
}

/* Process console: the original seven-step flow in the current Ligeniqo visual language. */
.process {
  width: min(calc(100% - 32px), 1280px);
  margin: 56px auto;
  padding: 68px 0 56px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(128, 206, 255, 0.18);
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 12%, rgba(31, 198, 244, 0.16), transparent 27%),
    radial-gradient(circle at 92% 84%, rgba(55, 65, 255, 0.32), transparent 33%),
    linear-gradient(138deg, #07182f 0%, #0a0a56 52%, #1915ad 100%);
  box-shadow: 0 28px 70px rgba(12, 15, 84, 0.18);
}

.process::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 880px;
  aspect-ratio: 1.8;
  top: 22%;
  left: 50%;
  border: 1px solid rgba(60, 208, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(48, 81, 255, 0.035), 0 0 0 116px rgba(48, 81, 255, 0.025);
  transform: translateX(-50%);
  pointer-events: none;
}

.process__heading {
  width: min(calc(100% - 80px), 1120px);
  position: relative;
  z-index: 1;
}

.process__heading .eyebrow {
  color: #27d5f5;
}

.process__heading h2 {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 60px);
  letter-spacing: -0.055em;
}

.process-steps {
  width: min(calc(100% - 80px), 1120px);
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
  margin: 34px auto 22px;
  padding: 8px;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.process-steps::-webkit-scrollbar {
  display: none;
}

.process-step {
  min-height: 76px;
  padding: 12px 8px;
  align-content: center;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.68);
  white-space: normal;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.process-step:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.process-step.is-active {
  color: #0b0a75;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 35, 0.2);
  transform: none;
}

.process-step__index {
  color: #28d8f5;
  font-size: 10px;
}

.process-step.is-active .process-step__index {
  color: #0aaed2;
}

.process-step__label {
  font-size: clamp(11px, 0.95vw, 13px);
  line-height: 1.18;
}

.process-carousel {
  width: min(calc(100% - 80px), 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
  border-radius: 30px;
  border: 1px solid rgba(125, 219, 255, 0.2);
  background: #11106f;
  box-shadow: 0 22px 54px rgba(0, 0, 35, 0.25);
}

.process-carousel__viewport {
  overflow: hidden;
  border-radius: inherit;
}

.process-carousel__track {
  gap: 0;
  align-items: stretch;
}

.process-slide {
  flex: 0 0 min(76vw, 880px);
  min-height: 500px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(69, 205, 255, 0.18);
  border-radius: 0;
  background: #e9edff;
  box-shadow: none;
  transition: filter 0.3s ease;
}

.process-slide:hover {
  filter: saturate(1.03) brightness(1.015);
}

.process-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(2, 6, 44, 0.28), transparent 48%);
  pointer-events: none;
}

.process-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-slide__diagram {
  min-height: 500px;
}

.process-slide__content {
  right: auto;
  bottom: 24px;
  left: 24px;
  width: min(520px, calc(100% - 48px));
  padding: 22px 24px;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  color: #fff;
  background: rgba(5, 12, 54, 0.84);
  box-shadow: 0 18px 46px rgba(0, 0, 35, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.process-slide__content h3 {
  color: #fff;
  font-size: clamp(25px, 2.6vw, 36px);
}

.process-slide__content p {
  color: rgba(229, 236, 255, 0.78);
  font-size: 14px;
}

@media (max-width: 920px) {
  .process {
    width: calc(100% - 20px);
    margin: 32px auto;
    padding: 54px 0 40px;
    border-radius: 34px;
  }

  .process__heading,
  .process-steps,
  .process-carousel {
    width: calc(100% - 32px);
  }

  .process-steps {
    display: flex;
    gap: 7px;
    margin-top: 28px;
  }

  .process-step {
    flex: 0 0 150px;
    min-height: 68px;
  }

  .process-slide {
    flex-basis: calc(100vw - 72px);
    min-height: 430px;
  }

  .process-slide__diagram {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .process {
    padding-top: 44px;
    border-radius: 28px;
  }

  .process__heading h2 {
    font-size: 36px;
  }

  .process-slide {
    flex-basis: calc(100vw - 54px);
    min-height: 370px;
    border-radius: 0;
  }

  .process-slide__diagram {
    min-height: 370px;
  }

  .process-slide__content {
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 18px;
    border-radius: 16px;
  }

  .process-slide__content h3 {
    font-size: 24px;
  }

  .process-slide__content p {
    font-size: 13px;
  }
}

/* Performance and motion policy must remain last so later component styles cannot restart it. */
.motion-managed *,
.motion-managed *::before,
.motion-managed *::after {
  animation-play-state: paused !important;
}

.motion-managed.is-motion-active *,
.motion-managed.is-motion-active *::before,
.motion-managed.is-motion-active *::after {
  animation-play-state: running !important;
}

@media (prefers-reduced-motion: reduce) {
  html,
  html:focus-within {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }

  .reveal-motion-ready .page-reveal,
  .reveal-motion-ready .page-reveal.is-revealed {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
