:root {
  --navy: #10133f;
  --navy-2: #070b2f;
  --azure: #755cff;
  --azure-2: #ff756b;
  --violet: #a866df;
  --rose: #d85fb8;
  --coral: #ff756b;
  --text: #172042;
  --muted: #606a86;
  --line: #eadff7;
  --soft: #fbf8ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 19, 63, .12);
  --shadow-hover: 0 30px 80px rgba(16, 19, 63, .18);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.55;
}

main { padding-top: 82px; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(117, 92, 255, .38); outline-offset: 3px; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.container > *,
.hero-grid > *,
.process-grid > *,
.pricing-grid > *,
.contact-grid > *,
.portfolio-grid > *,
.price-cards > *,
.solutions-grid > *,
.security-cards > *,
.review-slider > * {
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(220, 229, 239, .55);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  transform: translateX(-50%);
  transform-origin: center;
  backdrop-filter: blur(0);
  transition:
    width 760ms cubic-bezier(.16,1,.3,1),
    max-width 760ms cubic-bezier(.16,1,.3,1),
    top 760ms cubic-bezier(.16,1,.3,1),
    padding 760ms cubic-bezier(.16,1,.3,1),
    border-radius 760ms cubic-bezier(.16,1,.3,1),
    box-shadow 760ms cubic-bezier(.16,1,.3,1),
    background 760ms cubic-bezier(.16,1,.3,1),
    backdrop-filter 760ms cubic-bezier(.16,1,.3,1),
    border-color 760ms cubic-bezier(.16,1,.3,1),
    opacity 520ms ease,
    filter 520ms ease;
  will-change: width, max-width, top, padding, border-radius, box-shadow, background, backdrop-filter, opacity, filter;
}

.header.scrolled {
  top: 18px;
  left: 50%;
  width: calc(100% - 80px);
  max-width: 1400px;
  padding: 16px 36px;
  border-color: rgba(220, 229, 239, .38);
  border-radius: 9999px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .10);
  transform: translateX(-50%);
}

.header.is-morphing {
  animation: header-dissolve 760ms cubic-bezier(.16,1,.3,1) both;
}

@keyframes header-dissolve {
  0% {
    opacity: 1;
    filter: blur(0);
  }

  34% {
    opacity: .34;
    filter: blur(7px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.brand-logo {
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: clamp(168px, 14vw, 220px);
  height: auto;
}

.brand span span { color: var(--azure); }
.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--azure), var(--azure-2));
}

.brand-mark svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 650;
  color: var(--navy);
}

.main-nav a {
  position: relative;
  opacity: .86;
  transition: opacity .2s ease, color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--azure);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover { opacity: 1; color: var(--azure); }
.main-nav a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--azure), var(--violet) 46%, var(--azure-2));
  box-shadow: 0 12px 28px rgba(117, 92, 255, .24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(216, 95, 184, .28);
}

.btn-glass {
  color: var(--navy);
  background: rgba(255, 255, 255, .7);
  border-color: rgba(16, 19, 63, .12);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(16, 19, 63, .08);
}

.btn-dark {
  width: 100%;
  color: var(--white);
  background: var(--navy);
}

.nav-toggle { display: none; }

section { padding: 82px 0; }
.section-gradient {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 117, 107, .11), transparent 28%),
    radial-gradient(circle at 55% 18%, rgba(117, 92, 255, .08), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fff9fb 50%, #f3efff 100%);
}

.section-soft {
  background:
    linear-gradient(90deg, rgba(117, 92, 255, .05), transparent 38%, rgba(255, 117, 107, .055)),
    #fffbfd;
}

.hero {
  padding-top: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
}

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

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, p, a, button, li, label, input, textarea, select {
  overflow-wrap: break-word;
}
h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--azure) 0%, var(--violet) 42%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.price { color: var(--azure); }
h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

h3 { color: var(--navy); line-height: 1.2; }
.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-bottom: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4f5875;
  font-weight: 700;
}

.mini-icon { color: var(--azure); margin-right: 6px; }
.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 420px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 28px;
  border: 10px solid rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-hover);
  transform: rotate(2deg);
}

.geo {
  position: absolute;
  z-index: -1;
  border-radius: 32px;
  opacity: .7;
}

.geo-one {
  width: 210px;
  height: 210px;
  right: -34px;
  top: 40px;
  background-image: radial-gradient(rgba(117, 92, 255, .24) 1px, transparent 1px);
  background-size: 13px 13px;
}

.geo-two {
  width: 160px;
  height: 160px;
  left: -38px;
  bottom: 24px;
  border: 1px solid rgba(168, 102, 223, .18);
  background: rgba(255, 255, 255, .44);
}

.compliance-card {
  position: absolute;
  left: -34px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 46px auto;
  gap: 10px 14px;
  align-items: center;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(16, 19, 63, .15);
  animation: floating 4.8s ease-in-out infinite;
}

.compliance-card small { grid-column: 2; color: var(--muted); margin-top: -14px; }
.lock-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--azure);
  background: #f1ebff;
}

.lock-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Stripe-inspired globe hero. The legacy product mockup is hidden only here. */
.hero-globe {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-globe .hero-glow,
.hero-globe .monitor-wrap,
.hero-globe .floating-card,
.hero-globe > .compliance-card {
  display: none;
}

.globe-shell {
  position: relative;
  width: min(92%, 620px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  isolation: isolate;
}

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

.globe-shell::before {
  inset: 7%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .32), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(117, 92, 255, .18), transparent 56%);
  filter: blur(1px);
  z-index: -2;
}

.globe-shell::after {
  inset: 13%;
  box-shadow:
    0 0 80px rgba(117, 92, 255, .22),
    0 30px 90px rgba(16, 19, 63, .16);
  z-index: -3;
}

.globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.globe-fallback {
  position: absolute;
  inset: 10%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 33% 34%, rgba(255, 255, 255, .88) 0 2px, transparent 3px),
    radial-gradient(ellipse at 60% 44%, rgba(117, 92, 255, .72) 0 2px, transparent 3px),
    radial-gradient(ellipse at 42% 63%, rgba(117, 92, 255, .64) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(117, 92, 255, .16), rgba(117, 92, 255, .02) 58%, transparent 68%);
  background-size: 18px 18px, 24px 24px, 21px 21px, auto;
  opacity: .85;
}

.globe-canvas.is-ready + .globe-fallback {
  display: none;
}

.globe-stat {
  position: absolute;
  z-index: 2;
  min-width: 190px;
  padding: 15px 17px;
  border: 1px solid rgba(16, 19, 63, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(16, 19, 63, .11);
}

.globe-stat strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.1;
}

.globe-stat small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.stat-seo {
  top: 16%;
  right: 0;
}

.stat-gdpr {
  left: 2%;
  bottom: 18%;
  display: grid;
  grid-template-columns: 38px auto;
  gap: 2px 12px;
  align-items: center;
}

.stat-gdpr .lock-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  grid-row: 1 / span 2;
}

.stat-gdpr small {
  grid-column: 2;
  margin-top: 0;
}

.hero-network {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-network > :not(.profession-network) {
  display: none !important;
}

.profession-network {
  width: min(112%, 760px);
  max-width: none;
  aspect-ratio: 820 / 640;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 34px 70px rgba(16, 19, 63, .10));
}

.network-orbits ellipse,
.network-orbits circle {
  fill: none;
  stroke: rgba(117, 92, 255, .13);
  stroke-width: 1;
  stroke-dasharray: 3 14;
  animation: network-orbit 16s ease-in-out infinite;
  transform-origin: 410px 318px;
}

.network-orbits ellipse:nth-child(2) {
  animation-duration: 19s;
  animation-direction: reverse;
}

.network-orbits circle {
  stroke: rgba(216, 95, 184, .12);
  animation-duration: 22s;
}

.network-lines path {
  fill: none;
  stroke: url("#network-line");
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 8 18;
  opacity: .72;
  animation: network-line-pulse 7.8s ease-in-out infinite;
}

.network-lines path:nth-child(3n) {
  animation-delay: .8s;
}

.network-lines path:nth-child(4n) {
  opacity: .4;
  stroke-width: .8;
  stroke-dasharray: 2 16;
}

.network-particles circle {
  fill: var(--coral);
  filter: url("#network-glow");
  opacity: .86;
}

.network-hub {
  filter: url("#network-shadow");
  opacity: 0;
  animation: network-fade-in 780ms cubic-bezier(.22,.61,.36,1) .15s forwards;
}

.hub-pulse {
  fill: rgba(117, 92, 255, .13);
  animation: hub-pulse 4.8s ease-out 1.1s infinite;
}

.hub-ring {
  fill: rgba(255, 255, 255, .44);
  stroke: rgba(168, 102, 223, .2);
  stroke-width: 1.2;
  stroke-dasharray: 6 11;
}

.hub-card {
  fill: url("#hub-fill");
  stroke: rgba(255, 255, 255, .88);
  stroke-width: 1.4;
}

.hub-logo-mark {
  filter: drop-shadow(0 10px 18px rgba(16, 19, 63, .12));
  pointer-events: none;
}

.network-node {
  transform-box: fill-box;
  transform-origin: center;
}

.network-node > g {
  opacity: 0;
  transform: translate(0, 0) scale(.72);
  animation: network-node-enter 920ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--delay);
}

.node-halo {
  fill: rgba(255, 117, 107, .09);
  animation: node-halo-pulse 5.6s ease-in-out infinite;
  animation-delay: calc(var(--delay) + 1s);
}

.node-card {
  fill: rgba(255, 255, 255, .9);
  stroke: rgba(117, 92, 255, .22);
  stroke-width: 1;
  filter: url("#network-shadow");
}

.node-icon {
  fill: none;
  stroke: var(--azure);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-node text {
  fill: #4c5272;
  font-size: 13px;
  font-weight: 750;
  text-anchor: middle;
  letter-spacing: 0;
}

@keyframes network-node-enter {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(.72);
  }

  72% {
    opacity: 1;
    transform: translate(var(--x), var(--y)) scale(1.035);
  }

  100% {
    opacity: 1;
    transform: translate(var(--x), var(--y)) scale(1);
  }
}

@keyframes network-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hub-pulse {
  0%, 70%, 100% {
    opacity: 0;
    transform: scale(.78);
  }

  82% {
    opacity: .7;
    transform: scale(1.24);
  }
}

@keyframes node-halo-pulse {
  0%, 78%, 100% {
    opacity: .26;
    transform: scale(.95);
  }

  86% {
    opacity: .95;
    transform: scale(1.2);
  }
}

@keyframes network-line-pulse {
  0%, 100% {
    opacity: .28;
    stroke-dashoffset: 0;
  }

  50% {
    opacity: .78;
    stroke-dashoffset: -24;
  }
}

@keyframes network-orbit {
  0%, 100% {
    opacity: .58;
    transform: rotate(-4deg) scale(1);
  }

  50% {
    opacity: .86;
    transform: rotate(5deg) scale(1.015);
  }
}


/* Premium hero product render: CSS-only monitor, website preview and floating cards. */
.hero-grid {
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
}

.hero-copy {
  max-width: 560px;
}

.hero-product {
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.hero-product > .geo,
.hero-product > img,
.hero-product > .compliance-card {
  display: none;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 5%;
  top: 6%;
  background: radial-gradient(circle, rgba(117, 92, 255, .18), transparent 68%);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: 6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 117, 107, .16), transparent 70%);
}

.monitor-wrap {
  position: relative;
  width: min(92%, 690px);
  transform: rotateY(-12deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(.22,.61,.36,1);
  animation: product-enter 780ms cubic-bezier(.22,.61,.36,1) both;
}

.monitor {
  position: relative;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(208, 223, 239, .72)),
    linear-gradient(135deg, #fbf8ff, #cbd7e5);
  box-shadow:
    0 42px 90px rgba(16, 19, 63, .20),
    0 18px 34px rgba(117, 92, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.monitor::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .64);
  pointer-events: none;
}

.monitor-glass {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  background: #070b2f;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .16),
    inset 0 -28px 70px rgba(255, 255, 255, .08);
}

.monitor-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .32), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 42%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.site-preview {
  height: 100%;
  padding: 22px;
  color: var(--navy);
  background:
    radial-gradient(circle at 78% 28%, rgba(117, 92, 255, .18), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fbf8ff 58%, #f3efff 100%);
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 19, 63, .08);
  font-size: 13px;
}

.preview-nav strong {
  color: var(--azure);
  font-weight: 950;
}

.preview-nav span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 22px;
  align-items: center;
  min-height: 250px;
}

.preview-hero p {
  margin-bottom: 10px;
  color: var(--azure);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-hero h2 {
  max-width: 360px;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1;
}

.preview-hero button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 12px;
  font-weight: 850;
}

.preview-portrait {
  aspect-ratio: 1;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 36%, #f4c7a1 0 18%, transparent 19%),
    radial-gradient(circle at 50% 78%, #dbeaf5 0 30%, transparent 31%),
    linear-gradient(145deg, #f1ebff, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(16, 19, 63, .06), 0 18px 40px rgba(16, 19, 63, .10);
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-cards span {
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: inset 0 0 0 1px rgba(16, 19, 63, .06), 0 10px 24px rgba(16, 19, 63, .06);
}

.monitor-neck {
  width: 118px;
  height: 84px;
  margin: -4px auto 0;
  background: linear-gradient(90deg, #bac8d7, #fbf8ff 48%, #aebdcc);
  clip-path: polygon(25% 0, 75% 0, 88% 100%, 12% 100%);
  filter: drop-shadow(0 18px 24px rgba(16, 19, 63, .14));
}

.monitor-base {
  width: 250px;
  height: 22px;
  margin: -2px auto 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #aebdcc, #ffffff 48%, #a8b7c8);
  box-shadow: 0 22px 38px rgba(16, 19, 63, .16);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px auto;
  gap: 4px 12px;
  align-items: center;
  min-width: 194px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 19, 63, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(16, 19, 63, .12);
  transition: transform 500ms cubic-bezier(.22,.61,.36,1);
  animation: card-enter 620ms cubic-bezier(.22,.61,.36,1) both;
}

.floating-card strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.1;
}

.floating-card small {
  grid-column: 2;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.float-icon {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--azure);
  background: #f1ebff;
}

.float-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-google { left: 0; top: 78px; animation-delay: 120ms; }
.card-performance { right: 0; top: 118px; animation-delay: 210ms; }
.card-gdpr { left: 34px; bottom: 86px; animation-delay: 300ms; }
.card-responsive { right: 34px; bottom: 66px; animation-delay: 390ms; }

@keyframes product-enter {
  from { opacity: 0; transform: translateY(26px) rotateY(-12deg) rotateX(5deg); }
  to { opacity: 1; transform: translateY(0) rotateY(-12deg) rotateX(5deg); }
}

@keyframes card-enter {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.section-head { max-width: 620px; }
.section-head p:not(.eyebrow) { color: var(--muted); }
.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

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

.solution-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 34px 40px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 63, .055);
  border-radius: 30px;
  background: #fbf8ff;
  box-shadow: 0 12px 34px rgba(16, 19, 63, .055);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 360ms cubic-bezier(.22,.61,.36,1),
    filter 360ms cubic-bezier(.22,.61,.36,1),
    box-shadow 360ms cubic-bezier(.22,.61,.36,1),
    border-color 360ms cubic-bezier(.22,.61,.36,1),
    background 360ms cubic-bezier(.22,.61,.36,1);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .52);
  z-index: -1;
}

.solution-card:hover {
  transform: translateY(-7px);
  filter: brightness(1.018);
  border-color: rgba(168, 102, 223, .2);
  box-shadow: 0 28px 76px rgba(16, 19, 63, .14);
}

.step-card:hover,
.security-card:hover,
.portfolio-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(117, 92, 255, .24);
  box-shadow: var(--shadow-hover);
}

.solution-card:hover .icon-tile { transform: scale(1.08) rotate(-3deg); }

.solution-card h3 {
  margin-bottom: 15px;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: 0;
}

.solution-card p {
  max-width: 31ch;
  margin-bottom: 0;
  color: #59607d;
  font-size: 15px;
}

.best-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--azure);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-tile {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 18px;
  color: var(--azure);
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px rgba(16, 19, 63, .06), 0 10px 26px rgba(16, 19, 63, .06);
  transition: transform 360ms cubic-bezier(.22,.61,.36,1), box-shadow 360ms cubic-bezier(.22,.61,.36,1);
}

.solution-card:hover .icon-tile {
  box-shadow: inset 0 0 0 1px rgba(216, 95, 184, .13), 0 14px 32px rgba(16, 19, 63, .08);
}

.icon-tile svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-medical { background: linear-gradient(145deg, #f4f0ff, #fffafb); }
.solution-psychology { background: linear-gradient(145deg, #f1edff, #fffafd); }
.solution-physio { background: linear-gradient(145deg, #f8efff, #fffafb); }
.solution-nutrition { background: linear-gradient(145deg, #fff2f1, #fffafd); }
.solution-dentist { background: linear-gradient(145deg, #f6f0ff, #ffffff); }
.solution-speech { background: linear-gradient(145deg, #fff0f6, #fffafd); }

.solution-psychology .icon-tile { color: var(--azure); }
.solution-physio .icon-tile { color: var(--violet); }
.solution-nutrition .icon-tile { color: var(--coral); }
.solution-dentist .icon-tile { color: #8a5cff; }
.solution-speech .icon-tile { color: var(--rose); }

.process-grid {
  display: grid;
  grid-template-columns: .8fr 1.45fr;
  gap: 48px;
  align-items: start;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117, 92, 255, .5), transparent);
}

.step-card {
  position: relative;
  min-height: 180px;
  padding: 28px 24px;
  border: 1px solid rgba(16, 19, 63, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 32px rgba(16, 19, 63, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.step-icon {
  position: absolute;
  top: -12px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--azure);
  box-shadow: 0 12px 24px rgba(117, 92, 255, .24);
}

.step-number {
  display: block;
  color: rgba(16, 19, 63, .16);
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 10px 48px;
}

.portfolio-grid,
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.ghost-link,
.small-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(16, 19, 63, .18);
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(16, 19, 63, .1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 19, 63, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mockup {
  position: relative;
  min-height: 230px;
  padding: 28px 72px 0 28px;
  background: linear-gradient(135deg, #fbf8ff, #f3efff);
}

.desktop-shot,
.phone-shot {
  border: 8px solid #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(16, 19, 63, .15);
}

.desktop-shot {
  height: 190px;
  padding: 28px;
  color: var(--navy);
  background: #fff;
}

.desktop-shot span,
.desktop-shot strong,
.desktop-shot em { display: block; max-width: 270px; }
.desktop-shot span { font-size: 13px; font-weight: 900; color: var(--azure); }
.desktop-shot strong { margin: 16px 0 8px; font-size: 27px; line-height: 1.08; }
.desktop-shot em { color: var(--muted); font-style: normal; }
.site-a {
  background:
    radial-gradient(circle at 82% 38%, rgba(117, 92, 255, .12), transparent 18%),
    linear-gradient(90deg, #fff 0 58%, #f4f0ff 58%);
}

.jessica-mockup {
  background: linear-gradient(135deg, #f5efe6, #fff7ef 48%, #f2e7dc);
}

.site-jessica {
  position: relative;
  overflow: hidden;
  color: #2b1f1e;
  background:
    linear-gradient(90deg, rgba(245, 239, 230, .98) 0 48%, rgba(245, 239, 230, .72) 64%, rgba(245, 239, 230, .1) 100%),
    url("assets/jessica-preview.jpg") right center / 58% auto no-repeat,
    #f5efe6;
}

.site-jessica span {
  max-width: 260px;
  color: #8f7f76;
  font-size: 10px;
  letter-spacing: .32em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-jessica strong {
  max-width: 220px;
  margin: 18px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: .94;
}

.site-jessica em {
  color: #2b1f1e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.site-jessica em b {
  color: #e87a6d;
  font-weight: 500;
}

.phone-shot.site-jessica {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 4px;
  padding: 72px 10px 12px;
  color: #2b1f1e;
  background:
    linear-gradient(180deg, rgba(245, 239, 230, .05), rgba(245, 239, 230, .96) 62%),
    url("assets/jessica-preview.jpg") 64% top / 220px auto no-repeat,
    #f5efe6;
}

.phone-shot.site-jessica span,
.phone-shot.site-jessica strong,
.phone-shot.site-jessica em {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.phone-shot.site-jessica span {
  color: #e87a6d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.phone-shot.site-jessica strong {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}

.phone-shot.site-jessica em {
  width: fit-content;
  margin-top: 3px;
  padding: 4px 8px;
  color: #fff;
  background: #e87a6d;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 800;
  font-style: normal;
}

.site-b { color: #fff; background: linear-gradient(rgba(7, 11, 47, .48), rgba(7, 11, 47, .55)), linear-gradient(135deg, #283f1d, #b66a18); }
.site-b span { color: #f1d289; }
.site-dentist {
  color: var(--navy);
  background:
    radial-gradient(circle at 82% 28%, rgba(117, 92, 255, .18), transparent 20%),
    linear-gradient(135deg, #ffffff, #f1ebff 62%, #dff2ff);
}

.site-dentist span { color: #8a5cff; }
.site-dentist strong { max-width: 330px; }
.phone-shot {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 82px;
  height: 164px;
  background: inherit;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px 26px;
}

.portfolio-meta h3 { margin-bottom: 2px; }
.portfolio-meta p { margin: 0; color: var(--muted); }

.why-grid,
.compliance-grid,
.contact-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 52px;
  align-items: center;
}

.portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(117, 92, 255, .18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .72), transparent 24%),
    linear-gradient(145deg, #f8efff, #f7fcff);
  box-shadow: 0 28px 80px rgba(16, 19, 63, .14);
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background-image: radial-gradient(rgba(117, 92, 255, .16) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: .35;
  pointer-events: none;
}

.portrait img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  border-radius: 30px;
}

.personal-portrait img {
  filter: saturate(.96) contrast(1.02);
}

.why-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.value-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 19, 63, .08);
  border-radius: 14px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(16, 19, 63, .05);
}

.value-grid b { color: var(--azure); font-size: 21px; }

.compliance-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 117, 107, .23), transparent 28%),
    radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  background-size: auto, 18px 18px, auto;
}

.compliance-copy h2,
.compliance-copy p { color: var(--white); }
.compliance-copy p { opacity: .82; }
.security-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.security-card {
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.security-card span {
  display: block;
  color: var(--azure-2);
  font-size: 34px;
  margin-bottom: 20px;
}

.security-card h3 { color: var(--white); }
.security-card p { color: rgba(255, 255, 255, .72); margin: 0; }

.pricing-grid { align-items: start; }
.price-cards {
  align-items: center;
  grid-template-columns: minmax(230px, .82fr) minmax(330px, 1.18fr);
}
.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(16, 19, 63, .12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 19, 63, .08);
}

.price-card:not(.recommended) {
  padding: 30px 32px;
  transform: scale(.94);
  transform-origin: center right;
}

.price-card.recommended {
  min-height: 100%;
  padding: 42px 38px;
  transform: scale(1.08);
  transform-origin: center left;
  border-color: rgba(216, 95, 184, .48);
  box-shadow: 0 26px 70px rgba(117, 92, 255, .18);
}

.price-card p { color: var(--muted); }
.price {
  margin: 18px 0 18px;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.price small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 9px;
  color: #33445f;
  font-weight: 650;
}

.price-card li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--azure);
  font-size: 12px;
}

.review-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  overflow: hidden;
}

.review-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(16, 19, 63, .09);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 19, 63, .06);
}

.stars {
  color: var(--azure);
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.review-card p { color: #42526b; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.reviewer span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--azure));
  font-size: 12px;
  font-weight: 900;
}

.reviewer strong { display: grid; color: var(--navy); }
.reviewer small { color: var(--muted); font-weight: 650; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #bfd1df;
  cursor: pointer;
}

.slider-dots .active { width: 22px; border-radius: 999px; background: var(--azure); }

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(117, 92, 255, .14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(251, 248, 255, .9)),
    radial-gradient(circle at 100% 0%, rgba(255, 117, 107, .13), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(117, 92, 255, .12), transparent 30%);
  box-shadow: 0 26px 80px rgba(16, 19, 63, .13);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--azure), var(--rose), var(--coral));
}

.form-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(16, 19, 63, .08);
}

.form-intro span {
  color: var(--azure);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-intro strong {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
  text-align: right;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

label > span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
}

input, textarea, select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(16, 19, 63, .1);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 15px;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%) calc(100% - 20px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--navy) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    rgba(255, 255, 255, .82);
}

input:focus, textarea:focus, select:focus {
  outline: 0;
  border-color: var(--azure);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(117, 92, 255, .12), 0 14px 26px rgba(16, 19, 63, .08);
  transform: translateY(-1px);
}

.wide { grid-column: 1 / -1; }
.privacy {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 19, 63, .08);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 650;
}

.privacy input {
  flex: 0 0 auto;
  width: 17px;
  min-height: 17px;
  margin-top: 1px;
  accent-color: var(--azure);
}

.contact-form .btn-primary {
  min-height: 54px;
  margin-top: 2px;
  box-shadow: 0 16px 34px rgba(117, 92, 255, .24);
}

.form-success {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  color: #6b45c8;
  background: #f1ebff;
  font-weight: 800;
}

.contact-form.sent .form-success { display: block; }
.contact-copy {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reply-time {
  display: inline-grid;
  grid-template-columns: 36px auto;
  gap: 0 12px;
  align-items: center;
  margin-top: 22px;
  color: var(--navy);
}

.reply-time span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--azure);
  background: #f1ebff;
}

.reply-time small { color: var(--muted); }

.contact-proof {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-proof span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 410px;
  padding: 12px 14px;
  border: 1px solid rgba(117, 92, 255, .11);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 14px 34px rgba(16, 19, 63, .06);
  font-size: 14px;
  font-weight: 750;
}

.contact-proof span::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--coral));
  box-shadow: 0 0 0 4px rgba(117, 92, 255, .1);
}

.site-footer {
  padding: 44px 0 38px;
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: start;
  gap: 40px;
}

.footer-brand {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.footer-brand img {
  width: min(260px, 72vw);
}
.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
}

.footer-legal {
  justify-self: end;
  min-width: min(320px, 100%);
}

.footer-legal a {
  color: rgba(255, 255, 255, .82);
  transition: color .22s ease, transform .22s ease;
}

.footer-legal a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.legal-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(117, 92, 255, .12), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(255, 117, 107, .12), transparent 24%),
    var(--white);
}

.legal-hero {
  padding-bottom: 48px;
}

.legal-wrap {
  max-width: 920px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.legal-hero small {
  display: inline-flex;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 750;
}

.legal-content {
  padding: 0 0 78px;
}

.legal-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(117, 92, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 68px rgba(16, 19, 63, .1);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p,
.legal-card li {
  color: #42526b;
  font-size: 16px;
}

.legal-card a {
  color: var(--azure);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-table {
  display: grid;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(16, 19, 63, .1);
  border-radius: 16px;
  background: var(--white);
}

.legal-table [role="row"] {
  display: grid;
  grid-template-columns: .78fr 1.35fr .72fr;
}

.legal-table [role="row"] + [role="row"] {
  border-top: 1px solid rgba(16, 19, 63, .08);
}

.legal-table strong,
.legal-table span {
  padding: 14px 16px;
}

.legal-table strong {
  color: var(--navy);
  background: #f7f3ff;
  font-size: 13px;
}

.legal-table span {
  color: #42526b;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: .12s; }

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .globe-fallback {
    animation: none;
  }

  .network-particles {
    display: none;
  }
}

@media (min-width: 1440px) {
  :root { --max: 1320px; }

  section { padding: 96px 0; }

  .hero {
    padding-top: 92px;
  }

  .hero-grid {
    grid-template-columns: minmax(420px, .78fr) minmax(620px, 1.22fr);
    gap: clamp(64px, 6vw, 112px);
  }

  .hero-copy {
    max-width: 640px;
  }

  .lead {
    max-width: 680px;
    font-size: 19px;
  }

  .hero-network {
    min-height: 640px;
  }

  .profession-network {
    width: min(100%, 880px);
  }

  .solutions-grid,
  .price-cards,
  .portfolio-grid {
    gap: 30px;
  }

  .solution-card {
    min-height: 300px;
  }

  .mockup {
    min-height: 258px;
  }

  .desktop-shot {
    height: 214px;
  }

  .phone-shot {
    width: 92px;
    height: 184px;
  }
}

@media (min-width: 1920px) {
  :root { --max: 1540px; }

  section { padding: 112px 0; }

  .site-header {
    padding-inline: 56px;
  }

  .header.scrolled {
    max-width: 1640px;
  }

  .hero-grid {
    grid-template-columns: minmax(460px, .76fr) minmax(720px, 1.24fr);
  }

  .hero-network {
    min-height: 720px;
  }

  .profession-network {
    width: min(100%, 1020px);
  }

  .section-head {
    max-width: 700px;
  }

  .solution-card {
    min-height: 320px;
    padding: 38px;
  }

  .process-steps,
  .security-cards,
  .review-slider {
    gap: 26px;
  }

  .contact-form {
    padding: 40px;
  }
}

@media (min-width: 2560px) {
  :root { --max: 1680px; }

  .hero-grid {
    gap: 128px;
  }

  .hero-network {
    min-height: 780px;
  }

  .profession-network {
    width: min(100%, 1120px);
  }

  .header.scrolled {
    max-width: 1780px;
  }
}

@media (max-width: 1060px) {
  .header.scrolled { width: calc(100% - 48px); }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-product {
    min-height: 620px;
  }

  .hero-globe {
    min-height: 560px;
  }

  .hero-network {
    min-height: 560px;
  }

  .profession-network {
    width: min(100%, 680px);
  }

  .globe-shell {
    width: min(86vw, 540px);
  }

  .hero-grid,
  .process-grid,
  .why-grid,
  .compliance-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual { min-height: auto; }
  .solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .security-cards,
  .review-slider { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card:not(.recommended),
  .price-card.recommended {
    transform: none;
    transform-origin: center;
  }
}

@media (max-width: 820px) {
  main { padding-top: 76px; }

  .site-header {
    padding: 14px 20px;
  }

  .brand-logo img {
    width: clamp(150px, 44vw, 188px);
  }

  .header.scrolled {
    top: 14px;
    width: calc(100% - 24px);
    padding: 12px 16px;
    border-radius: 9999px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(16, 19, 63, .1);
    border-radius: 10px;
    background: var(--white);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 12px);
    display: none;
    padding: 18px;
    border: 1px solid rgba(16, 19, 63, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .container {
    width: min(var(--max), calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  section { padding: 62px 0; }
  .hero { padding-top: 44px; }
  .hero-grid { gap: 32px; }
  .hero-product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: auto;
    margin-top: 12px;
  }

  .monitor-wrap {
    grid-column: 1 / -1;
    width: min(100%, 620px);
    justify-self: center;
    transform: rotateY(-6deg) rotateX(3deg);
  }

  .hero-globe {
    min-height: 520px;
    margin-top: 10px;
  }

  .hero-network {
    min-height: 460px;
    margin-top: 10px;
  }

  .profession-network {
    width: min(112%, 570px);
  }

  .network-node text {
    display: none;
  }

  .globe-shell {
    width: min(92vw, 430px);
  }

  .globe-stat {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    margin-top: -22px;
  }

  .stat-seo {
    justify-self: end;
    margin-right: 18px;
  }

  .stat-gdpr {
    justify-self: start;
    margin-left: 18px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    min-width: 0;
    width: 100%;
  }

  .hero-visual img { transform: none; border-width: 7px; border-radius: 22px; }
  .compliance-card { left: 14px; right: 14px; bottom: -18px; min-width: 0; }
  .solutions-grid,
  .portfolio-grid,
  .price-cards,
  .process-steps,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-steps::before { display: none; }
  .solution-card { min-height: 250px; padding: 26px; }
  .section-head.split { align-items: start; flex-direction: column; }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 22px;
  }

  .form-intro {
    display: grid;
    align-items: start;
  }

  .form-intro strong { text-align: left; }
  .contact-proof span { max-width: none; }
  .mockup { padding-right: 58px; }
  .footer-legal { justify-self: start; }
  .legal-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .legal-table strong,
  .legal-table span {
    padding: 12px 14px;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .lead { font-size: 16px; }
  h1, h2, h3, p, li, a, button {
    overflow-wrap: anywhere;
  }
  .section-head,
  .solution-card,
  .step-card,
  .portfolio-card,
  .security-card,
  .price-card,
  .review-card,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
  .hero {
    overflow: hidden;
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }
  .hero-copy .lead {
    max-width: min(33ch, 100%);
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .trust-row { gap: 12px; font-size: 13px; }
  .hero-product { grid-template-columns: 1fr; }
  .hero-globe {
    min-height: 480px;
  }

  .hero-network {
    min-height: 350px;
    overflow: hidden;
  }

  .profession-network {
    width: min(118%, 430px);
    margin-inline: auto;
  }

  .globe-shell {
    width: min(94vw, 360px);
  }

  .globe-stat {
    width: 100%;
    min-width: 0;
    margin: -10px 0 0;
  }

  .stat-seo,
  .stat-gdpr {
    justify-self: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .monitor { padding: 9px; border-radius: 24px; }
  .monitor-glass { border-radius: 18px; }
  .site-preview { padding: 14px; }
  .preview-nav { align-items: start; flex-direction: column; gap: 4px; }
  .preview-hero {
    grid-template-columns: 1fr;
    min-height: 240px;
  }
  .preview-portrait { display: none; }
  .preview-hero h2 { font-size: 30px; }
  .preview-cards { grid-template-columns: 1fr; }
  .preview-cards span { height: 42px; }
  .monitor-neck { width: 84px; height: 58px; }
  .monitor-base { width: 180px; }
  .solutions-grid,
  .security-cards,
  .review-slider {
    grid-template-columns: 1fr;
  }

  .security-cards {
    gap: 12px;
  }

  .compliance-copy h2 {
    font-size: 27px;
  }

  .compliance-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .security-card {
    min-height: 94px;
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 13px;
    align-items: center;
    padding: 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .075);
  }

  .security-card span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 12px;
    color: #ff756b;
    background: rgba(255, 255, 255, .08);
    font-size: 20px;
  }

  .security-card h3 {
    grid-column: 2;
    margin: 0 0 5px;
    font-size: 17px;
    line-height: 1.15;
  }

  .security-card p {
    grid-column: 2;
    min-width: 0;
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .portfolio-meta {
    align-items: start;
    flex-direction: column;
  }

  .step-card {
    overflow: hidden;
  }

  .step-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .phone-shot { width: 68px; height: 134px; }
  .mockup { min-height: 206px; padding: 20px 52px 0 20px; }
  .desktop-shot { height: 166px; padding: 20px; }
  .desktop-shot strong { font-size: 22px; }
  .solutions-grid {
    gap: 12px;
  }

  .solution-card {
    min-height: 86px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 15px;
    box-shadow: 0 10px 28px rgba(16, 19, 63, .07);
  }

  .solution-card::after {
    width: 92px;
    height: 92px;
    inset: auto -28px -44px auto;
  }

  .solution-card.reveal {
    transform: translateY(16px) scale(.94);
  }

  .solution-card.reveal.is-visible {
    transform: translateY(0) scale(1);
  }

  .solution-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
  }

  .solution-card p {
    display: none;
  }

  .mobile-step-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .62s ease, transform .62s cubic-bezier(.22,.61,.36,1);
  }

  .mobile-step-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-step-reveal:nth-child(3) {
    transition-delay: .16s;
  }

  .icon-tile {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .icon-tile svg {
    width: 22px;
    height: 22px;
  }

  @supports (animation-timeline: view()) {
    .solution-card {
      animation: solution-card-expand linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 34%;
    }
  }
}

@media (max-width: 380px) {
  .container {
    width: min(var(--max), calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-logo img {
    width: clamp(136px, 48vw, 166px);
  }

  h1 { font-size: 38px; }
  h2 { font-size: 27px; }

  .hero-actions {
    gap: 10px;
  }

  .trust-row {
    gap: 9px;
    font-size: 12px;
  }

  .mockup {
    min-height: 192px;
    padding: 16px 46px 0 16px;
  }

  .desktop-shot {
    height: 156px;
    padding: 16px;
  }

  .desktop-shot span {
    font-size: 10px;
  }

  .desktop-shot strong {
    font-size: 20px;
  }

  .phone-shot {
    right: 16px;
    width: 62px;
    height: 124px;
  }

  .security-card {
    grid-template-columns: 34px 1fr;
    column-gap: 10px;
    padding: 14px;
  }

  .security-card span {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .security-card p {
    font-size: 11px;
  }

  .price {
    font-size: 38px;
  }

  .contact-form {
    padding: 22px;
  }
}

@keyframes solution-card-expand {
  from {
    opacity: .72;
    transform: translateY(18px) scale(.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
