/* Akhmedov's Dev shared styles */

/* Landing page */
.landing-page {
  --bg: #05060d;
  --bg-2: #090d1a;
  --card: rgba(255, 255, 255, .075);
  --card-2: rgba(255, 255, 255, .105);
  --stroke: rgba(255, 255, 255, .14);
  --text: #f8fbff;
  --muted: #a7b2c8;
  --blue: #0ba8ff;
  --blue-2: #1057ff;
  --violet: #7415ff;
  --purple: #5300ff;
  --green: #42ffbe;
  --orange: #ffb14a;
  --danger: #ff5c82;
  --shadow: 0 28px 110px rgba(0, 0, 0, .48);
  --radius: 30px;
  --radius-sm: 18px;
  --max: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.landing-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(11, 168, 255, .28), transparent 31rem),
    radial-gradient(circle at 86% 15%, rgba(116, 21, 255, .24), transparent 30rem),
    radial-gradient(circle at 40% 70%, rgba(66, 255, 190, .09), transparent 34rem),
    linear-gradient(180deg, #04050b 0%, #070914 45%, #030409 100%);
  overflow-x: hidden;
}

body.landing-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  z-index: -3;
}

body.landing-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, .045) 50%, transparent 56%);
  transform: translateX(-80%);
  animation: pageSheen 9s ease-in-out infinite;
  z-index: -2;
}

@keyframes pageSheen {

  0%,
  26% {
    transform: translateX(-95%);
    opacity: 0;
  }

  42% {
    opacity: .9;
  }

  70%,
  100% {
    transform: translateX(95%);
    opacity: 0;
  }
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

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

.landing-page button,
.landing-page input,
.landing-page textarea,
.landing-page select {
  font: inherit;
}

.landing-page ::selection {
  background: rgba(11, 168, 255, .35);
  color: white;
}

.landing-page .progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--green));
  box-shadow: 0 0 28px rgba(11, 168, 255, .9);
}

.landing-page .noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .12;
  mix-blend-mode: overlay;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.landing-page .intro {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #02030a;
  z-index: 9999;
  animation: introOut .9s cubic-bezier(.75, 0, .24, 1) 2.7s forwards;
}

.intro-seen .landing-page .intro {
  display: none;
}

.landing-page .intro-inner {
  width: min(78vw, 720px);
  text-align: center;
  perspective: 1200px;
}

.landing-page .intro-logo {
  width: min(64vw, 560px);
  margin: 0 auto;
  filter: drop-shadow(0 0 46px rgba(11, 168, 255, .42));
  transform: translateY(34px) rotateX(55deg) scale(.82);
  opacity: 0;
  animation: logoEnter 1.35s cubic-bezier(.18, 1, .28, 1) .22s forwards, logoPulse 1.6s ease-in-out 1.4s infinite alternate;
}

.landing-page .intro-line {
  height: 2px;
  width: 0;
  margin: 32px auto 0;
  background: linear-gradient(90deg, transparent, var(--blue), var(--violet), transparent);
  animation: lineGrow 1.15s ease .8s forwards;
}

.landing-page .intro-caption {
  margin-top: 18px;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  opacity: 0;
  animation: fadeUp .9s ease 1.15s forwards;
}

@keyframes logoEnter {
  to {
    transform: translateY(0) rotateX(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes logoPulse {
  to {
    filter: drop-shadow(0 0 72px rgba(116, 21, 255, .5));
  }
}

@keyframes lineGrow {
  to {
    width: 72%;
  }
}

@keyframes introOut {
  to {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-page .container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.landing-page header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(4, 6, 14, .68);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.landing-page .nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.landing-page .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}

.landing-page .brand img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(11, 168, 255, .22));
}

.landing-page .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dfe7ff;
  font-size: 14px;
}

.landing-page .nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  transition: .25s ease;
}

.landing-page .nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, .08);
}

.landing-page .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-page .lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
}

.landing-page .lang-switch button {
  border: 0;
  color: rgba(255, 255, 255, .7);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s ease;
}

.landing-page .lang-switch button.active {
  color: #06101e;
  background: linear-gradient(135deg, var(--blue), #fff);
}

.landing-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.landing-page .btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(-120%);
  transition: .8s ease;
}

.landing-page .btn:hover::before {
  transform: translateX(120%);
}

.landing-page .btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .26);
}

.landing-page .btn-primary {
  color: white;
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-2) 50%, var(--violet));
  box-shadow: 0 18px 44px rgba(21, 104, 255, .35);
}

.landing-page section {
  position: relative;
  padding: 92px 0;
}

.landing-page .hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 70px 0 100px;
  overflow: hidden;
}

.landing-page .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.landing-page .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  border-radius: 999px;
  color: #d7e6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  animation: floatSoft 4s ease-in-out infinite alternate;
}

.landing-page .badge-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  font-size: 0;
  line-height: 0;
}

.landing-page h1 {
  margin: 24px 0 22px;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: .94;
  letter-spacing: -.07em;
  max-width: 980px;
}

.landing-page .gradient-text {
  background: linear-gradient(100deg, #fff 0%, #cdefff 30%, #30b9ff 56%, #8f4cff 82%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-page .lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 34px;
}

.landing-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.landing-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  max-width: 680px;
}

.landing-page .stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.landing-page .stat b {
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
}

.landing-page .stat span {
  color: var(--muted);
  font-size: 13px;
}

.landing-page .orbit-wrap {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.landing-page .hero-card {
  width: min(100%, 520px);
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    radial-gradient(circle at 35% 20%, rgba(11, 168, 255, .22), transparent 38%),
    radial-gradient(circle at 68% 62%, rgba(116, 21, 255, .26), transparent 40%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .16);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  animation: floatSoft 5.5s ease-in-out infinite alternate;
}

.landing-page .hero-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 90deg, transparent, rgba(11, 168, 255, .42), transparent, rgba(116, 21, 255, .36), transparent);
  animation: rotate 12s linear infinite;
  opacity: .9;
}

.landing-page .hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 41px;
  background: rgba(5, 7, 16, .72);
  backdrop-filter: blur(18px);
}

.landing-page .dashboard {
  position: relative;
  z-index: 2;
  padding: 26px;
  height: 100%;
}

.landing-page .dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.landing-page .traffic {
  display: flex;
  gap: 8px;
}

.landing-page .traffic i {
  width: 12px;
  height: 12px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  font-size: 0;
  line-height: 0;
}

.landing-page .mini-logo {
  width: 118px;
  opacity: .95;
}

.landing-page .dash-title {
  margin: 44px 0 24px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.landing-page .dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.landing-page .dash-box {
  min-height: 122px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
}

.landing-page .dash-box.wide {
  grid-column: span 2;
  min-height: 140px;
}

.landing-page .dash-box small {
  color: var(--muted);
}

.landing-page .dash-box b {
  display: block;
  margin-top: 14px;
  font-size: 24px;
}

.landing-page .chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 78px;
  margin-top: 18px;
}

.landing-page .chart i {
  flex: 1;
  overflow: hidden;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--violet));
  animation: bar 2.2s ease-in-out infinite alternate;
  font-size: 0;
  line-height: 0;
}

.landing-page .chart i:nth-child(2) {
  height: 70%;
  animation-delay: .2s;
}

.landing-page .chart i:nth-child(3) {
  height: 46%;
  animation-delay: .4s;
}

.landing-page .chart i:nth-child(4) {
  height: 88%;
  animation-delay: .6s;
}

.landing-page .chart i:nth-child(5) {
  height: 58%;
  animation-delay: .8s;
}

.landing-page .orb {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28);
  z-index: 4;
  animation: floatSoft 4s ease-in-out infinite alternate;
}

.landing-page .orb-1 {
  width: 178px;
  padding: 18px;
  left: 0;
  top: 85%;
}

.landing-page .orb-2 {
  width: 204px;
  padding: 18px;
  right: -18px;
  bottom: 17%;
  animation-delay: .7s;
}

.landing-page .orb b {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.landing-page .orb span {
  color: var(--muted);
  font-size: 13px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatSoft {
  to {
    transform: translateY(-14px);
  }
}

@keyframes bar {
  to {
    transform: scaleY(.72);
    filter: hue-rotate(20deg);
  }
}

.landing-page .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}

.landing-page .eyebrow {
  color: #7bd8ff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 14px;
}

.landing-page h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.06em;
  max-width: 770px;
}

.landing-page .section-head p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.landing-page .marquee-wrap {
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  background: rgba(255, 255, 255, .035);
}

.landing-page .marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.landing-page .marquee span {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .05);
}

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

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

.landing-page .service-card,
.landing-page .article-card,
.landing-page .process-card,
.landing-page .price-card {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.landing-page .service-card:hover,
.landing-page .article-card:hover,
.landing-page .process-card:hover,
.landing-page .price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 168, 255, .35);
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
}

.landing-page .service-card::before,
.landing-page .article-card::before,
.landing-page .process-card::before,
.landing-page .price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(11, 168, 255, .22), transparent 20rem);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.landing-page .service-card:hover::before,
.landing-page .article-card:hover::before,
.landing-page .process-card:hover::before,
.landing-page .price-card:hover::before {
  opacity: 1;
}

.landing-page .service-card {
  min-height: 320px;
  padding: 28px;
}

.landing-page .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 168, 255, .28), rgba(116, 21, 255, .3));
  border: 1px solid rgba(255, 255, 255, .16);
  margin-bottom: 28px;
  font-size: 24px;
}

.landing-page .service-card h3,
.landing-page .article-card h3,
.landing-page .price-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.landing-page .service-card p,
.landing-page .article-card p,
.landing-page .process-card p,
.landing-page .price-card p {
  position: relative;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.landing-page .tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.landing-page .tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.landing-page .feature-band {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.landing-page .big-panel {
  min-height: 440px;
  padding: 34px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 20% 20%, rgba(11, 168, 255, .22), transparent 26rem),
    radial-gradient(circle at 80% 70%, rgba(116, 21, 255, .24), transparent 25rem),
    rgba(255, 255, 255, .06);
  overflow: hidden;
  position: relative;
}

.landing-page .big-panel h3 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 18px;
  letter-spacing: -.05em;
  line-height: 1;
}

.landing-page .big-panel p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 530px;
}

.landing-page .code-window {
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, .28);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

.landing-page .code-line {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #cde7ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.landing-page .code-line span:first-child {
  color: rgba(255, 255, 255, .36);
  width: 28px;
}

.landing-page .process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.landing-page .process-card {
  padding: 24px;
  min-height: 250px;
}

.landing-page .process-card::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 20px;
  top: 20px;
  color: rgba(255, 255, 255, .12);
  font-weight: 900;
  font-size: 46px;
  letter-spacing: -.08em;
}

.landing-page .process-card h3 {
  margin: 72px 0 12px;
  font-size: 21px;
}

.landing-page .pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.landing-page .price-card {
  padding: 30px;
}

.landing-page .price-card.featured {
  border-color: rgba(11, 168, 255, .38);
  box-shadow: 0 26px 100px rgba(11, 168, 255, .13), inset 0 1px 0 rgba(255, 255, 255, .14);
  transform: translateY(-10px);
}

.landing-page .price {
  font-size: 42px;
  letter-spacing: -.06em;
  margin: 24px 0 4px;
}

.landing-page .price small {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.landing-page .checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
  color: #d7e3ff;
}

.landing-page .checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.landing-page .checklist li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

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

.landing-page .article-card {
  padding: 26px;
  min-height: 330px;
}

.landing-page .article-meta {
  position: relative;
  color: #79d7ff;
  font-size: 13px;
  margin-bottom: 16px;
}

.landing-page .article-card a,
.landing-page .article-card>span {
  position: relative;
  display: inline-flex;
  margin-top: 24px;
  color: white;
  font-weight: 700;
}

.landing-page .social-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  margin: -8px 0 18px;
}

.landing-page .social-toolbar .btn {
  width: auto;
}

.landing-page .instagram-embeds {
  width: 100%;
  max-width: 360px;
  margin-top: 24px;
}

.landing-page .instagram-embeds .instagram-media,
.landing-page .instagram-embeds iframe {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 360px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: hidden !important;
}

.landing-page .projects-strip {
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 168, 255, .55) rgba(255, 255, 255, .08);
}

.landing-page .projects-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 390px);
  gap: 18px;
}

.landing-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.landing-page .project-card {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.landing-page .project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 168, 255, .35);
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
}

.landing-page .project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
}

.landing-page .project-image-button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
}

.landing-page .project-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.landing-page .project-card:hover .project-image-button img {
  transform: scale(1.035);
}

.landing-page .project-body {
  padding: 24px;
}

.landing-page .project-body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.landing-page .project-body p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.landing-page .project-link {
  margin-top: 24px;
}

.landing-page .project-link.is-disabled {
  opacity: .62;
  cursor: default;
  pointer-events: none;
}

.landing-page .projects-more {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.landing-page .projects-hero {
  padding-bottom: 34px;
}

.landing-page.projects-page h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.07em;
  max-width: 820px;
}

.landing-page .projects-catalog {
  padding-top: 28px;
}

.landing-page .image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
}

.landing-page .image-modal.open {
  display: grid;
}

.landing-page .image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(12px);
}

.landing-page .image-modal-panel {
  position: relative;
  width: min(1120px, 96vw);
  max-height: 92vh;
  display: grid;
  gap: 14px;
  z-index: 1;
}

.landing-page .image-modal-viewport {
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
  scrollbar-color: rgba(11, 168, 255, .75) rgba(255, 255, 255, .08);
}

.landing-page .image-modal-viewport::-webkit-scrollbar {
  width: 10px;
}

.landing-page .image-modal-viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.landing-page .image-modal-viewport::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 999px;
}

.landing-page .image-modal-panel img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .05);
  box-shadow: none;
}

.landing-page .image-modal-close,
.landing-page .image-modal-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  color: white;
  background: rgba(2, 3, 9, .7);
  backdrop-filter: blur(14px);
  cursor: pointer;
  z-index: 2;
}

.landing-page .image-modal-close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.landing-page .image-modal-nav {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  right: 18px;
  font-size: 26px;
  line-height: 1;
}

.landing-page .image-modal-prev {
  top: 74px;
}

.landing-page .image-modal-next {
  bottom: 70px;
}

.landing-page .image-modal-caption {
  justify-self: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  font-size: 14px;
}

.landing-page .faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.landing-page details {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.landing-page summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.landing-page summary::-webkit-details-marker {
  display: none;
}

.landing-page summary::after {
  content: "+";
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.landing-page details[open] summary::after {
  content: "−";
}

.landing-page details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.landing-page .contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.landing-page .contact-card,
.landing-page form {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
  padding: 34px;
}

.landing-page .contact-card h3 {
  margin: 0 0 16px;
  font-size: 32px;
  letter-spacing: -.04em;
}

.landing-page .contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.landing-page .contact-list a {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .055);
  border-radius: 18px;
  color: #e9f2ff;
}

.landing-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.landing-page label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.landing-page input,
.landing-page textarea,
.landing-page select {
  width: 100%;
  color: white;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 3, 9, .55);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.landing-page input:focus,
.landing-page textarea:focus,
.landing-page select:focus {
  border-color: rgba(11, 168, 255, .65);
  box-shadow: 0 0 0 4px rgba(11, 168, 255, .12);
  background: rgba(2, 3, 9, .75);
}

.landing-page textarea {
  min-height: 148px;
  resize: vertical;
}

.landing-page .full {
  grid-column: 1 / -1;
}

.landing-page .form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.landing-page .form-note {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  margin: 16px 0 0;
}

.landing-page .success {
  display: none;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.landing-page .success[data-status="fallback"] {
  color: #ffd166;
}

.landing-page .form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.landing-page footer {
  padding: 36px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
}

.landing-page .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.landing-page .footer-logo {
  width: 180px;
}

.landing-page .reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2, 1, .2, 1);
}

.landing-page .reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.landing-page .stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.landing-page .stagger.in>* {
  opacity: 1;
  transform: translateY(0);
}

.landing-page .stagger.in>*:nth-child(2) {
  transition-delay: .08s;
}

.landing-page .stagger.in>*:nth-child(3) {
  transition-delay: .16s;
}

.landing-page .stagger.in>*:nth-child(4) {
  transition-delay: .24s;
}

.landing-page .stagger.in>*:nth-child(5) {
  transition-delay: .32s;
}

.landing-page .stagger.in>*:nth-child(6) {
  transition-delay: .40s;
}

.landing-page .mobile-menu {
  display: none;
}

@media (max-width: 1050px) {
  .landing-page .nav-links {
    display: none;
  }

  .landing-page .hero-grid,
  .landing-page .feature-band,
  .landing-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .orbit-wrap {
    min-height: 560px;
  }

  .landing-page .cards,
  .landing-page .articles,
  .landing-page .pricing,
  .landing-page .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-page .process {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 680px) {
  .landing-page .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .landing-page .nav {
    height: 74px;
  }

  .landing-page .brand img {
    width: 150px;
  }

  .landing-page .nav-actions .btn {
    display: none;
  }

  .landing-page .hero {
    padding-top: 46px;
  }

  .landing-page h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .landing-page .lead {
    font-size: 16px;
  }

  .landing-page .hero-stats,
  .landing-page .cards,
  .landing-page .articles,
  .landing-page .pricing,
  .landing-page .process,
  .landing-page .projects-grid,
  .landing-page .form-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .projects-track {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .landing-page .project-body {
    padding: 20px;
  }

  .landing-page .image-modal {
    padding: 12px;
  }

  .landing-page .image-modal-nav {
    width: 42px;
    height: 42px;
  }

  .landing-page .section-head {
    display: block;
  }

  .landing-page .section-head p {
    margin-top: 18px;
  }

  .landing-page .social-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-page .social-toolbar .btn {
    width: 100%;
  }

  .landing-page section {
    padding: 68px 0;
  }

  .landing-page .hero-card {
    min-height: 500px;
    border-radius: 32px;
  }

  .landing-page .orb {
    display: none;
  }

  .landing-page .contact-card,
  .landing-page form,
  .landing-page .big-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .landing-page .price-card.featured {
    transform: none;
  }

  .landing-page .dash-title {
    font-size: 28px;
  }

  .landing-page .dash-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .dash-box.wide {
    grid-column: auto;
  }

}

@media (prefers-reduced-motion: reduce) {

  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .landing-page .intro {
    display: none;
  }

  .landing-page .reveal,
  .landing-page .stagger>* {
    opacity: 1;
    transform: none;
  }

}


/* Article page */
.article-page {
  --bg: #05060d;
  --stroke: rgba(255, 255, 255, .14);
  --text: #f8fbff;
  --muted: #a7b2c8;
  --blue: #0ba8ff;
  --blue-2: #1057ff;
  --violet: #7415ff;
  --green: #42ffbe;
  --shadow: 0 28px 110px rgba(0, 0, 0, .48);
  --radius: 30px;
  --max: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.article-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.article-page {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(11, 168, 255, .28), transparent 31rem),
    radial-gradient(circle at 86% 15%, rgba(116, 21, 255, .24), transparent 30rem),
    radial-gradient(circle at 40% 70%, rgba(66, 255, 190, .09), transparent 34rem),
    linear-gradient(180deg, #04050b 0%, #070914 45%, #030409 100%);
  overflow-x: hidden;
}

body.article-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  z-index: -3;
}

body.article-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, .045) 50%, transparent 56%);
  transform: translateX(-80%);
  animation: pageSheen 9s ease-in-out infinite;
  z-index: -2;
}

@keyframes pageSheen {

  0%,
  26% {
    transform: translateX(-95%);
    opacity: 0;
  }

  42% {
    opacity: .9;
  }

  70%,
  100% {
    transform: translateX(95%);
    opacity: 0;
  }
}

.article-page a {
  color: inherit;
  text-decoration: none;
}

.article-page .container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.article-page header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(4, 6, 14, .68);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.article-page .nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.article-page .brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.article-page .brand img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(11, 168, 255, .22));
}

.article-page .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dfe7ff;
  font-size: 14px;
}

.article-page .nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  transition: .25s ease;
}

.article-page .nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, .08);
}

.article-page .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-page .lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
}

.article-page .lang-switch button {
  border: 0;
  color: rgba(255, 255, 255, .7);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s ease;
}

.article-page .lang-switch button.active {
  color: #06101e;
  background: linear-gradient(135deg, var(--blue), #fff);
}

.article-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, .07);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.article-page .btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(-120%);
  transition: .8s ease;
}

.article-page .btn:hover::before {
  transform: translateX(120%);
}

.article-page .btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .26);
}

.article-page .btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-2) 50%, var(--violet));
  box-shadow: 0 18px 44px rgba(21, 104, 255, .35);
}

.article-page .hero {
  padding: 76px 0 34px;
}

.article-page .eyebrow {
  color: #7bd8ff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 14px;
}

.article-page h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.07em;
  max-width: 980px;
}

.article-page h2 {
  margin: 40px 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.article-page h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.article-page .gradient-text {
  background: linear-gradient(100deg, #fff 0%, #cdefff 30%, #30b9ff 56%, #8f4cff 82%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.article-page .lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 840px;
  margin: 0 0 30px;
}

.article-page .meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 30px;
}

.article-page .meta-row span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.article-page .layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  padding: 24px 0 90px;
}

.article-page .article-body,
.article-page .side-panel,
.article-page .cta-panel {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
}

.article-page .article-body {
  padding: 36px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.article-page .article-body p,
.article-page .article-body li,
.article-page .side-panel p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}

.article-page .article-body p {
  margin: 0 0 18px;
}

.article-page .article-body ul {
  padding-left: 20px;
  margin: 0 0 22px;
}

.article-page .article-body li {
  margin: 8px 0;
}

.article-page .quote {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid rgba(11, 168, 255, .25);
  border-radius: 22px;
  background: rgba(11, 168, 255, .08);
  color: #e8f7ff;
  line-height: 1.65;
  font-weight: 700;
}

.article-page aside {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 20px;
}

.article-page .side-panel {
  position: static;
  top: auto;
  padding: 24px;
}

.article-page .side-panel nav {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.article-page .side-panel a {
  color: rgba(255, 255, 255, .78);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.article-page .side-panel a:hover {
  color: white;
}

.article-page .cta-panel {
  margin-top: 0;
  padding: 24px;
  background: radial-gradient(circle at 20% 20%, rgba(11, 168, 255, .18), transparent 20rem), rgba(255, 255, 255, .06);
}

.article-page footer {
  padding: 36px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
}

.article-page .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.article-page .footer-logo {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(11, 168, 255, .18));
}

.article-page .reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2, 1, .2, 1);
}

.article-page .reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1050px) {
  .article-page .nav-links {
    display: none;
  }

  .article-page .layout {
    grid-template-columns: 1fr;
  }

  .article-page aside {
    position: static;
    top: auto;
  }

}

@media (max-width: 680px) {
  .article-page .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .article-page .nav {
    height: 74px;
  }

  .article-page .brand {
    min-width: auto;
  }

  .article-page .brand img {
    width: 150px;
  }

  .article-page .footer-logo {
    width: 148px;
  }

  .article-page .nav-actions .btn {
    display: none;
  }

  .article-page .hero {
    padding-top: 46px;
  }

  .article-page h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .article-page .article-body,
  .article-page .side-panel,
  .article-page .cta-panel {
    border-radius: 28px;
    padding: 24px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .article-page *,
  .article-page *::before,
  .article-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .article-page .reveal {
    opacity: 1;
    transform: none;
  }

}


/* Service pages */
.service-page {
  --bg: #05060d;
  --card: rgba(255, 255, 255, .075);
  --stroke: rgba(255, 255, 255, .14);
  --text: #f8fbff;
  --muted: #a7b2c8;
  --blue: #0ba8ff;
  --blue-2: #1057ff;
  --violet: #7415ff;
  --green: #42ffbe;
  --shadow: 0 28px 110px rgba(0, 0, 0, .48);
  --radius: 30px;
  --max: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.service-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.service-page {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(11, 168, 255, .28), transparent 31rem),
    radial-gradient(circle at 86% 15%, rgba(116, 21, 255, .24), transparent 30rem),
    radial-gradient(circle at 40% 70%, rgba(66, 255, 190, .09), transparent 34rem),
    linear-gradient(180deg, #04050b 0%, #070914 45%, #030409 100%);
  overflow-x: hidden;
}

body.service-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  z-index: -3;
}

body.service-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, .045) 50%, transparent 56%);
  transform: translateX(-80%);
  animation: pageSheen 9s ease-in-out infinite;
  z-index: -2;
}

@keyframes pageSheen {

  0%,
  26% {
    transform: translateX(-95%);
    opacity: 0;
  }

  42% {
    opacity: .9;
  }

  70%,
  100% {
    transform: translateX(95%);
    opacity: 0;
  }
}

.service-page a {
  color: inherit;
  text-decoration: none;
}

.service-page .container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.service-page header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(4, 6, 14, .68);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.service-page .nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-page .brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.service-page .brand img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(11, 168, 255, .22));
}

.service-page .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dfe7ff;
  font-size: 14px;
}

.service-page .nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  transition: .25s ease;
}

.service-page .nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, .08);
}

.service-page .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-page .lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
}

.service-page .lang-switch button {
  border: 0;
  color: rgba(255, 255, 255, .7);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s ease;
}

.service-page .lang-switch button.active {
  color: #06101e;
  background: linear-gradient(135deg, var(--blue), #fff);
}

.service-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, .07);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.service-page .btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(-120%);
  transition: .8s ease;
}

.service-page .btn:hover::before {
  transform: translateX(120%);
}

.service-page .btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .26);
}

.service-page .btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-2) 50%, var(--violet));
  box-shadow: 0 18px 44px rgba(21, 104, 255, .35);
}

.service-page main {
  min-height: calc(100vh - 82px);
}

.service-page section {
  position: relative;
  padding: 86px 0;
}

.service-page .hero {
  padding: 74px 0 54px;
}

.service-page .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: stretch;
}

.service-page .eyebrow {
  color: #7bd8ff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 14px;
}

.service-page h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 7vw, 58px);
  line-height: .94;
  letter-spacing: -.07em;
}

.service-page h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -.06em;
}

.service-page h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.service-page .gradient-text {
  background: linear-gradient(100deg, #fff 0%, #cdefff 30%, #30b9ff 56%, #8f4cff 82%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-page .lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 30px;
}

.service-page .panel,
.service-page .card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
}

.service-page .panel {
  padding: 32px;
  min-height: 100%;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.service-page .service-visual {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at 28% 18%, rgba(11, 168, 255, .24), transparent 25rem),
    radial-gradient(circle at 80% 72%, rgba(116, 21, 255, .24), transparent 24rem),
    rgba(255, 255, 255, .06);
}

.service-page .icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 168, 255, .28), rgba(116, 21, 255, .3));
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 30px;
}

.service-page .metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.service-page .metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
}

.service-page .metric b {
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
}

.service-page .metric span,
.service-page .card p,
.service-page .panel p,
.service-page li {
  color: var(--muted);
  line-height: 1.65;
}

.service-page .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}

.service-page .section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.service-page .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-page .service-detail {
  padding: 42px 0;
}

.service-page .service-detail:first-child {
  padding-top: 22px;
}

.service-page .wide-panel {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 168, 255, .16), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
  padding: 32px;
  overflow: hidden;
}

.service-page .layout-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.service-page .route-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.service-page .route-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 168, 255, .18), transparent 20rem),
    rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  position: relative;
  overflow: hidden;
}

.service-page .route-card::after {
  content: attr(data-step);
  position: absolute;
  right: 22px;
  bottom: 14px;
  color: rgba(255, 255, 255, .1);
  font-size: 78px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.service-page .route-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.service-page .route-card h3 {
  max-width: 320px;
}

.service-page .card {
  padding: 26px;
  min-height: 220px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.service-page .card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 168, 255, .35);
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
}

.service-page .module-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.service-page .module-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
}

.service-page .module-row b,
.service-page .pipeline-item b,
.service-page .lane-card b {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.service-page .module-row span,
.service-page .pipeline-item span,
.service-page .lane-card span {
  color: var(--muted);
  line-height: 1.55;
}

.service-page .module-index {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #06101e;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.service-page .pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.service-page .pipeline-item {
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
}

.service-page .pipeline-item::after {
  content: attr(data-step);
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-size: 58px;
  font-weight: 900;
  color: rgba(255, 255, 255, .08);
  letter-spacing: -.08em;
}

.service-page .lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.service-page .lane-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  min-height: 190px;
}

.service-page .chat-flow {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 850px;
}

.service-page .chat-bubble {
  width: min(100%, 680px);
  padding: 18px 20px;
  border-radius: 24px 24px 24px 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .065);
}

.service-page .chat-bubble:nth-child(even) {
  margin-left: auto;
  border-radius: 24px 24px 8px 24px;
  background: rgba(11, 168, 255, .11);
}

.service-page .screen-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.service-page .phone-panel {
  min-height: 420px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03)),
    radial-gradient(circle at 30% 10%, rgba(66, 255, 190, .18), transparent 18rem);
  padding: 26px;
  display: grid;
  align-content: space-between;
}

.service-page .phone-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  margin: 12px 0;
}

.service-page .ops-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.service-page .ops-column {
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
}

.service-page .ops-pill {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  color: var(--muted);
  line-height: 1.45;
}

.service-page .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.service-page .tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.service-page .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.service-page .checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-page .checklist li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.service-page .cta {
  margin-bottom: 90px;
}

.service-page .cta .panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-page .cta .panel>div {
  min-width: 0;
  flex: 1 1 620px;
}

.service-page .cta .panel .btn {
  flex: 0 0 auto;
}

.service-page footer {
  padding: 36px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
}

.service-page .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-page .footer-logo {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(11, 168, 255, .18));
}

.service-page .reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2, 1, .2, 1);
}

.service-page .reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1050px) {
  .service-page .nav-links {
    display: none;
  }

  .service-page .hero-grid,
  .service-page .grid-2,
  .service-page .screen-grid {
    grid-template-columns: 1fr;
  }

  .service-page .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-page .pipeline,
  .service-page .lane-grid,
  .service-page .ops-board {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 680px) {
  .service-page .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .service-page .nav {
    height: 74px;
  }

  .service-page .brand {
    min-width: auto;
  }

  .service-page .brand img {
    width: 150px;
  }

  .service-page .footer-logo {
    width: 148px;
  }

  .service-page .nav-actions .btn {
    display: none;
  }

  .service-page .hero {
    padding-top: 46px;
  }

  .service-page h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .service-page section {
    padding: 68px 0;
  }

  .service-page .grid-3,
  .service-page .metric-grid,
  .service-page .route-grid,
  .service-page .pipeline,
  .service-page .lane-grid,
  .service-page .ops-board {
    grid-template-columns: 1fr;
  }

  .service-page .section-head,
  .service-page .cta .panel {
    display: block;
  }

  .service-page .section-head p,
  .service-page .cta .btn {
    margin-top: 18px;
  }

  .service-page .panel,
  .service-page .card,
  .service-page .wide-panel {
    border-radius: 28px;
    padding: 24px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .service-page *,
  .service-page *::before,
  .service-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .service-page .reveal {
    opacity: 1;
    transform: none;
  }

}


/* Shared utility classes */
.landing-page .chart-low {
  height: 40%;
}

.landing-page .faq-head {
  justify-content: center;
  text-align: center;
  display: block;
}

.landing-page .faq-title {
  margin: auto;
}

.landing-page .contact-text {
  color: var(--muted);
  line-height: 1.7;
}

.landing-page .form-submit {
  margin-top: 18px;
  width: 100%;
}

.article-page .action-row,
.service-page .action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-page .action-row-spaced {
  margin-top: 30px;
}

.service-page .visual-heading {
  margin-top: 34px;
}

.service-page .checklist-spaced {
  margin-top: 28px;
}

.service-page .phone-line-narrow {
  width: 58%;
}

.service-page .phone-line-medium {
  width: 78%;
}

.service-page .phone-line-wide {
  width: 86%;
}


/* Reworked marketing layout for the e-commerce service */
.ecommerce-page .shop-hero {
  padding: 82px 0 54px;
}

.ecommerce-page .shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 38px;
  align-items: stretch;
}

.ecommerce-page .shop-hero-copy {
  min-height: 560px;
  display: grid;
  align-content: center;
}

.ecommerce-page .shop-promise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.ecommerce-page .shop-promise-row span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.ecommerce-page .shop-offer,
.ecommerce-page .shop-pain-card,
.ecommerce-page .shop-journey-step,
.ecommerce-page .shop-model-card,
.ecommerce-page .shop-build-card,
.ecommerce-page .shop-growth-card,
.ecommerce-page .shop-proof,
.ecommerce-page .shop-proof-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.ecommerce-page .shop-offer {
  min-height: 560px;
  padding: 30px;
  border-radius: var(--radius);
  display: grid;
  align-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 16% 8%, rgba(66, 255, 190, .16), transparent 18rem),
    radial-gradient(circle at 85% 72%, rgba(11, 168, 255, .18), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
  overflow: hidden;
}

.ecommerce-page .shop-offer-head span {
  display: block;
  color: #7bd8ff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ecommerce-page .shop-offer-head b {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}

.ecommerce-page .shop-offer-list {
  display: grid;
  gap: 12px;
}

.ecommerce-page .shop-offer-item {
  padding: 14px 14px 14px 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .84);
  line-height: 1.5;
  position: relative;
}

.ecommerce-page .shop-offer-item::before,
.ecommerce-page .shop-check-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(66, 255, 190, .55);
}

.ecommerce-page .shop-offer-result {
  padding: 18px;
  border: 1px solid rgba(66, 255, 190, .22);
  border-radius: 22px;
  color: #dffdf3;
  background: rgba(66, 255, 190, .08);
  font-weight: 800;
  line-height: 1.55;
}

.ecommerce-page .shop-section {
  padding: 58px 0;
}

.ecommerce-page .shop-pain-grid,
.ecommerce-page .shop-model-grid,
.ecommerce-page .shop-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ecommerce-page .shop-pain-card,
.ecommerce-page .shop-model-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
}

.ecommerce-page .shop-pain-card b,
.ecommerce-page .shop-model-card b,
.ecommerce-page .shop-growth-item b,
.ecommerce-page .shop-proof-card b {
  display: block;
  color: #fff;
  font-size: 20px;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.ecommerce-page .shop-pain-card p,
.ecommerce-page .shop-model-card p,
.ecommerce-page .shop-journey-step span,
.ecommerce-page .shop-growth-item span,
.ecommerce-page .shop-proof-card span,
.ecommerce-page .shop-build-card p {
  color: var(--muted);
  line-height: 1.62;
}

.ecommerce-page .shop-buyer-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 26px;
  align-items: center;
}

.ecommerce-page .shop-story p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.ecommerce-page .shop-journey {
  display: grid;
  gap: 12px;
}

.ecommerce-page .shop-journey-step {
  display: grid;
  grid-template-columns: 64px .45fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border-radius: 24px;
}

.ecommerce-page .shop-journey-step strong {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  color: #06101e;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 900;
}

.ecommerce-page .shop-journey-step b {
  color: #fff;
  font-size: 22px;
  letter-spacing: -.04em;
}

.ecommerce-page .shop-model-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(11, 168, 255, .14), transparent 16rem),
    rgba(255, 255, 255, .055);
}

.ecommerce-page .shop-build-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}

.ecommerce-page .shop-build-card,
.ecommerce-page .shop-growth-card {
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.ecommerce-page .shop-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.ecommerce-page .shop-check-item {
  min-height: 84px;
  padding: 16px 16px 16px 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .84);
  line-height: 1.5;
  position: relative;
}

.ecommerce-page .shop-growth-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.ecommerce-page .shop-growth-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

.ecommerce-page .shop-proof {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.ecommerce-page .shop-proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ecommerce-page .shop-proof-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
}

@media (max-width: 1050px) {

  .ecommerce-page .shop-hero-grid,
  .ecommerce-page .shop-buyer-layout,
  .ecommerce-page .shop-build-grid,
  .ecommerce-page .shop-proof {
    grid-template-columns: 1fr;
  }

  .ecommerce-page .shop-hero-copy,
  .ecommerce-page .shop-offer {
    min-height: auto;
  }

  .ecommerce-page .shop-pain-grid,
  .ecommerce-page .shop-model-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .ecommerce-page .shop-hero {
    padding-top: 46px;
  }

  .ecommerce-page .shop-offer,
  .ecommerce-page .shop-build-card,
  .ecommerce-page .shop-growth-card,
  .ecommerce-page .shop-proof {
    border-radius: 28px;
    padding: 24px;
  }

  .ecommerce-page .shop-pain-grid,
  .ecommerce-page .shop-model-grid,
  .ecommerce-page .shop-check-list,
  .ecommerce-page .shop-proof-grid {
    grid-template-columns: 1fr;
  }

  .ecommerce-page .shop-journey-step {
    grid-template-columns: 1fr;
  }
}


/* SEO structure additions */
.landing-page .lang-switch a,
.service-page .lang-switch a,
.article-page .lang-switch a {
  color: rgba(255,255,255,.7);
  padding: 8px 12px;
  border-radius: 999px;
  transition: .25s ease;
}
.landing-page .lang-switch a.active,
.service-page .lang-switch a.active,
.article-page .lang-switch a.active {
  color: #06101e;
  background: linear-gradient(135deg, var(--blue), #fff);
}
.landing-page .project-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}
.service-page .seo-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.service-page .seo-list div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.055);
  color: var(--muted);
  line-height: 1.6;
}
.service-page .seo-list b {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}
.landing-page .footer-row,
.service-page .footer-row,
.article-page .footer-row {
  gap: 18px;
}
.landing-page .footer-main,
.service-page .footer-main,
.article-page .footer-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.landing-page .footer-socials,
.service-page .footer-socials,
.article-page .footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.landing-page .footer-socials a,
.service-page .footer-socials a,
.article-page .footer-socials a {
  color: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 10px 13px;
  line-height: 1;
  transition: .25s ease;
}
.landing-page .footer-socials a:hover,
.service-page .footer-socials a:hover,
.article-page .footer-socials a:hover {
  color: #fff;
  border-color: rgba(0,229,255,.42);
  background: rgba(0,229,255,.08);
}
@media (max-width: 760px) {
  .landing-page .footer-row,
  .service-page .footer-row,
  .article-page .footer-row,
  .landing-page .footer-main,
  .service-page .footer-main,
  .article-page .footer-main,
  .landing-page .footer-socials,
  .service-page .footer-socials,
  .article-page .footer-socials {
    justify-content: center;
    text-align: center;
  }
}
