@font-face {
  font-family: "PP Neue Montreal";
  src: url("pp-neue-montreal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg-light: #f5f5f7;
  --bg-surface: #ffffff;
  --bg-dark: #1d1d1f;
  --grey: #d8d8d8;
  --text-dark: #1d1d1f;
  --text-muted: rgba(29, 29, 31, 0.65);
  --text-light: #f5f5f7;
  --accent: #1d1d1f;
  --border: rgba(29, 29, 31, 0.08);
  --shadow: 0 12px 30px rgba(29, 29, 31, 0.08);
  --shadow-soft: 0 6px 18px rgba(29, 29, 31, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --transition: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "PP Neue Montreal", "Inter", system-ui, sans-serif;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

html {
  scroll-behavior: smooth;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1240px, 100% - 48px);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
  background: #fff;
}

.rustore.section {
  padding-bottom: 48px;
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: clamp(2rem, 1.4rem + 1.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.section-header p {
  margin-top: 12px;
  max-width: 640px;
  color: var(--text-muted);
}

.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  width: min(680px, 86%);
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.2)
    );
  border: none;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(36px) saturate(180%);
}

.header-inner::after {
  content: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.logo-image {
  height: 32px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-link {
  color: var(--text-muted);
  transition: color 0.2s var(--transition);
}

.nav-link.active,
.nav-link:hover {
  color: var(--text-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mode-switch {
  display: flex;
  padding: 4px;
  background: #f3f3ed;
  border: 1px solid var(--border);
  border-radius: 999px;
  gap: 4px;
}

.mode-pill {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.2s var(--transition);
}

.mode-pill[aria-pressed="true"] {
  background: var(--bg-dark);
  color: var(--text-light);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 999px;
  transition: background 0.2s var(--transition), transform 0.2s var(--transition);
}

.menu-trigger {
  background: transparent;
  border: none;
  box-shadow: none;
  width: auto;
  height: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.burger:hover {
  background: transparent;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #111;
}

.site-header.is-open .burger {
  transform: rotate(90deg);
}

.header-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(520px, 92%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--transition), transform 0.2s var(--transition);
}

.site-header.is-open .header-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.header-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.2)
    );
  border: none;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(30px) saturate(180%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition),
    background 0.2s var(--transition), border-color 0.2s var(--transition);
  cursor: pointer;
}

.button.primary {
  background: var(--bg-dark);
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.header-inner > .button {
  margin-left: auto;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--border);
}

.button.ghost {
  background: rgba(245, 245, 245, 0.15);
  border: 1px solid rgba(245, 245, 245, 0.4);
  color: var(--text-light);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(25, 27, 24, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  background-image: url("hero-bg-placeholder.jpg?v=2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  animation: heroFade 0.5s ease;
}

.hero-frame {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  border: 0.25px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 0.25px rgba(29, 29, 31, 0.02);
  pointer-events: none;
  z-index: 1;
}


.hero-cta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-family: "PP Neue Montreal", "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  text-shadow: none;
}

.hero-cta-buttons {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-cta .button {
  width: 260px;
  padding: 10px 18px;
  font-size: 0.95rem;
  border-radius: 999px;
  gap: 10px;
  min-height: 44px;
  justify-content: space-between;
}

.hero-cta .button.secondary {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: inherit;
  font-size: 0.9rem;
}

.button.primary .button-icon {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: min(360px, calc(100% - 32px));
    margin: 0 auto;
    gap: 12px;
    align-items: stretch;
  }
  .hero-cta .button {
    width: 100%;
    min-width: 0;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    padding: 0 16px;
    font-size: 0.875rem;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-cta .button .button-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    margin-left: 6px;
  }
}

.hero-info {
  padding-top: 72px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: 56px;
  align-items: center;
  color: var(--text-dark);
}

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

.sprint-widget {
  margin-top: 36px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f7f7f7;
  border: 1px solid rgba(29, 29, 31, 0.12);
  box-shadow: var(--shadow-soft);
  max-width: 520px;
}

.sprint-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sprint-tags span {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(29, 29, 31, 0.15);
  font-size: 0.75rem;
  color: rgba(29, 29, 31, 0.75);
  background: #fefefe;
}

.sprint-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sprint-head h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.sprint-dots {
  font-size: 1.2rem;
  color: rgba(29, 29, 31, 0.6);
}

.sprint-divider {
  height: 1px;
  background: rgba(29, 29, 31, 0.2);
  margin: 10px 0 14px;
}

.sprint-subtitle {
  color: rgba(29, 29, 31, 0.65);
  margin-bottom: 14px;
}

.sprint-metric {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sprint-value {
  font-size: 2.6rem;
  font-weight: 600;
}

.sprint-pill {
  border: 1px solid rgba(29, 29, 31, 0.2);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.85rem;
  color: rgba(29, 29, 31, 0.7);
  background: #fff;
}

.sprint-note {
  color: rgba(29, 29, 31, 0.6);
  font-size: 0.95rem;
}

.sprint-bars {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 4px;
}

.sprint-bar {
  height: 44px;
  border-radius: 6px;
  background: #e4e4e4;
  animation: sprintPulse 2.6s ease-in-out infinite;
}

.sprint-bar.is-active {
  background: #2f2f2f;
}

.sprint-bar.is-muted {
  background: #d3d3d3;
}

.sprint-bar:nth-child(odd) {
  animation-delay: 0.2s;
}

.sprint-bar:nth-child(3n) {
  animation-delay: 0.4s;
}

@keyframes sprintPulse {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-content h1 {
  letter-spacing: -0.02em;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 1.6rem + 2.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-content h1 .accent {
  display: block;
  background: linear-gradient(180deg, #232522, #d8d8d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin-top: 20px;
  font-size: clamp(1rem, 0.8rem + 0.6vw, 1.2rem);
  color: var(--text-muted);
}

.hero-bullets {
  margin: 24px 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-bullets li::before {
  content: "•";
  margin-right: 10px;
  color: rgba(29, 29, 31, 0.35);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-micro {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  max-width: 480px;
}

.hero-card .subtitle {
  color: var(--text-dark);
}

.hero-card .hero-bullets {
  list-style: none;
}

.hero-card .hero-bullets li {
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
}

.hero-card .hero-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(29, 29, 31, 0.6);
  font-weight: 500;
}

.hero-card-inner {
  display: grid;
  gap: 20px;
}

.hero-stat-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero-stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-stat-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card-cta {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.hero-card-cta .button {
  width: 100%;
  justify-content: center;
}

.rustore-landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.rustore-landing-hero-bg {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  background-image: url("rustore-hero.png?v=3");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.rustore-landing-hero-frame {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  border: 0.25px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 0.25px rgba(29, 29, 31, 0.02);
  pointer-events: none;
  z-index: 1;
}

.rustore-landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.rustore-landing-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.rustore-landing-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rustore-landing-mockup {
  width: min(420px, 100%);
  height: auto;
  display: block;
}

.rustore-landing-hero-copy h1 {
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 720px;
}

.rustore-landing-lead {
  color: #111;
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 680px;
}

.rustore-landing-cta {
  width: fit-content;
}

.rustore-landing-problem-grid,
.rustore-landing-value-grid,
.rustore-landing-industry-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rustore-landing-solution-grid,
.rustore-landing-about-grid,
.rustore-landing-cta-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.rustore-landing-solution-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.rustore-landing-solution h2 {
  letter-spacing: -0.02em;
}

.rustore-landing-solution p {
  color: var(--text-muted);
  margin-top: 10px;
}

.rustore-landing-mockup-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.rustore-slide {
  position: absolute;
  width: min(300px, 100%);
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(29, 29, 31, 0.12);
}

.rustore-slide.active {
  opacity: 1;
}

.rustore-landing-stats-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.rustore-landing-stat-inline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rustore-landing-stat-inline .stat-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.rustore-landing-stat-inline .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .rustore-landing-solution-inner {
    grid-template-columns: 1fr;
  }
  .rustore-landing-mockup-slider {
    min-height: 400px;
  }
  .rustore-slide {
    width: min(260px, 60%);
  }
}

.rustore-landing-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 22px 60px rgba(29, 29, 31, 0.08);
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition),
    border-color 0.25s var(--transition);
}

.rustore-landing-card h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.rustore-landing-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.rustore-landing-problem {
  position: relative;
  background: #fff;
}

.rustore-landing-problem .section-header {
  text-align: center;
  margin-bottom: 36px;
}

.rustore-landing-problem .section-header p {
  margin-left: auto;
  margin-right: auto;
}

.rustore-landing-problem::before {
  content: none;
}

.rustore-landing-problem .rustore-landing-card {
  position: relative;
  overflow: hidden;
}

.rustore-landing-problem .rustore-landing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(29, 29, 31, 0.08), transparent 60%);
  pointer-events: none;
}

.rustore-landing-problem .rustore-landing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.65), rgba(29, 29, 31, 0.2));
  opacity: 0.4;
}

.rustore-landing-problem .rustore-landing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(29, 29, 31, 0.14);
  border-color: rgba(29, 29, 31, 0.1);
}

.rustore-landing-problem-logo {
  position: relative;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  min-height: 220px;
  overflow: visible;
}

.rustore-landing-logo {
  width: min(1400px, 98%);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0;
}

.rustore-landing-logo-glow {
  display: none;
}

.rustore-landing-result {
  margin-top: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Industries block */
.rustore-industries-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.rustore-industry-card {
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f5 100%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
  box-shadow: 0 16px 50px rgba(29, 29, 31, 0.06);
}

.rustore-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(29, 29, 31, 0.12);
}

.rustore-industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(29, 29, 31, 0.06);
}

.rustore-industry-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rustore-industry-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.06);
}

.rustore-industry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.rustore-industry-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .rustore-industries-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.rustore-landing-value {
  background: #fff;
}

.rustore-value-header {
  text-align: center;
  margin-bottom: 40px;
}

.rustore-value-header p {
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.rustore-value-card {
  position: relative;
  background: linear-gradient(180deg, #1d1d1f 0%, #2a2a2e 100%);
  border-radius: 24px;
  padding: 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
}

.rustore-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(29, 29, 31, 0.22);
}

.rustore-value-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.rustore-value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rustore-value-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

.rustore-value-card p strong {
  color: #fff;
}

.rustore-value-accent {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .rustore-value-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.rustore-landing-stats {
  display: grid;
  gap: 18px;
}

.rustore-landing-stat {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f8 100%);
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: 0 16px 40px rgba(29, 29, 31, 0.08);
  overflow: hidden;
}

.rustore-landing-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.65), rgba(29, 29, 31, 0.2));
  opacity: 0.35;
}

.rustore-landing-stat .stat-value {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
}

.rustore-landing-stat .stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.rustore-landing-table {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.rustore-landing-price {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
  margin-bottom: 8px;
}

.rustore-landing-list {
  margin: 12px 0 0;
  padding-left: 0;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
  list-style: none;
}

.rustore-landing-list li {
  position: relative;
  padding-left: 20px;
}

.rustore-landing-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(29, 29, 31, 0.5);
  font-weight: 500;
}

.rustore-landing-table .table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f7f7;
}

.rustore-landing-table .table-head {
  background: #1d1d1f;
  color: #fff;
  font-weight: 600;
}

.rustore-landing-economics-note {
  margin-top: 16px;
  color: var(--text-muted);
}

/* Economics block redesign */
.rustore-economics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.rustore-economics-left h2 {
  font-size: clamp(2rem, 1.4rem + 1.6vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.rustore-economics-sub {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.rustore-economics-price-block {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.rustore-economics-new-price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.rustore-economics-old-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.rustore-economics-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rustore-economics-cta {
  margin-top: 24px;
  padding: 14px 28px;
  font-size: 1rem;
}

.rustore-economics-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rustore-economics-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rustore-economics-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}

.rustore-economics-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.rustore-economics-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.rustore-economics-bonus {
  padding: 12px 14px;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f6 100%);
  border-radius: 14px;
  border: 1px solid rgba(29, 29, 31, 0.06);
}

.rustore-economics-bonus-val {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(29, 29, 31, 0.06);
  padding: 2px 8px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .rustore-economics-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.rustore-landing-about-grid ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.rustore-landing-form {
  display: grid;
  gap: 14px;
}

.rustore-landing-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.rustore-landing-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .rustore-landing-hero-grid,
  .rustore-landing-solution-grid,
  .rustore-landing-about-grid,
  .rustore-landing-cta-grid {
    grid-template-columns: 1fr;
  }
  .rustore-landing-problem-grid,
  .rustore-landing-value-grid,
  .rustore-landing-industry-grid {
    grid-template-columns: 1fr;
  }
  .rustore-landing-hero {
    padding-top: 140px;
    padding-bottom: 64px;
  }
  .rustore-landing-mockup {
    width: min(360px, 100%);
  }
}

@media (max-width: 640px) {
  .rustore-landing-hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }
  .rustore-landing-table .table-row {
    grid-template-columns: 1fr;
  }
  .rustore-landing-hero-copy h1 {
    font-size: clamp(2rem, 1.6rem + 2.2vw, 2.8rem);
  }
  .rustore-landing-lead {
    font-size: 1rem;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-card {
    width: min(520px, 100%);
  }
}

.hero-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(216, 216, 216, 0.2), transparent 60%);
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.fit-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.yes-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.fit-card-content {
  display: grid;
  gap: 18px;
}

.yes-rotator {
  --yes-size: 72px;
  width: 200px;
  height: var(--yes-size);
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fafafa;
  border: 1px solid rgba(29, 29, 31, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.no-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.no-rotator {
  background: #fff;
  border: 1px solid #1d1d1f;
  box-shadow: none;
}

.yes-rotator-track {
  display: flex;
  flex-direction: column;
  animation: yesFlip 14s ease-in-out infinite;
}

.yes-rotator span {
  height: var(--yes-size);
  line-height: var(--yes-size);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
}

@keyframes yesFlip {
  0%,
  18% {
    transform: translateY(0);
  }
  20%,
  38% {
    transform: translateY(calc(-1 * var(--yes-size)));
  }
  40%,
  58% {
    transform: translateY(calc(-2 * var(--yes-size)));
  }
  60%,
  78% {
    transform: translateY(calc(-3 * var(--yes-size)));
  }
  80%,
  98% {
    transform: translateY(calc(-4 * var(--yes-size)));
  }
  100% {
    transform: translateY(0);
  }
}

.fit-card.muted {
  background: transparent;
  border: 1px solid #1d1d1f;
  box-shadow: none;
}

.fit-card ul {
  margin-top: 6px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.fit-card ul li {
  position: relative;
  padding-left: 20px;
}

.fit-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(29, 29, 31, 0.6);
  font-weight: 500;
}

.fit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

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

.process-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #ffffff 0%, #f8f8fa 50%, #f0f0f4 100%);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.process-card:hover .step {
  color: var(--text-dark);
}

.process-card:hover h3 {
  color: var(--text-dark);
}

.step {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-card h3 + .step-time {
  margin-top: -0.25rem;
}

.step-time {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.process-card ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.process-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}

.tab {
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.tab.active {
  background: var(--bg-dark);
  color: var(--text-light);
  box-shadow: 0 6px 16px rgba(29, 29, 31, 0.2);
}

.pricing-panels {
  display: grid;
  gap: 20px;
}

.pricing-card {
  display: none;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  opacity: 0.6;
  transform: translateY(-5%) scale(0.95);
  transition: all 0.35s var(--transition);
  position: relative;
}

.pricing-card.active {
  display: grid;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pricing-card[data-panel="flash"] {
  background: #f8c124;
  border: 1px solid rgba(34, 34, 34, 0.15);
  box-shadow: 0 18px 50px rgba(34, 34, 34, 0.12);
}

.pricing-card[data-panel="flash"] .pricing-title h3 {
  color: #1c1c1c;
}

.pricing-card[data-panel="flash"] .pricing-tagline,
.pricing-card[data-panel="flash"] .pricing-note,
.pricing-card[data-panel="flash"] .pricing-hint,
.pricing-card[data-panel="flash"] .pricing-micro {
  color: rgba(28, 28, 28, 0.7);
}

.pricing-card[data-panel="flash"] .pricing-accordion details {
  background: transparent;
  border: none;
}

.pricing-card[data-panel="flash"] .pricing-accordion summary::after {
  background: rgba(34, 34, 34, 0.08);
  color: rgba(34, 34, 34, 0.65);
}

.pricing-card[data-panel="flash"] .guarantee {
  background: transparent;
  border: 1px solid rgba(34, 34, 34, 0.2);
}

.pricing-card[data-panel="flash"] .button.primary {
  background: #1c1c1c;
  color: #fff;
}

.pricing-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 220px;
  height: 180px;
  background-image: url("iconsprint.png");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
  pointer-events: none;
  opacity: 0.95;
}

.pricing-icon-mvp {
  background-image: url("iconmac.png");
}

.pricing-icon-flash {
  background-image: url("icongrom4.png");
}

@media (max-width: 900px) {
  .pricing-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 160px;
    height: 130px;
  }
}

.pricing-title h3 {
  font-size: 1.4rem;
  line-height: 1.2;
}

.pricing-tagline {
  margin-top: 6px;
  color: var(--text-muted);
}

.pricing-meta h4 {
  font-size: 1.4rem;
  margin: 6px 0;
}

@media (max-width: 640px) {
  .pricing-title,
  .pricing-meta {
    padding-right: 110px;
  }
  .pricing-tagline {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .pricing-meta h4 {
    white-space: nowrap;
    font-size: 1.3rem;
  }
  .pricing-meta h4 .price-range {
    display: inline;
    white-space: nowrap;
  }
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-block {
  display: grid;
  gap: 10px;
}

.pricing-block h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

.pricing-block ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-block ul li {
  position: relative;
  padding-left: 18px;
}

.pricing-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(29, 29, 31, 0.6);
}

.pricing-accordion {
  display: grid;
  gap: 10px;
}

.pricing-accordion details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
}

.pricing-card[data-panel="flash"] .pricing-accordion details {
  border-radius: 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  box-shadow: none;
}

.pricing-accordion summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}

.pricing-accordion summary::after {
  content: "+";
  font-size: 1.1rem;
  color: rgba(29, 29, 31, 0.6);
}

.pricing-accordion details[open] summary::after {
  content: "–";
}

.pricing-accordion details ul {
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-accordion details p {
  margin-top: 8px;
  color: var(--text-muted);
}

.pricing-accordion details ul li {
  position: relative;
  padding-left: 18px;
}

.pricing-accordion details ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(29, 29, 31, 0.6);
  font-weight: 500;
}

.pricing-hint {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-micro {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-time {
  font-weight: 600;
  color: rgba(25, 27, 24, 0.6);
}

.guarantee {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.guarantee span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-extras {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.extras-column {
  display: grid;
  gap: 0;
}

.extras-column .extra-card:last-child {
  border-bottom: none;
}

.extra-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(29, 29, 31, 0.16);
  border-radius: 0;
  padding: 12px 0 16px;
  box-shadow: none;
  display: grid;
  gap: 10px;
}

.extra-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.extra-items span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  color: rgba(29, 29, 31, 0.7);
}

.compare-grid {
  display: grid;
  gap: 6px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(29, 29, 31, 0.7);
}

.faq {
  display: grid;
  gap: 0;
}

.faq h3 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.faq details {
  border: none;
  border-bottom: 1px solid rgba(29, 29, 31, 0.16);
  padding: 16px 0;
  background: transparent;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: rgba(29, 29, 31, 0.85);
  font-size: 1.05rem;
  position: relative;
  padding-right: 56px;
}

.faq p {
  margin-top: 10px;
  color: var(--text-muted);
}

.faq summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.06);
  color: rgba(29, 29, 31, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: absolute;
  right: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.mvp-visual-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px;
  min-height: 420px;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 20px;
  color: #111;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.mvp-visual-content {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.mvp-visual-content::before {
  content: "";
  position: absolute;
  inset: -12px -16px -20px -16px;
  border-radius: 16px;
  background: rgba(245, 245, 247, 0.85);
  z-index: -1;
}

.mvp-visual-content h2 {
  font-size: clamp(1.6rem, 1.1rem + 1.2vw, 2.2rem);
  line-height: 1.2;
  color: #111;
}

.mvp-visual-content h2 .accent {
  display: block;
  background: linear-gradient(180deg, #3b3f45, #9aa0a6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mvp-visual-content p {
  color: rgba(17, 17, 17, 0.78);
}

.mvp-visual-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.mvp-visual-content ul li {
  position: relative;
  padding-left: 18px;
}

.mvp-visual-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(17, 17, 17, 0.6);
}

.mvp-visual-disclaimer {
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.68);
}

.mvp-visual-cta {
  display: grid;
  align-content: start;
  gap: 12px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.mvp-visual-cta p {
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .mvp-visual-card {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 24px;
  }
  .pricing-extras {
    grid-template-columns: 1fr;
  }
}

.mvp-visual-media {
  position: relative;
  border-radius: 18px;
  background-image: url("Generated.jpeg");
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
  min-height: 440px;
  height: 100%;
  border: none;
}

.mvp-visual-frame {
  display: none;
}

.rustore {
  background: var(--bg-dark);
  color: var(--text-light);
}

.rustore .section-header {
  text-align: center;
}

.rustore .section-header p {
  margin-left: auto;
  margin-right: auto;
}

.rustore-stats {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-120px);
}

.rustore-stats h3 {
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.rustore-stats p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .rustore-stats h3 {
    margin-bottom: 6px;
  }
  .rustore-stats p {
    margin-top: 6px;
    line-height: 1.35;
  }
}

.rustore-map {
  position: relative;
  height: 480px;
  margin: 24px auto 32px;
  max-width: 1200px;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.rustore-coverflow {
  display: grid;
  align-items: center;
}

.rustore-coverflow::before {
  content: none;
}

.coverflow-hint {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.rustore-swiper {
  width: 100%;
  height: 100%;
  padding: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  cursor: grab;
}

.rustore-swiper:active {
  cursor: grabbing;
}

.rustore-swiper .swiper-slide {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  pointer-events: auto;
  cursor: grab;
}

.rustore-swiper .swiper-slide:active {
  cursor: grabbing;
}

.coverflow-card {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: #f7f7f7;
  background-size: cover;
  background-position: center;
  background-size: 108%;
  background-repeat: no-repeat;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}


@media (max-width: 900px) {
  .rustore-map {
    height: 420px;
  }
  .rustore-swiper .swiper-slide {
    width: 220px;
    height: 250px;
  }
  .rustore.section {
    padding-bottom: 24px;
  }
}

.map-card {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f5f5f5;
  color: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: floatMap 16s ease-in-out infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.map-card h3 {
  margin: 0;
  font-size: 1rem;
}

.map-card .status {
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.85rem;
  margin-top: 2px;
}

.map-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.map-cube {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(160deg, #2b2b2f, #151518);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: floatMap 18s ease-in-out infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.map-cube--dark {
  background: linear-gradient(160deg, #0f0f10, #070708);
}

.map-cube--accent {
  background: linear-gradient(160deg, #e7f57a, #9fd332);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.pos-1 {
  left: 40px;
  top: 40px;
  width: 240px;
}

.pos-2 {
  right: 60px;
  top: 20px;
  width: 220px;
  animation-delay: -6s;
}

.pos-3 {
  left: 260px;
  top: 190px;
  width: 220px;
  animation-delay: -10s;
}

.pos-4 {
  right: 40px;
  bottom: 50px;
  width: 230px;
  animation-delay: -3s;
}

.pos-5 {
  left: 80px;
  bottom: 40px;
  width: 220px;
  animation-delay: -8s;
}

.pos-6 {
  left: 520px;
  top: 80px;
  width: 110px;
  height: 140px;
  animation-delay: -5s;
}

.pos-7 {
  right: 280px;
  bottom: 30px;
  width: 120px;
  height: 150px;
  animation-delay: -9s;
}

.pos-8 {
  left: 140px;
  top: 230px;
  width: 90px;
  height: 110px;
  animation-delay: -7s;
}

.pos-9 {
  right: 120px;
  top: 140px;
  width: 90px;
  height: 110px;
  animation-delay: -11s;
}

@keyframes floatMap {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 900px) {
  .rustore-map {
    height: 460px;
  }
  .map-card {
    width: 200px;
  }
  .pos-1 {
    left: 20px;
    top: 20px;
  }
  .pos-2 {
    right: 20px;
    top: 80px;
  }
  .pos-3 {
    left: 40px;
    top: 220px;
  }
  .pos-4 {
    right: 20px;
    bottom: 40px;
  }
  .pos-5 {
    left: 30px;
    bottom: 30px;
  }
  .pos-6,
  .pos-7,
  .pos-8,
  .pos-9 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-card,
  .map-cube {
    animation: none;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg-dark), transparent 20%, transparent 80%, var(--bg-dark));
  z-index: 2;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: marquee 18s linear infinite;
}

.rustore-card {
  min-width: 260px;
  background: rgba(245, 245, 245, 0.1);
  padding: 20px;
  border-radius: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(245, 245, 245, 0.15);
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(150, 241, 107, 0.2);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.status {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.85rem;
}

.cases-section .container {
  position: relative;
}

.cases-section .container::before {
  content: none;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: 140px;
}

.case-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(29, 29, 31, 0.12);
}

.case-card.case-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.case-card.case-tall {
  grid-row: span 3;
}

.case-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.95);
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(29, 29, 31, 0.12));
}

.case-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  color: var(--text-light);
  background: linear-gradient(180deg, rgba(29, 29, 31, 0.05), rgba(29, 29, 31, 0.55));
  opacity: 0;
  transform: translateY(30%);
  backdrop-filter: blur(16px);
  transition: transform 0.35s var(--transition), opacity 0.35s var(--transition);
}

.case-card:hover .case-overlay,
.case-card:focus-within .case-overlay {
  opacity: 1;
  transform: translateY(0);
}

.case-overlay h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.case-overlay p {
  font-size: 0.9rem;
  color: rgba(245, 245, 247, 0.86);
}

.case-media-ditto {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("case-ditto.jpg");
  background-color: #d9d9d9;
}

.case-media-illustration {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("case-illustration.jpg");
  background-color: #cfe9d6;
}

.case-media-midfunnel {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
    url("case-midfunnel.jpg");
  background-color: #2a2458;
}

.case-media-book {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("case-book.jpg");
  background-color: #79b7ce;
}

.case-media-utility {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("case-utility.jpg");
  background-color: #1f2226;
}

.case-media-super {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08)),
    url("case-super.jpg");
  background-color: #8fc6db;
}

@media (max-width: 900px) {
  .cases-section .container::before {
    top: -20px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .case-card.case-wide,
  .case-card.case-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

.trust {
  background: var(--bg-light);
}

/* Nothing Style Block - Light Version */
.nothing-section {
  background: var(--bg-body);
}

.nothing-block {
  width: 100%;
}

.nothing-header {
  margin-bottom: 2.5rem;
}

.nothing-header h2 {
  color: var(--text-dark);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.nothing-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
}

.nothing-columns {
  display: flex;
  gap: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.nothing-col {
  flex: 1;
  padding: 2rem;
}

.nothing-divider {
  width: 1px;
  background: var(--border);
}

.nothing-col-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.nothing-dot {
  display: none;
}

.nothing-label {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.nothing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nothing-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.nothing-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.nothing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.nothing-feature {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nothing-feature-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.nothing-feature-text {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .nothing-columns {
    flex-direction: column;
  }
  
  .nothing-divider {
    width: 100%;
    height: 1px;
  }
  
  .nothing-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nothing-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .nothing-features {
    grid-template-columns: 1fr;
  }
}

.about {
  background: var(--bg-body);
}

.about-header {
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.about-desc {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 100%;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.about-desc strong {
  font-weight: 600;
  color: var(--text-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.team-cell {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  perspective: 1000px;
}

.team-cell-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Карточка переворачивается и остаётся перевёрнутой */
.team-cell.flipped .team-cell-inner {
  transform: rotateY(180deg);
}

.team-cell-front,
.team-cell-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.team-cell-front {
  background: url('cards2.png') no-repeat;
  background-size: 500% 200%;
}

.team-cell-back {
  background: transparent;
  transform: rotateY(180deg);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.2rem;
  box-sizing: border-box;
}

.team-cell-back p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0;
}

/* Стили для информации о команде */
.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.team-stack-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-top: 0.3rem;
}

.team-stack {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

/* CTA карточка */
.team-cell-back-cta {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  background: transparent;
}

.team-cell-back-cta .cta-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.2;
}

.team-cell-back-cta .cta-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.team-cell-back-cta .cta-btn:hover {
  background: var(--accent);
}

/* Фото для каждой карточки */
.team-cell:nth-child(1) .team-cell-front { background-position: 0% 0%; }
.team-cell:nth-child(2) .team-cell-front { background-position: 25% 0%; }
.team-cell:nth-child(3) .team-cell-front { background-position: 50% 0%; }
.team-cell:nth-child(4) .team-cell-front { background-position: 75% 0%; }
.team-cell:nth-child(5) .team-cell-front { background-position: 100% 0%; }
.team-cell:nth-child(6) .team-cell-front { background-position: 0% 100%; }
.team-cell:nth-child(7) .team-cell-front { background-position: 25% 100%; }
.team-cell:nth-child(8) .team-cell-front { background-position: 50% 100%; }
.team-cell:nth-child(9) .team-cell-front { background-position: 75% 100%; }
.team-cell:nth-child(10) .team-cell-front { background-position: 100% 100%; }

/* Шахматный порядок на обратной стороне:
   Нечётные (1,3,5,7,9) — фото на back
   Чётные (2,4,6,8,10) — текст на back */
.team-cell:nth-child(odd) .team-cell-back {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

/* Индивидуальные фото для обратной стороны нечётных карточек */
.team-cell:nth-child(1) .team-cell-back { background-image: url('card_1.png'); }
.team-cell:nth-child(3) .team-cell-back { background-image: url('card_2.png'); }
.team-cell:nth-child(7) .team-cell-back { background-image: url('card_3.png'); }
.team-cell:nth-child(9) .team-cell-back { background-image: url('card_4.png'); }

/* Карточка 5 — CTA без фото */
.team-cell:nth-child(5) .team-cell-back {
  background-image: none;
  padding: 1.5rem;
}

/* Чётные (2,4,6,8,10) — текст на прозрачном фоне */

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Mobile: show back side by default */
  .team-cell-inner {
    transform: rotateY(180deg);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Mobile chess layout:
     Row 1: Никита - фото(1) слева, текст(2) справа ✓
     Row 2: Станислав - текст(6) слева, фото(7) справа - swap 6↔7
     Row 3: Сергей - текст(4) слева, фото(3) справа - swap 3↔4
     Row 4: Рамиль - текст(8) слева, фото(9) справа ✓ (в конце)
     Hide CTA(5) and empty cards(10) */
  .team-grid .team-cell:nth-child(3) { order: 5; }
  .team-grid .team-cell:nth-child(4) { order: 6; }
  .team-grid .team-cell:nth-child(5) { display: none; }
  .team-grid .team-cell:nth-child(6) { order: 3; }
  .team-grid .team-cell:nth-child(7) { order: 4; }
  .team-grid .team-cell:nth-child(8) { order: 7; }
  .team-grid .team-cell:nth-child(9) { order: 8; }
  .team-grid .team-cell:nth-child(10) { display: none; }
}

.final-cta {
  background: var(--bg-body);
  color: var(--text-dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.booking-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.booking-text h2 span {
  color: #9a9a9a;
}

.booking-card {
  background: #e2e2e2;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow:
    18px 18px 35px rgba(0, 0, 0, 0.12),
    -12px -12px 24px rgba(255, 255, 255, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: grid;
  gap: 1rem;
}

.booking-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cfcfcf;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(255, 255, 255, 0.6);
}

.booking-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #444;
}

.booking-card p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: #f5f5f5;
  border-radius: 999px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.12),
    -6px -6px 12px rgba(255, 255, 255, 0.8);
}

.booking-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #777;
}

.booking-meta a {
  color: #444;
  text-decoration: none;
  font-weight: 600;
}

.cal-embed {
  margin-top: 1rem;
  padding: 1.5rem;
  background: #ececec;
  border-radius: 16px;
  color: #888;
  font-size: 0.9rem;
  text-align: center;
  border: 1px dashed #c8c8c8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    8px 8px 18px rgba(0, 0, 0, 0.08),
    -6px -6px 14px rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .final-cta {
    padding: 56px 0;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .booking-text {
    text-align: center;
    margin-top: -40px !important;
    order: -1;
    margin-bottom: 120px !important;
  }
  .booking-text h2 {
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
  }
  .booking-card {
    order: 1;
    margin: 0;
  }
}

.form-card label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.form-card input,
.form-card textarea,
.form-card select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(245, 245, 245, 0.12);
  color: var(--text-light);
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: rgba(245, 245, 245, 0.5);
}

.form-status {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.7);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.footer {
  padding: 80px 0 32px;
}

.footer-inner {
  display: grid;
  gap: 32px;
}

.footer-biglogo {
  width: 100%;
}

.footer-biglogo img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: grayscale(100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.footer-bottom {
  display: grid;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 12px 24px;
  align-items: start;
  color: var(--text-muted);
}

.footer-col {
  display: grid;
  gap: 6px;
  font-size: 0.8rem;
}

.footer-col-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 2px;
}

.footer-col a,
.footer-col span {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-copy {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.75rem;
}

@media (max-width: 700px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

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

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
  }
  .burger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 24px;
  }
  .header-inner > .button.primary {
    display: none;
  }
  .hero {
    padding-top: 120px;
  }
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .slider-track {
    animation-duration: 24s;
  }
  /* Remove black circle from the menu button on mobile */
  .menu-trigger {
    background: transparent;
  }
  .burger:hover {
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
