:root {
  --ivory: #f8f4ee;
  --paper: #fffdf8;
  --ink: #121722;
  --muted: #394150;
  --gold: #b87417;
  --gold-dark: #9b5e10;
  --border: rgba(124, 91, 48, 0.18);
  --shadow: 0 18px 55px rgba(42, 31, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

img,
svg {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__visuals {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__visuals .hero__image {
  z-index: 0;
  opacity: 0;
  transform: scale(1.012);
  transition:
    opacity 900ms ease,
    transform 1200ms ease;
}

.hero__visuals .hero__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.96) 0%, rgba(248, 244, 238, 0.86) 32%, rgba(248, 244, 238, 0.18) 62%, rgba(248, 244, 238, 0) 100%),
    linear-gradient(180deg, rgba(248, 244, 238, 0.18) 0%, rgba(248, 244, 238, 0) 38%, rgba(248, 244, 238, 0.34) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(248, 244, 238, 0) 0%,
    rgba(248, 244, 238, 0.46) 38%,
    rgba(248, 244, 238, 0.9) 72%,
    #f8f4ee 100%
  );
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  width: calc(100% - 72px);
  max-width: 1510px;
  min-height: 78px;
  margin: 26px auto 0;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__logo {
  display: block;
  width: clamp(194px, 15vw, 268px);
  height: auto;
  object-fit: contain;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  flex: 1 1 auto;
  font-size: 15px;
  font-weight: 650;
  color: #101828;
}

.navlinks a,
.navcta,
.button {
  transition:
    transform 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.navlinks a:hover {
  color: var(--gold-dark);
}

.navcta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2457d6, #1d46b0);
  color: #fff;
  font-size: 16px;
  font-weight: 750;
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  margin-left: clamp(28px, 5.35vw, 86px);
  padding-top: clamp(92px, 10vw, 136px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 1.9px;
}

h1 {
  margin: 0;
  max-width: 610px;
  color: #111722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.05vw, 86px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title {
  max-width: 610px;
  color: #111722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.05vw, 86px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title span {
  display: inline;
}

.hero-title__line--nowrap {
  white-space: normal;
}

.hero-title em {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
}

.theme-blue-reference .hero-title .hero-title__accent {
  color: #2563eb;
  font-style: normal;
  font-weight: inherit;
}

.hero__lead {
  max-width: 585px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-sector-tabs {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 4;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(220, 229, 242, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  backdrop-filter: blur(14px);
}

.hero-sector-tabs button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #52617a;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}

.hero-sector-tabs button.is-active {
  background: #101b35;
  color: #eff6ff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 760;
}

.button:hover,
.navcta:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(145deg, #2457d6, #1d46b0);
  color: #fff;
  box-shadow: 0 16px 28px rgba(184, 116, 23, 0.2);
}

.button--secondary {
  background: rgba(255, 253, 248, 0.7);
  color: #18202d;
}

.feature-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  min-height: 128px;
  margin: 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(184, 116, 23, 0.14);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow:
    0 24px 70px rgba(16, 27, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 20px 24px 18px;
  text-align: center;
}

.feature + .feature {
  border-left: 1px solid rgba(124, 91, 48, 0.18);
}

.feature::before {
  content: "";
  position: absolute;
}

.feature {
  position: relative;
}

.feature__icon {
  padding: 7px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(164, 103, 22, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 244, 238, 0.7)),
    radial-gradient(circle at 50% 0%, rgba(184, 116, 23, 0.12), transparent 62%);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.38),
    0 8px 18px rgba(122, 82, 33, 0.08);
  color: #a46716;
  stroke: currentColor;
}

.feature h2 {
  margin: 12px 0 0;
  color: #121722;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
}

.feature p {
  max-width: 190px;
  margin: 9px auto 0;
  color: #303846;
  font-size: 15px;
  font-weight: 540;
  line-height: 1.42;
}

.problem-section {
  padding: 46px 28px 54px;
  background:
    radial-gradient(circle at 16% 8%, rgba(184, 116, 23, 0.08), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(220, 199, 173, 0.22), transparent 34%),
    var(--ivory);
}

.problem-section__inner {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold-dark);
  font-weight: 780;
  letter-spacing: 1px;
}

.section-kicker span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.section-kicker i {
  width: 1px;
  height: 32px;
  background: rgba(184, 116, 23, 0.32);
}

.section-kicker strong {
  font-size: 13px;
}

.section-title {
  max-width: 850px;
  margin: 18px auto 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3vw, 52px);
  font-weight: 620;
  line-height: 1.08;
  text-align: center;
}

.section-title span {
  display: block;
  color: var(--gold-dark);
}

.problem-section .section-kicker {
  display: flex;
  width: max-content;
  min-height: 42px;
  margin: 0 auto;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  color: #2457d6;
}

.problem-section .section-kicker span,
.problem-section .section-kicker i {
  display: none;
}

.problem-section .section-kicker strong {
  color: #2457d6;
  letter-spacing: 0.14em;
}

.problem-section .section-title {
  max-width: 1080px;
  font-size: clamp(34px, 2.55vw, 46px);
  line-height: 1.06;
}

.problem-section .section-title span {
  display: block;
  color: #2457d6;
}

.section-lead {
  max-width: 790px;
  margin: 20px auto 0;
  color: #3f4855;
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.problem-card {
  overflow: hidden;
  border: 1px solid rgba(124, 91, 48, 0.13);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 22px 48px rgba(42, 31, 18, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 116, 23, 0.22);
  box-shadow: 0 28px 58px rgba(42, 31, 18, 0.13);
}

.problem-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
}

.problem-card__body {
  position: relative;
  min-height: 224px;
  padding: 58px 34px 36px;
  text-align: center;
}

.problem-card__icon,
.solution-bridge__icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 116, 23, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.96);
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(122, 82, 33, 0.12);
}

.problem-card__icon {
  position: absolute;
  top: -31px;
  left: 50%;
  width: 62px;
  height: 62px;
  transform: translateX(-50%);
}

.problem-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  max-width: 290px;
  margin: 0 auto;
  color: #111722;
  font-size: 22px;
  font-weight: 790;
  line-height: 1.22;
}

.problem-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 21px auto 0;
  background: var(--gold);
}

.problem-card p {
  margin: 20px auto 0;
  color: #303846;
  font-size: 16px;
  line-height: 1.58;
}

.solution-bridge {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding: 28px 46px;
  border: 1px solid rgba(36, 87, 214, 0.22);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 27, 53, 0.08);
}

.solution-bridge__icon {
  width: 78px;
  height: 78px;
  border-color: rgba(36, 87, 214, 0.18);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(36, 87, 214, 0.12);
}

.solution-bridge__icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-bridge h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2vw, 38px);
  line-height: 1.1;
}

.solution-bridge p {
  max-width: 650px;
  margin: 9px 0 0;
  color: #3f4855;
  font-size: 16px;
  line-height: 1.55;
}

.solution-bridge__cta {
  min-width: 210px;
}

.progress-section {
  position: relative;
  overflow: hidden;
  padding: 72px 28px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 76% 20%, rgba(121, 163, 255, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.progress-section::before {
  content: none;
}

.progress-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.38fr;
  gap: clamp(54px, 6vw, 92px);
  width: min(1450px, 100%);
  margin: 0 auto;
  align-items: center;
}

.progress-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  letter-spacing: 0.14em;
}

.progress-kicker strong {
  font-size: 13px;
  font-weight: 760;
}

.progress-copy h2 {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.progress-copy h2 span {
  display: block;
  color: #2457d6;
}

.progress-copy h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 28px;
  background: var(--gold);
}

.progress-copy p {
  max-width: 420px;
  margin: 28px 0 0;
  color: #303846;
  font-size: 17px;
  line-height: 1.7;
}

.progress-story {
  position: relative;
  min-height: 570px;
  padding-top: 30px;
}

.progress-rail {
  position: absolute;
  top: 90px;
  right: 20px;
  left: 28px;
  height: 76px;
  border-top: 2px solid rgba(36, 87, 214, 0.72);
  border-radius: 70px 70px 0 0;
}

.progress-rail::before,
.progress-rail::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 62px;
  height: 88px;
  border-top: 2px solid rgba(36, 87, 214, 0.72);
}

.progress-rail::before {
  left: -28px;
  border-left: 2px solid rgba(36, 87, 214, 0.72);
  border-radius: 54px 0 0 0;
}

.progress-rail::after {
  right: -20px;
  border-right: 2px solid rgba(36, 87, 214, 0.72);
  border-radius: 0 54px 0 0;
}

.progress-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0 8px;
  list-style: none;
}

.progress-steps li {
  display: grid;
  justify-items: center;
  gap: 16px;
  color: #151b25;
  font-size: 17px;
  font-weight: 680;
}

.medallion {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(36, 87, 214, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #ffffff 0 42%, #f5f8fd 74%, rgba(121, 163, 255, 0.5) 100%);
  color: #2457d6;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.72),
    inset 0 0 0 13px rgba(36, 87, 214, 0.08),
    0 18px 36px rgba(16, 27, 53, 0.12);
}

.medallion::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(36, 87, 214, 0.34);
  border-radius: 50%;
}

.medallion svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
}

.medallion__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
}

.medallion__dots b {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.medallion__dots--three b {
  width: 13px;
  height: 13px;
  border-width: 2px;
}

.medallion__dots--almost {
  gap: 4px;
}

.medallion__dots--almost b {
  width: 11px;
  height: 11px;
  border-width: 2px;
}

.tilted-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 70px;
}

.tilted-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  margin: 0;
  border: 2px solid rgba(36, 87, 214, 0.2);
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(16, 27, 53, 0.12);
}

.tilted-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tilted-card--left {
  border-radius: 42% 58% 48% 52% / 36% 44% 56% 64%;
  transform: rotate(-3deg) translateY(6px);
}

.tilted-card--center {
  border-radius: 48% 52% 42% 58% / 38% 50% 50% 62%;
  transform: rotate(2deg);
}

.tilted-card--right {
  border-radius: 53% 47% 57% 43% / 40% 48% 52% 60%;
  transform: rotate(-1.6deg) translateY(8px);
}

.progress-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 48px auto 0;
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.progress-note::before,
.progress-note::after {
  content: "";
  width: min(230px, 22%);
  height: 1px;
  background: rgba(36, 87, 214, 0.24);
}

.build-section {
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 28px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 75% 20%, rgba(121, 163, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.build-section__inner {
  display: block;
  width: min(1560px, 100%);
  margin: 0 auto;
}

.build-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto 26px;
}

.build-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  letter-spacing: 0.14em;
}

.build-kicker strong {
  font-size: 13px;
  font-weight: 760;
}

.build-copy h2 {
  max-width: 1060px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.build-copy h2 span {
  display: block;
  color: #2457d6;
}

.build-ornament {
  display: none;
  width: 94px;
  height: 16px;
  margin-top: 34px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 62px 1px no-repeat;
}

.build-ornament::before,
.build-ornament::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 4px 10px 0 18px;
  border: 1px solid rgba(36, 87, 214, 0.32);
  transform: rotate(45deg);
}

.build-copy p {
  max-width: 880px;
  margin: 22px 0 0;
  color: #303846;
  font-size: 18px;
  line-height: 1.7;
}

.build-showcase {
  position: relative;
  min-width: 0;
}

.build-showcase img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 46px rgba(16, 27, 53, 0.1));
}

@media (min-width: 761px) {
  .build-showcase img {
    filter: none;
  }
}

.build-showcase--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(18px, 2.1vw, 30px);
  margin-top: 0;
}

.build-showcase__image {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: none;
  animation: none;
}

.build-showcase__image--nara {
  justify-self: end;
}

.custom-section {
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 28px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 14% 26%, rgba(121, 163, 255, 0.1), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(36, 87, 214, 0.06), transparent 26%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.custom-section__inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.66fr) minmax(680px, 1.34fr);
  gap: clamp(38px, 5vw, 86px);
  align-items: center;
  width: min(1560px, 100%);
  margin: 0 auto;
}

.custom-copy {
  min-width: 0;
}

.custom-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  letter-spacing: 0.14em;
}

.custom-kicker strong {
  font-size: 13px;
  font-weight: 760;
}

.custom-copy h2 {
  margin: 30px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.custom-copy h2 span {
  display: block;
  color: #2457d6;
}

.custom-copy h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 28px;
  background: var(--gold);
}

.custom-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  color: #303846;
  font-size: 18px;
  line-height: 1.72;
}

.custom-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  min-width: 0;
}

.custom-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.82 / 1;
  border-radius: 20px;
  transform: translateZ(0);
}

.custom-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.custom-card--beauty,
.custom-card--boutique {
  transform: translateY(28px);
}

.custom-card--restaurant {
  transform: translateY(-8px);
}

.projects-section {
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 28px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 88% 12%, rgba(121, 163, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.projects-section__inner {
  width: min(1560px, 100%);
  margin: 0 auto;
}

.projects-heading {
  max-width: 970px;
  margin: 0 auto 42px;
  text-align: center;
}

.projects-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  letter-spacing: 0.14em;
}

.projects-kicker strong {
  font-size: 13px;
  font-weight: 760;
}

.projects-heading h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.projects-heading h2 span {
  display: block;
  color: #2457d6;
}

.projects-heading p {
  max-width: 840px;
  margin: 20px auto 0;
  color: #303846;
  font-size: 18px;
  line-height: 1.7;
}

.project-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-case {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px 30px 24px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(16, 27, 53, 0.08);
}

@media (min-width: 761px) {
  .project-case {
    box-shadow: none;
  }
}

.project-case h3,
.project-case__top p,
.project-case__body,
.project-case__mini,
.project-case__tags {
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.project-case.is-changing .project-case__top p,
.project-case.is-changing .project-case__body,
.project-case.is-changing .project-case__mini,
.project-case.is-changing .project-case__tags {
  opacity: 0;
  transform: translateY(10px);
}

.project-case::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg, #2457d6, transparent 44%);
  opacity: 0.04;
}

.project-case--pastane {
  --case-accent: #2457d6;
}

.project-case--beauty {
  --case-accent: #2457d6;
}

.project-case--restaurant {
  --case-accent: #2457d6;
}

.project-case--boutique {
  --case-accent: #2457d6;
}

.project-case__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.project-case__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 10px 24px rgba(16, 27, 53, 0.06);
}

.project-case__icon svg {
  width: 25px;
  height: 25px;
}

.project-case h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.25vw, 38px);
  font-weight: 500;
  line-height: 1.04;
}

.project-case__top p {
  margin: 8px 0 0;
  color: #52617a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.project-case__steps {
  display: flex;
  gap: 9px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.project-case__steps li {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(36, 87, 214, 0.18);
}

.project-case__steps li.is-active {
  background: #2457d6;
}

.project-case__body {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 22px 0 0;
  color: #303846;
  font-size: 16px;
  line-height: 1.66;
}

.project-case__mini {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  align-self: flex-end;
  justify-content: flex-start;
  gap: 9px;
  width: min(342px, 100%);
  min-width: 0;
  margin: 18px 0 0 auto;
  padding: 13px 16px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(16, 27, 53, 0.05);
}

.project-case__mini span,
.project-case__mini strong {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(36, 87, 214, 0.14);
}

.project-case__mini span.is-lit {
  background: #2457d6;
}

.project-case__mini strong {
  margin-left: auto;
  border: 1px solid rgba(36, 87, 214, 0.28);
  background: #ffffff;
  color: #2457d6;
}

.project-case__mini svg {
  width: 14px;
  height: 14px;
}

.project-case__tags {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(36, 87, 214, 0.14);
}

.project-case__tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(36, 87, 214, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #303846;
  font-size: 14px;
  font-weight: 650;
  text-align: center;
  box-shadow: 0 8px 18px rgba(16, 27, 53, 0.04);
}

.project-case__tags svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #2457d6;
}

.flow-section {
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 28px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 6% 86%, rgba(121, 163, 255, 0.1), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(121, 163, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.flow-section__inner {
  width: min(1560px, 100%);
  margin: 0 auto;
}

.flow-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  margin-bottom: 36px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.flow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  letter-spacing: 0.14em;
}

.flow-kicker strong {
  font-size: 13px;
  font-weight: 760;
}

.flow-copy h2 {
  margin: 24px 0 0;
  max-width: 940px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.flow-copy h2 span {
  display: block;
  color: #2457d6;
}

.flow-copy p {
  max-width: 820px;
  margin: 22px auto 0;
  color: #303846;
  font-size: 18px;
  line-height: 1.72;
}

.flow-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding-top: 46px;
}

.flow-journey::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 87, 214, 0.46), transparent);
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 398px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(16, 27, 53, 0.08);
}

.flow-step__number {
  position: absolute;
  top: -47px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(36, 87, 214, 0.24);
  border-radius: 50%;
  background: #2457d6;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(36, 87, 214, 0.18);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -26px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(36, 87, 214, 0.46);
  border-right: 2px solid rgba(36, 87, 214, 0.46);
  transform: rotate(45deg);
}

.flow-step__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: #2457d6;
}

.flow-step__icon svg {
  width: 25px;
  height: 25px;
}

.flow-step h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  text-align: center;
}

.flow-step > p {
  margin: auto 0 0;
  color: #4c5360;
  font-size: 14px;
  line-height: 1.58;
  text-align: center;
}

.flow-ui {
  display: grid;
  gap: 8px;
  min-height: 154px;
  margin: 20px 0 16px;
  padding: 16px;
  border: 1px solid rgba(36, 87, 214, 0.14);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.flow-ui span,
.flow-ui p,
.flow-ui small {
  margin: 0;
  color: #4c5360;
  font-size: 12px;
  line-height: 1.42;
}

.flow-ui strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.flow-ui b {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.flow-ui em {
  display: block;
  margin-top: 6px;
  padding: 13px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2457d6, #1d46b0);
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
}

.flow-ui__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(36, 87, 214, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
}

.flow-ui__bar svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: #2457d6;
}

.flow-ui__bar span {
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 10px 0 6px;
}

.flow-dots i {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(36, 87, 214, 0.24);
  border-radius: 50%;
  background: rgba(36, 87, 214, 0.14);
}

.flow-dots i:nth-child(-n + 3),
.flow-dots--four i:nth-child(-n + 4) {
  background: #2457d6;
}

.flow-ui--stack {
  gap: 10px;
}

.flow-ui--stack div,
.flow-ui--success {
  place-items: center;
  text-align: center;
}

.flow-ui--stack div {
  display: grid;
  gap: 5px;
  padding: 13px 10px;
  border: 1px solid rgba(36, 87, 214, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.48);
}

.flow-ui--stack svg,
.flow-ui--success > svg {
  width: 27px;
  height: 27px;
  color: #2457d6;
}

.flow-ui--success {
  min-height: 198px;
}

.flow-ui--success > svg {
  width: 42px;
  height: 42px;
  color: #4f8b54;
}

.flow-ui--success button {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  border: 0;
  border-radius: 9px;
  background: #2457d6;
  color: #ffffff;
  font: inherit;
  font-weight: 760;
}

.flow-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 22px 26px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: #303846;
  font-size: 17px;
  line-height: 1.62;
}

.flow-note svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: #2457d6;
}

.benefit-section {
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 28px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 8% 12%, rgba(121, 163, 255, 0.1), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(36, 87, 214, 0.06), transparent 32%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.benefit-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 455px) minmax(0, 860px);
  align-items: start;
  justify-content: center;
  gap: clamp(46px, 5vw, 84px);
  width: min(1500px, 100%);
  margin: 0 auto;
}

.benefit-copy {
  display: flex;
  flex-direction: column;
  max-width: 455px;
}

.benefit-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  letter-spacing: 0.14em;
}

.benefit-kicker strong {
  font-size: 12px;
  font-weight: 760;
}

.benefit-copy h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.benefit-copy h2 span {
  display: block;
  color: #2457d6;
}

.benefit-copy p {
  margin: 22px 0 0;
  color: #303846;
  font-size: 16px;
  line-height: 1.62;
}

.benefit-points {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  padding-top: 0;
}

.benefit-points article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 10px 16px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(16, 27, 53, 0.05);
}

.benefit-points svg,
.benefit-panel__head > span,
.admin-preview button > svg:first-child,
.account-preview svg {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #2457d6;
}

.benefit-section svg,
.benefit-section .lucide {
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.benefit-points svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.38),
    0 8px 18px rgba(16, 27, 53, 0.08);
  stroke: currentColor;
  stroke-width: 1.55;
}

.benefit-points span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 740;
  line-height: 1.25;
}

.benefit-control {
  position: relative;
  align-self: start;
  padding: 32px 32px 18px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(16, 27, 53, 0.1);
}

@media (min-width: 761px) {
  .benefit-control {
    box-shadow: none;
  }
}

.benefit-control h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 560;
  line-height: 1.1;
  text-align: center;
}

.benefit-control h3::before,
.benefit-control h3::after {
  content: "";
  flex: 1 1 auto;
  max-width: 210px;
  height: 1px;
  background: rgba(36, 87, 214, 0.32);
}

.benefit-control__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}

.benefit-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 16px;
  background: #ffffff;
}

.benefit-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.benefit-panel__head > span {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
}

.benefit-panel__head svg {
  width: 28px;
  height: 28px;
}

.benefit-panel h4 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 790;
  line-height: 1.16;
}

.benefit-panel__head p {
  margin: 8px 0 0;
  color: #5d6673;
  font-size: 15px;
  line-height: 1.5;
}

.customer-flow {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-flow li {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(36, 87, 214, 0.14);
  border-radius: 13px;
  background: #ffffff;
}

.customer-flow__reward {
  border-color: rgba(36, 87, 214, 0.22);
  background: #ffffff;
}

.customer-flow strong {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.customer-flow strong > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 50%;
  background: rgba(36, 87, 214, 0.08);
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.customer-flow__reward strong > span {
  color: #2457d6;
  font-family: inherit;
}

.customer-flow__reward strong > span svg {
  width: 18px;
  height: 18px;
}

.account-preview {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(36, 87, 214, 0.13);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.64);
}

.account-preview svg {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 50%;
  background: rgba(36, 87, 214, 0.06);
}

.account-preview b,
.account-preview em {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(61, 67, 78, 0.12);
}

.account-preview b {
  width: 68%;
}

.account-preview em {
  width: 86%;
}

.customer-id {
  margin-top: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 10px;
  background: #ffffff;
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

.stamp-card {
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 11px;
  background: #ffffff;
}

.stamp-card small {
  display: block;
  margin-bottom: 8px;
  color: #303846;
  font-size: 13px;
  font-weight: 680;
}

.stamp-card__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stamp-card__dots svg,
.stamp-card__dots span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.stamp-card__dots svg {
  padding: 5px;
  background: #2457d6;
  color: #ffffff !important;
  stroke: #ffffff !important;
  stroke-width: 1.55;
}

.stamp-card__dots span {
  border: 1px dashed rgba(36, 87, 214, 0.28);
  background: rgba(255, 255, 255, 0.64);
}

.stamp-card__dots svg:last-child {
  margin-left: auto;
  border: 1px solid rgba(36, 87, 214, 0.18);
  background: #ffffff;
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.reward-ready {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 12px;
  background: #ffffff;
}

.reward-ready > svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
}

.reward-ready b {
  display: block;
  color: #2457d6;
  font-size: 15px;
  line-height: 1.2;
}

.reward-ready small {
  display: block;
  margin-top: 3px;
  color: #5d6673;
  font-size: 12px;
  line-height: 1.25;
}

.benefit-connector {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.benefit-connector svg {
  width: 54px;
  height: 390px;
  overflow: visible;
  color: #2457d6;
}

.connector-path,
.connector-arrow {
  fill: none;
  stroke: currentColor !important;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connector-node {
  fill: #ffffff;
  stroke: currentColor !important;
  stroke-width: 3;
}

.connector-node--main {
  fill: #eef4ff;
  filter: drop-shadow(0 6px 10px rgba(36, 87, 214, 0.14));
}

.admin-preview {
  overflow: hidden;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 13px;
  background: #ffffff;
}

.admin-preview label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin: 16px;
  padding: 0 16px;
  border: 1px solid rgba(36, 87, 214, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
  color: #6a7280;
  font-size: 16px;
}

.admin-preview label svg {
  width: 22px;
  height: 22px;
  color: #303846;
}

.admin-preview button {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 68px;
  padding: 0 16px;
  border: 0;
  border-top: 1px solid rgba(36, 87, 214, 0.14);
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.admin-preview button > svg:first-child {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.38),
    0 8px 18px rgba(16, 27, 53, 0.08);
  color: #2457d6;
  stroke: currentColor;
  stroke-width: 1.55;
}

.admin-preview button span {
  font-size: 16px;
  font-weight: 680;
}

.admin-preview button > svg:last-child {
  width: 20px;
  height: 20px;
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.admin-summary {
  margin: 14px 16px 16px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 12px;
  background: #ffffff;
}

.admin-summary__head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.admin-summary__head svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
}

.admin-summary__head strong {
  font-size: 16px;
  line-height: 1.2;
}

.domain-section {
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 28px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 12% 18%, rgba(121, 163, 255, 0.1), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(36, 87, 214, 0.06), transparent 34%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.domain-section__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.domain-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.domain-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  letter-spacing: 0.14em;
}

.domain-kicker strong {
  font-size: 12px;
  font-weight: 760;
}

.domain-copy h2 {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.domain-copy h2 span {
  display: block;
  color: #2457d6;
}

.domain-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #303846;
  font-size: 17px;
  line-height: 1.62;
}

.domain-showcase {
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 0 18px 10px;
}

.domain-showcase__stage {
  position: relative;
  min-height: clamp(430px, 41vw, 560px);
  padding: 0;
}

.domain-device {
  display: block;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.domain-device--macbook {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: min(65vw, 790px);
  max-width: 820px;
  border-radius: 18px;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 32px rgba(16, 27, 53, 0.13));
}

.domain-device--mobile {
  position: absolute;
  right: clamp(26px, 6vw, 88px);
  bottom: 34px;
  z-index: 3;
  width: clamp(150px, 13.8vw, 218px);
  filter: drop-shadow(0 20px 28px rgba(16, 27, 53, 0.16));
}

.domain-device--qr {
  position: absolute;
  left: clamp(28px, 7vw, 96px);
  right: auto;
  bottom: 26px;
  z-index: 4;
  width: clamp(110px, 10.5vw, 158px);
  transform: rotate(-1deg);
  filter: drop-shadow(0 18px 24px rgba(16, 27, 53, 0.16));
}

.domain-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  margin: 24px auto 0;
  color: #2457d6;
}

.domain-flow article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 112px;
  color: var(--ink);
}

.domain-flow article svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: #2457d6 !important;
  stroke: #2457d6 !important;
  box-shadow: 0 10px 24px rgba(16, 27, 53, 0.06);
}

.domain-flow > svg {
  width: 30px;
  height: 30px;
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.domain-flow span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  color: var(--ink);
}

.industries-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 24px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 50% 8%, rgba(121, 163, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.industries-section__inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.industries-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.industries-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.industries-copy h2 {
  max-width: 1040px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.industries-copy h2 span {
  display: block;
  color: #2457d6;
}

.industries-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #303846;
  font-size: 17px;
  line-height: 1.65;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 30px;
  margin-top: clamp(42px, 5vw, 64px);
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(16, 27, 53, 0.09);
}

.industry-card img {
  display: block;
  order: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  flex: 0 0 auto;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(36, 87, 214, 0.12);
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.industry-card::after {
  display: none;
}

.industry-card__content {
  position: relative;
  order: 1;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px 16px;
  min-width: 0;
  min-height: 128px;
  margin: 0;
  padding: 18px 22px 16px 24px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(121, 163, 255, 0.08), transparent 36%),
    #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.industry-card__title {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.industry-card__title svg {
  width: 32px;
  height: 32px;
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.industry-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2vw, 33px);
  font-weight: 500;
  line-height: 1.08;
}

.industry-card p {
  grid-column: 1 / 2;
  max-width: none;
  margin: 8px 0 0 4px;
  color: #4a5361;
  font-size: 15.5px;
  line-height: 1.46;
}

.industry-card button {
  position: static;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 50%;
  background: #ffffff;
  color: #2457d6;
  cursor: default;
}

.industry-card button svg {
  width: 22px;
  height: 22px;
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

@media (min-width: 761px) {
  .industry-card {
    box-shadow: none;
  }
}

.campaigns-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 24px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 18% 12%, rgba(121, 163, 255, 0.1), transparent 30%),
    radial-gradient(circle at 84% 84%, rgba(36, 87, 214, 0.06), transparent 34%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.campaigns-section__inner {
  width: min(100%, 1360px);
  margin: 0 auto;
}

.campaigns-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.campaigns-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.campaigns-copy h2 {
  max-width: 920px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.campaigns-copy h2 span {
  display: block;
  color: #2457d6;
}

.campaigns-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #303846;
  font-size: 17px;
  line-height: 1.62;
}

.campaign-builder {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 0;
  margin-top: clamp(42px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(16, 27, 53, 0.1);
}

.campaign-builder__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 28px;
  border-right: 1px solid rgba(36, 87, 214, 0.14);
  background: #ffffff;
}

.campaign-tabs {
  display: grid;
  gap: 14px;
}

.campaign-tabs button {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 0 20px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.campaign-tabs button:hover,
.campaign-tabs button:focus-visible {
  border-color: rgba(36, 87, 214, 0.32);
  transform: translateY(-1px);
  outline: 0;
}

.campaign-tabs button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #2457d6, #1d46b0);
  color: #fff;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.22);
}

.campaign-tabs svg,
.campaign-builder__cta svg,
.campaign-preview svg,
.campaign-flow svg {
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.campaign-tabs button.is-active svg {
  color: #fff !important;
  stroke: #fff !important;
}

.campaign-tabs svg {
  width: 26px;
  height: 26px;
}

.campaign-builder__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2457d6, #1d46b0);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.2);
}

.campaign-builder__cta svg {
  width: 20px;
  height: 20px;
  color: #fff !important;
  stroke: #fff !important;
}

.campaign-builder__main {
  min-width: 0;
  padding: 44px 36px 30px;
}

.campaign-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.campaign-preview {
  --campaign-accent: #2457d6;
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 22px 22px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -10%, color-mix(in srgb, var(--campaign-accent) 12%, transparent), transparent 42%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(16, 27, 53, 0.08);
}

.campaign-preview--featured {
  min-height: 375px;
  border-color: color-mix(in srgb, var(--campaign-accent) 38%, rgba(220, 229, 242, 0.78));
  box-shadow: 0 24px 52px rgba(36, 87, 214, 0.13);
}

.campaign-preview__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: -56px auto 18px;
  place-items: center;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 27, 53, 0.08);
}

.campaign-preview__icon svg {
  width: 29px;
  height: 29px;
  color: var(--campaign-accent) !important;
  stroke: var(--campaign-accent) !important;
}

.campaign-preview h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.14;
  text-align: center;
}

.campaign-preview h3 span {
  display: block;
  margin-top: 5px;
  color: var(--campaign-accent);
  font-family: inherit;
  font-size: 19px;
  font-weight: 600;
}

.loyalty-mini {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 14px;
  background: #ffffff;
}

.loyalty-mini__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
}

.loyalty-mini__brand strong {
  color: var(--campaign-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.loyalty-mini__brand span {
  white-space: nowrap;
  color: #303846;
  font-weight: 700;
}

.loyalty-mini__stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.loyalty-mini__stamp {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px dashed color-mix(in srgb, var(--campaign-accent) 48%, transparent);
  border-radius: 50%;
  color: var(--campaign-accent);
}

.loyalty-mini__stamp.is-filled {
  border-style: solid;
  background: linear-gradient(135deg, color-mix(in srgb, var(--campaign-accent) 74%, #fff), var(--campaign-accent));
  color: #fff;
}

.loyalty-mini__stamp svg {
  width: 14px;
  height: 14px;
  color: currentColor !important;
  stroke: currentColor !important;
}

.loyalty-mini__reward {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--campaign-accent) 10%, #fff);
  color: #333b48;
  font-size: 13px;
  font-weight: 700;
}

.loyalty-mini__reward svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--campaign-accent) !important;
  stroke: var(--campaign-accent) !important;
}

.campaign-flow {
  margin-top: 30px;
  padding: 20px 24px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 16px;
  background: #ffffff;
}

.campaign-flow h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.campaign-flow__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.campaign-flow__steps article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f5f8fd;
}

.campaign-flow__steps article > svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.campaign-flow__steps > svg {
  width: 28px;
  height: 28px;
}

.campaign-flow strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.campaign-flow span {
  display: block;
  margin-top: 3px;
  color: #596271;
  font-size: 13px;
  line-height: 1.35;
}

@media (min-width: 761px) {
  .campaign-builder {
    box-shadow: none;
  }
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 42px) 24px clamp(24px, 2.8vw, 42px);
  background:
    radial-gradient(circle at 50% 18%, rgba(121, 163, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.process-section__inner {
  width: min(100%, 1360px);
  margin: 0 auto;
}

.process-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-copy h2 {
  max-width: 920px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.process-copy h2 span {
  display: block;
  color: #2457d6;
}

.process-copy p {
  max-width: 780px;
  margin: 18px 0 0;
  color: #303846;
  font-size: 17px;
  line-height: 1.62;
}

.process-studio {
  position: relative;
  min-height: 560px;
  margin-top: clamp(54px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
}

.process-path {
  position: absolute;
  inset: 42px 64px 52px;
  width: calc(100% - 128px);
  height: calc(100% - 94px);
  pointer-events: none;
}

.process-path path {
  stroke: #2457d6;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 14px rgba(36, 87, 214, 0.12));
}

.process-node,
.process-visual,
.process-domain,
.process-live {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 27, 53, 0.08);
  backdrop-filter: blur(8px);
}

.process-node {
  width: 250px;
  min-height: 92px;
  padding: 16px 18px;
}

.process-node > span {
  position: absolute;
  top: -24px;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  transform: translateX(-50%);
  place-items: center;
  border: 1px solid rgba(36, 87, 214, 0.22);
  border-radius: 50%;
  background: #ffffff;
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.process-node svg,
.process-visual svg,
.process-domain svg,
.process-live svg,
.process-phone svg {
  color: #2457d6 !important;
  stroke: #2457d6 !important;
  flex: 0 0 auto;
}

.process-node > svg {
  width: 34px;
  height: 34px;
}

.process-node h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.process-node p {
  margin: 5px 0 0;
  color: #3f4856;
  font-size: 13px;
  line-height: 1.35;
}

.process-node--one {
  left: 34px;
  top: 58px;
}

.process-node--two {
  left: 472px;
  top: 92px;
}

.process-node--three {
  left: 58px;
  top: 250px;
}

.process-node--four {
  right: 340px;
  top: 258px;
}

.process-node--five {
  left: 94px;
  bottom: 164px;
}

.process-node--six {
  right: 292px;
  bottom: 126px;
  width: 310px;
}

.process-node--seven {
  left: 86px;
  bottom: 42px;
}

.process-visual {
  flex-direction: column;
  align-items: stretch;
  width: 240px;
  padding: 16px;
}

.process-visual--campaign {
  right: 364px;
  top: 66px;
}

.process-visual--card {
  left: 370px;
  top: 220px;
}

.process-visual small,
.process-qr small {
  color: #4a5361;
  font-size: 12px;
}

.process-visual strong {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(36, 87, 214, 0.08);
  color: #3b4452;
  font-size: 13px;
}

.process-stamps {
  display: flex;
  gap: 7px;
  padding: 10px 0;
}

.process-stamps span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px dashed rgba(36, 87, 214, 0.28);
  border-radius: 50%;
  color: #2457d6;
}

.process-stamps span.is-filled {
  border-style: solid;
  background: linear-gradient(135deg, #2457d6, #1d46b0);
  color: #fff;
}

.process-stamps svg {
  width: 12px;
  height: 12px;
  color: currentColor !important;
  stroke: currentColor !important;
}

.process-visual--card > div:first-child {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(36, 87, 214, 0.12);
}

.process-visual--card small {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.process-visual--card span {
  color: #596271;
  font-size: 12px;
}

.process-visual--card > strong {
  justify-content: flex-end;
  padding: 0;
  background: transparent;
  color: #303846;
}

.process-phone {
  position: absolute;
  top: 198px;
  right: 88px;
  z-index: 2;
  width: 96px;
  min-height: 172px;
  padding: 18px 10px 12px;
  border: 5px solid #191919;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 36px rgba(16, 27, 53, 0.14);
}

.process-phone__bar {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 42px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.process-phone strong {
  display: block;
  margin-top: 8px;
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.process-phone span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.process-phone__dots {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.process-phone__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2457d6;
  opacity: 0.75;
}

.process-phone button {
  width: 100%;
  min-height: 24px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: #2457d6;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.process-domain {
  left: 346px;
  bottom: 156px;
  min-height: 50px;
  padding: 0 16px;
}

.process-domain > svg {
  width: 18px;
  height: 18px;
}

.process-domain strong {
  color: #1d2430;
  font-size: 15px;
}

.process-domain span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: #2457d6;
}

.process-domain span svg {
  width: 16px;
  height: 16px;
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.process-qr {
  position: absolute;
  right: 74px;
  bottom: 44px;
  z-index: 2;
  display: grid;
  width: 118px;
  min-height: 152px;
  justify-items: center;
  gap: 9px;
  padding: 14px 12px;
  transform: rotate(5deg);
  border: 1px solid rgba(36, 87, 214, 0.22);
  border-radius: 8px 8px 14px 14px;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(16, 27, 53, 0.12);
}

.process-qr div {
  width: 62px;
  height: 62px;
  border: 7px solid #fff;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 16px, #111 16px 22px, transparent 22px 32px, #111 32px 42px, transparent 42px),
    linear-gradient(#111 10px, transparent 10px 16px, #111 16px 22px, transparent 22px 32px, #111 32px 42px, transparent 42px);
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(36, 87, 214, 0.16);
}

.process-qr span {
  color: #52617a;
  font-size: 10px;
}

.process-live {
  left: 382px;
  bottom: 48px;
  min-height: 72px;
  padding: 14px 18px;
}

.process-live > svg {
  width: 34px;
  height: 34px;
}

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

.process-live span {
  display: block;
  margin-top: 4px;
  color: #596271;
  font-size: 13px;
}

.process-studio {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  min-height: 0;
  gap: 0;
  padding: 0;
}

.process-steps {
  display: grid;
  gap: 0;
  padding: 34px 30px;
  border-right: 1px solid rgba(36, 87, 214, 0.14);
  background: #ffffff;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 82px;
  padding: 14px 0;
}

.process-step + .process-step {
  border-top: 1px solid rgba(36, 87, 214, 0.1);
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
}

.process-step svg,
.process-preview svg {
  color: #2457d6 !important;
  stroke: #2457d6 !important;
}

.process-step > svg {
  width: 30px;
  height: 30px;
  margin-top: 6px;
}

.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.process-step p {
  margin: 6px 0 0;
  color: #4a5361;
  font-size: 14px;
  line-height: 1.45;
}

.process-step.is-active span {
  border-color: transparent;
  background: linear-gradient(135deg, #2457d6, #1d46b0);
  color: #fff;
  box-shadow: 0 14px 24px rgba(36, 87, 214, 0.2);
}

.process-preview {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 42px;
}

.process-browser {
  overflow: hidden;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 58px rgba(16, 27, 53, 0.12);
}

.process-browser__bar {
  display: grid;
  grid-template-columns: 12px 12px 12px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(36, 87, 214, 0.12);
  background: #ffffff;
}

.process-browser__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.process-browser__bar span:nth-child(1) {
  background: #de6256;
}

.process-browser__bar span:nth-child(2) {
  background: #79a3ff;
}

.process-browser__bar span:nth-child(3) {
  background: #2457d6;
}

.process-browser__bar strong {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 7px;
  min-width: min(100%, 280px);
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f5f8fd;
  color: #3f4856;
  font-size: 13px;
}

.process-browser__bar svg {
  width: 15px;
  height: 15px;
}

.process-browser__body {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 1.16fr);
  gap: 26px;
  align-items: center;
  min-height: 318px;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 16%, rgba(121, 163, 255, 0.11), transparent 24%),
    #ffffff;
}

.process-mini-copy small {
  color: #2457d6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-mini-copy h3 {
  max-width: 330px;
  margin: 16px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.03;
}

.process-mini-copy p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #4a5361;
  font-size: 15px;
  line-height: 1.56;
}

.process-loyalty-card {
  align-self: center;
  width: min(100%, 430px);
  justify-self: end;
  padding: 24px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 42px rgba(16, 27, 53, 0.12);
}

.process-loyalty-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(36, 87, 214, 0.14);
}

.process-loyalty-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.process-loyalty-card span {
  color: #596271;
  font-size: 13px;
  font-weight: 700;
}

.process-loyalty-card .process-stamps {
  gap: 10px;
  padding: 18px 0 14px;
}

.process-loyalty-card .process-stamps span {
  width: 34px;
  height: 34px;
}

.process-loyalty-card .process-stamps svg {
  width: 16px;
  height: 16px;
}

.process-loyalty-card em {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 13px;
  background: rgba(36, 87, 214, 0.08);
  color: #3b4452;
  font-style: normal;
  font-weight: 800;
}

.process-preview__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-preview__meta div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px 12px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(36, 87, 214, 0.14);
  border-radius: 14px;
  background: #ffffff;
}

.process-preview__meta svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
}

.process-preview__meta strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.process-preview__meta span {
  color: #596271;
  font-size: 12px;
  line-height: 1.35;
}

.comparison-section {
  position: relative;
  overflow: visible;
  padding: clamp(24px, 2.8vw, 42px) 24px clamp(40px, 4vw, 58px);
  background:
    radial-gradient(circle at 50% 28%, rgba(121, 163, 255, 0.1), transparent 31%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.comparison-section__inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.comparison-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.comparison-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.comparison-copy h2 {
  max-width: 1060px;
  margin: 26px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: 0;
}

.comparison-copy h2 span {
  display: block;
  color: #2457d6;
}

.comparison-copy p {
  max-width: 840px;
  margin: 20px 0 0;
  color: #596271;
  font-size: 19px;
  line-height: 1.45;
}

.comparison-board {
  display: grid;
  grid-template-columns: minmax(230px, 0.88fr) minmax(230px, 0.88fr) minmax(390px, 1.48fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 38px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  min-height: 438px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(16, 27, 53, 0.07);
}

.comparison-card--muted {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 30px 28px;
}

.comparison-card__icon,
.comparison-card__badge {
  display: grid;
  place-items: center;
  color: #2457d6;
}

.comparison-card__icon svg {
  width: 74px;
  height: 56px;
  stroke: #2457d6 !important;
}

.comparison-card h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.35vw, 38px);
  font-weight: 500;
  line-height: 1.06;
  text-align: center;
}

.comparison-card__rule {
  display: block;
  width: 76px;
  height: 1px;
  margin: 16px auto 12px;
  background: linear-gradient(90deg, transparent, rgba(36, 87, 214, 0.5), transparent);
}

.comparison-card__rule::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: -3px auto 0;
  transform: rotate(45deg);
  background: rgba(36, 87, 214, 0.72);
}

.comparison-card ul {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 50px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.comparison-card--muted li + li {
  border-top: 1px solid rgba(36, 87, 214, 0.08);
}

.comparison-card li svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(36, 87, 214, 0.08);
  color: #2457d6;
  stroke: #2457d6 !important;
}

.comparison-card--pro {
  min-height: 420px;
  padding: 26px 30px 24px;
  border-color: rgba(36, 87, 214, 0.28);
  background:
    radial-gradient(circle at 76% 26%, rgba(121, 163, 255, 0.14), transparent 36%),
    #ffffff;
  box-shadow: 0 22px 46px rgba(36, 87, 214, 0.14);
}

.comparison-card__sparkles span {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: radial-gradient(circle, rgba(36, 87, 214, 0.65) 0 23%, transparent 25%);
}

.comparison-card__sparkles span:first-child {
  top: 56px;
  left: 28%;
}

.comparison-card__sparkles span:last-child {
  top: 58px;
  right: 35%;
}

.comparison-card__badge svg {
  width: 60px;
  height: 60px;
  stroke: #2457d6 !important;
}

.comparison-card--pro h3 {
  margin-top: 10px;
  color: #101b35;
  font-size: clamp(36px, 3vw, 46px);
}

.comparison-pro {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.comparison-card--pro li {
  grid-template-columns: 36px minmax(0, 1fr);
  min-height: 44px;
  font-size: 16px;
}

.comparison-card--pro li svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  background: linear-gradient(135deg, #2457d6, #1d46b0);
  color: #fff;
  stroke: #fff !important;
}

.comparison-proof {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 18%, rgba(121, 163, 255, 0.12), transparent 32%),
    #ffffff;
  box-shadow: 0 14px 26px rgba(16, 27, 53, 0.07);
}

.comparison-proof__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-proof__head > svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(36, 87, 214, 0.08);
  color: #2457d6;
  stroke: #2457d6 !important;
}

.comparison-proof__head strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.comparison-proof__head span {
  display: block;
  margin-top: 3px;
  color: #596271;
  font-size: 13px;
  line-height: 1.35;
}

.comparison-proof__steps {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.comparison-proof__steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(36, 87, 214, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: #3f4856;
  font-size: 13px;
  font-weight: 700;
}

.comparison-proof__steps svg {
  width: 18px;
  height: 18px;
  color: #2457d6;
  stroke: #2457d6 !important;
}

.comparison-proof__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.comparison-proof__bar span,
.comparison-proof__bar em {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
}

.comparison-proof__bar span {
  background: linear-gradient(135deg, #2457d6, #1d46b0);
}

.comparison-proof__bar em {
  border: 1px solid rgba(36, 87, 214, 0.18);
  background: #ffffff;
  font-style: normal;
}

.comparison-proof__bar svg {
  width: 14px;
  height: 14px;
  stroke: #2457d6 !important;
}

.comparison-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.comparison-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 156px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(36, 87, 214, 0.16);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 17px;
  box-shadow: 0 10px 20px rgba(16, 27, 53, 0.045);
}

.comparison-chips svg {
  width: 25px;
  height: 25px;
  color: #2457d6;
  stroke: #2457d6 !important;
}

.faq-section {
  position: relative;
  overflow: visible;
  padding: clamp(40px, 4vw, 58px) 24px clamp(40px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 28%, rgba(121, 163, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.faq-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(640px, 1.55fr);
  align-items: center;
  gap: clamp(52px, 6vw, 92px);
  width: min(100%, 1360px);
  margin: 0 auto;
}

.faq-copy {
  min-width: 0;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
}

.faq-copy h2 {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.faq-copy h2 span {
  display: block;
  color: #2457d6;
}

.faq-copy p {
  max-width: 500px;
  margin: 28px 0 0;
  color: #4f5968;
  font-size: 19px;
  line-height: 1.62;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 190px;
  min-height: 62px;
  margin-top: 36px;
  padding: 0 26px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2457d6, #1d46b0);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.faq-cta:hover,
.faq-cta:focus-visible {
  transform: translateY(-1px);
  outline: 0;
  box-shadow: 0 22px 40px rgba(36, 87, 214, 0.28);
}

.faq-cta svg {
  width: 21px;
  height: 21px;
  stroke: currentColor !important;
}

.faq-accordion {
  display: grid;
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 207, 242, 0.88);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
  box-shadow: 0 18px 44px rgba(16, 27, 53, 0.07);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(188, 207, 242, 0.88);
}

.faq-item:last-child {
  box-shadow: none;
}

.faq-item.is-open {
  background:
    radial-gradient(circle at 88% 22%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff, #f4f8ff);
  border-color: rgba(37, 99, 235, 0.24);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 86px;
  padding: 0 36px 0 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover,
.faq-item button:focus,
.faq-item button:focus-visible {
  outline: 0;
  background: rgba(36, 87, 214, 0.045);
}

.faq-item button::-moz-focus-inner {
  border: 0;
}

.faq-item button:focus-visible .faq-item__icon {
  box-shadow: 0 0 0 4px rgba(36, 87, 214, 0.12);
}

.faq-item__number {
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
}

.faq-item__question {
  min-width: 0;
  color: #101b35;
  font-family: inherit;
  font-size: clamp(20px, 1.35vw, 24px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.24;
}

.faq-item__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(36, 87, 214, 0.28);
  border-radius: 50%;
  color: #2457d6;
}

.faq-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: #2457d6 !important;
}

.faq-item__answer {
  margin: -8px 54px 30px 126px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #52617a;
  font-size: 20px;
  font-weight: 540;
  line-height: 1.62;
  box-shadow: none;
  outline: 0;
}

.faq-item__answer p {
  max-width: none;
  margin: 0;
}

.faq-item__answer:focus,
.faq-item__answer:focus-visible {
  outline: 0;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 4vw, 58px) 24px clamp(24px, 2.8vw, 46px);
  background:
    radial-gradient(circle at 50% 10%, rgba(121, 163, 255, 0.1), transparent 36%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.quote-section__inner {
  width: min(100%, 1380px);
  margin: 0 auto;
}

.quote-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.quote-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
}

.quote-kicker::after {
  content: none;
}

.quote-heading h2 {
  max-width: 880px;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.quote-heading h2 span {
  display: block;
  color: #2457d6;
}

.quote-heading p {
  max-width: 820px;
  margin: 22px 0 0;
  color: #4f5968;
  font-size: 18px;
  line-height: 1.62;
}

.quote-workshop {
  position: relative;
  margin-top: clamp(36px, 5vw, 58px);
  padding: 66px 46px 46px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-bottom: 0;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #ffffff;
  box-shadow: 0 -18px 58px rgba(16, 27, 53, 0.07);
}

.quote-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.quote-workshop::before {
  content: none;
}

.quote-workshop__status {
  position: absolute;
  top: 28px;
  right: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2457d6;
  font-size: 14px;
  font-weight: 700;
}

.quote-workshop__status svg {
  width: 21px;
  height: 21px;
  color: #2457d6;
  stroke: #2457d6 !important;
}

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

.quote-field {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 0 16px;
  min-height: 92px;
  padding: 18px 18px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.quote-field > svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: #2457d6;
  stroke: #2457d6 !important;
}

.quote-field span,
.quote-message span {
  color: #111722;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-field input,
.quote-message textarea,
.quote-contact input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.quote-field input,
.quote-select {
  align-self: end;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.2;
}

.quote-field input {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.quote-field input::placeholder {
  color: #9aa2ad;
  opacity: 1;
}

.quote-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.quote-select span {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.quote-select svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #2457d6;
  stroke: #2457d6 !important;
  transition: transform 160ms ease;
}

.quote-select[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.quote-field input:focus,
.quote-select:focus,
.quote-message textarea:focus,
.quote-contact input:focus {
  outline: 0;
}

.quote-field:focus-within,
.quote-message:focus-within,
.quote-contact label:focus-within {
  border-color: rgba(36, 87, 214, 0.42);
  box-shadow: 0 0 0 4px rgba(36, 87, 214, 0.1);
}

.quote-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 12px;
  left: 58px;
  z-index: 20;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(16, 27, 53, 0.12);
}

.quote-options[hidden] {
  display: none;
}

.quote-options button {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #18202d;
  font: inherit;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.quote-options button:hover,
.quote-options button:focus-visible {
  outline: 0;
  background: rgba(36, 87, 214, 0.075);
  color: #2457d6;
}

.quote-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 26px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(220, 229, 242, 0.95);
}

.quote-message {
  display: flex;
  min-height: 196px;
  flex-direction: column;
  gap: 18px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.quote-message textarea {
  flex: 1 1 auto;
  resize: vertical;
  color: #161d29;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.5;
}

.quote-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding-left: 26px;
  border-left: 1px solid rgba(220, 229, 242, 0.95);
}

.quote-contact label {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.quote-contact label svg {
  width: 22px;
  height: 22px;
  color: #2457d6;
  stroke: #2457d6 !important;
}

.quote-contact input {
  color: var(--ink);
  font-size: 16px;
}

.quote-contact input::placeholder {
  color: #707987;
  opacity: 1;
}

.quote-contact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 68px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #2457d6, #1d46b0);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.65vw, 28px);
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.23);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quote-contact button:hover,
.quote-contact button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
  box-shadow: 0 22px 42px rgba(36, 87, 214, 0.28);
}

.quote-contact button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor !important;
}

.quote-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  color: #2457d6;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.quote-whatsapp svg {
  width: 19px;
  height: 19px;
  color: #2457d6;
  stroke: #2457d6 !important;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: clamp(28px, 3.2vw, 50px) 24px clamp(76px, 7vw, 108px);
  background:
    radial-gradient(circle at 77% 8%, rgba(121, 163, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.final-cta-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245, 248, 253, 0), rgba(220, 229, 242, 0.38)),
    repeating-linear-gradient(90deg, rgba(36, 87, 214, 0.035) 0 1px, transparent 1px 12px);
}

.final-cta-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(640px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 1520px);
  margin: 0 auto;
}

.final-cta-copy {
  max-width: 660px;
}

.final-cta-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  width: fit-content;
  padding: 0 26px;
  border: 1px solid rgba(36, 87, 214, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #2457d6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: 0 14px 34px rgba(16, 27, 53, 0.08);
  text-transform: uppercase;
}

.final-cta-copy h2 {
  width: fit-content;
  max-width: 100%;
  margin: 34px 0 0;
  color: #0e1521;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: 0;
}

.final-cta-copy h2 span {
  display: block;
  color: #2457d6;
}

.final-cta-copy p {
  max-width: 560px;
  margin: 32px 0 0;
  color: #5a6370;
  font-size: 21px;
  line-height: 1.58;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 760;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.final-cta-button svg {
  width: 23px;
  height: 23px;
  stroke: currentColor !important;
}

.final-cta-button--primary {
  border: 1px solid #2457d6;
  background: linear-gradient(145deg, #2457d6, #1d46b0);
  color: #fff;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.23);
}

.final-cta-button--secondary {
  border: 1px solid rgba(36, 87, 214, 0.42);
  background: rgba(255, 255, 255, 0.74);
  color: #101b35;
}

.final-cta-button:hover,
.final-cta-button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.final-cta-button--primary:hover,
.final-cta-button--primary:focus-visible {
  box-shadow: 0 24px 46px rgba(36, 87, 214, 0.28);
}

.final-cta-button--secondary:hover,
.final-cta-button--secondary:focus-visible {
  border-color: rgba(36, 87, 214, 0.64);
  box-shadow: 0 16px 32px rgba(16, 27, 53, 0.08);
}

.final-device {
  position: relative;
  width: min(100%, 890px);
  margin: 22px 0 0 auto;
  perspective: 1600px;
  filter: drop-shadow(0 34px 42px rgba(37, 27, 17, 0.22));
}

.final-device__lid {
  position: relative;
  z-index: 2;
  width: 86%;
  margin-left: auto;
  padding: 12px;
  border-radius: 20px 20px 13px 13px;
  background:
    linear-gradient(145deg, #1a1a18 0%, #050607 48%, #24231f 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    inset 0 -16px 34px rgba(255, 255, 255, 0.05);
  transform: rotateX(3deg) rotateY(-9deg) rotateZ(1.5deg);
  transform-origin: 50% 100%;
}

.final-device__camera {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #384150 0 27%, #050607 58%);
  transform: translateX(-50%);
}

.final-device__screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mavera-ui {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(121, 163, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  color: #15201a;
  font-size: 12px;
}

.mavera-ui__nav {
  display: grid;
  grid-template-columns: 1.15fr 2fr auto;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 0 30px;
  background: linear-gradient(94deg, #101b35 0%, #12284f 100%);
  color: #fffaf2;
}

.mavera-ui__brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.mavera-ui__brand span {
  display: block;
  margin-top: 2px;
  color: #79a3ff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.mavera-ui__nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.mavera-ui__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(121, 163, 255, 0.7);
  border-radius: 4px;
  color: #79a3ff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.mavera-ui__account svg {
  width: 14px;
  height: 14px;
  stroke: currentColor !important;
}

.mavera-ui__body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  padding: 36px 32px 30px;
}

.mavera-ui__intro p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.1;
}

.mavera-ui__intro > strong {
  display: block;
  margin-top: 8px;
  color: #2457d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.mavera-ui__intro > span {
  display: block;
  max-width: 285px;
  margin-top: 24px;
  color: #4f5961;
  font-size: 13px;
  line-height: 1.5;
}

.mavera-ui__card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  margin-top: 28px;
  padding: 30px 28px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 85% 55%, rgba(121, 163, 255, 0.12), transparent 42%),
    linear-gradient(145deg, #101b35, #071226);
  color: #fff7e8;
  box-shadow: 0 22px 32px rgba(18, 23, 34, 0.18);
}

.mavera-ui__card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 130px;
  height: 154px;
  border-right: 1px solid rgba(121, 163, 255, 0.18);
  border-bottom: 1px solid rgba(121, 163, 255, 0.22);
  border-radius: 60% 0 50% 0;
  transform: rotate(-18deg);
}

.mavera-ui__card p {
  position: relative;
  z-index: 1;
  max-width: 180px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
}

.mavera-ui__card span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 155px;
  margin-top: 28px;
  color: rgba(255, 247, 232, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.mavera-ui__panels {
  display: grid;
  gap: 20px;
}

.mavera-panel {
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(16, 27, 53, 0.08);
}

.mavera-panel h3 {
  margin: 0;
  color: #17202b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mavera-panel--visits {
  padding: 26px 24px 22px;
}

.mavera-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.mavera-stamps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2457d6, #1d46b0);
  color: #fff;
  box-shadow: inset 0 2px 7px rgba(255, 255, 255, 0.28);
}

.mavera-stamps svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor !important;
}

.mavera-stamps .is-empty {
  border: 1px dashed rgba(36, 87, 214, 0.38);
  background: transparent;
  color: rgba(36, 87, 214, 0.34);
  box-shadow: none;
}

.mavera-stamp-numbers {
  display: grid;
  grid-template-columns: repeat(5, 46px);
  gap: 16px;
  margin-top: 12px;
  color: #1d2630;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.mavera-reward {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 19px 20px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff, #f5f8fd);
}

.mavera-reward > svg {
  width: 38px;
  height: 38px;
  color: #2457d6;
  stroke: #2457d6 !important;
}

.mavera-reward strong,
.mavera-campaign strong {
  display: block;
  color: #101b35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.mavera-reward p,
.mavera-campaign p {
  margin: 8px 0 0;
  color: #4f5961;
  font-size: 12px;
  line-height: 1.45;
}

.mavera-panel--campaign {
  padding: 18px 18px 16px;
}

.mavera-campaign {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(220, 229, 242, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.mavera-campaign > svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 50%;
  background: #101b35;
  color: #79a3ff;
  stroke: currentColor !important;
}

.mavera-campaign span {
  display: inline-block;
  margin-top: 9px;
  color: #2457d6;
  font-size: 12px;
  font-weight: 800;
}

.final-device__hinge {
  position: relative;
  z-index: 3;
  width: 82%;
  height: 16px;
  margin: -2px 1.5% 0 auto;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(255, 255, 255, 0.54) 18% 29%, transparent 34% 100%),
    linear-gradient(180deg, #121213 0%, #2d2d2b 50%, #090909 100%);
  transform: rotateY(-9deg) rotateZ(1.5deg);
}

.final-device__base {
  position: relative;
  z-index: 1;
  width: 95%;
  height: 138px;
  margin: -6px 0 0 auto;
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent 20% 78%, rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, #a59d91 0%, #777066 54%, #bbb2a5 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    inset 0 -10px 22px rgba(0, 0, 0, 0.2);
  transform: rotateX(62deg) rotateY(-9deg) rotateZ(1.5deg);
  transform-origin: 50% 0;
}

.final-device__keyboard {
  position: absolute;
  top: 18px;
  left: 16%;
  width: 56%;
  height: 54px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, #171817 0 24px, transparent 24px 32px),
    repeating-linear-gradient(180deg, rgba(0, 0, 0, 0) 0 12px, rgba(255, 255, 255, 0.08) 12px 14px);
  opacity: 0.96;
}

.final-device__trackpad {
  position: absolute;
  right: 25%;
  bottom: 22px;
  width: 22%;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(232, 226, 217, 0.22);
}

.final-device {
  width: min(100%, 900px);
  perspective: none;
  filter: none;
}

.final-device__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.final-device > :not(.final-device__image) {
  display: none;
}

.final-cta-section {
  min-height: min(760px, 82vh);
  padding: clamp(10px, 1.6vw, 24px) 0 clamp(54px, 5vw, 86px);
  background:
    radial-gradient(circle at 75% 18%, rgba(121, 163, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #f5f8fd 0%, #f5f8fd 100%);
}

.final-cta-section::after {
  display: block;
}

.final-cta-section__inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  width: min(100% - 96px, 1540px);
}

.final-cta-copy {
  max-width: 690px;
}

.final-cta-copy h2 {
  font-size: clamp(34px, 2.55vw, 46px);
  font-weight: 620;
  line-height: 1.06;
}

.final-cta-copy p {
  max-width: 590px;
}

.final-device {
  width: min(100%, 900px);
  margin: 0 0 0 auto;
  align-self: end;
  position: relative;
  filter: drop-shadow(0 30px 36px rgba(16, 27, 53, 0.12));
  transform-origin: 50% 82%;
  animation: final-device-sway 7.5s ease-in-out infinite;
  will-change: transform;
}

.final-device__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.final-device::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 5%;
  right: 5%;
  bottom: -1.5%;
  height: 15%;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(245, 248, 253, 0.9) 0%,
    rgba(245, 248, 253, 0.68) 38%,
    rgba(245, 248, 253, 0.24) 66%,
    rgba(245, 248, 253, 0) 100%
  );
  filter: blur(16px);
}

@keyframes final-device-sway {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateZ(-0.35deg);
  }

  50% {
    transform: translate3d(8px, -2px, 0) rotateZ(0.45deg);
  }
}

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

.final-cta-section__reference,
.final-cta-section__seo {
  display: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 58px) 24px 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(210, 151, 55, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 253, 248, 0.08), transparent 26%),
    linear-gradient(180deg, #15120f 0%, #0d111a 46%, #090c12 100%);
  color: #fffaf3;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
}

.site-footer__inner,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100%, 1360px);
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.58fr);
  gap: clamp(44px, 6vw, 82px);
  padding: clamp(22px, 4vw, 46px) 0 42px;
}

.footer-brand {
  min-width: 0;
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.94);
}

.footer-brand__logo img {
  display: block;
  width: min(100%, 246px);
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 10px;
  background: rgba(255, 250, 243, 0.055);
  color: #f3d59e;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.footer-social svg {
  width: 21px;
  height: 21px;
  stroke: currentColor !important;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 213, 158, 0.72);
  background: rgba(255, 250, 243, 0.1);
  outline: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 34px 28px;
}

.footer-links div {
  min-width: 0;
}

.footer-links h3 {
  margin: 0 0 16px;
  color: #fffaf3;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 11px;
  color: rgba(255, 250, 243, 0.68);
  font-size: 15px;
  line-height: 1.34;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #f3d59e;
  transform: translateX(3px);
  outline: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 243, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 250, 243, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom a {
  color: #f3d59e;
  font-weight: 750;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fffaf3;
  outline: 0;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 10%, rgba(184, 116, 23, 0.1), transparent 32%),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ee 100%);
}

.legal-shell {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px) 0 clamp(58px, 7vw, 92px);
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 0 22px;
  border: 1px solid rgba(184, 116, 23, 0.16);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 36px rgba(42, 31, 18, 0.08);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
}

.legal-brand img {
  display: block;
  width: clamp(178px, 18vw, 232px);
  height: auto;
  object-fit: contain;
}

.quote-contact .quote-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 44px;
  padding: 6px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-contact .quote-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #2457d6;
  cursor: pointer;
}

.quote-contact .quote-consent span {
  color: #52617a;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
}

.quote-contact .quote-consent a {
  color: #2457d6;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(184, 116, 23, 0.28);
  border-radius: 8px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
}

.legal-hero {
  margin-top: clamp(42px, 6vw, 72px);
}

.legal-kicker {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 880px;
  margin: 16px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 74px);
  font-weight: 500;
  line-height: 1.03;
}

.legal-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4f5968;
  font-size: 18px;
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(184, 116, 23, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.8);
  color: #596271;
  font-size: 13px;
  font-weight: 750;
}

.legal-notice,
.legal-section {
  margin-top: 34px;
  border: 1px solid rgba(184, 116, 23, 0.16);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 42px rgba(42, 31, 18, 0.06);
}

.legal-notice {
  padding: 22px 24px;
  color: #394150;
  font-size: 15px;
  line-height: 1.68;
}

.legal-notice strong {
  color: var(--ink);
}

.legal-section {
  padding: clamp(24px, 3vw, 34px);
}

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.15;
}

.legal-section h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.legal-section p,
.legal-section li {
  color: #4f5968;
  font-size: 16px;
  line-height: 1.72;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.legal-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 116, 23, 0.12);
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.72);
}

.legal-table strong {
  color: var(--ink);
}

.legal-table span {
  color: #4f5968;
  line-height: 1.55;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(124, 91, 48, 0.16);
  color: #596271;
  font-size: 14px;
}

.legal-footer a {
  color: var(--gold-dark);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .navbar {
    width: calc(100% - 36px);
  }

  .navlinks {
    display: none;
  }

  .brand__logo {
    width: 194px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(248, 244, 238, 0.98) 0%, rgba(248, 244, 238, 0.92) 44%, rgba(248, 244, 238, 0.22) 78%),
      linear-gradient(180deg, rgba(248, 244, 238, 0.05) 0%, rgba(248, 244, 238, 0.26) 100%);
  }

  .feature-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .feature:nth-child(4) {
    border-left: 0;
  }

  .feature:nth-child(n + 4) {
    border-top: 1px solid rgba(124, 91, 48, 0.18);
  }

  .build-showcase--split {
    gap: 18px;
  }

  .custom-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .custom-copy {
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
  }

  .custom-kicker {
    justify-content: center;
  }

  .custom-copy h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .custom-copy p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .project-cases {
    grid-template-columns: 1fr;
  }

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

  .campaign-builder {
    grid-template-columns: 1fr;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
  }

  .campaign-builder__side {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 116, 23, 0.18);
  }

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

  .campaign-previews {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    gap: 46px;
  }

  .campaign-preview,
  .campaign-preview--featured {
    min-height: auto;
  }

  .campaign-preview__icon {
    margin: 0 auto 16px;
  }

  .campaign-flow__steps {
    grid-template-columns: 1fr;
  }

  .campaign-flow__steps > svg {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .process-studio {
    grid-template-columns: 1fr;
    display: grid;
    min-height: 0;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    gap: 18px;
    padding: 28px;
  }

  .process-path {
    display: none;
  }

  .process-node,
  .process-visual,
  .process-phone,
  .process-domain,
  .process-qr,
  .process-live {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }

  .process-node {
    min-height: 0;
    padding: 18px;
  }

  .process-node > span {
    position: static;
    width: 42px;
    height: 42px;
    transform: none;
    flex: 0 0 auto;
    font-size: 20px;
  }

  .process-visual {
    max-width: none;
  }

  .process-phone,
  .process-qr {
    width: 140px;
    justify-self: center;
  }

  .process-domain,
  .process-live {
    justify-content: center;
  }

  .process-steps {
    padding: 8px 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 116, 23, 0.14);
    background: transparent;
  }

  .process-preview {
    padding: 18px 0 0;
  }

  .comparison-board {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-card--pro {
    grid-column: 1 / -1;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 980px;
  }

  .faq-copy {
    text-align: center;
  }

  .faq-copy h2,
  .faq-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .quote-workshop {
    padding: 64px 28px 32px;
  }

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

  .quote-detail {
    grid-template-columns: 1fr;
  }

  .quote-contact {
    padding-left: 0;
    border-left: 0;
  }

  .final-cta-section__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .final-cta-copy {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .final-cta-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .final-cta-actions {
    justify-content: center;
  }

  .final-device {
    margin: 0 auto;
  }

  .flow-section__inner {
    display: block;
  }

  .flow-copy {
    max-width: 940px;
    margin: 0 auto 36px;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .flow-kicker {
    justify-content: center;
  }

  .flow-copy p {
    max-width: 820px;
    margin: 22px auto 0;
  }

  .flow-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin: 0 auto;
    gap: 42px 20px;
  }

  .flow-journey::before,
  .flow-step::after {
    display: none;
  }

  .benefit-section__inner {
    grid-template-columns: 1fr;
  }

  .benefit-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }

  .benefit-kicker {
    justify-content: center;
    align-self: center;
  }

  .benefit-copy p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .benefit-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin: 38px auto 0;
  }

  .benefit-control {
    max-width: 980px;
    margin: 0 auto;
  }

  .benefit-control__grid {
    grid-template-columns: 1fr;
  }

  .benefit-connector {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 38px;
    margin: -2px 0;
  }

  .benefit-connector svg {
    display: none;
  }

  .benefit-connector::before {
    content: "";
    width: 2px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0), #2563eb 28%, #2563eb 72%, rgba(37, 99, 235, 0));
  }

  .benefit-connector::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #2563eb;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
  }

  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

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

  .progress-section__inner {
    grid-template-columns: 1fr;
  }

  .progress-copy h2,
  .progress-copy p {
    max-width: 820px;
  }

  .build-copy h2,
  .build-copy p {
    max-width: 820px;
  }

  .domain-showcase {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
  }

  .domain-showcase__stage {
    min-height: clamp(380px, 53vw, 500px);
  }

  .domain-device--macbook {
    width: min(78vw, 700px);
    transform: translateX(-52%);
  }

  .domain-device--mobile {
    right: 22px;
    bottom: 34px;
    width: clamp(132px, 17vw, 180px);
  }

  .domain-device--qr {
    left: 18px;
    right: auto;
    bottom: 28px;
    width: clamp(92px, 13vw, 122px);
  }

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

  .footer-brand p {
    max-width: 680px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 820px;
  }

  .hero__image {
    object-position: 61% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(248, 244, 238, 0.98) 0%, rgba(248, 244, 238, 0.91) 48%, rgba(248, 244, 238, 0.36) 100%),
      linear-gradient(90deg, rgba(248, 244, 238, 0.96), rgba(248, 244, 238, 0.3));
  }

  .navbar {
    position: relative;
    z-index: 20;
    width: calc(100% - 24px);
    min-height: 68px;
    margin-top: 12px;
    padding: 0 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand__logo {
    width: clamp(138px, 39vw, 170px);
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(36, 87, 214, 0.24);
    border-radius: 8px;
    background: #ffffff;
    color: #101b35;
    cursor: pointer;
    touch-action: manipulation;
  }

  .mobile-nav-toggle svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
    stroke: currentColor;
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 30;
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: calc(100vh - 104px);
    padding: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(36, 87, 214, 0.2);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
  }

  .mobile-nav-panel:not([hidden]) {
    display: grid;
  }

  .mobile-nav-panel > a:not(.mobile-nav-panel__cta) {
    display: grid;
    grid-template-columns: 28px 1fr 20px;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 10px;
    border-radius: 6px;
    color: #101b35;
    font-size: 16px;
    font-weight: 750;
  }

  .mobile-nav-panel > a:not(.mobile-nav-panel__cta) svg {
    width: 21px;
    height: 21px;
    color: #2563eb;
    stroke: currentColor;
  }

  .mobile-nav-panel > a:not(.mobile-nav-panel__cta) svg:last-child {
    width: 18px;
    height: 18px;
    justify-self: end;
  }

  .mobile-nav-panel__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 4px;
    border-radius: 8px;
    background: #2457d6;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
  }

  .comparison-section {
    padding: 8px 14px 16px;
  }

  .comparison-kicker {
    min-height: 36px;
    padding: 0 18px;
    font-size: 13px;
  }

  .comparison-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .comparison-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .comparison-board {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .comparison-card,
  .comparison-card--pro {
    min-height: auto;
    border-radius: 18px;
  }

  .comparison-card--muted {
    padding: 34px 24px 26px;
  }

  .comparison-card__icon svg {
    width: 86px;
    height: 64px;
  }

  .comparison-card h3,
  .comparison-card--pro h3 {
    font-size: 34px;
  }

  .comparison-card li {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 56px;
    font-size: 15px;
  }

  .comparison-card li svg {
    width: 36px;
    height: 36px;
    padding: 9px;
  }

  .comparison-card--pro {
    padding: 30px 22px 22px;
  }

  .comparison-card__badge svg {
    width: 72px;
    height: 72px;
  }

  .comparison-pro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .comparison-proof {
    padding: 18px 16px 15px;
  }

  .comparison-proof__steps span {
    min-height: 34px;
    font-size: 12px;
  }

  .comparison-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .comparison-chips span {
    min-width: 0;
    min-height: 50px;
    padding: 0 12px;
    gap: 8px;
    font-size: 14px;
    box-shadow: none;
  }

  .comparison-chips svg {
    width: 21px;
    height: 21px;
  }

  .faq-section {
    padding: 16px 14px 34px;
  }

  .faq-section__inner {
    gap: 30px;
  }

  .faq-kicker {
    font-size: 13px;
  }

  .faq-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .faq-copy p {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .faq-cta {
    min-width: 168px;
    min-height: 56px;
    margin-top: 28px;
    font-size: 16px;
  }

  .faq-accordion {
    gap: 12px;
    margin-right: -2px;
    margin-left: -2px;
    border-radius: 0;
  }

  .faq-item button {
    grid-template-columns: 40px minmax(0, 1fr) 38px;
    gap: 14px;
    min-height: 76px;
    padding: 0 16px;
  }

  .faq-item__number {
    font-size: 22px;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .faq-item__icon {
    width: 38px;
    height: 38px;
  }

  .faq-item__icon svg {
    width: 19px;
    height: 19px;
  }

  .faq-item__answer {
    margin: -4px 16px 24px 70px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 16.8px;
    font-weight: 540;
    line-height: 1.56;
    box-shadow: none;
  }

  .quote-section {
    padding: 34px 14px 24px;
  }

  .quote-kicker {
    font-size: 13px;
  }

  .quote-kicker::after {
    width: 56px;
    margin-left: 12px;
  }

  .quote-heading h2 {
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .quote-heading p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .quote-workshop {
    margin-top: 34px;
    padding: 58px 16px 18px;
    border-radius: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .quote-workshop__status {
    top: 24px;
    right: 18px;
    font-size: 12px;
  }

  .quote-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-field {
    min-height: 82px;
    padding: 15px 16px;
  }

  .quote-field input,
  .quote-select {
    font-size: 20px;
  }

  .quote-options {
    right: 10px;
    left: 58px;
  }

  .quote-detail {
    gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .quote-message {
    min-height: 190px;
    padding: 18px 16px;
  }

  .quote-message textarea {
    font-size: 19px;
  }

  .quote-contact button {
    min-height: 58px;
    font-size: 23px;
  }

  .final-cta-section {
    padding: 10px 14px 68px;
  }

  .final-cta-copy {
    text-align: left;
  }

  .final-cta-kicker {
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .final-cta-copy h2 {
    margin-top: 18px;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .final-cta-copy p {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .final-cta-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .final-cta-button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 16px;
  }

  .final-device {
    width: min(100%, 560px);
    margin-top: 4px;
    filter: drop-shadow(0 18px 24px rgba(16, 27, 53, 0.13));
  }

  .final-device::after {
    left: 4%;
    right: 4%;
    bottom: -2%;
    height: 16%;
    filter: blur(14px);
  }

  .final-device__lid {
    width: 100%;
    padding: 8px;
    border-radius: 14px 14px 9px 9px;
    transform: none;
  }

  .final-device__screen {
    border-radius: 6px;
  }

  .mavera-ui {
    font-size: 8px;
  }

  .mavera-ui__nav {
    grid-template-columns: 1fr auto;
    min-height: 38px;
    gap: 8px;
    padding: 0 13px;
  }

  .mavera-ui__brand strong {
    font-size: 14px;
  }

  .mavera-ui__brand span {
    font-size: 5px;
  }

  .mavera-ui__nav nav {
    display: none;
  }

  .mavera-ui__account {
    min-height: 24px;
    padding: 0 8px;
    font-size: 7px;
  }

  .mavera-ui__body {
    gap: 12px;
    padding: 18px 14px 14px;
  }

  .mavera-ui__intro p {
    font-size: 17px;
  }

  .mavera-ui__intro > strong {
    font-size: 18px;
  }

  .mavera-ui__intro > span {
    margin-top: 12px;
    font-size: 8px;
  }

  .mavera-ui__card {
    min-height: 110px;
    margin-top: 14px;
    padding: 16px 14px;
    border-radius: 9px;
  }

  .mavera-ui__card p {
    max-width: 118px;
    font-size: 13px;
  }

  .mavera-ui__card span {
    max-width: 105px;
    margin-top: 14px;
    font-size: 7px;
  }

  .mavera-ui__panels {
    gap: 9px;
  }

  .mavera-panel {
    border-radius: 8px;
  }

  .mavera-panel h3 {
    font-size: 7px;
  }

  .mavera-panel--visits {
    padding: 13px 11px 10px;
  }

  .mavera-stamps {
    gap: 7px;
    margin-top: 13px;
  }

  .mavera-stamps span {
    width: 24px;
    height: 24px;
  }

  .mavera-stamps svg {
    width: 12px;
    height: 12px;
  }

  .mavera-stamp-numbers {
    grid-template-columns: repeat(5, 24px);
    gap: 7px;
    margin-top: 6px;
    font-size: 8px;
  }

  .mavera-reward {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 9px;
    margin-top: 11px;
    padding: 10px;
  }

  .mavera-reward > svg {
    width: 22px;
    height: 22px;
  }

  .mavera-reward strong,
  .mavera-campaign strong {
    font-size: 11px;
  }

  .mavera-reward p,
  .mavera-campaign p {
    margin-top: 4px;
    font-size: 7px;
  }

  .mavera-panel--campaign {
    padding: 9px;
  }

  .mavera-campaign {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    margin-top: 7px;
    padding: 8px;
  }

  .mavera-campaign > svg {
    width: 28px;
    height: 28px;
    padding: 7px;
  }

  .mavera-campaign span {
    margin-top: 4px;
    font-size: 7px;
  }

  .final-device__hinge {
    width: 96%;
    height: 10px;
    margin-right: auto;
    transform: none;
  }

  .final-device__base {
    width: 100%;
    height: 72px;
    transform: rotateX(62deg);
  }

  .final-device__keyboard {
    top: 10px;
    height: 30px;
    background:
      repeating-linear-gradient(90deg, #171817 0 13px, transparent 13px 18px),
      repeating-linear-gradient(180deg, rgba(0, 0, 0, 0) 0 7px, rgba(255, 255, 255, 0.08) 7px 8px);
  }

  .final-device__trackpad {
    bottom: 12px;
    height: 20px;
  }

  .navcta {
    min-width: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero__content {
    width: calc(100% - 34px);
    margin-left: 17px;
    padding-top: 64px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }

  .feature-bar {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

  .feature {
    padding: 28px 16px 30px;
  }

  .feature h2 {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 820;
    line-height: 1.18;
  }

  .feature p {
    width: min(100%, 360px);
    max-width: none;
    margin-top: 10px;
    color: #40516f;
    font-size: 17px;
    font-weight: 540;
    line-height: 1.42;
  }

  .feature + .feature {
    border-top: 1px solid rgba(124, 91, 48, 0.18);
    border-left: 0;
  }

  .industries-section {
    padding: 28px 14px;
  }

  .industries-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .industries-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .industry-cards {
    gap: 18px;
    margin-top: 34px;
  }

  .industry-card {
    min-height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: none;
  }

  .industry-card img {
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .industry-card__content {
    margin: 0;
    gap: 12px;
    min-height: 128px;
    padding: 16px 16px 15px;
    border-radius: 0;
  }

  .industry-card__title {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .industry-card__title svg {
    width: 28px;
    height: 28px;
  }

  .industry-card h3 {
    font-size: 27px;
  }

  .industry-card p {
    margin: 8px 0 0 2px;
    font-size: 15px;
    line-height: 1.42;
  }

  .campaigns-section {
    padding: 28px 14px;
  }

  .campaigns-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .campaigns-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .campaign-builder {
    border-radius: 18px;
    box-shadow: none;
  }

  .campaign-builder__side,
  .campaign-builder__main {
    padding: 20px 16px;
  }

  .campaign-tabs {
    grid-template-columns: 1fr;
  }

  .campaign-tabs button {
    min-height: 58px;
    font-size: 20px;
  }

  .campaign-preview {
    padding: 22px 16px 18px;
  }

  .campaign-preview h3 {
    font-size: 23px;
  }

  .campaign-preview h3 span {
    font-size: 17px;
  }

  .loyalty-mini__stamp {
    width: 26px;
    height: 26px;
  }

  .campaign-builder__cta {
    min-height: 54px;
  }

  .process-section {
    padding: 28px 14px 8px;
  }

  .process-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .process-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .process-studio {
    padding: 20px 16px;
    border-radius: 18px;
    box-shadow: none;
  }

  .process-steps {
    gap: 8px;
    padding-bottom: 18px;
  }

  .process-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 12px;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(36, 87, 214, 0.12);
    border-radius: 14px;
    background: #ffffff;
  }

  .process-step + .process-step {
    border-top: 1px solid rgba(36, 87, 214, 0.12);
  }

  .process-step span {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .process-step > svg {
    grid-column: 1;
    grid-row: 2;
    width: 24px;
    height: 24px;
    margin: 0 auto;
  }

  .process-step > div {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .process-step p {
    font-size: 13px;
  }

  .process-node {
    align-items: flex-start;
  }

  .process-node > svg {
    width: 28px;
    height: 28px;
  }

  .process-node h3 {
    font-size: 16px;
  }

  .process-visual {
    padding: 14px;
  }

  .process-domain {
    flex-wrap: wrap;
  }

  .process-browser__bar {
    grid-template-columns: 10px 10px 10px minmax(0, 1fr);
    padding: 0 12px;
  }

  .process-browser__bar strong {
    min-width: 0;
    padding: 7px 10px;
    font-size: 12px;
  }

  .process-browser__body {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 24px 18px;
  }

  .process-loyalty-card {
    justify-self: stretch;
    padding: 18px;
  }

  .process-loyalty-card > div:first-child {
    display: grid;
    gap: 4px;
  }

  .process-loyalty-card strong {
    font-size: 24px;
  }

  .process-loyalty-card .process-stamps {
    gap: 7px;
  }

  .process-loyalty-card .process-stamps span {
    width: 30px;
    height: 30px;
  }

  .process-preview__meta {
    grid-template-columns: 1fr;
  }

  .problem-section {
    padding: 30px 14px 50px;
  }

  .section-kicker {
    min-height: 38px;
    padding: 0 22px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .section-title {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(38px, 9.8vw, 48px);
    font-weight: 650;
    line-height: 0.98;
  }

  .section-title span {
    display: inline;
  }

  .problem-section .section-title span {
    display: block;
    color: #2457d6;
  }

  .section-lead {
    max-width: 95%;
    margin-top: 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .problem-card img {
    height: 196px;
  }

  .problem-card__body {
    padding: 52px 22px 28px;
  }

  .solution-bridge {
    padding: 26px 20px;
  }

  .solution-bridge__cta {
    width: 100%;
  }

  .progress-section {
    padding: 48px 14px 28px;
  }

  .progress-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .progress-copy h2 span {
    display: block;
    color: #2457d6;
  }

  .progress-story {
    min-height: auto;
    padding-top: 22px;
  }

  .progress-rail {
    display: none;
  }

  .progress-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(220, 229, 242, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(16, 27, 53, 0.08);
  }

  .progress-steps li {
    position: relative;
    grid-template-columns: 58px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    min-height: 76px;
    gap: 14px;
    padding: 10px 4px;
    font-size: 16px;
    text-align: left;
  }

  .progress-steps li + li {
    border-top: 1px solid rgba(220, 229, 242, 0.82);
  }

  .progress-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 31px;
    bottom: -13px;
    z-index: 0;
    width: 2px;
    height: 26px;
    border-radius: 999px;
    background: rgba(36, 87, 214, 0.22);
  }

  .progress-steps strong {
    position: relative;
    z-index: 1;
    color: #101b35;
    font-weight: 820;
  }

  .medallion {
    z-index: 1;
    width: 54px;
    height: 54px;
    box-shadow:
      inset 0 0 0 5px rgba(255, 255, 255, 0.82),
      inset 0 0 0 9px rgba(36, 87, 214, 0.08),
      0 10px 22px rgba(16, 27, 53, 0.1);
  }

  .medallion::before {
    inset: 6px;
  }

  .medallion svg {
    width: 24px;
    height: 24px;
  }

  .medallion__dots {
    gap: 4px;
  }

  .medallion__dots b {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .medallion__dots--three b,
  .medallion__dots--almost b {
    width: 9px;
    height: 9px;
    border-width: 2px;
  }

  .tilted-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .tilted-card {
    height: auto;
    aspect-ratio: 1.45 / 1;
    border-width: 1px;
    transform: none;
  }

  .progress-note {
    gap: 12px;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
  }

  .progress-note::before,
  .progress-note::after {
    width: 38px;
  }

  .build-section {
    padding: 28px 14px;
  }

  .build-copy {
    margin-bottom: 30px;
  }

  .build-kicker {
    gap: 14px;
  }

  .build-kicker span {
    font-size: 38px;
  }

  .build-copy h2 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .build-copy h2 span {
    display: block;
    color: #2457d6;
  }

  .build-copy p {
    grid-column: auto;
    margin-top: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .build-showcase--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .build-showcase {
    margin-right: -8px;
    margin-left: -8px;
  }

  .build-showcase img {
    filter: none;
  }

  .custom-section {
    padding: 28px 14px;
  }

  .custom-kicker {
    gap: 14px;
  }

  .custom-kicker span {
    font-size: 50px;
  }

  .custom-copy h2 {
    margin-top: 14px;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .custom-copy h2 span {
    display: block;
    color: #2457d6;
  }

  .custom-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .custom-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-right: -4px;
    margin-left: -4px;
  }

  .custom-card,
  .custom-card--beauty,
  .custom-card--restaurant,
  .custom-card--boutique {
    aspect-ratio: 1.76 / 1;
    border-radius: 16px;
    transform: none;
  }

  .custom-card img {
    filter: none;
  }

  .projects-section {
    padding: 28px 14px;
  }

  .projects-heading {
    margin-bottom: 30px;
  }

  .projects-kicker {
    gap: 14px;
  }

  .projects-kicker span {
    font-size: 42px;
  }

  .projects-heading h2 {
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .projects-heading h2 span {
    display: block;
    color: #2457d6;
  }

  .projects-heading p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .project-case {
    min-height: auto;
    padding: 24px 18px 20px;
    border-radius: 14px;
  }

  .project-case__top {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .project-case__steps {
    grid-column: 1 / -1;
    margin-top: 4px;
    margin-left: 68px;
  }

  .project-case__icon {
    width: 50px;
    height: 50px;
  }

  .project-case h3 {
    font-size: 28px;
  }

  .project-case__body {
    font-size: 15px;
  }

  .project-case__mini {
    align-self: stretch;
    width: 100%;
    min-width: 0;
    margin: 18px 0 0;
  }

  .project-case__tags {
    grid-template-columns: 1fr;
  }

  .flow-section {
    padding: 28px 14px;
  }

  .flow-kicker {
    gap: 14px;
  }

  .flow-kicker span {
    font-size: 42px;
  }

  .flow-copy h2 {
    margin-top: 14px;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .flow-copy h2 span {
    display: block;
    color: #2457d6;
  }

  .flow-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .flow-journey {
    grid-template-columns: 1fr;
    max-width: 430px;
    padding-top: 38px;
  }

  .flow-step {
    min-height: auto;
    padding: 24px 18px 20px;
  }

  .flow-step__number {
    top: -34px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .flow-step h3 {
    font-size: 24px;
  }

  .flow-note {
    grid-column: auto;
    align-items: flex-start;
    padding: 20px 18px;
    font-size: 15px;
    box-shadow: none;
    filter: none;
  }

  .benefit-section {
    padding: 28px 14px;
  }

  .benefit-kicker {
    min-height: 36px;
    padding: 0 14px;
  }

  .benefit-copy h2 {
    margin-top: 14px;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .benefit-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .benefit-points {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .benefit-control {
    padding: 22px 14px 14px;
    border-radius: 16px;
    box-shadow: none;
  }

  .benefit-control h3 {
    gap: 12px;
    font-size: 28px;
  }

  .benefit-control h3::before,
  .benefit-control h3::after {
    max-width: 48px;
  }

  .benefit-panel {
    padding: 18px;
  }

  .benefit-panel__head {
    gap: 12px;
  }

  .benefit-panel__head > span {
    width: 50px;
    height: 50px;
  }

  .benefit-panel h4 {
    font-size: 20px;
  }

  .benefit-connector {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 38px;
    margin: -2px 0;
  }

  .benefit-connector svg {
    display: none;
  }

  .benefit-connector::before {
    content: "";
    width: 2px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0), #2563eb 28%, #2563eb 72%, rgba(37, 99, 235, 0));
  }

  .benefit-connector::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #2563eb;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
  }

  .account-preview {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
  }

  .account-preview svg {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .customer-id {
    font-size: 24px;
  }

  .stamp-card__dots {
    gap: 6px;
  }

  .stamp-card__dots svg,
  .stamp-card__dots span {
    width: 24px;
    height: 24px;
  }

  .admin-preview label {
    margin: 14px;
    font-size: 15px;
  }

  .admin-preview button {
    min-height: 64px;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
  }

  .admin-preview button > svg:first-child {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .admin-preview button span {
    font-size: 16px;
  }

  .admin-summary {
    margin: 12px 14px 14px;
    padding: 12px;
  }

  .domain-section {
    padding: 28px 14px;
  }

  .domain-kicker {
    gap: 10px;
    letter-spacing: 1.7px;
  }

  .domain-kicker span {
    font-size: 38px;
  }

  .domain-kicker::before,
  .domain-kicker::after {
    width: 46px;
  }

  .domain-copy h2 {
    margin-top: 14px;
    font-size: clamp(34px, 9vw, 44px);
    font-weight: 650;
    line-height: 1.06;
  }

  .domain-copy p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.48;
  }

  .domain-showcase {
    margin-top: 24px;
    padding: 0 0 12px;
  }

  .domain-showcase__stage {
    min-height: 390px;
  }

  .domain-device--macbook {
    left: 50%;
    bottom: 86px;
    width: 500px;
    max-width: 100%;
    transform: translateX(-50%);
  }

  .domain-device--mobile {
    right: 18px;
    bottom: 50px;
    z-index: 5;
    width: 128px;
  }

  .domain-device--qr {
    left: 20px;
    right: auto;
    bottom: 54px;
    z-index: 4;
    width: 92px;
  }

  .domain-flow {
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 6px;
  }

  .domain-flow article {
    min-width: 88px;
  }

  .domain-flow article svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .domain-flow > svg {
    width: 22px;
    height: 22px;
  }

  .domain-flow span {
    font-size: 14px;
  }

  .site-footer {
    padding: 30px 16px 24px;
  }

  .site-footer__inner {
    gap: 34px;
    padding: 42px 0 32px;
  }

  .footer-brand__logo img {
    width: min(100%, 220px);
  }

  .footer-brand p {
    font-size: 15px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links a {
    width: 100%;
    min-height: 30px;
    font-size: 15px;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
    gap: 14px;
  }

  .legal-shell {
    width: min(100% - 32px, 1120px);
    padding-top: 20px;
  }

  .legal-topbar,
  .legal-footer {
    display: grid;
    justify-items: start;
  }

  .legal-topbar {
    gap: 14px;
    padding: 16px;
  }

  .legal-brand img {
    width: 188px;
  }

  .legal-hero {
    margin-top: 38px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-notice,
  .legal-section {
    border-radius: 14px;
  }

  .legal-notice {
    padding: 18px;
  }

  .legal-section {
    padding: 22px 18px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }

  .legal-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Active SadakatPro blue corporate homepage theme. Scoped to index.html only. */
body.theme-blue-reference {
  --ivory: #f5f8fd;
  --paper: #ffffff;
  --ink: #101b35;
  --muted: #52617a;
  --gold: #2457d6;
  --gold-dark: #1d46b0;
  --border: rgba(220, 229, 242, 0.96);
  --shadow: 0 20px 58px rgba(16, 27, 53, 0.12);
  background: #f5f8fd;
  color: #101b35;
}

.theme-blue-reference .hero {
  background:
    radial-gradient(circle at 74% 6%, rgba(36, 87, 214, 0.13), transparent 33%),
    linear-gradient(180deg, #f9fbff 0%, #f5f8fd 100%);
}

.theme-blue-reference .hero__image {
  filter: none;
}

.theme-blue-reference .hero__shade {
  display: none;
}

.theme-blue-reference .hero::after {
  display: none;
}

.theme-blue-reference .navbar {
  border-color: rgba(220, 229, 242, 0.92);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(16, 27, 53, 0.12);
}

.theme-blue-reference .brand__logo,
.theme-blue-reference .footer-brand__logo img,
.theme-blue-reference .legal-brand img {
  filter: hue-rotate(181deg) saturate(1.5) brightness(0.98);
}

.theme-blue-reference .navlinks {
  color: #101b35;
}

.theme-blue-reference .navlinks a:hover,
.theme-blue-reference .eyebrow,
.theme-blue-reference .section-kicker strong,
.theme-blue-reference .section-kicker span,
.theme-blue-reference .card-kicker,
.theme-blue-reference .feature__icon,
.theme-blue-reference .problem-card__icon,
.theme-blue-reference .faq-item__icon,
.theme-blue-reference .quote-workshop__kicker,
.theme-blue-reference .footer-column h3 {
  color: #2457d6;
  stroke: #2457d6 !important;
}

.theme-blue-reference h1,
.theme-blue-reference .section-title,
.theme-blue-reference h2,
.theme-blue-reference h3 {
  color: #101b35;
}

.theme-blue-reference .hero-title {
  color: #101b35;
}

.theme-blue-reference .hero-title em {
  color: inherit;
}

.theme-blue-reference .hero__lead,
.theme-blue-reference .section-lead,
.theme-blue-reference p,
.theme-blue-reference .feature p,
.theme-blue-reference .problem-card p {
  color: #52617a;
}

.theme-blue-reference .navcta,
.theme-blue-reference .button--primary,
.theme-blue-reference .solution-bridge__cta,
.theme-blue-reference .quote-contact button,
.theme-blue-reference .final-cta-button--primary,
.theme-blue-reference .campaign-builder__cta {
  border-color: #2457d6;
  background: linear-gradient(145deg, #2457d6, #1d46b0);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.23);
}

.theme-blue-reference .navcta:hover,
.theme-blue-reference .button--primary:hover,
.theme-blue-reference .quote-contact button:hover,
.theme-blue-reference .final-cta-button--primary:hover {
  background: linear-gradient(145deg, #2d63ec, #1d46b0);
  box-shadow: 0 22px 42px rgba(36, 87, 214, 0.28);
}

.theme-blue-reference .button--secondary,
.theme-blue-reference .final-cta-button--secondary,
.theme-blue-reference .faq-cta,
.theme-blue-reference .hero-sector-tabs {
  border-color: rgba(36, 87, 214, 0.42);
  background: rgba(255, 255, 255, 0.74);
  color: #101b35;
}

.theme-blue-reference .hero-sector-tabs button {
  color: #52617a;
}

.theme-blue-reference .hero-sector-tabs button.is-active {
  background: #101b35;
  color: #eff6ff;
}

.theme-blue-reference .feature-bar,
.theme-blue-reference .problem-card,
.theme-blue-reference .tilted-card,
.theme-blue-reference .project-case,
.theme-blue-reference .benefit-panel,
.theme-blue-reference .comparison-card,
.theme-blue-reference .faq-item,
.theme-blue-reference .quote-workshop,
.theme-blue-reference .template-card {
  border-color: rgba(220, 229, 242, 0.96);
  background-color: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 46px rgba(16, 27, 53, 0.09);
}

.theme-blue-reference .quote-workshop {
  box-shadow: none;
}

.theme-blue-reference .project-case {
  box-shadow: none;
}

.theme-blue-reference .custom-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.theme-blue-reference .custom-card img {
  border-radius: inherit;
}

.theme-blue-reference .faq-accordion {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.theme-blue-reference .faq-item {
  border-color: rgba(188, 207, 242, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
  box-shadow: 0 18px 44px rgba(16, 27, 53, 0.07);
}

.theme-blue-reference .faq-item:last-child {
  box-shadow: none;
}

.theme-blue-reference .faq-item.is-open {
  border-color: rgba(37, 99, 235, 0.24);
  background:
    radial-gradient(circle at 88% 22%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff, #f4f8ff);
}

.theme-blue-reference .feature-bar {
  width: 100%;
  max-width: none;
  margin: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow:
    0 18px 48px rgba(16, 27, 53, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.88) inset;
}

.theme-blue-reference .problem-card,
.theme-blue-reference .solution-bridge,
.theme-blue-reference .problem-card__icon,
.theme-blue-reference .solution-bridge__icon {
  border-color: rgba(36, 87, 214, 0.2);
  background: #ffffff;
}

.theme-blue-reference .solution-bridge {
  box-shadow: 0 18px 42px rgba(16, 27, 53, 0.08);
}

.theme-blue-reference .feature + .feature,
.theme-blue-reference .quote-contact,
.theme-blue-reference .footer-bottom {
  border-color: rgba(220, 229, 242, 0.82);
}

.theme-blue-reference .problem-section,
.theme-blue-reference .custom-section,
.theme-blue-reference .domain-section,
.theme-blue-reference .campaigns-section,
.theme-blue-reference .faq-section,
.theme-blue-reference .quote-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(121, 163, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #f5f8fd 100%);
}

.theme-blue-reference .problem-section,
.theme-blue-reference .progress-section,
.theme-blue-reference .build-section,
.theme-blue-reference .custom-section,
.theme-blue-reference .projects-section,
.theme-blue-reference .flow-section,
.theme-blue-reference .benefit-section,
.theme-blue-reference .domain-section,
.theme-blue-reference .industries-section,
.theme-blue-reference .campaigns-section,
.theme-blue-reference .process-section,
.theme-blue-reference .comparison-section,
.theme-blue-reference .faq-section,
.theme-blue-reference .quote-section,
.theme-blue-reference .final-cta-section {
  background: #f5f8fd;
}

.theme-blue-reference .problem-section {
  padding-bottom: 0;
}

.theme-blue-reference .progress-section {
  padding-top: 44px;
}

.theme-blue-reference .site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(121, 163, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #101b35 0%, #071226 100%);
  color: #eff6ff;
}

.theme-blue-reference .site-footer h2,
.theme-blue-reference .site-footer h3,
.theme-blue-reference .site-footer a {
  color: #eff6ff;
}

.theme-blue-reference .site-footer p,
.theme-blue-reference .footer-bottom {
  color: rgba(239, 246, 255, 0.72);
}

.theme-blue-reference .site-footer svg,
.theme-blue-reference .mavera-ui svg {
  color: #79a3ff;
  stroke: #79a3ff !important;
}

.theme-blue-reference .mavera-ui,
.theme-blue-reference .domain-device {
  filter: hue-rotate(176deg) saturate(0.9) brightness(0.96);
}

@media (max-width: 760px) {
  .theme-blue-reference .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 28px;
    overflow: visible;
  }

  .theme-blue-reference .navbar {
    order: 1;
    border-color: rgba(36, 87, 214, 0.18);
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
  }

  .theme-blue-reference .hero__content {
    order: 2;
    width: calc(100% - 34px);
    margin: 0 auto;
    padding-top: 48px;
  }

  .theme-blue-reference .hero__visuals {
    position: relative;
    inset: auto;
    order: 3;
    z-index: 1;
    width: calc(100% - 28px);
    max-width: 560px;
    aspect-ratio: 16 / 9;
    margin: 24px auto 0;
    border: 1px solid rgba(220, 229, 242, 0.92);
    border-radius: 18px;
    background: #f5f8fd;
    box-shadow: 0 22px 54px rgba(16, 27, 53, 0.14);
  }

  .theme-blue-reference .hero__visuals .hero__image {
    position: absolute;
    object-fit: cover;
    object-position: 62% center;
    transform: none;
  }

  .theme-blue-reference .hero__shade,
  .theme-blue-reference .hero::after {
    display: none;
  }

  .theme-blue-reference h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .theme-blue-reference .hero-title {
    max-width: 100%;
    color: #081b45;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 10.6vw, 52px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: 0;
  }

  .theme-blue-reference .hero-title span {
    display: block;
  }

  .theme-blue-reference .hero-title__line--nowrap {
    white-space: nowrap;
  }

  .theme-blue-reference .hero-title em {
    color: #2563eb;
    font-style: italic;
    font-weight: 600;
  }

  .theme-blue-reference .hero-sector-tabs {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 4;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    width: max-content;
    max-width: 100%;
    margin: 16px auto 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .theme-blue-reference .hero-sector-tabs::-webkit-scrollbar {
    display: none;
  }

  .theme-blue-reference .hero-sector-tabs button {
    min-height: 44px;
    white-space: nowrap;
  }

  .quote-select {
    min-height: 44px;
    margin-top: 0;
  }

  .theme-blue-reference .feature-bar {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .theme-blue-reference .feature + .feature {
    border-top-color: #dce5f2;
  }

  .theme-blue-reference .benefit-panel {
    box-shadow: none;
  }

  .theme-blue-reference .project-case,
  .theme-blue-reference .project-case__mini,
  .theme-blue-reference .project-case__tags span {
    box-shadow: none;
  }

  .theme-blue-reference .solution-bridge {
    box-shadow: none;
    filter: none;
  }

}
