:root {
  --bg: #09090d;
  --bg-soft: #0d1018;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.065);
  --border: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(139, 92, 246, 0.55);
  --text: #f5f7ff;
  --muted: #8e94a6;
  --indigo: #4f46e5;
  --violet: #8b5cf6;
  --cyan: #06b6d4;
  --green: #47d16c;
  --font: Inter, "Segoe UI", Arial, sans-serif;
  --display: "Segoe UI", Inter, Arial, sans-serif;
  --container: 1180px;
  --radius: 22px;
  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--violet) var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(79, 70, 229, 0.1), transparent 32%),
    var(--bg);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: rgba(79, 70, 229, 0.75);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet), var(--cyan));
  border-radius: 10px;
}

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

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  -webkit-user-select: text;
  user-select: text;
}

a,
img {
  -webkit-user-drag: none;
}

button {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.08);
  filter: blur(60px);
  pointer-events: none;
  transition: transform 0.12s linear;
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(9, 9, 13, 0.78);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.32), rgba(6, 182, 212, 0.1));
  color: #c4b5fd;
  font-size: 14px;
  box-shadow: inset 0 0 14px rgba(139, 92, 246, 0.12);
}

.accent-dot {
  color: var(--cyan);
}

.main-nav {
  display: flex;
  gap: 34px;
  margin: 0 auto;
}

.main-nav a {
  position: relative;
  color: #a4a8b5;
  font-size: 14px;
  transition: color var(--transition);
}

.main-nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  content: "";
  transition: width var(--transition);
}

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--transition);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.button-small:hover {
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 0 24px rgba(79, 70, 229, 0.2);
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, var(--indigo), var(--violet));
  box-shadow: 0 10px 35px rgba(79, 70, 229, 0.25);
}

.button-primary::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  content: "";
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.button-primary:hover {
  box-shadow: 0 14px 42px rgba(79, 70, 229, 0.4), 0 0 30px rgba(139, 92, 246, 0.18);
}

.button-primary:hover::before {
  left: 150%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: white;
  transition: transform var(--transition);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 820px;
  padding-top: 130px;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 90%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  animation: orbMove 8s ease-in-out infinite alternate;
}

.hero-orb-one {
  top: 13%;
  right: 12%;
  width: 410px;
  height: 410px;
  background: rgba(79, 70, 229, 0.2);
}

.hero-orb-two {
  bottom: 6%;
  left: 12%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.09);
  animation-delay: -3s;
}

@keyframes orbMove {
  to { transform: translate(55px, 30px) scale(1.12); }
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca3b5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(71, 209, 108, 0.18);
  border-radius: 999px;
  background: rgba(71, 209, 108, 0.05);
}

.status-dot,
.availability i,
.hero-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(71, 209, 108, 0.8);
}

.status-dot {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% { opacity: 0.45; box-shadow: 0 0 3px rgba(71, 209, 108, 0.4); }
}

.hero-role {
  margin: 28px 0 8px;
  color: #b8bdcb;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.hero-title {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(47px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -3.7px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #b5b0ff, #8b5cf6 42%, #22d3ee);
  background-size: 180% 180%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  50% { background-position: 100% 50%; }
}

.hero-typing-line {
  display: inline-grid;
  white-space: nowrap;
}

.hero-typing-line::before,
.hero-typing-content {
  grid-area: 1 / 1;
}

.hero-typing-line::before {
  visibility: hidden;
  content: "которые удивляют|";
}

.typing-caret {
  display: inline-block;
  width: 2px;
  height: 0.8em;
  margin-left: 5px;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
  animation: caret 0.75s step-end infinite;
}

@keyframes caret {
  50% { opacity: 0; }
}

.hero-description {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c3c6d0;
  font-size: 13px;
  font-weight: 500;
}

.text-link span {
  color: var(--cyan);
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  color: #707687;
  font-size: 12px;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.hero-visual {
  position: relative;
  min-height: 490px;
  perspective: 1200px;
}

.code-window {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(100%, 515px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(12, 13, 20, 0.82);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45), 0 0 70px rgba(79, 70, 229, 0.12);
  backdrop-filter: blur(18px);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform var(--transition), border-color var(--transition);
}

.code-window:hover {
  border-color: rgba(139, 92, 246, 0.42);
  transform: rotateY(0) rotateX(0) translateY(-5px);
}

.window-bar,
.code-footer {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #777d8d;
  font-size: 10px;
}

.window-bar > span:nth-child(2) {
  margin: auto;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
}

.window-dots i:nth-child(2) { background: #febc2e; }
.window-dots i:nth-child(3) { background: #28c840; }

.window-status {
  color: #54d575;
}

.code-body {
  padding: 30px 25px;
  color: #bdc1cd;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 2.05;
}

.line-number {
  display: inline-block;
  width: 36px;
  color: #3f4350;
  user-select: none;
}

.code-purple { color: #c084fc; }
.code-green { color: #82d997; }
.code-blue { color: #5ee1f2; }

.code-footer {
  height: 34px;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.015);
}

.code-footer span:first-child {
  margin-right: auto;
  color: #9da2b0;
}

.metric-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(15, 17, 25, 0.85);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translateY(-9px); }
}

.metric-performance {
  right: -25px;
  bottom: 38px;
  gap: 13px;
  padding: 14px 17px;
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(71, 209, 108, 0.1);
  color: #72e18f;
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
}

.metric-card div > span {
  margin-top: 4px;
  color: #777d8d;
  font-size: 9px;
}

.metric-responsive {
  bottom: 7px;
  left: -25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 13px 16px;
  color: #9ea4b3;
  font-size: 9px;
  animation-delay: -2s;
}

.device-icons {
  display: flex;
  align-items: end;
  gap: 6px;
}

.device-icons span {
  width: 17px;
  height: 23px;
  border: 1px solid #8b93a4;
  border-radius: 3px;
}

.device-icons span:first-child {
  width: 28px;
  height: 20px;
}

.device-icons span:last-child {
  width: 10px;
  height: 18px;
  border-color: var(--cyan);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #505463;
  font-size: 8px;
  letter-spacing: 2px;
  transform: translateX(-50%);
}

.scroll-hint span {
  position: relative;
  width: 1px;
  height: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-hint span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--cyan);
  content: "";
  animation: scrollLine 1.8s infinite;
}

@keyframes scrollLine {
  to { top: 130%; }
}

.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.012);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  position: relative;
  padding: 32px;
  text-align: center;
}

.stat:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-family: var(--display);
  font-size: 30px;
}

.stat > span {
  color: #a2a8b6;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 27px;
}

.section-label span {
  color: var(--cyan);
  font-family: var(--display);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(39px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -2.6px;
}

.muted-text {
  color: #4f5361;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
  gap: 90px;
}

.about-copy {
  padding-top: 10px;
}

.about-copy > p {
  margin: 0;
  color: #a0a5b4;
  font-size: 17px;
  line-height: 1.9;
}

.signature-row {
  display: flex;
  align-items: center;
  margin-top: 38px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar-placeholder {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-right: 13px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, #24213d, #10131b);
  color: #bdb6ff;
  font-family: var(--display);
  font-weight: 700;
}

.signature-row strong,
.signature-row span {
  display: block;
}

.signature-row strong {
  font-size: 13px;
}

.signature-row div:nth-child(2) span {
  color: #9ba1af;
  font-size: 11px;
  font-weight: 500;
}

.availability {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: #a0a6b3;
  font-size: 11px;
  font-weight: 500;
}

.availability i {
  width: 5px;
  height: 5px;
}

.stack-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.055), transparent 25%),
    #0b0b10;
}

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

.section-heading .section-label {
  margin-bottom: 20px;
}

.section-heading > p {
  max-width: 365px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
}

.stack-groups {
  display: grid;
  gap: 18px;
}

.stack-group {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: start;
  gap: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
  transition: border-color var(--transition), background var(--transition);
}

.stack-group:hover {
  border-color: rgba(139, 92, 246, 0.25);
  background: rgba(255, 255, 255, 0.028);
}

.stack-group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
}

.stack-number {
  color: #555b6b;
  font-family: var(--display);
  font-size: 10px;
}

.stack-group-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 10px;
}

.tech-grid-short {
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  max-width: 620px;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tech-badge:hover {
  z-index: 2;
  border-color: rgba(6, 182, 212, 0.38);
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.08);
  transform: translateY(-4px);
}

.tech-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.html-icon { color: #ff7655; background: rgba(255, 94, 51, 0.1); }
.css-icon { color: #58a6ff; background: rgba(47, 123, 255, 0.1); }
.js-icon { color: #f7df1e; background: rgba(247, 223, 30, 0.09); }
.vue-icon { color: #41b883; background: rgba(65, 184, 131, 0.1); }
.react-icon { color: #61dafb; background: rgba(97, 218, 251, 0.1); font-size: 19px; }
.node-icon { color: #79c65c; background: rgba(121, 198, 92, 0.1); }
.express-icon { color: #e8e8e8; background: rgba(255, 255, 255, 0.07); }
.rest-icon { color: #c4b5fd; background: rgba(139, 92, 246, 0.1); }

.tech-badge strong,
.tech-badge small {
  display: block;
  white-space: nowrap;
}

.tech-badge strong {
  font-size: 11px;
}

.tech-badge small {
  color: #9298a8;
  font-size: 8px;
  font-weight: 500;
}

.skill-cloud {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
  padding-top: 7px;
}

.skill-cloud span,
.service-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  color: #858b9a;
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.skill-cloud span:hover {
  border-color: rgba(139, 92, 246, 0.45);
  color: #d0c9ff;
  transform: translateY(-2px);
}

.skill-cloud span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 0;
  padding: 8px 5px;
  color: #aeb4c2;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
}

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

.service-card,
.benefit-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 0%), rgba(139, 92, 246, 0.16), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  z-index: 2;
  border-color: var(--border-bright);
  box-shadow: 0 18px 55px rgba(79, 70, 229, 0.13), inset 0 0 25px rgba(139, 92, 246, 0.025);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-top > span,
.card-index {
  color: #4b5060;
  font-family: var(--display);
  font-size: 10px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 11px;
  color: #aaa3f5;
  background: rgba(139, 92, 246, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-icon {
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.22);
  transform: rotate(-4deg) scale(1.05);
}

.service-card h3 {
  margin: 48px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.5px;
}

.service-card p {
  margin: 0;
  color: #7e8493;
  font-size: 13px;
  line-height: 1.75;
}

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

.service-tags span {
  padding: 5px 8px;
  font-size: 8px;
}

.service-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(6, 182, 212, 0.12), transparent 36%),
    linear-gradient(140deg, rgba(79, 70, 229, 0.17), rgba(139, 92, 246, 0.04));
}

.mini-label {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.service-card-cta h3 {
  margin: 20px 0 34px;
  font-size: 24px;
}

.service-card-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #c8cbd5;
  font-size: 11px;
}

.service-card-cta a span {
  color: var(--cyan);
  font-size: 18px;
  transition: transform var(--transition);
}

.service-card-cta a:hover span {
  transform: translateX(5px);
}

.benefits {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b10;
}

.benefits .section-title {
  margin-bottom: 52px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.benefit-card {
  min-height: 258px;
}

.benefit-card:hover {
  border-color: rgba(6, 182, 212, 0.33);
  background: rgba(6, 182, 212, 0.025);
  transform: translateY(-5px);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(6, 182, 212, 0.14);
  border-radius: 13px;
  color: #67d8e7;
  background: rgba(6, 182, 212, 0.06);
  font-family: var(--display);
  font-size: 13px;
}

.benefit-card h3 {
  margin: 34px 0 10px;
  font-family: var(--display);
  font-size: 17px;
}

.benefit-card p {
  margin: 0;
  color: #747a89;
  font-size: 12px;
}

.card-index {
  position: absolute;
  right: 20px;
  bottom: 16px;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 164px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding var(--transition), background var(--transition);
}

.process-step:hover {
  padding: 0 18px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.055), transparent);
}

.step-number {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 12px;
}

.step-body h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 24px;
}

.step-body p {
  max-width: 610px;
  margin: 0;
  color: #747a89;
  font-size: 13px;
}

.step-time {
  padding: 8px 11px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 8px;
  color: #aeb3c1;
  background: rgba(139, 92, 246, 0.06);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.contact {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b10;
}

.contact-glow {
  position: absolute;
  bottom: -300px;
  left: -170px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.1);
  filter: blur(90px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.contact-copy > p {
  max-width: 440px;
  margin: 25px 0 36px;
  color: #858b9b;
  font-size: 14px;
}

.direct-links {
  display: grid;
  gap: 10px;
  max-width: 400px;
}

.direct-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform var(--transition), border-color var(--transition);
}

.direct-links a:hover {
  border-color: rgba(139, 92, 246, 0.38);
  transform: translateX(5px);
}

.direct-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: white;
  background: rgba(6, 182, 212, 0.08);
}

.direct-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.telegram-icon {
  color: #fff;
  background: linear-gradient(145deg, #2aabee, #168acd);
  box-shadow: 0 7px 20px rgba(42, 171, 238, 0.16);
}

.whatsapp-icon {
  color: #fff;
  background: linear-gradient(145deg, #2ed36f, #18a84e);
  box-shadow: 0 7px 20px rgba(37, 211, 102, 0.14);
}

.direct-links small,
.direct-links strong {
  display: block;
}

.direct-links small {
  color: #a0a6b4;
  font-size: 9px;
  font-weight: 500;
}

.direct-links strong {
  font-size: 11px;
}

.direct-links b {
  color: #6c7282;
  font-weight: 400;
}

.contact-form {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #a5a9b5;
  font-size: 12px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  outline: none;
  color: white;
  background: rgba(6, 7, 11, 0.6);
  font-size: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666c7b;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
  border-color: rgba(139, 92, 246, 0.55);
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  box-shadow:
    0 0 0 1000px #0a0b10 inset,
    0 0 0 3px rgba(139, 92, 246, 0.08);
  transition: background-color 9999s ease-out;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.form-consent {
  margin: -3px 0 20px;
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--violet);
  cursor: pointer;
}

.form-consent span {
  color: #858b9a;
  font-size: 10px;
  line-height: 1.55;
}

.form-consent a {
  color: #aaa3f5;
  text-decoration: underline;
  text-decoration-color: rgba(139, 92, 246, 0.45);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.form-consent a:hover {
  color: #d0cbff;
}

.form-footer p {
  max-width: 210px;
  margin: 0;
  color: #858b99;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.form-footer .button {
  min-width: 190px;
}

.form-status {
  min-height: 20px;
  margin-top: 13px;
  color: #72e18f;
  font-size: 10px;
}

.form-status.error {
  color: #ff8fa0;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}
.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #08080b;
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-row > .footer-brand-block {
  justify-self: start;
  align-self: start;
  margin-top: 8px;
}

.footer-brand-block {
  width: min(100%, 340px);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  padding: 4px 2px;
  color: #9298a7;
  transition: color var(--transition), text-shadow var(--transition), transform var(--transition);
}

.footer-email:hover {
  color: #31d5eb;
  text-shadow: 0 0 16px rgba(6, 182, 212, 0.42);
  transform: translateX(3px);
}

.footer-email-icon {
  display: none;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: #75e6f5;
  background: rgba(6, 182, 212, 0.08);
}

.footer-email-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.footer-email small,
.footer-email strong {
  display: inline;
}

.footer-email small {
  color: inherit;
  font-size: 10px;
}

.footer-email small::after {
  content: " · ";
}

.footer-email strong {
  color: inherit;
  font-size: 10px;
  font-weight: 500;
}

.footer-row > .footer-actions {
  justify-self: end;
}

.footer-row p {
  color: #c0c5d1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-copyright > span:last-child {
  color: #9399a8;
  font-size: 11px;
}

.footer-copyright a {
  margin-top: 3px;
  color: #8e94a4;
  font-size: 10px;
  text-decoration: underline;
  text-decoration-color: rgba(139, 92, 246, 0.35);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer-copyright a:hover {
  color: #c5c0ff;
}
.footer-actions {
  display: grid;
  justify-items: stretch;
  gap: 8px;
  min-width: 205px;
}

.footer-phone-link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(139, 92, 246, 0.025));
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.footer-phone-link::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(139, 92, 246, 0.09), transparent 80%);
  content: "";
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity var(--transition), transform 0.4s ease;
}

.footer-phone-link:hover,
.footer-phone-link.copied {
  border-color: rgba(139, 92, 246, 0.52);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.035));
  box-shadow: 0 0 28px rgba(79, 70, 229, 0.16), inset 0 0 18px rgba(139, 92, 246, 0.035);
  transform: translateY(-2px);
}

.footer-phone-link:hover::before {
  opacity: 1;
  transform: translateX(45%);
}

.footer-action-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: #75e6f5;
  background: rgba(6, 182, 212, 0.08);
}

.footer-action-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-action-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.footer-action-copy small,
.footer-action-copy strong {
  display: block;
}

.footer-action-copy small {
  overflow: hidden;
  color: #969cab;
  font-size: 9px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--transition);
}

.footer-action-copy strong {
  color: #f0f2f7;
  font-size: 11px;
  font-weight: 600;
}

.footer-phone-link:hover small {
  color: var(--cyan);
}

.footer-copy-icon {
  position: relative;
  z-index: 1;
  color: #9ba1b0;
  font-size: 13px;
  transition: color var(--transition), transform var(--transition);
}

.footer-phone-link:hover .footer-copy-icon {
  color: #b9b2ff;
  transform: scale(1.08);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 5px 3px;
  color: #aeb4c1;
  font-size: 11px;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-social-link span {
  color: var(--cyan);
}

.footer-social-link:hover {
  color: #0077ff;
  text-shadow: 0 0 16px rgba(0, 119, 255, 0.48);
}

.footer-social-link:hover span {
  color: #0077ff;
}

.copy-toast {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 12px 15px;
  border: 1px solid rgba(71, 209, 108, 0.3);
  border-radius: 13px;
  background: rgba(10, 17, 14, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38), 0 0 28px rgba(71, 209, 108, 0.08);
  opacity: 0;
  backdrop-filter: blur(18px);
  pointer-events: none;
  transform: translateY(12px) scale(0.97);
  transition: opacity var(--transition), transform var(--transition);
}

.copy-toast.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.copy-toast > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #8ee7a5;
  background: rgba(71, 209, 108, 0.1);
  font-size: 12px;
}

.copy-toast strong,
.copy-toast small {
  display: block;
}

.copy-toast strong {
  color: #dce5df;
  font-size: 10px;
}

.copy-toast small {
  margin-top: 2px;
  color: #727b75;
  font-size: 8px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  background: rgba(18, 17, 29, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  backdrop-filter: blur(12px);
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 17px;
  fill: none;
  stroke: #bbb4ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@media (min-width: 561px) and (max-width: 1350px) {
  .back-to-top {
    right: 20px;
    bottom: 118px;
  }

  .copy-toast {
    right: 20px;
    bottom: 174px;
  }
}

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

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

.services-grid .reveal:nth-child(2),
.benefits-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(3),
.benefits-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(4),
.benefits-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.25s; }

@media (max-width: 1050px) {
  .hero-layout {
    gap: 35px;
  }

  .hero-title {
    font-size: 56px;
  }

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

  .skill-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .nav-wrap {
    height: 68px;
  }

  .site-header .logo {
    max-width: calc(100% - 58px);
    font-size: 13px;
  }

  .site-header .logo {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 26px 16px 34px;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 9, 13, 0.97);
    opacity: 0;
    backdrop-filter: blur(18px);
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 135px 0 95px;
  }

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

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

  .eyebrow,
  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 580px);
    min-height: 450px;
    margin: 0 auto;
  }

  .code-window {
    right: 50%;
    transform: translateX(50%);
  }

  .code-window:hover {
    transform: translateX(50%) translateY(-5px);
  }

  .metric-performance {
    right: 1%;
  }

  .metric-responsive {
    left: 1%;
  }

  .scroll-hint {
    display: none;
  }

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

  .stat:nth-child(2)::after {
    display: none;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .stack-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .contact-copy .section-label {
    justify-content: center;
  }

  .contact-copy > p,
  .direct-links {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 115px;
  }

  .hero-title {
    font-size: clamp(39px, 12vw, 51px);
    letter-spacing: -2.7px;
  }

  .hero-typing-line {
    display: grid;
    width: 100%;
    white-space: normal;
  }

  .hero-typing-line::before {
    content: "которые\A удивляют|";
    white-space: pre;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-visual {
    min-height: 370px;
  }

  .code-window {
    top: 35px;
  }

  .window-bar {
    height: 42px;
  }

  .code-body {
    padding: 22px 15px;
    font-size: 10px;
  }

  .line-number {
    width: 26px;
  }

  .metric-performance {
    right: -6px;
    bottom: 10px;
  }

  .metric-responsive {
    bottom: -22px;
    left: -3px;
  }

  .section-title {
    font-size: 38px;
    letter-spacing: -2px;
  }

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

  .stat {
    padding: 24px 8px;
  }

  .stat strong {
    font-size: 25px;
  }

  .stat > span {
    font-size: 8px;
  }

  .about-copy > p {
    font-size: 15px;
  }

  .signature-row {
    flex-wrap: wrap;
  }

  .availability {
    width: 100%;
    margin: 15px 0 0 56px;
  }

  .stack-group {
    padding: 20px;
  }

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

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

  .tech-badge:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

  .service-card {
    min-height: 285px;
  }

  .process-step {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 28px 0;
  }

  .process-step:hover {
    padding: 28px 8px;
  }

  .step-time {
    grid-column: 2;
    width: max-content;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px;
  }

  .form-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "social social"
      "email phone"
      "brand brand"
      "copyright copyright";
    gap: 12px;
    text-align: center;
  }

  .footer-row > .footer-brand-block {
    display: contents;
  }

  .footer-brand-block .logo {
    grid-area: brand;
    justify-self: center;
    margin-top: 7px;
  }

  .footer-copyright {
    grid-area: copyright;
  }

  .footer-row > .footer-actions {
    display: contents;
  }

  .footer-email {
    grid-area: email;
    display: flex;
    gap: 10px;
    width: 100%;
    min-width: 0;
    height: 66px;
    margin-top: 0;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    color: inherit;
    background: rgba(255, 255, 255, 0.018);
    text-align: left;
  }

  .footer-email:hover {
    border-color: rgba(6, 182, 212, 0.32);
    color: inherit;
    background: rgba(6, 182, 212, 0.035);
    text-shadow: none;
    transform: translateY(-2px);
  }

  .footer-email-icon {
    display: grid;
  }

  .footer-email > span:last-child,
  .footer-action-copy {
    min-width: 0;
  }

  .footer-email small,
  .footer-email strong {
    display: block;
  }

  .footer-email small {
    color: #8e94a3;
    font-size: 8px;
  }

  .footer-email small::after {
    content: "";
  }

  .footer-email strong {
    overflow: hidden;
    color: #d8dbe4;
    font-size: 9px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer-actions {
    width: auto;
  }

  .footer-phone-link {
    grid-area: phone;
    width: 100%;
    min-width: 0;
    height: 66px;
    padding: 9px 11px;
  }

  .footer-phone-link .footer-copy-icon {
    display: none;
  }

  .footer-action-copy strong {
    font-size: 9px;
    white-space: nowrap;
  }

  .footer-social-link {
    grid-area: social;
    justify-content: center;
    justify-self: center;
    margin-bottom: 2px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  .copy-toast {
    right: 14px;
    bottom: 68px;
    left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
