:root {
  --bg: #050708;
  --bg-elevated: #0b0f10;
  --bg-muted: #11161a;
  --accent: #22e17a;
  --accent-soft: rgba(34, 225, 122, 0.18);
  --text: #f5f7f8;
  --text-muted: #89929b;
  --border-subtle: #1d242b;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --transition-fast: 0.2s ease-out;
  --container: 1120px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #151922 0, var(--bg) 42%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Layout utils */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
}

.section--muted {
  background: radial-gradient(circle at top left, #151922 0, var(--bg-elevated) 38%);
}

.section__title {
  font-size: 32px;
  margin: 0 0 24px;
}

.section__subtitle {
  margin: 0 0 40px;
  color: var(--text-muted);
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 8, 0.9), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at top, var(--accent), #138b4b);
  color: #050708;
  font-weight: 700;
  font-size: 16px;
}

.logo__text {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  color: var(--accent);
}

/* Burger */

.burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(5, 7, 8, 0.8);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* Hero */

.hero {
  padding: 80px 0 90px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  margin: 0 0 24px;
  color: var(--text-muted);
  max-width: 450px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__bullets li {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(10, 14, 16, 0.8);
}

/* Hero visual */

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero-mockup {
  width: 100%;
  max-width: 360px;
  padding: 16px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, #101720, #050708);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.hero-mockup__screen {
  position: relative;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top, #070d12 0, #050708 45%, #040506 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
}

.hero-mockup__gradient {
  height: 180px;
  border-radius: 18px;
  background: conic-gradient(
    from 160deg,
    var(--accent),
    #26baff,
    #955cff,
    #26baff,
    var(--accent)
  );
  filter: blur(16px);
  opacity: 0.9;
  transform: scale(1.2);
}

.hero-mockup__label {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 14px;
}

.hero-mockup__caption {
  margin: 12px 4px 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero wireframe inside mockup */

.hero-wireframe {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.hero-wireframe__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-wireframe__topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.hero-wireframe__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-wireframe__title {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  width: 80%;
}

.hero-wireframe__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
}

.hero-wireframe__line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-wireframe__line--wide {
  width: 90%;
}

.hero-wireframe__line--mid {
  width: 70%;
}

.hero-wireframe__line--short {
  width: 45%;
}

.hero-wireframe__cta-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.hero-wireframe__btn {
  height: 24px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.hero-wireframe__btn--primary {
  width: 44%;
  background: linear-gradient(120deg, #00e676, #00b894);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.35);
}

.hero-wireframe__btn--ghost {
  width: 32%;
  background: rgba(255, 255, 255, 0.05);
}

.hero-wireframe__cards {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.hero-wireframe__pill {
  flex: 1;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), rgba(10, 14, 18, 0.95));
}

.hero-wireframe__banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #00e676, #00b894 25%, #0044ff 60%, #050708 100%);
}

.hero-wireframe__banner-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.25), transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(0, 0, 0, 0.65), transparent 55%);
  opacity: 0.9;
}

/* Buttons */

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #0dd164);
  color: #050708;
  box-shadow: 0 8px 25px rgba(24, 220, 118, 0.3);
  font-weight: 600;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(24, 220, 118, 0.4);
}

.btn--ghost {
  background: rgba(5, 7, 8, 0.8);
  color: var(--text);
  border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
  background: rgba(14, 20, 24, 0.95);
}

.btn--full {
  width: 100%;
}

/* Grid */

.grid {
  display: grid;
  gap: 22px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */

.card {
  background: rgba(6, 10, 12, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.card__title {
  margin: 0 0 8px;
  font-size: 17px;
}

.card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* Work card */

.work-card {
  background: rgba(6, 10, 12, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-card__thumb {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(37, 166, 255, 0.14));
  height: 150px;
}

.work-card__title {
  margin: 0;
  font-size: 16px;
}

.work-card__tag {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Showcase (карусель мини-лендингов) ---------- */

.showcase {
  margin-top: 24px;
  margin-bottom: 64px;
  background: radial-gradient(circle at top left, #151c26 0, #050708 55%);
  border-radius: 22px;
  padding: 12px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.75);
}

.showcase__viewport {
  position: relative;
  height: 420px;
  border-radius: 24px; /* единый монитор */
  overflow: hidden;
  background: #050708;
  margin-bottom: 12px;
}

.showcase__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch; /* растягиваем ребёнка на всю ширину */
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.showcase__slide--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Нижняя полоса с кнопками */

.showcase__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.showcase__thumb {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(5, 7, 8, 0.9);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.showcase__thumb-title {
  font-size: 12px;
  color: var(--text);
}

.showcase__thumb-tag {
  opacity: 0.75;
}

.showcase__thumb--active {
  border-color: var(--accent);
  background: rgba(5, 7, 8, 0.98);
  transform: translateY(-1px);
}

.showcase__thumb:hover {
  border-color: var(--accent);
}

/* ---------- Мини-лендинги внутри карусели ---------- */

.mock {
  position: relative;
  inset: 0;
  padding: 28px 32px 22px; /* чуть больше воздуха */
  display: flex;
  flex-direction: column;
  gap: 18px;

  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
}

/* Цветовые темы */

.mock--services {
  background: radial-gradient(circle at top left, #102119, #030607);
}

.mock--ecom {
  background: radial-gradient(circle at top right, #101a28, #030607);
}

.mock--expert {
  background: radial-gradient(circle at center, #181320, #040607);
}

.mock--services,
.mock--ecom,
.mock--expert {
  border-radius: 0;                 /* без внутренней рамки */
  border: none;
  box-shadow: none;
}

/* Хедер */

.mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.mock__logo,
.mock__logo--circle {
  width: 34px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.mock__logo--circle {
  border-radius: 999px;
  width: 26px;
  height: 26px;
}

.mock__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.mock__header-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock__header-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.mock__header-line--main {
  width: 42%;
}

.mock__header-line--sub {
  width: 26%;
  opacity: 0.7;
}

.mock__header-dots {
  display: flex;
  gap: 4px;
}

.mock__header-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mock__header-tags {
  display: flex;
  gap: 6px;
}

.mock__header-tags span {
  width: 40px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.mock__header-badge {
  width: 70px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

/* Тело */

.mock__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.mock__body--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.mock__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock__hero-line {
  width: 75%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.mock__line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mock__line--wide {
  width: 82%;
}

.mock__line--medium {
  width: 60%;
}

.mock__line--short {
  width: 40%;
}

.mock__cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.mock__cta-pill {
  width: 110px;
  height: 20px;
  border-radius: 999px;
  background: rgba(34, 225, 122, 0.6);
}

.mock__cta-sub {
  width: 80px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

/* Картинки */

.mock__image {
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.mock__image--left {
  background: radial-gradient(circle at top right, rgba(0, 200, 150, 0.6), transparent 60%),
              radial-gradient(circle at bottom left, rgba(0, 120, 255, 0.4), transparent 60%);
  height: 190px;
}

.mock__image--grid {
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.3), rgba(150, 90, 255, 0.4)),
    repeating-linear-gradient(0deg, rgba(3, 6, 8, 0.6) 0, rgba(3, 6, 8, 0.6) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(90deg, rgba(3, 6, 8, 0.6) 0, rgba(3, 6, 8, 0.6) 1px, transparent 1px, transparent 16px);
  height: 210px;
}

.mock__image--portrait {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(255, 100, 140, 0.55), transparent 65%);
  height: 210px;
}

/* Нижняя полоса фичей */

.mock__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.mock__features--grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mock__feature {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 10, 0.6);
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.mock__feature-line {
  width: 70%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 6px;
}

.mock__feature-sub {
  width: 50%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.mock__feature--card {
  height: 56px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(5, 8, 10, 0.75));
}

.mock__feature-pill {
  width: 60%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

/* Адаптив showcase */

@media (max-width: 960px) {
  .showcase__viewport {
    height: 360px;
  }

  .mock__body {
    grid-template-columns: 1fr;
  }

  .mock__image--left,
  .mock__image--grid,
  .mock__image--portrait {
    height: 150px;
  }

  .mock__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock__features--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .showcase {
    padding: 16px 14px 14px;
  }

  .showcase__viewport {
    height: 300px;
  }

  .showcase__rail {
    grid-template-columns: 1fr;
  }

  .mock {
    padding: 18px 16px 16px;
  }
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  background: rgba(6, 10, 12, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 16px 16px 14px;
}

.step__num {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 8px;
}

.step__title {
  margin: 0 0 6px;
  font-size: 15px;
}

.step__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

/* Pricing */

.pricing {
  display: flex;
  justify-content: center;
  gap: 24px;          /* расстояние между карточками */
  flex-wrap: wrap;    /* чтобы на мобиле уходили в столбик */
  align-items: stretch;
}

.pricing-card {
  max-width: 360px;
  width: 100%;
  background: radial-gradient(circle at top, #151c26 0, #050708 42%);
  border-radius: var(--radius-xl);
  padding: 24px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);

  display: flex;           /* чтобы внутри всё было колонкой */
  flex-direction: column;  /* и кнопка прижималась к низу */
}

.pricing-card__title {
  margin: 0 0 6px;
}

.pricing-card__price {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
}

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;   /* чуть больше отступ до кнопки */
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-card__list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.pricing-card__list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--accent);
}

.pricing-card__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* прижимаем кнопки к низу карточки, чтобы были на одном уровне */
.pricing-card .btn--full {
  margin-top: auto;
}


/* About */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.about__text p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.about__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.about-photo {
  width: 260px;
  height: 260px;
  border-radius: 32px;
  background: radial-gradient(circle at top, #0c1620 0, #05070a 55%, #020304 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* “Логотип” FF / FastForge внутри квадрата */
.about-photo::before {
  content: "FastForge";
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 230, 118, 0.55), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(0, 136, 255, 0.4), transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(255, 0, 128, 0.35), transparent 60%);
  opacity: 0.9;
  filter: blur(2px);
}

.about-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 7, 8, 0.9);
  border: 1px solid var(--accent-soft);
  font-size: 12px;
  color: var(--text-muted);
}

.about-badge span:first-child {
  color: var(--accent);
  font-weight: 600;
  margin-right: 8px;
}

/* Contact */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 32px;
}

.contact__text p {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  font-size: 14px;
}

.contact__list li + li {
  margin-top: 4px;
}

.contact__list a {
  color: var(--accent);
  text-decoration: none;
}

.contact__list a:hover {
  text-decoration: underline;
}

/* Contact */

.contact-cta {
  background: rgba(6, 10, 12, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cta__title {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

.contact-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-cta__list li {
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}

.contact-cta__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}


/* Footer */

.footer {
  border-top: 1px солид rgba(255, 255, 255, 0.04);
  padding: 16px 0 20px;
  background: rgba(5, 7, 8, 0.96);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.footer__small {
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__visual {
    justify-content: flex-start;
  }

  .about,
  .contact,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-auto-rows: auto;
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase__viewport {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    height: 60px;
  }

  /* Мобильное меню: фулл-скрин шторка, 2 колонки кнопок */
  .nav {
    position: fixed;
    inset: 60px 0 0; /* отступ сверху = высота шапки */
    padding: 20px 18px 24px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    align-content: flex-start;
    justify-items: stretch;

    background: radial-gradient(circle at top, rgba(11, 15, 18, 0.96), rgba(5, 7, 8, 0.92));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);

    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--transition-fast),
      opacity var(--transition-fast);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Кнопки в шторке */
  .nav__link {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(8, 11, 13, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 13px;
  }

  .nav__link::after {
    display: none; /* убираем нижнюю полоску-ховер */
  }

  .nav__link--cta {
    background: linear-gradient(135deg, var(--accent), #0dd164);
    color: #050708;
    border: none;
    font-weight: 600;
  }

  .burger {
    display: inline-flex;
  }

  .hero {
    padding-top: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .showcase {
    padding: 16px 14px 14px;
  }

  .showcase__viewport {
    height: 300px;
  }

  .showcase__rail {
    grid-template-columns: 1fr;
  }

  .mock {
    padding: 18px 16px 16px;
  }
}






