:root {
  --ink: #0d0d34;
  --muted: #3a3a62;
  --violet: #6b20ea;
  --purple: #8e35f3;
  --pink: #ea2fb7;
  --line: #e9e5f1;
  --footer: #080525;
  --shadow: 0 26px 70px rgba(58, 28, 132, 0.16);
  --section-space: clamp(56px, 7vw, 84px);
  --display-font: "Sora", "Inter", system-ui, sans-serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body-font);
  background: #fff;
  min-width: 320px;
}

a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 120;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: #0d0d34;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(13, 13, 52, .22);
  transition: transform .18s ease;
}

.skip-link:focus { transform: translateY(0); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(116, 35, 232, .42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 49px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(13, 13, 52, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 18px rgba(19, 9, 60, 0.04);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display-font); font-weight: 800; }
.site-header .brand { transform: translateY(1px); }

.brand-text { font-size: 29px; letter-spacing: -1.35px; line-height: 1; }
.brand-text strong { color: var(--pink); }

.brand-mark {
  display: block;
  width: 47px;
  height: 42px;
  flex: 0 0 auto;
  overflow: visible;
}

.main-nav { display: flex; align-items: center; gap: 58px; margin-left: auto; margin-right: 51px; font-family: var(--display-font); font-size: 13px; font-weight: 700; }
.main-nav a { transition: color 0.2s ease; }
.main-nav a:hover { color: var(--violet); }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  align-self: center;
  margin-right: 58px;
  padding: 3px;
  border: 1px solid rgba(13, 13, 52, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 22px rgba(19, 9, 60, .06);
}

.language-option {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 9px;
  color: var(--muted);
  border-radius: 999px;
  line-height: 1;
}

.language-option:hover { background: rgba(116, 35, 232, .08); }

.language-option.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(13, 13, 52, .14);
}

.language-option.is-active:hover { color: var(--ink); background: #fff; }
.language-flag { font-size: 16px; line-height: 1; }
.language-code { display: none; font-size: 11px; letter-spacing: .5px; }

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 51px;
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  min-width: 188px;
  min-height: 41px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(100deg, #e335b5 0%, #7824ea 100%);
  border-radius: 8px;
  box-shadow: none;
}

.menu-button { display: none; place-content: center; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }

main { overflow: hidden; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 582px) 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1220px;
  min-height: 552px;
  margin: 0 auto;
  padding: 18px 57px 44px;
}

.hero::after {
  position: absolute;
  right: -8px;
  top: -2px;
  width: 952px;
  height: 536px;
  content: "";
  background: url("DigiHero.webp") center / contain no-repeat;
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; }

.purple-dot {
  display: none;
  position: absolute;
  right: -60px;
  top: 91px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df56e4, var(--violet));
  box-shadow: 0 0 25px rgba(135, 57, 234, 0.65);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display-font); }

.hero h1 {
  max-width: 588px;
  margin-bottom: 28px;
  font-size: 45px;
  line-height: 1.16;
  letter-spacing: -2.25px;
  font-weight: 800;
}

.hero h1 span { color: transparent; background: linear-gradient(100deg, #8b38ef 9%, #ee39b5 92%); -webkit-background-clip: text; background-clip: text; }
.tablet-line-break { display: none; }

.hero p {
  max-width: 526px;
  margin-bottom: 38px;
  color: #313257;
  font-size: 15px;
  line-height: 1.72;
}

.hero-actions { display: flex; gap: 20px; margin-bottom: 43px; }
.btn { padding: 0 24px; border: 1.5px solid transparent; text-align: center; white-space: nowrap; font-size: 13px; }
.btn span { position: absolute; right: 22px; top: 50%; transform: translateY(-53%); font-family: var(--body-font); font-size: 20px; line-height: 1; }
.btn-primary span { display: none; }
.btn-primary { width: 225px; color: #fff; border: 0; background: linear-gradient(100deg, #e334b4 0%, #7423e8 100%); background-clip: padding-box; box-shadow: 0 16px 28px rgba(116, 34, 232, 0.13); clip-path: inset(0 round 8px); }
.btn-secondary { width: 205px; color: #7423e8; background: #fff; border-color: #7423e8; }

.trust-list { display: flex; gap: 36px; padding: 0; margin: 0; list-style: none; color: #38385f; font-size: 11px; font-weight: 600; }
.trust-list li { position: relative; padding-left: 24px; white-space: nowrap; }
.trust-list li::before { position: absolute; left: 0; top: -1px; display: grid; place-items: center; width: 17px; height: 17px; color: #fff; font-size: 11px; content: "✓"; background: var(--violet); border-radius: 50%; }

.hero-visual { position: relative; min-height: 440px; perspective: 1400px; }

.hero-visual > :not(.hero-background-label) { display: none; }
.dot-grid { position: absolute; width: 180px; height: 126px; opacity: .42; background-image: radial-gradient(circle, #e42fb8 1.4px, transparent 1.5px); background-size: 12px 12px; }
.dot-grid-top { left: 194px; top: 28px; transform: rotate(2deg); }
.glow-ribbon { position: absolute; inset: 118px -154px auto auto; width: 421px; height: 270px; background: linear-gradient(128deg, transparent 22%, rgba(133, 46, 237, .06), rgba(237, 46, 183, .48), rgba(106, 32, 234, .22), transparent 74%); filter: blur(2px); transform: skewY(-19deg); }

.dashboard-shell {
  position: absolute;
  right: -14px;
  top: 50px;
  display: flex;
  width: 535px;
  height: 447px;
  overflow: hidden;
  background: linear-gradient(110deg, #fbf9ff, #fff);
  border: 1px solid rgba(96, 45, 152, .18);
  border-radius: 19px;
  box-shadow: -19px 28px 64px rgba(86, 28, 137, .24), 15px 16px 0 rgba(68, 27, 91, .8);
  transform: rotateY(-12deg) rotateZ(4deg) skewY(-1deg);
}

.dashboard-shell::before { position: absolute; inset: 0 0 auto 0; height: 10px; background: linear-gradient(90deg, #2d195c, #ed36bd 40%, #7431ed); content: ""; }
.dashboard-sidebar { width: 72px; padding: 35px 11px; color: #fff; background: linear-gradient(180deg, #1c123f, #100929); }
.dashboard-sidebar span { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: rgba(255,255,255,.35); }
.dashboard-sidebar strong { display: block; margin: 18px 0 22px; font-size: 9px; }
.dashboard-sidebar em { display: block; height: 27px; margin: 10px 0; border-radius: 6px; background: rgba(255,255,255,.08); }
.dashboard-content { flex: 1; padding: 30px 23px 20px; }
.dash-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.dash-topline h2 { margin: 0; font-size: 15px; }
.dash-topline div { display: flex; align-items: center; gap: 8px; font-size: 9px; color: #312260; }
.dash-topline span { display: grid; place-items: center; min-width: 26px; height: 26px; border-radius: 50%; background: rgba(112,50,230,.1); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 13px; }
.metrics article, .chart-card, .score-card, .activity-card { background: rgba(255,255,255,.82); border: 1px solid rgba(94,61,141,.12); border-radius: 9px; box-shadow: 0 12px 24px rgba(43, 28, 92, .06); }
.metrics article { position: relative; min-height: 77px; padding: 14px; }
.metrics small { display: block; color: #86839d; font-size: 8px; font-weight: 700; }
.metrics strong { display: block; margin-top: 12px; font-size: 20px; }
.metrics em { position: absolute; right: 9px; bottom: 17px; color: #14b884; font-size: 8px; font-style: normal; font-weight: 800; }
.dash-grid { display: grid; grid-template-columns: 1.45fr .85fr; grid-template-rows: 190px 118px; gap: 12px; }
.chart-card { position: relative; padding: 15px; grid-column: 1; }
.card-head { display: flex; justify-content: space-between; color: #67627d; font-size: 10px; font-weight: 800; }
.card-head small { padding: 2px 8px; border-radius: 11px; background: #f4eaff; color: var(--violet); }
.chart-card svg { position: absolute; left: 16px; bottom: 13px; width: calc(100% - 31px); height: 120px; overflow: visible; }
.grid-line { stroke: #eee9f8; stroke-width: 1; }
.chart-fill { fill: url(#none); fill: rgba(141, 55, 241, .08); }
.chart-line { fill: none; stroke: #9549f2; stroke-width: 4; stroke-linecap: round; }
.chart-pop { position: absolute; right: 65px; top: 65px; padding: 8px 13px; border: 1px solid #eee2ff; border-radius: 8px; background: rgba(255,255,255,.92); color: #2e215f; font-size: 9px; box-shadow: 0 10px 18px rgba(70, 29, 132, .12); }
.chart-pop strong, .chart-pop small { display: block; }
.score-card { grid-column: 2; grid-row: 1 / span 2; padding: 18px 17px; }
.score-card h3, .activity-card h3 { font-size: 11px; margin-bottom: 22px; }
.ring { display: grid; place-items: center; align-content: center; width: 115px; height: 115px; margin: 8px auto 30px; border-radius: 50%; background: radial-gradient(circle, #fff 54%, transparent 56%), conic-gradient(#7640ed 0 82%, #ebe5fb 82% 100%); color: #2b2162; }
.ring strong { font-size: 20px; }.ring span { font-size: 11px; }.ring small { font-size: 9px; }
.score-card i { display: block; height: 17px; margin: 14px 4px; border-radius: 4px; background: linear-gradient(90deg, rgba(123,57,236,.12), rgba(237,47,183,.07)); }
.activity-card { padding: 13px 16px; }
.activity-card p { display: flex; align-items: center; gap: 8px; margin: 11px 0; font-size: 9px; font-weight: 800; }
.activity-card p span { width: 20px; height: 20px; border-radius: 7px; background: rgba(118,64,237,.12); }
.activity-card em { margin-left: auto; color: #0ca777; font-style: normal; font-size: 8px; font-weight: 700; }

.phone-card { position: absolute; left: 9px; bottom: 59px; width: 143px; height: 245px; padding: 21px 17px; border: 1px solid rgba(105,57,152,.15); border-radius: 24px; background: rgba(255,255,255,.9); box-shadow: -8px 16px 38px rgba(72,33,122,.2); transform: rotateZ(3deg); }
.phone-head { display: flex; justify-content: space-between; font-size: 7px; color: #2e215d; }.phone-head i { width: 7px; height: 7px; border-radius: 50%; background: #d9d4e5; }
.phone-card small, .phone-card strong { display: block; margin-top: 10px; font-size: 7px; color: #2b225c; }
.mini-ring { display: grid; place-items: center; align-content: center; width: 68px; height: 68px; margin: 18px auto 16px; border-radius: 50%; background: radial-gradient(circle, #fff 54%, transparent 56%), conic-gradient(#7640ed 0 86%, #eee7fb 86%); font-weight: 900; font-size: 14px; }
.bars { display: flex; align-items: end; gap: 8px; height: 50px; }
.bars span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #994ff3, #d844cb); }
.bars span:nth-child(1) { height: 18px; }.bars span:nth-child(2) { height: 25px; }.bars span:nth-child(3) { height: 35px; }.bars span:nth-child(4) { height: 42px; }.bars span:nth-child(5) { height: 50px; }

.section { max-width: 1090px; margin: 0 auto; padding: var(--section-space) 24px 0; }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title h2 { margin-bottom: 10px; font-size: 32px; letter-spacing: -1.1px; }
.section-title span { display: block; width: 48px; height: 4px; margin: 0 auto; border-radius: 8px; background: linear-gradient(90deg, var(--pink), var(--violet)); }
.services {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 78px;
  max-width: 1320px;
  padding-top: 73px;
}

.services::before {
  display: none;
}

.services::after {
  position: absolute;
  right: -20px;
  top: 126px;
  width: 174px;
  height: 1160px;
  content: "";
  background-image: radial-gradient(circle, rgba(234, 47, 183, .42) 1.7px, transparent 1.8px);
  background-size: 13px 13px;
  opacity: .72;
  pointer-events: none;
}

.services-copy { position: relative; z-index: 1; padding: 25px 0 0 8px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; height: 29px; padding: 0 16px 0 11px; margin-bottom: 37px; color: #7b27ea; border: 1px solid rgba(123, 39, 234, .16); border-radius: 999px; background: rgba(255,255,255,.78); box-shadow: 0 8px 24px rgba(80, 35, 140, .08); font-family: var(--display-font); font-size: 11px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.eyebrow span { display: block; width: 8px; height: 8px; border: 2px solid #fff; border-radius: 50%; background: #7b27ea; box-shadow: 0 0 0 4px rgba(123, 39, 234, .11); animation: eyebrow-dot-pulse 2.4s ease-in-out infinite; }

@keyframes eyebrow-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(123, 39, 234, .11), 0 0 0 rgba(123, 39, 234, 0); transform: scale(1); }
  50% { box-shadow: 0 0 0 6px rgba(123, 39, 234, .16), 0 0 18px rgba(234, 47, 183, .28); transform: scale(1.08); }
}

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

  .eyebrow span { animation: none; }
}
.services-copy h2 { max-width: 315px; margin-bottom: 31px; font-size: 39px; line-height: 1.08; letter-spacing: -1.45px; }
.services-copy h2 span { color: transparent; background: linear-gradient(110deg, #7c28ea 10%, #ed30b8 92%); -webkit-background-clip: text; background-clip: text; }
.services-copy > p { max-width: 312px; margin-bottom: 23px; color: #33345f; font-size: 15px; line-height: 1.72; }
.services-copy > i { display: block; width: 36px; height: 3px; margin-bottom: 70px; border-radius: 5px; background: linear-gradient(90deg, var(--violet), var(--pink)); }
.service-note { position: relative; width: 322px; min-height: 227px; padding: 31px 32px 27px 90px; border: 1px solid rgba(20, 17, 70, .12); border-radius: 10px; background: rgba(255,255,255,.86); box-shadow: 0 18px 48px rgba(58, 28, 132, .06); }
.service-note div { position: absolute; left: 31px; top: 29px; display: grid; place-items: center; width: 37px; height: 37px; color: #7a26ea; border: 1px solid rgba(122, 38, 234, .28); border-radius: 9px; background: rgba(122, 38, 234, .08); }
.service-note svg { width: 19px; height: 19px; stroke-width: 2; }
.service-note h3 { margin-bottom: 20px; font-family: var(--body-font); font-size: 15px; line-height: 1.42; letter-spacing: 0; }
.service-note p { margin-bottom: 24px; color: #48486f; font-size: 12px; line-height: 1.72; }
.service-note a { color: #7423e8; font-size: 12px; font-weight: 800; }
.service-note a span { margin-left: 18px; font-size: 17px; }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 24px; }
.service-card { --spotlight-x: 50%; --spotlight-y: 50%; --spotlight-alpha: 0; position: relative; display: flex; flex-direction: column; min-height: 392px; padding: 43px 45px 38px; border: 1px solid rgba(20, 17, 70, .13); border-radius: 10px; background: radial-gradient(circle 320px at var(--spotlight-x) var(--spotlight-y), rgb(234 47 183 / var(--spotlight-alpha)), rgb(234 47 183 / calc(var(--spotlight-alpha) * .42)) 34%, rgb(234 47 183 / 0) 76%), #fff; box-shadow: 0 22px 58px rgba(58, 28, 132, 0.07); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card::before,
.service-card::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}
.service-card::before {
  left: -46px;
  top: 35px;
  width: 45px;
  height: calc(100% - 70px);
  border: 2px solid rgba(126, 40, 234, .35);
  border-right: 0;
  border-radius: 15px 0 0 15px;
}
.service-card::after {
  left: -24px;
  top: 76px;
  width: 23px;
  height: calc(100% - 152px);
  border: 2px solid rgba(234, 47, 183, .32);
  border-right: 0;
  border-radius: 13px 0 0 13px;
}
.service-card:nth-child(1)::before { top: 24px; height: 260px; }
.service-card:nth-child(1)::after { top: 79px; height: 170px; }
.service-card:nth-child(2)::before { top: 24px; height: 260px; }
.service-card:nth-child(2)::after { top: 79px; height: 170px; }
.service-card:nth-child(3)::before { top: -56px; height: 335px; }
.service-card:nth-child(3)::after { top: -4px; height: 232px; }
.service-card:nth-child(4)::before { top: -56px; height: 335px; }
.service-card:nth-child(4)::after { top: -4px; height: 232px; }
.service-card:hover { --spotlight-alpha: .12; border-color: rgba(234, 47, 183, .18); transform: translateY(-4px); box-shadow: 0 30px 74px rgba(58,28,132,.14); }
.service-card.has-hover-spotlight:hover { --spotlight-alpha: .12; }
.icon, .method-icon { display: grid; place-items: center; width: 66px; height: 66px; color: #fff; border-radius: 50%; font-size: 33px; font-weight: 600; }
.service-card .icon { width: 61px; height: 61px; margin-bottom: 37px; border-radius: 10px; box-shadow: 0 14px 26px rgba(111, 39, 230, .22); }
.icon svg { width: 25px; height: 25px; stroke-width: 1.65; }
.service-card .icon.icon-boost svg { width: var(--icon-boost-size, 30px); height: var(--icon-boost-size, 30px); }
.orb-blue { background: linear-gradient(145deg, #b949f1, #5d20e5); }
.orb-pink { background: linear-gradient(145deg, #f24bb8, #c923a0); }
.service-number { position: absolute; right: 27px; top: 28px; display: grid; place-items: center; min-width: 55px; height: 28px; padding: 0 15px; color: #55527b; border: 1px solid rgba(20, 17, 70, .12); border-radius: 8px; background: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; }
.service-card h3 { margin: 0 0 16px; font-size: 24px; line-height: 1.12; letter-spacing: -.72px; }
.service-card p { max-width: 315px; margin-bottom: 24px; color: #303157; font-size: 14px; line-height: 1.62; }
.service-card ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; color: #313258; font-size: 12px; font-weight: 700; }
.service-card li { position: relative; min-height: 22px; padding-left: 30px; }
.service-card li::before { position: absolute; left: 0; top: -3px; display: grid; place-items: center; width: 21px; height: 21px; content: "✓"; color: #fff; border: 2px solid rgba(255, 255, 255, .9); border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--violet)); box-shadow: 0 8px 18px rgba(123, 39, 234, .18); font-size: 12px; font-weight: 900; line-height: 1; }
.service-card-compact { min-height: 300px; padding: 34px 34px 30px; }
.service-card-compact .icon { margin-bottom: 24px; }
.service-card-compact h3 { font-size: 22px; }
.service-card-compact p { margin-bottom: 20px; font-size: 13px; }
.service-card-compact ul { margin-bottom: 0; }

@media (max-width: 1180px) {
  .services {
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 880px;
    padding-bottom: 92px;
    padding-top: 70px;
  }

  .services::before {
    position: absolute;
    left: 50%;
    bottom: 20px;
    display: block;
    width: 380px;
    height: 70px;
    content: "";
    transform: translateX(-50%);
    background-image: radial-gradient(circle, rgba(126, 40, 234, .22) 1.8px, transparent 1.9px);
    background-size: 17px 17px;
    opacity: .72;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 34%, transparent 74%);
  }

  .services-copy {
    display: grid;
    grid-template-columns: minmax(0, 360px) 372px;
    column-gap: 100px;
    padding: 25px 0 0;
  }

  .services-copy .eyebrow,
  .services-copy h2,
  .services-copy > p,
  .services-copy > i {
    grid-column: 1;
  }

  .services-copy h2 {
    max-width: 360px;
    font-size: 42px;
  }

  .services-copy > p { max-width: 366px; }
  .services-copy > i { margin-bottom: 0; }

  .service-note {
    grid-column: 2;
  }

  .service-note {
    grid-row: 3 / span 3;
    width: 372px;
    margin-top: -110px;
    align-self: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 45px;
    padding-inline: 0;
  }

  .service-card {
    padding-inline: 29px;
  }
}

.stats-band { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; max-width: 1110px; min-height: 145px; margin: var(--section-space) auto 0; padding: 31px 48px; overflow: hidden; color: #fff; border-radius: 19px; background: linear-gradient(rgba(9, 4, 39, .32), rgba(9, 4, 39, .35)), url("wavesbackground1.webp") right bottom / cover no-repeat, #090427; }
.stats-band::after { display: none; }
.stats-band div { position: relative; z-index: 1; display: grid; grid-template-columns: 64px auto; column-gap: 22px; align-items: center; min-height: 75px; border-right: 1px solid rgba(255,255,255,.24); }
.stats-band div:last-child { border-right: 0; }
.stats-band span { grid-row: span 2; display: grid; place-items: center; width: 68px; height: 68px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font-size: 35px; }
.stats-band svg { width: 31px; height: 31px; stroke-width: 1.8; }
.stats-band strong { align-self: end; font-family: var(--display-font); font-size: 34px; line-height: .95; }.stats-band p { align-self: start; margin: 4px 0 0; font-size: 17px; line-height: 1.25; }
.stats-band div:last-child strong { font-size: 21px; line-height: 1.15; }
.stats-band div:last-child p { font-size: 16px; }

.method { padding-top: var(--section-space); padding-bottom: 10px; }
.method-steps { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 32px; margin-top: 0; }
.method-steps article { position: relative; min-height: 190px; padding: 34px 24px 30px 126px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 18px 48px rgba(58,28,132,.08); }
.method-icon { position: absolute; left: 24px; top: 30px; width: 78px; height: 78px; border: 18px solid #fff; outline: 1px solid var(--line); box-shadow: 0 12px 30px rgba(58,28,132,.08); font-size: 28px; }
.method-icon svg { width: 28px; height: 28px; stroke-width: 2.1; }
.step-number { display: inline-grid; place-items: center; width: 35px; height: 35px; margin-top: 0; color: #fff; background: #0c0b39; border-radius: 50%; font-size: 14px; font-weight: 800; }
.step-line { display: none; }
.method-steps article:last-child .step-line { right: 10px; }
.method-steps h3 { margin: 0 0 12px; font-size: 17px; }
.method-steps p { margin-bottom: 0; color: #33345f; font-size: 13px; line-height: 1.58; }

.cta-panel { position: relative; display: flex; align-items: center; justify-content: space-between; max-width: 1110px; min-height: 193px; margin: var(--section-space) auto 32px; padding: 31px 84px; overflow: hidden; color: #fff; border-radius: 17px; background: linear-gradient(rgba(9, 4, 39, .19), rgba(9, 4, 39, .2)), url("wavesbackground2.webp") center bottom / cover no-repeat, #090427; }
.cta-panel h2 { margin-bottom: 19px; font-size: 39px; line-height: 1.02; letter-spacing: -1.5px; }
.cta-panel p { max-width: 460px; margin: 0; font-size: 17px; line-height: 1.55; }
.cta-actions { position: relative; z-index: 1; display: grid; justify-items: center; gap: 18px; margin-right: 75px; }
.cta-actions small { position: relative; padding-left: 24px; font-size: 12px; font-weight: 700; }.cta-actions small::before { position: absolute; left: 0; top: -2px; content: "✓"; color: #fff; display: grid; place-items: center; width: 16px; height: 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; }

.site-footer { margin-top: 0; padding: 22px 75px 8px; color: #fff; background: radial-gradient(circle at 94% 10%, rgba(94,36,232,.28), transparent 25%), #070527; }
.footer-grid { display: grid; grid-template-columns: 1.65fr .8fr 1fr 1.25fr; gap: 62px; max-width: 1090px; margin: 0 auto 10px; }
.brand-footer .brand-text { font-size: 34px; }.brand-footer .brand-mark { width: 50px; height: 43px; }
.footer-brand p { max-width: 285px; margin: 8px 0 10px; color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.34; }
.footer-grid h3 { margin: 4px 0 12px; font-size: 14px; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 8px; color: rgba(255,255,255,.9); font-size: 13px; }
.footer-grid p svg { width: 17px; height: 17px; vertical-align: -3px; stroke-width: 1.8; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1090px; margin: 0 auto; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.82); font-size: 13px; }
.footer-bottom div { display: flex; gap: 70px; }

.stats-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: calc(100% - 48px);
  max-width: 1374px;
  min-height: 300px;
  margin: 64px auto 62px;
  padding: 42px 58px 50px;
  overflow: hidden;
  color: #fff;
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 14%, rgba(158, 50, 255, .22), transparent 20%),
    radial-gradient(circle at 84% 17%, rgba(234, 47, 183, .16), transparent 19%),
    linear-gradient(rgba(6, 3, 30, .08), rgba(6, 3, 30, .08)),
    url("wavesbackground1.webp") center bottom / cover no-repeat,
    #080525;
  box-shadow: 0 22px 58px rgba(18, 8, 60, .13);
}
.stats-band div { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; justify-items: center; align-content: center; min-height: 178px; border-right: 1px solid rgba(255,255,255,.22); text-align: center; }
.stats-band div:last-child { border-right: 0; }
.stats-band span { position: relative; display: grid; place-items: center; width: 88px; height: 88px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -14px 24px rgba(0,0,0,.18), 0 18px 42px rgba(96, 32, 229, .36); }
.stats-band span.orb-pink { box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -14px 24px rgba(0,0,0,.18), 0 18px 42px rgba(242, 75, 184, .3); }
.stats-band span::after { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; content: ""; border-radius: 50%; background: var(--pink); box-shadow: 0 0 12px rgba(234,47,183,.75); transform: translate(-50%, -50%) rotate(-45deg) translate(var(--stats-dot-r, 42.85px)); transform-origin: center; }
.stats-band svg { width: 42px; height: 42px; filter: drop-shadow(0 5px 10px rgba(0,0,0,.22)); stroke-width: 1.9; }
.stats-band strong { font-family: var(--display-font); font-size: 40px; line-height: .94; letter-spacing: -1.1px; }
.stats-band div:first-child strong { font-size: 30px; }
.stats-band p { margin: 10px 0 0; color: rgba(255,255,255,.92); font-size: 17px; line-height: 1.28; font-weight: 700; }
.stats-band div:last-child strong { font-size: 40px; line-height: .94; }
.stats-band div:last-child p { font-size: 17px; }

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-reveal [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(.985);
    transition:
      opacity .64s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
      transform .64s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .has-scroll-reveal [data-reveal="fade-right"] { transform: translate3d(-26px, 16px, 0) scale(.985); }
  .has-scroll-reveal [data-reveal="fade-left"] { transform: translate3d(26px, 16px, 0) scale(.985); }

  .has-scroll-reveal .service-card[data-reveal] {
    transition:
      opacity .96s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
      transform .96s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
  }

  .has-scroll-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .has-scroll-reveal .stats-band div { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
  .has-scroll-reveal .stats-band.is-visible div { opacity: 1; transform: translateY(0); }
  .has-scroll-reveal .stats-band.is-visible div:nth-child(2) { transition-delay: .06s; }
  .has-scroll-reveal .stats-band.is-visible div:nth-child(3) { transition-delay: .12s; }
  .has-scroll-reveal .stats-band.is-visible div:nth-child(4) { transition-delay: .18s; }
  .has-scroll-reveal .stats-band.is-visible span::after { animation: stats-dot-orbit .9s cubic-bezier(.22, 1, .36, 1) both; }
  .has-scroll-reveal .stats-band.is-visible div:nth-child(2) span::after { animation-delay: .06s; }
  .has-scroll-reveal .stats-band.is-visible div:nth-child(3) span::after { animation-delay: .12s; }
  .has-scroll-reveal .stats-band.is-visible div:nth-child(4) span::after { animation-delay: .18s; }
  .has-scroll-reveal .closing-panel .cta-panel.is-visible::after { animation: cta-shimmer 8s cubic-bezier(.22, 1, .36, 1) .15s infinite; }
}

@keyframes stats-dot-orbit {
  from { transform: translate(-50%, -50%) rotate(-225deg) translate(var(--stats-dot-r, 42.85px)); }
  to { transform: translate(-50%, -50%) rotate(-45deg) translate(var(--stats-dot-r, 42.85px)); }
}

@keyframes cta-shimmer {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

.why-choice {
  position: relative;
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: center;
  gap: 82px;
  max-width: 1290px;
  padding-top: 0;
}
.why-choice::after {
  position: absolute;
  right: 62px;
  top: 48px;
  width: 200px;
  height: 760px;
  content: "";
  background-image: radial-gradient(circle, rgba(234, 47, 183, .33) 1.7px, transparent 1.9px);
  background-size: 16px 16px;
  opacity: .76;
  pointer-events: none;
}
.why-copy { padding-left: 4px; }
.why-copy .eyebrow { margin: 24px 0 46px; }
.why-copy h2 { max-width: 520px; margin-bottom: 20px; font-size: 56px; line-height: 1.06; letter-spacing: -2px; }
.why-copy h2 span { display: block; color: transparent; background: linear-gradient(108deg, #e231b4 5%, #7c28ea 82%); -webkit-background-clip: text; background-clip: text; }
.why-copy > i { display: block; width: 50px; height: 4px; margin: 0 0 42px; border-radius: 8px; background: linear-gradient(90deg, var(--pink), var(--violet)); }
.why-copy > p { max-width: 430px; margin-bottom: 30px; color: #33345f; font-size: 18px; line-height: 1.72; }
.why-copy ul { display: grid; gap: 18px; padding: 0; margin: 0 0 51px; list-style: none; color: #2e2f58; font-size: 15px; font-weight: 700; }
.why-copy li { position: relative; padding-left: 31px; }
.why-copy li::before { position: absolute; left: 0; top: -1px; display: grid; place-items: center; width: 19px; height: 19px; content: "✓"; color: #fff; border-radius: 50%; background: linear-gradient(135deg, #8b32ef, #6d24e8); font-size: 12px; }

.client-result-card { width: 460px; min-height: 0; padding: 28px 27px 24px; color: #fff; border-radius: 12px; background: linear-gradient(rgba(8, 5, 37, .55), rgba(8, 5, 37, .55)), url("wavesbackground1.webp") right bottom / cover no-repeat, #080525; box-shadow: 0 24px 60px rgba(14, 9, 50, .24); }
.client-result-card small { display: block; margin-bottom: 20px; color: #a968ff; font-family: var(--display-font); font-size: 12px; font-weight: 800; letter-spacing: .9px; text-transform: uppercase; }
.client-result-card h3 { margin-bottom: 13px; font-size: 25px; letter-spacing: -.7px; }
.client-result-card p { max-width: 390px; margin-bottom: 19px; color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.48; }
.client-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.client-kpis div { display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 15px; align-items: center; min-width: 0; min-height: 79px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(255,255,255,.04); }
.client-kpis i { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); }
.client-kpis svg { grid-row: span 2; align-self: center; justify-self: center; width: 20px; height: 20px; }
.client-kpis strong { display: block; min-width: 0; font-size: 27px; line-height: 1; }
.client-kpis span { display: block; min-width: 0; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.35; }
.client-result-card footer { display: flex; align-items: center; gap: 14px; padding-top: 4px; }
.client-result-card img { width: 45px; height: 45px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,.85); }
.client-result-card footer div { display: grid; gap: 4px; margin-right: auto; }
.client-result-card footer strong { font-size: 13px; }
.client-result-card footer span { color: rgba(255,255,255,.7); font-size: 11px; }
.client-result-card footer a { display: inline-flex; align-items: center; gap: 8px; color: #c48cff; font-size: 13px; }
.client-result-card footer svg { width: 14px; height: 14px; }

.why-timeline { position: relative; z-index: 1; display: grid; justify-self: center; width: 448px; gap: 15px; padding-left: 52px; }
.why-timeline::before { position: absolute; left: 15px; top: 72px; bottom: 112px; width: 2px; content: ""; background: linear-gradient(#7d28ea, #9b4bf3); }
.why-timeline article { position: relative; z-index: 1; display: grid; grid-template-columns: 68px 1fr; column-gap: 18px; width: 396px; min-height: 166px; padding: 25px 26px 23px 24px; border: 1px solid rgba(20, 17, 70, .13); border-radius: 13px; background: #fff; box-shadow: 0 18px 48px rgba(58,28,132,.075); }
.why-timeline article::before { position: absolute; left: -49px; top: 64px; width: 21px; height: 21px; content: ""; border: 5px solid #fff; border-radius: 50%; background: #7423e8; box-shadow: 0 0 0 3px #7423e8; }
.why-timeline article::after { position: absolute; left: -31px; top: 77px; width: 30px; content: ""; border-top: 2px solid #9b4bf3; }
.why-icon { grid-row: span 4; display: flex; align-items: center; justify-content: center; width: 66px; height: 66px; color: #fff; border-radius: 50%; box-shadow: 0 16px 30px rgba(141, 38, 226, .24); }
.why-icon svg { display: block; width: 31px; height: 31px; stroke-width: 1.9; }
.why-timeline article > span { position: absolute; right: 24px; top: 23px; color: rgba(39, 35, 79, .22); font-family: var(--display-font); font-size: 24px; font-weight: 800; line-height: 1; }
.why-timeline h3 { max-width: 230px; margin: 0 0 11px; font-size: 22px; line-height: 1.12; letter-spacing: -.65px; }
.why-timeline p { max-width: 300px; margin-bottom: 13px; color: #34345e; font-size: 14px; line-height: 1.45; }
.why-timeline small { justify-self: start; padding: 6px 16px; color: #8a3ce9; border: 1px solid rgba(128, 56, 230, .16); border-radius: 999px; background: rgba(128, 56, 230, .04); font-size: 11px; font-weight: 800; }

.faq-section {
  max-width: 1180px;
  padding-top: 58px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.faq-card {
  min-height: 178px;
  padding: 28px 30px 26px;
  border: 1px solid rgba(20, 17, 70, .12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 96% 0, rgba(234, 47, 183, .08), transparent 30%),
    #fff;
  box-shadow: 0 18px 48px rgba(58,28,132,.07);
}
.faq-card h3 {
  margin-bottom: 13px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.55px;
}
.faq-card p {
  margin: 0;
  color: #36365f;
  font-size: 14px;
  line-height: 1.62;
}

.closing-panel { width: calc(100% - 48px); max-width: 1360px; margin: 48px auto 24px; overflow: hidden; color: #fff; border-radius: 14px; background: #060421; box-shadow: 0 24px 70px rgba(13, 9, 50, .18); }
.closing-panel .cta-panel { position: relative; display: grid; justify-content: center; justify-items: center; width: 100%; max-width: none; min-height: 430px; margin: 0; padding: 52px 24px 38px; overflow: hidden; text-align: center; background: linear-gradient(rgba(8,5,37,.18), rgba(8,5,37,.28)), url("wavesbackground2.webp") center top / cover no-repeat, #080525; border-radius: 0; }
.closing-panel .cta-panel::after { position: absolute; inset: 0; z-index: 0; display: block; content: ""; background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255,255,255,.08) 45%, rgba(255,255,255,.2) 50%, rgba(255,255,255,.08) 55%, transparent 62%, transparent 100%); transform: translateX(-130%); pointer-events: none; }
.closing-panel .cta-panel > * { position: relative; z-index: 1; }
.closing-panel .cta-panel small { color: rgba(255,255,255,.82); font-family: var(--display-font); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.closing-panel .cta-panel h2 { width: min(710px, 100%); max-width: 710px; margin: 18px auto 16px; font-size: 41px; line-height: 1.12; letter-spacing: -1.4px; text-align: center; }
.closing-panel .cta-panel h2 span { color: var(--pink); }
.closing-panel .cta-panel p { width: min(710px, 100%); max-width: none; margin: 0 auto 30px; color: rgba(255,255,255,.9); font-size: 16px; text-align: center; }
.closing-panel .cta-panel .btn { width: 295px; height: 62px; margin-bottom: 22px; box-shadow: 0 20px 46px rgba(234,47,183,.24); }
.closing-panel .cta-panel em { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.86); font-size: 13px; font-style: normal; font-weight: 800; }
.closing-panel .cta-panel em svg { width: 18px; height: 18px; }
.closing-panel .footer-grid { display: grid; grid-template-columns: 1.48fr .72fr .9fr 1.05fr; gap: 72px; max-width: none; margin: 0; padding: 43px 70px 35px; border-top: 1px solid rgba(255,255,255,.14); background: #060421; }
.closing-panel .brand-footer .brand-text { font-size: 27px; }
.closing-panel .brand-footer .brand-mark { width: 42px; height: 36px; }
.closing-panel .footer-brand p { max-width: 285px; margin: 16px 0 0; color: rgba(255,255,255,.86); font-size: 13px; line-height: 1.55; }
.closing-panel .footer-grid h3 { margin: 0 0 16px; font-size: 14px; }
.closing-panel .footer-grid a, .closing-panel .footer-grid p { margin-bottom: 10px; color: rgba(255,255,255,.86); font-size: 13px; }
.footer-grid a.footer-language-link,
.closing-panel .footer-grid a.footer-language-link { display: inline-flex; align-items: center; gap: 8px; }
.closing-panel .footer-grid .footer-brand p { margin-bottom: 0; }
.closing-panel .footer-grid p { display: flex; align-items: center; gap: 9px; }
.closing-panel .footer-grid p svg { width: 16px; height: 16px; }
.closing-panel .footer-bottom { max-width: none; margin: 0 70px; padding: 21px 0 23px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.78); font-size: 12px; }
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact a svg,
.footer-contact p svg {
  width: 16px;
  height: 16px;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 72px) 20px;
  background:
    radial-gradient(circle at 14% 10%, rgba(126, 40, 234, .13), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(234, 47, 183, .1), transparent 26%),
    #fbf9ff;
}

.legal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 860px;
  margin: 0 auto 18px;
}

.legal-back,
.legal-language-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7423e8;
  font-size: 13px;
  font-weight: 900;
}
.legal-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(20, 17, 70, .12);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 26px 70px rgba(58, 28, 132, .12);
}
.legal-panel h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}
.legal-panel h2 {
  margin: 28px 0 10px;
  font-size: 21px;
}
.legal-panel p {
  margin-bottom: 12px;
  color: #34345f;
  font-size: 15px;
  line-height: 1.68;
}
.legal-panel a {
  color: #7423e8;
  font-weight: 800;
}

@media (min-width: 701px) and (max-width: 1180px) {
  .site-header { height: 98px; padding: 0 56px; }
  .main-nav, .header-cta { display: none; }
  .language-switcher { margin-left: auto; margin-right: 18px; }
  .menu-button { display: grid; gap: 5px; }
  .menu-button span { display: block; width: 30px; height: 4px; background: var(--ink); border-radius: 4px; }
  .brand { gap: 11px; }
  .brand-text { font-size: 28px; letter-spacing: -1.4px; }
  .brand-mark { width: 45px; height: 39px; }
  .main-nav.is-open { position: absolute; display: grid; left: 24px; right: 24px; top: 104px; gap: 18px; margin: 0; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .hero { grid-template-columns: minmax(600px, 62%) 1fr; gap: 0; max-width: none; min-height: calc(100vh - 98px); padding: 44px 56px 56px; overflow: hidden; }
  .hero::after { display: block; position: absolute; right: -24px; top: -28px; z-index: 0; width: 794px; height: 575px; content: ""; background: url("DigiHero.webp") center / contain no-repeat; pointer-events: none; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%); mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%); }
  .hero-copy { max-width: 620px; }
  .purple-dot { display: none; }
  .hero h1 { max-width: 620px; margin-bottom: 28px; font-size: clamp(45px, 4.9vw, 50px); line-height: 1.22; letter-spacing: -2.35px; }
  .tablet-line-break { display: block; }
  .hero p { max-width: 510px; margin-bottom: 38px; font-size: 16px; line-height: 1.72; }
  .hero-actions { gap: 20px; margin-bottom: 46px; }
  .btn { min-height: 56px; font-size: 14px; }
  .btn-primary { width: 218px; }
  .btn-secondary { width: 198px; }
  .trust-list { gap: 31px; font-size: 14px; }
  .trust-list li { padding-left: 30px; }
  .trust-list li::before { top: -3px; width: 21px; height: 21px; font-size: 13px; }
  .hero-visual { display: none; }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .why-choice {
    grid-template-columns: minmax(360px, 430px) minmax(430px, 1fr);
    gap: 44px;
    max-width: 1060px;
    padding-inline: 32px;
  }

  .why-choice::after {
    right: 22px;
    top: 50px;
    width: 168px;
    height: 708px;
    background-size: 15px 15px;
    opacity: .68;
  }

  .why-copy .eyebrow { margin-bottom: 36px; }
  .why-copy h2 { max-width: 430px; font-size: 48px; letter-spacing: -1.8px; }
  .why-copy > i { margin-bottom: 32px; }
  .why-copy > p { max-width: 390px; margin-bottom: 26px; font-size: 17px; line-height: 1.62; }
  .why-copy ul { gap: 15px; margin-bottom: 38px; font-size: 14px; }
  .client-result-card { width: 400px; min-height: 0; padding: 24px 23px 21px; }
  .client-result-card h3 { font-size: 23px; }
  .client-result-card p { font-size: 14px; }
  .client-kpis { grid-template-columns: 1fr; gap: 10px; }
  .client-kpis div { grid-template-columns: 38px minmax(0, 1fr); min-height: 70px; padding: 13px 16px; }
  .client-kpis i { width: 38px; height: 38px; }
  .client-kpis strong { font-size: 24px; }
  .client-kpis span { font-size: 12px; line-height: 1.35; }

  .why-timeline { justify-self: end; width: 412px; gap: 15px; padding-left: 46px; }
  .why-timeline::before { left: 14px; top: 68px; bottom: 106px; }
  .why-timeline article { grid-template-columns: 64px 1fr; column-gap: 18px; width: 366px; min-height: 158px; padding: 24px 23px 21px 22px; }
  .why-timeline article::before { left: -44px; top: 60px; width: 20px; height: 20px; }
  .why-timeline article::after { left: -27px; top: 73px; width: 25px; }
  .why-icon { width: 62px; height: 62px; }
  .why-icon svg { width: 29px; height: 29px; }
  .why-timeline article > span { right: 22px; top: 21px; font-size: 22px; }
  .why-timeline h3 { max-width: 205px; font-size: 20px; }
  .why-timeline p { max-width: 260px; font-size: 13px; line-height: 1.44; }
  .why-timeline small { padding-inline: 14px; font-size: 10px; }

  .closing-panel .cta-panel { align-content: center; min-height: 370px; padding: 46px 24px 38px; row-gap: 24px; }
  .closing-panel .cta-panel h2,
  .closing-panel .cta-panel p { margin: 0 auto; }
  .closing-panel .cta-panel .btn { margin-bottom: 0; }
}

@media (max-width: 960px) {
  .site-header { padding: 0 22px; height: 68px; }
  .main-nav, .header-cta { display: none; }
  .language-switcher { margin-left: auto; margin-right: 14px; }
  .menu-button { display: grid; gap: 5px; }
  .menu-button span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; }
  .main-nav.is-open { position: absolute; display: grid; left: 16px; right: 16px; top: 76px; gap: 18px; margin: 0; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .brand-text { font-size: 26px; }.brand-mark { width: 39px; height: 39px; border-width: 6px; }
  .hero { grid-template-columns: minmax(0, 53%) 1fr; gap: 0; max-width: none; min-height: 650px; padding: 58px 24px 54px; overflow: hidden; }
  .hero::after { display: block; right: -54px; top: 0; width: 540px; height: 650px; background-image: url("Bg_mobile+tablette.webp"); background-size: auto 650px; background-position: center top; opacity: 1; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 100%); mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 100%); }
  .hero h1 { font-size: clamp(37px, 8vw, 54px); }.hero p { font-size: 16px; }
  .hero-actions, .trust-list { flex-wrap: wrap; }
  .hero-visual { display: none; }
  .services { grid-template-columns: 1fr; gap: 25px; max-width: 650px; padding: 38px 30px 58px; border: 1px solid rgba(20, 17, 70, .12); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 18px 64px rgba(58, 28, 132, .08); }
  .services::before { position: absolute; left: 50%; bottom: 18px; display: block; width: min(360px, 72%); height: 76px; content: ""; transform: translateX(-50%); background-image: radial-gradient(circle, rgba(126, 40, 234, .24) 1.8px, transparent 1.9px); background-size: 16px 16px; opacity: .72; pointer-events: none; }
  .services::after { display: block; right: 28px; top: 52%; width: 150px; height: 420px; background-size: 16px 16px; opacity: .42; transform: translateY(-34%); }
  .services-copy { display: grid; grid-template-columns: 1fr; padding: 0; }
  .services-copy h2, .services-copy > p { max-width: 100%; }
  .services-copy h2 { font-size: clamp(34px, 6vw, 43px); }
  .services-copy > p { padding-right: 108px; }
  .services-copy > i { margin-bottom: 28px; }
  .service-note { grid-column: auto; grid-row: auto; }
  .service-note { width: 100%; max-width: none; min-height: 0; margin-top: 0; margin-bottom: 0; padding: 22px 22px 20px 78px; }
  .service-note div { left: 22px; top: 22px; width: 36px; height: 36px; }
  .service-note h3 { margin-bottom: 12px; }
  .service-note p { margin-bottom: 16px; line-height: 1.52; }
  .service-grid, .stats-band, .method-steps, .footer-grid { grid-template-columns: 1fr; }
  .service-grid { gap: 18px; padding: 0; }
  .service-grid::before { position: absolute; left: -52px; top: -66px; bottom: 76px; width: 48px; content: ""; border-left: 2px solid rgba(126, 40, 234, .38); border-top: 2px solid rgba(126, 40, 234, .38); border-bottom: 2px solid rgba(234, 47, 183, .35); border-radius: 16px 0 0 16px; pointer-events: none; }
  .service-card { min-height: 0; padding: 18px 72px 18px 102px; }
  .service-card::before { display: block; left: -52px; top: 50%; width: 52px; height: 2px; border: 0; border-top: 2px solid rgba(126, 40, 234, .34); border-radius: 0; }
  .service-card::after { display: none; }
  .service-card:nth-child(n)::before { top: 50%; height: 2px; }
  .service-card .icon { position: absolute; left: 18px; top: 18px; width: 62px; height: 62px; margin: 0; }
  .service-card h3 { margin-bottom: 9px; font-size: 24px; }
  .service-card p { max-width: none; margin-bottom: 12px; font-size: 13px; line-height: 1.55; }
  .service-card ul { grid-template-columns: repeat(2, minmax(0, max-content)); column-gap: 28px; row-gap: 9px; margin-bottom: 0; font-size: 12px; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-band { margin-inline: 24px; gap: 18px; }.stats-band div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 18px; }
  .stats-band span { --stats-dot-r: 42.85px; }
  .why-choice { grid-template-columns: 1fr; gap: 34px; max-width: 680px; padding: 38px 30px 42px; overflow: hidden; border: 1px solid rgba(20, 17, 70, .12); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 18px 64px rgba(58, 28, 132, .08); }
  .why-choice::after { z-index: 0; right: 10px; top: auto; bottom: 24px; width: 164px; height: 690px; background-size: 15px 15px; opacity: .48; }
  .why-copy { position: relative; z-index: 1; padding-left: 0; }
  .why-copy .eyebrow { margin: 0 0 44px; }
  .why-copy h2 { max-width: 620px; margin-bottom: 24px; font-size: clamp(42px, 8vw, 58px); }
  .why-copy > i { margin-bottom: 34px; }
  .why-copy > p { max-width: 610px; margin-bottom: 28px; font-size: 20px; line-height: 1.55; }
  .why-copy ul { gap: 14px; margin-bottom: 34px; font-size: 16px; }
  .client-result-card { width: 100%; min-height: 0; padding: 24px 26px 22px; }
  .client-result-card small { margin-bottom: 16px; }
  .client-result-card h3 { margin-bottom: 11px; font-size: 23px; }
  .client-result-card p { margin-bottom: 16px; font-size: 14px; line-height: 1.44; }
  .client-kpis { gap: 12px; margin-bottom: 20px; }
  .client-kpis div { min-height: 72px; padding: 13px 14px; }
  .why-timeline { justify-self: stretch; width: 100%; gap: 14px; padding-left: 0; }
  .why-timeline::before,
  .why-timeline article::before,
  .why-timeline article::after { display: none; }
  .why-timeline article { width: 100%; min-height: 0; grid-template-columns: 62px 1fr; column-gap: 18px; padding: 22px 24px 20px 22px; }
  .why-timeline article > span { display: none; }
  .why-timeline h3 { max-width: 300px; }
  .why-icon { width: 60px; height: 60px; }
  .why-icon svg { width: 28px; height: 28px; }
  .why-timeline h3 { margin-bottom: 9px; font-size: 20px; }
  .why-timeline p { margin-bottom: 11px; font-size: 14px; line-height: 1.43; }
  .method-steps article { padding-left: 118px; }.step-line { display: none; }
  .cta-panel { margin-inline: 24px; padding: 34px 28px; flex-direction: column; align-items: flex-start; gap: 28px; }.cta-actions { margin: 0; justify-items: start; }
  .closing-panel { margin: 46px 24px 24px; }
  .closing-panel .cta-panel { align-content: center; min-height: 340px; margin: 0; padding: 42px 24px 36px; row-gap: 24px; align-items: center; justify-items: center; }
  .closing-panel .cta-panel h2 { margin: 0 auto; font-size: 36px; }
  .closing-panel .cta-panel p { margin: 0 auto; }
  .closing-panel .cta-panel .btn { margin-bottom: 0; }
  .closing-panel .footer-grid { grid-template-columns: 1.15fr 1fr; gap: 34px 54px; padding: 36px 42px 30px; }
  .closing-panel .footer-brand,
  .closing-panel .footer-grid > div:last-child { grid-column: 1 / -1; }
  .closing-panel .footer-brand p { max-width: none; width: 100%; }
  .closing-panel .footer-bottom { flex-direction: row; align-items: center; margin: 0 42px; padding: 20px 0 22px; }
  .site-footer { padding: 34px 24px 24px; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }.footer-bottom div { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  :root { --section-space: 40px; }
  .tablet-line-break { display: block; }
  .site-header { height: 68px; padding: 0 31px; }
  .brand { gap: 7px; }
  .brand-text { font-size: 24px; letter-spacing: -1.15px; }
  .brand-mark { width: 36px; height: 33px; }
  .language-switcher { gap: 4px; margin-right: 12px; padding: 2px; }
  .language-option { min-height: 30px; padding: 0 8px; }
  .language-code { display: none; }
  .menu-button { gap: 5px; }
  .menu-button span { width: 26px; height: 3px; }
  .hero { grid-template-columns: 1fr; align-items: start; min-height: 960px; padding: 38px 24px 34px; background: #fff; }
  .hero::before { position: absolute; left: calc(50% + 132px); top: 480px; z-index: 1; width: 96px; height: 482px; content: ""; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.88) 58%, #fff 100%); pointer-events: none; }
  .hero::after { display: block; z-index: 0; right: 0; top: 480px; width: 100vw; height: 482px; background-image: url("Bg_mobile+tablette.webp"); background-size: auto 482px; background-position: calc(50% - 16px) top; opacity: 1; -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0,0,0,.55) 88%, transparent 100%); mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0,0,0,.55) 88%, transparent 100%); }
  .hero-copy { z-index: 2; }
  .hero h1 { max-width: 342px; margin-bottom: 31px; font-size: 34px; line-height: 1.18; letter-spacing: -2.35px; }
  .hero p { max-width: 342px; margin-bottom: 23px; font-size: 15px; line-height: 1.62; }
  .hero-actions { gap: 14px; margin-bottom: 36px; }
  .hero-actions .btn { width: 100%; min-height: 53px; border-radius: 8px; font-size: 13px; }
  .btn span { right: 24px; }
  .trust-list { display: grid; grid-template-columns: 1fr; gap: 13px; width: max-content; font-size: 13px; }
  .trust-list li { padding-left: 37px; }
  .trust-list li::before { top: -6px; width: 24px; height: 24px; font-size: 14px; }
  .section { padding: 40px 18px 0; }
  .dashboard-shell { right: -30px; }.phone-card { left: 0; }
  .section-title h2 { font-size: 30px; }
  .services { gap: 18px; margin-inline: 0; padding: 24px 12px 34px; border-radius: 20px; }
  .services::before { bottom: 14px; width: 240px; height: 58px; background-size: 14px 14px; }
  .services::after { right: 20px; top: auto; bottom: 90px; width: 92px; height: 270px; background-size: 14px 14px; opacity: .34; transform: none; }
  .eyebrow { margin-bottom: 22px; }
  .services-copy h2 { font-size: 35px; }
  .services-copy > p { margin-bottom: 18px; padding-right: 64px; line-height: 1.58; }
  .services-copy > i { margin-bottom: 36px; }
  .service-note { padding: 18px 16px 17px 66px; }
  .service-note h3 { margin-bottom: 10px; font-size: 14px; line-height: 1.35; }
  .service-note p { margin-bottom: 12px; font-size: 12px; line-height: 1.45; }
  .service-note div { left: 16px; top: 18px; width: 36px; height: 36px; }
  .service-grid { position: relative; grid-template-columns: 1fr; gap: 12px; padding-left: 28px; }
  .service-grid::before { display: block; left: 10px; top: -58px; bottom: 104px; width: 18px; border-left: 2px solid rgba(126, 40, 234, .38); border-top: 2px solid rgba(126, 40, 234, .38); border-bottom: 2px solid rgba(126, 40, 234, .34); border-radius: 14px 0 0 14px; }
  .service-card { min-height: 0; padding: 18px 16px 17px; border-radius: 12px; }
  .service-card::before { display: block; left: -18px; top: 50%; width: 18px; height: 2px; border: 0; border-top: 2px solid rgba(126, 40, 234, .34); border-radius: 0; }
  .service-card:nth-child(n)::before { top: 50%; height: 2px; }
  .service-card:nth-child(n)::before { display: block; left: -18px; top: 50%; width: 18px; }
  .service-card:nth-child(12)::before { display: none; }
  .service-card .icon { position: static; width: 47px; height: 47px; margin-bottom: 13px; border-radius: 11px; }
  .service-card .icon svg { width: 22px; height: 22px; }
  .service-card .icon.icon-boost svg { --icon-boost-size: 26px; }
  .service-card h3 { padding-right: 54px; margin-bottom: 8px; font-size: 21px; line-height: 1.15; letter-spacing: -.45px; }
  .service-card p { display: block; min-height: 0; margin-bottom: 14px; overflow: visible; font-size: 13px; line-height: 1.45; -webkit-line-clamp: unset; }
  .service-card ul { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; }
  .service-card li { min-height: 0; padding: 6px 10px 6px 24px; border: 1px solid rgba(126,40,234,.14); border-radius: 999px; background: rgba(126,40,234,.04); }
  .service-card li::before { left: 8px; top: 50%; width: 12px; height: 12px; border: 0; font-size: 8px; transform: translateY(-50%); }
  .service-number { right: 10px; top: 16px; min-width: 40px; height: 24px; padding: 0 10px; border-radius: 7px; font-size: 10px; }
  .service-note { padding-right: 24px; }
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; padding: 24px 16px; }
  .stats-band div { min-height: 168px; padding: 16px 10px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
  .stats-band div:nth-child(2n) { border-right: 0; }
  .stats-band div:nth-last-child(-n + 2) { border-bottom: 0; }
  .stats-band span { --stats-dot-r: 31.82px; width: 66px; height: 66px; margin-bottom: 16px; }
  .stats-band svg { width: 31px; height: 31px; }
  .stats-band strong, .stats-band div:last-child strong { font-size: 29px; }
  .stats-band div:first-child strong { font-size: 20px; }
  .stats-band p, .stats-band div:last-child p { font-size: 13px; line-height: 1.28; }
  .why-choice { gap: 24px; margin-inline: 0; padding: 24px 12px 30px; border-radius: 20px; }
  .why-choice::after { right: -8px; bottom: 12px; width: 136px; height: 610px; background-size: 14px 14px; opacity: .48; }
  .why-copy h2 { font-size: 42px; }
  .why-copy > i { margin-bottom: 24px; }
  .why-copy > p { margin-bottom: 22px; font-size: 17px; line-height: 1.58; }
  .why-copy ul { gap: 12px; margin-bottom: 32px; font-size: 14px; }
  .client-result-card { width: 100%; padding: 20px 17px 18px; }
  .client-result-card small { margin-bottom: 14px; font-size: 10px; }
  .client-result-card h3 { margin-bottom: 10px; font-size: 21px; }
  .client-result-card p { margin-bottom: 14px; font-size: 13px; line-height: 1.42; }
  .client-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 17px; }
  .client-kpis div { grid-template-columns: 1fr; justify-items: center; min-height: 96px; padding: 11px 8px; text-align: center; }
  .client-kpis i { grid-row: auto; width: 34px; height: 34px; }
  .client-kpis svg { width: 17px; height: 17px; }
  .client-kpis strong { font-size: 22px; }
  .client-kpis span { font-size: 10px; }
  .client-result-card footer { flex-wrap: wrap; }
  .why-timeline { gap: 12px; }
  .why-timeline article { width: 100%; grid-template-columns: 54px 1fr; column-gap: 14px; padding: 18px 17px 17px; }
  .why-icon { width: 54px; height: 54px; margin-bottom: 0; }
  .why-icon svg { width: 26px; height: 26px; }
  .why-timeline h3 { margin-bottom: 8px; font-size: 19px; }
  .why-timeline p { margin-bottom: 10px; font-size: 13px; line-height: 1.42; }
  .why-timeline small { padding: 5px 11px; font-size: 10px; }
  .why-timeline article > span { right: 24px; top: 28px; }
  .closing-panel { margin: 28px 14px 16px; border-radius: 12px; }
  .closing-panel .cta-panel { min-height: 0; padding: 34px 18px 28px; row-gap: 20px; }
  .closing-panel .cta-panel small { font-size: 10px; letter-spacing: 1.5px; }
  .closing-panel .cta-panel h2 { margin: 0 auto; font-size: 28px; }
  .closing-panel .cta-panel p { margin: 0 auto; font-size: 14px; }
  .closing-panel .cta-panel .btn { width: 240px; height: 54px; }
  .closing-panel .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 20px; padding: 24px 20px 20px; }
  .closing-panel .footer-brand,
  .closing-panel .footer-grid > div:last-child { grid-column: 1 / -1; }
  .closing-panel .brand-footer .brand-text { font-size: 25px; }
  .closing-panel .brand-footer .brand-mark { width: 39px; height: 34px; }
  .closing-panel .footer-brand p { max-width: none; width: 100%; margin: 10px 0 0; font-size: 12px; }
  .closing-panel .footer-grid h3 { margin-bottom: 9px; }
  .closing-panel .footer-grid a, .closing-panel .footer-grid p { margin-bottom: 6px; font-size: 12px; }
  .faq-section { padding-top: 42px; }
  .faq-card { min-height: 0; padding: 22px 18px 20px; }
  .faq-card h3 { font-size: 18px; }
  .faq-card p { font-size: 13px; line-height: 1.55; }
  .closing-panel .footer-bottom { flex-direction: column; align-items: flex-start; gap: 9px; margin: 0 20px; padding: 14px 0 16px; }
  .closing-panel .footer-bottom div { gap: 14px; }
  .stats-band strong { font-size: 28px; }.cta-panel h2 { font-size: 32px; }
}

@media (min-width: 561px) and (max-width: 700px) {
  .why-choice { max-width: 640px; padding-inline: 28px; }
  .why-choice::after { right: 4px; bottom: 18px; height: 660px; }
  .why-copy h2 { font-size: clamp(40px, 7vw, 48px); }
  .why-copy > p { font-size: 18px; }
  .why-timeline article { grid-template-columns: 58px 1fr; column-gap: 16px; padding: 20px 21px 19px; }
  .why-icon { width: 56px; height: 56px; }
  .why-icon svg { width: 27px; height: 27px; }
}

@media (min-width: 561px) and (max-width: 960px) {
  .services { max-width: 700px; padding-inline: 24px; }
  .services::after { right: 56px; top: auto; bottom: 122px; width: 150px; height: 430px; background-size: 16px 16px; opacity: .36; transform: none; z-index: 0; }
  .service-grid { position: relative; z-index: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding-left: 30px; }
  .service-grid::before { display: block; left: 10px; top: -58px; bottom: 104px; width: 18px; border-left: 2px solid rgba(126, 40, 234, .38); border-top: 2px solid rgba(126, 40, 234, .38); border-bottom: 2px solid rgba(126, 40, 234, .34); border-radius: 14px 0 0 14px; }
  .service-card { min-height: 220px; padding: 18px 16px 16px; border-radius: 12px; }
  .service-card::before { display: block; left: -20px; top: 50%; width: 20px; height: 2px; border: 0; border-top: 2px solid rgba(126, 40, 234, .34); border-radius: 0; }
  .service-card::after { display: none; }
  .service-card:nth-child(n)::before { top: 50%; height: 2px; }
  .service-card:nth-child(3)::before { display: none; }
  .service-card:nth-child(even)::before { display: block; left: -14px; top: 62%; width: 14px; }
  .service-card:nth-child(12)::before { display: none; }
  .service-card .icon { position: static; width: 52px; height: 52px; margin-bottom: 14px; border-radius: 12px; }
  .service-card .icon svg { width: 24px; height: 24px; }
  .service-card .icon.icon-boost svg { --icon-boost-size: 28px; }
  .service-card h3 { padding-right: 50px; margin-bottom: 9px; font-size: 21px; line-height: 1.15; letter-spacing: -.55px; }
  .service-card p { display: -webkit-box; min-height: 58px; margin-bottom: 13px; overflow: hidden; font-size: 13px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .service-card ul { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; }
  .service-card li { min-height: 0; padding: 6px 10px 6px 24px; border: 1px solid rgba(126,40,234,.14); border-radius: 999px; background: rgba(126,40,234,.04); }
  .service-card li::before { left: 8px; top: 50%; width: 12px; height: 12px; border: 0; font-size: 8px; transform: translateY(-50%); }
  .service-number { right: 14px; top: 18px; min-width: 44px; height: 25px; padding: 0 11px; border-radius: 8px; font-size: 10px; }
}

@media (max-width: 380px) {
  .hero { padding-inline: 16px; }
  .hero h1 { font-size: 33px; letter-spacing: -2.35px; }
}

@media (min-width: 561px) and (max-width: 700px) {
  .tablet-line-break { display: block; }
  .hero { grid-template-columns: 1fr; align-items: start; min-height: 1235px; padding: 62px 56px 48px; background: #fff; }
  .hero::after { display: block; right: 0; top: 560px; width: 100vw; height: 605px; background-image: url("Bg_mobile+tablette.webp"); background-size: auto 605px; background-position: center top; opacity: 1; -webkit-mask-image: none; mask-image: none; }
  .hero h1 { max-width: 540px; margin-bottom: 34px; font-size: 50px; line-height: 1.16; letter-spacing: -3px; }
  .hero p { max-width: 500px; margin-bottom: 36px; font-size: 18px; line-height: 1.68; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 460px; margin-bottom: 42px; }
  .hero-actions .btn { width: 100%; min-height: 62px; font-size: 15px; }
  .trust-list { display: grid; grid-template-columns: 1fr; gap: 20px; width: max-content; font-size: 15px; }
  .trust-list li { padding-left: 38px; }
  .trust-list li::before { top: -5px; width: 25px; height: 25px; font-size: 14px; }
}

@media (min-width: 701px) and (max-width: 960px) {
  .site-header { height: 98px; padding: 0 34px; }
  .brand { gap: 10px; }
  .brand-text { font-size: 28px; letter-spacing: -1.25px; }
  .brand-mark { width: 42px; height: 37px; }
  .menu-button { gap: 4px; }
  .menu-button span { width: 27px; height: 3px; }
  .main-nav.is-open { top: 106px; }
  .hero { grid-template-columns: minmax(0, 66%) 1fr; align-items: start; min-height: 0; padding: 26px 34px 34px; background: #fff; }
  .hero::after { display: block; right: -76px; top: -28px; width: 540px; height: 730px; background-image: url("Bg_mobile+tablette.webp"); background-size: auto 730px; background-position: center top; opacity: .94; -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 20%, #000 44%, #000 100%); mask-image: linear-gradient(90deg, transparent 0, transparent 20%, #000 44%, #000 100%); }
  .hero h1 { max-width: 610px; margin-bottom: 52px; font-size: 50px; line-height: 1.16; letter-spacing: -2.7px; }
  .tablet-line-break { display: block; }
  .hero p { max-width: 500px; margin-bottom: 54px; font-size: 15px; line-height: 1.66; }
  .hero-actions { gap: 20px; margin-bottom: 64px; flex-wrap: nowrap; }
  .btn { min-height: 64px; font-size: 15px; }
  .btn-primary { width: 234px; }
  .btn-secondary { width: 214px; }
  .trust-list { width: min(100%, 610px); gap: 26px; flex-wrap: wrap; font-size: 13px; }
  .trust-list li { padding-left: 28px; }
  .trust-list li::before { top: -3px; width: 20px; height: 20px; font-size: 12px; }
}

@media (min-width: 701px) and (max-width: 790px) {
  .hero {
    grid-template-columns: minmax(0, 63%) 1fr;
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .hero::after {
    right: -76px;
    top: -70px;
    width: 500px;
    height: 632px;
    background: url("Bg_mobile+tablette.webp") center top / auto 616px no-repeat;
    opacity: .96;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 26%, #000 48%, #000 74%, transparent 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, transparent 26%, #000 48%, #000 74%, transparent 88%, transparent 100%);
  }

  .hero h1 {
    max-width: 500px;
    margin-bottom: 40px;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -2.35px;
  }

  .hero p {
    max-width: 450px;
    margin-bottom: 46px;
  }

  .hero-actions { margin-bottom: 60px; }
  .trust-list {
    width: max-content;
    gap: 22px;
    flex-wrap: nowrap;
    font-size: 12px;
  }
}

@media (min-width: 791px) and (max-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 62%) 1fr;
    padding-top: 26px;
  }

  .hero::after {
    right: -78px;
    top: -58px;
    width: 520px;
    height: 656px;
    background: url("Bg_mobile+tablette.webp") center top / auto 640px no-repeat;
    opacity: .96;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 26%, #000 48%, #000 74%, transparent 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, transparent 26%, #000 48%, #000 74%, transparent 88%, transparent 100%);
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 42px;
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -2.45px;
  }

  .hero p {
    margin-bottom: 48px;
  }

  .trust-list {
    width: max-content;
    gap: 24px;
    flex-wrap: nowrap;
    font-size: 13px;
  }
}

@media (min-width: 561px) and (max-width: 861px) {
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    max-width: 650px;
    min-height: 0;
    margin: 48px auto 54px;
    padding: 30px 28px;
  }

  .stats-band div {
    min-height: 176px;
    padding: 20px 18px;
    border-right: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .stats-band div:nth-child(2n) { border-right: 0; }
  .stats-band div:nth-last-child(-n + 2) { border-bottom: 0; }
  .stats-band span { --stats-dot-r: 36.77px; width: 76px; height: 76px; margin-bottom: 16px; }
  .stats-band svg { width: 35px; height: 35px; }
  .stats-band strong, .stats-band div:last-child strong { font-size: 34px; }
  .stats-band p, .stats-band div:last-child p { font-size: 15px; line-height: 1.25; }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 60%) 1fr;
    padding-top: 30px;
  }

  .hero::after {
    right: -28px;
    top: -32px;
    width: 817px;
    height: 575px;
    background: url("DigiHero.webp") center / contain no-repeat;
    opacity: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%);
  }

  .hero p {
    max-width: 575px;
    font-size: 20px;
    line-height: 1.55;
  }

  .trust-list {
    width: max-content;
    gap: 24px;
    flex-wrap: nowrap;
    font-size: 13px;
  }
}

.chat-widget { position: fixed; right: 24px; bottom: 22px; z-index: 80; font-family: var(--body-font); }
.chat-toggle { display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 18px; color: #fff; border: 0; border-radius: 999px; background: linear-gradient(135deg, #7624ea, #ef35b8); box-shadow: 0 18px 48px rgba(91, 35, 180, .28); font-size: 14px; font-weight: 800; cursor: pointer; }
.chat-toggle svg { width: 20px; height: 20px; stroke-width: 2.2; }
.chat-panel { position: absolute; right: 0; bottom: 68px; width: min(410px, calc(100vw - 32px)); max-height: calc(100vh - 108px); overflow-y: auto; border: 1px solid rgba(20, 17, 70, .12); border-radius: 24px; background: #fff; box-shadow: 0 30px 90px rgba(19, 12, 63, .22); }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; color: #fff; background: radial-gradient(circle at 86% 10%, rgba(239,53,184,.34), transparent 35%), #090427; }
.chat-head strong, .chat-head span { display: block; }.chat-head strong { margin-bottom: 5px; font-size: 17px; letter-spacing: -.25px; }.chat-head span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.76); font-size: 12px; font-weight: 700; }
.chat-head span i { display: block; width: 8px; height: 8px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 0 4px rgba(57,217,138,.16); }
.chat-head button { display: grid; place-items: center; width: 34px; height: 34px; color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); font-size: 24px; cursor: pointer; }
.chat-view { padding: 18px; background: linear-gradient(180deg, #fbf9ff 0, #fff 36%); }.chat-view > p { margin: 0 0 14px; color: #34345f; font-size: 13px; line-height: 1.55; }
.chat-intro { padding: 15px 16px; margin-bottom: 14px; border: 1px solid rgba(126,40,234,.12); border-radius: 16px; background: rgba(126,40,234,.055); }.chat-intro strong { display: block; margin-bottom: 6px; color: #12123f; font-size: 15px; }.chat-intro p { margin: 0; color: #4e4d76; font-size: 13px; line-height: 1.5; }
.chat-form { display: grid; gap: 11px; }.chat-form label { display: grid; gap: 6px; color: #191947; font-size: 12px; font-weight: 800; }
.chat-form input, .chat-form textarea, .chat-form select { width: 100%; border: 1px solid rgba(20, 17, 70, .15); border-radius: 10px; background: #fff; color: #11113b; font: inherit; font-size: 13px; outline: none; padding: 11px 12px; transition: border-color .2s ease, box-shadow .2s ease; }
.chat-form textarea { resize: vertical; min-height: 88px; }.chat-form input:focus, .chat-form textarea:focus, .chat-form select:focus { border-color: rgba(126,40,234,.56); box-shadow: 0 0 0 4px rgba(126,40,234,.1); }
.chat-form .btn { width: 100%; min-height: 48px; margin-top: 2px; border-radius: 10px; }.chat-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.chat-privacy { margin: -2px 0 0; color: #6f6a92; font-size: 11px; line-height: 1.45; }
.chat-link { justify-self: start; margin-top: 13px; padding: 0; color: #7423e8; border: 0; background: transparent; font-size: 12px; font-weight: 900; cursor: pointer; }
.chat-link:disabled { color: #9d96b8; cursor: not-allowed; }
.chat-ticket { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 14px; margin-bottom: 10px; border: 1px solid rgba(126,40,234,.16); border-radius: 15px; background: #f4efff; }.chat-ticket strong, .chat-ticket span, .chat-ticket small { display: block; }.chat-ticket strong { color: #11113b; font-size: 16px; }.chat-ticket span { margin-top: 2px; color: #7a6b9a; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .6px; }.chat-ticket small { color: #5d5b82; font-size: 12px; text-align: right; }
.chat-thread-note { margin: 0 0 12px; color: #5b5a82; font-size: 12px; line-height: 1.45; }
.chat-email-note { display: inline-flex; align-items: center; gap: 7px; margin: 0 0 12px; padding: 7px 9px; border-radius: 999px; color: #4d4a72; background: #f7f2ff; font-size: 11px; font-weight: 800; }.chat-email-note svg { width: 14px; height: 14px; color: #7423e8; }
.chat-messages { display: grid; gap: 11px; max-height: 272px; margin-bottom: 14px; padding: 3px 4px 3px 0; overflow-y: auto; }.chat-message { position: relative; max-width: 84%; padding: 11px 13px; border-radius: 17px; font-size: 14px; line-height: 1.45; box-shadow: 0 8px 22px rgba(42, 25, 90, .06); }.chat-message small { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 900; letter-spacing: .55px; text-transform: uppercase; opacity: .72; }
.chat-message span { display: block; white-space: pre-wrap; overflow-wrap: anywhere; }
.chat-message.visitor { justify-self: end; color: #fff; border-bottom-right-radius: 5px; background: linear-gradient(135deg, #7c28ea, #d92fb3); }.chat-message.agent, .chat-message.system { justify-self: start; color: #22234d; border-bottom-left-radius: 5px; background: #f1edf9; }
.chat-reply { gap: 9px; padding: 12px; border: 1px solid rgba(126,40,234,.12); border-radius: 18px; background: #fff; box-shadow: 0 12px 34px rgba(42, 25, 90, .08); }.chat-composer { display: flex; align-items: flex-end; gap: 10px; padding: 9px 9px 9px 12px; border: 1px solid rgba(20, 17, 70, .12); border-radius: 18px; background: #f8f5ff; transition: border-color .2s ease, box-shadow .2s ease; }.chat-composer:focus-within { border-color: rgba(126,40,234,.48); box-shadow: 0 0 0 4px rgba(126,40,234,.09); }.chat-reply textarea { min-height: 42px; max-height: 112px; border: 0; background: transparent; padding: 4px 0; box-shadow: none; resize: none; overflow-y: hidden; }.chat-reply textarea:focus { box-shadow: none; }.chat-send { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 40px; width: 40px; height: 40px; border: 0; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #7c28ea, #d92fb3); box-shadow: 0 10px 22px rgba(126,40,234,.24); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }.chat-send:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 13px 26px rgba(126,40,234,.3); }.chat-send:disabled { opacity: .62; cursor: progress; }.chat-send.is-sending svg { animation: chat-send-pulse .85s ease-in-out infinite; }.chat-send:focus-visible { outline: 3px solid rgba(126,40,234,.26); outline-offset: 3px; }.chat-send svg { width: 18px; height: 18px; stroke-width: 2.5; }
.chat-thread.is-resolved .chat-reply { opacity: .66; }.chat-thread.is-resolved .chat-composer { background: #f0edf8; }.chat-resolve { margin-right: 16px; }
.chat-feedback { min-height: 18px; padding: 0 18px 16px; margin: 0; color: #7423e8; font-size: 12px; font-weight: 800; }
.chat-feedback.is-error { color: #b4235f; }

@keyframes chat-send-pulse { 50% { transform: translateX(2px); opacity: .68; } }

@media (max-width: 560px) {
  .chat-widget { right: 14px; bottom: 14px; left: 14px; display: grid; justify-items: end; }
  .chat-toggle { min-height: 50px; padding: 0 16px; }
  .chat-panel { right: 0; left: 0; bottom: 64px; width: 100%; max-height: calc(100vh - 94px); overflow-y: auto; }
  .chat-messages { max-height: 220px; }
}

@media (min-width: 861px) and (max-width: 960px) {
  .services {
    max-width: 715px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 715px;
    min-height: 0;
    margin: 48px auto 54px;
    padding: 34px 42px;
  }

  .stats-band div {
    min-height: 150px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .stats-band div:nth-child(2n) { border-right: 0; }
  .stats-band div:nth-last-child(-n + 2) { border-bottom: 0; }

  .stats-band span {
    --stats-dot-r: 35.92px;
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
  }

  .stats-band svg {
    width: 34px;
    height: 34px;
  }

  .stats-band strong,
  .stats-band div:last-child strong {
    font-size: 36px;
  }

  .stats-band p,
  .stats-band div:last-child p {
    font-size: 16px;
    line-height: 1.22;
  }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .hero {
    align-items: start;
    min-height: 650px;
    padding-top: 50px;
    padding-bottom: 48px;
  }

  .hero::after {
    right: 0;
    top: 8px;
    width: 760px;
    height: 560px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .eyebrow {
    gap: 13px;
    height: 46px;
    padding: 0 24px 0 17px;
    font-size: 15px;
    letter-spacing: .8px;
  }

  .eyebrow span {
    width: 11px;
    height: 11px;
    box-shadow: 0 0 0 6px rgba(123, 39, 234, .11);
  }

  .services-copy > p,
  .cta-panel p,
  .closing-panel .cta-panel p {
    font-size: 20px;
    line-height: 1.55;
  }

  .closing-panel .cta-panel small {
    font-size: 14px;
    letter-spacing: 1.8px;
  }

  .service-card p,
  .method-steps p,
  .service-note h3,
  .service-note p {
    font-size: 20px;
    line-height: 1.48;
  }

  .why-copy > p {
    font-size: 20px;
    line-height: 1.55;
  }

  .footer-brand p,
  .footer-grid a,
  .footer-grid p,
  .closing-panel .footer-brand p,
  .closing-panel .footer-grid a,
  .closing-panel .footer-grid p {
    font-size: 14px;
    line-height: 1.55;
  }

  .service-card ul {
    font-size: 13px;
    line-height: 1.45;
  }
}
