@font-face {
  font-family: "Disket Mono";
  src: url("fonts/Disket-Mono-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #141414;
  --red: #f53737;
  --white: #ffffff;
  --line: rgba(255, 255, 255, .18);
  --muted: rgba(255, 255, 255, .72);
  --soft: rgba(255, 255, 255, .055);
  --mono: "Disket Mono", "Space Mono", "IBM Plex Mono", "Courier New", monospace;
  --text: Inter, Arial, Helvetica, sans-serif;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--text);
}

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

.page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--black);
  background-size: 56px 56px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(20, 20, 20, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
  line-height: .95;
}

.brand .site-logo {
  width: 38px;
  height: auto;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 1px;
  font-size: 12px;
}

.brand-text b {
  font-size: 17px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav a:hover,
.nav a.is-active {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0;
  border: 2px solid var(--white);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}

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

.btn-red {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 52px;
  align-items: center;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 22px;
}

.label::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--red);
}

h1 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .015em;
  font-weight: 900;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  font-weight: 820;
  letter-spacing: -.035em;
}

.hero-lead span {
  color: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.5;
}

.logo-stage {
  min-height: 520px;
  border: 2px solid var(--white);
  background: var(--black);
  display: grid;
  place-items: center;
  padding: 44px;
  box-shadow: 14px 14px 0 var(--red);
}

.logo-stage svg {
  width: min(72%, 310px);
  height: auto;
}

.logo-stage .site-logo {
  width: auto;
  max-width: 70%;
  max-height: 500px;
  height: auto;
  display: block;
}

section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

.section-kicker {
  color: var(--red);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.section-title {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 900;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 780px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 620;
}

.about-box {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border: 2px solid var(--white);
  background: var(--black);
}

.about-logo {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-right: 2px solid var(--white);
  padding: 40px;
}

.about-logo svg {
  width: min(72%, 250px);
  height: auto;
}

.about-content {
  padding: 42px;
}

.about-content h2 {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.about-list {
  display: grid;
  gap: 15px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: -.025em;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 12px;
  height: 12px;
  background: var(--red);
}

.about-footer {
  margin: 0;
  color: var(--red);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--white);
  border-bottom: none;
  border-right: none;
}

.tile {
  min-height: 280px;
  padding: 28px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  background: var(--black);
}

.tile-num {
  color: var(--red);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 58px;
}

.tile h3 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 560;
}

.formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--white);
}

.format-card {
  min-height: 370px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--black);
}

.format-card:first-child {
  background: var(--red);
  border-right: 2px solid var(--white);
}

.format-card h3 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.format-card p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.38;
  font-weight: 720;
  letter-spacing: -.025em;
}

.format-card:not(:first-child) p {
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--black);
}

.cta-panel.is-dark {
  background: var(--black);
  color: var(--white);
}

.cta-panel.is-red {
  background: var(--red);
  color: var(--white);
}

.cta-panel small {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.cta-panel.is-dark small,
.cta-panel.is-red small {
  color: var(--white);
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.cta-panel p {
  margin: 0;
  max-width: 760px;
  color: #373737;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 650;
}

.cta-panel.is-dark p,
.cta-panel.is-red p {
  color: rgba(255,255,255,.82);
}

.cta-panel .btn {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  white-space: nowrap;
}

.cta-panel.is-dark .btn,
.cta-panel.is-red .btn {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--white);
  border-right: none;
  border-bottom: none;
}

.city-card {
  min-height: 160px;
  padding: 30px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.city-card.is-soon {
  color: var(--muted);
}

.city-card h2 {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.city-meta {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 620;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-links a,
.city-links span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 2px solid var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.city-links a.primary {
  background: var(--red);
  border-color: var(--red);
}

.city-links span {
  color: var(--muted);
  border-color: rgba(255,255,255,.22);
}

.footer {
  padding: 50px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  color: var(--white);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .section-head,
  .about-box,
  .formats,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .logo-stage {
    min-height: 360px;
    box-shadow: 10px 10px 0 var(--red);
  }

  .about-logo {
    min-height: 250px;
    border-right: none;
    border-bottom: 2px solid var(--white);
  }

  .tiles,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .format-card:first-child {
    border-right: none;
    border-bottom: 2px solid var(--white);
  }
}

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

  .topbar-inner {
    min-height: 70px;
  }

  .brand svg {
    width: 33px;
    height: 43px;
  }

  .brand-text {
    font-size: 10px;
  }

  .brand-text b {
    font-size: 14px;
  }

  .topbar .btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero {
    padding: 46px 0 58px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .logo-stage {
    display: none;
  }

  section {
    padding: 54px 0;
  }

  .about-content,
  .format-card,
  .cta-panel,
  .city-card {
    padding: 26px;
  }

  .tile {
    min-height: 240px;
    padding: 24px;
  }

  .tile-num {
    margin-bottom: 38px;
  }

  .about-list li {
    font-size: 19px;
  }

  .format-card {
    min-height: 320px;
  }

  .cta-panel p {
    font-size: 17px;
  }
}


/* ===== MOBILE POLISH ===== */

@media (max-width: 560px) {
  .page {
    background-size: 36px 36px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand .site-logo {
    width: 96px;
    height: auto;
  }

  .brand-text {
    display: none;
  }

  .topbar .btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 50px;
  }

  .hero-grid {
    display: block;
  }

  .label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: .01em;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.32;
  }

  .hero-note {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    font-size: 12px;
  }

  .logo-stage {
    display: none;
  }

  section {
    padding: 46px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 24px;
  }

  .section-kicker {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.05;
  }

  .section-lead {
    font-size: 17px;
  }

  .about-split {
    display: block;
  }

  .about-split-left,
  .about-split-right {
    padding: 28px !important;
  }

  .about-split-left {
    border-right: none;
    border-bottom: 2px solid var(--white);
  }

  .about-split-left .section-title {
    font-size: 34px;
  }

  .about-list {
    gap: 18px !important;
    margin-bottom: 28px !important;
  }

  .about-list li {
    font-size: 18px;
    line-height: 1.35;
  }

  .about-footer {
    font-size: 15px;
    line-height: 1.35;
  }

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

  .tile {
    min-height: auto;
    padding: 24px;
  }

  .tile-num {
    margin-bottom: 34px;
  }

  .tile h3 {
    font-size: 22px;
  }

  .tile p {
    font-size: 16px;
  }

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

  .format-card {
    min-height: auto;
    padding: 28px;
  }

  .format-card:first-child {
    border-right: none;
    border-bottom: 2px solid var(--white);
  }

  .format-card h3 {
    font-size: 32px;
  }

  .format-card p {
    font-size: 17px;
  }

  .cta-panel {
    display: block;
    padding: 28px;
  }

  .cta-panel h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .cta-panel p {
    font-size: 17px;
  }

  .cta-panel .btn {
    margin-top: 24px;
  }

  .footer-inner {
    display: block;
  }

  .socials {
    margin-top: 18px;
  }
}


/* ===== MOBILE FIX ===== */

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .page {
    background-size: 34px 34px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand {
    gap: 8px;
  }

  .brand .site-logo {
    width: 84px;
    max-width: 84px;
    height: auto;
  }

  .brand-text {
    display: none;
  }

  .topbar .btn {
    min-height: 38px;
    width: auto;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 48px;
  }

  .hero-grid {
    display: block;
  }

  .label {
    font-size: 11px;
    margin-bottom: 16px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.34;
  }

  .hero-note {
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    font-size: 11px;
    text-align: center;
  }

  .logo-stage {
    display: none;
  }

  section {
    padding: 44px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 22px;
  }

  .section-kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .about-split {
    display: block;
  }

  .about-split-left,
  .about-split-right {
    padding: 26px !important;
  }

  .about-split-left {
    border-right: none;
    border-bottom: 2px solid var(--white);
  }

  .about-split-left .section-title {
    font-size: 30px;
  }

  .about-list {
    gap: 18px !important;
    margin-bottom: 28px !important;
  }

  .about-list li {
    font-size: 17px;
    line-height: 1.38;
  }

  .about-footer {
    font-size: 14px;
    line-height: 1.35;
  }

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

  .tile {
    min-height: auto;
    padding: 24px;
  }

  .tile-num {
    margin-bottom: 30px;
  }

  .tile h3 {
    font-size: 21px;
  }

  .tile p {
    font-size: 16px;
  }

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

  .format-card {
    min-height: auto;
    padding: 26px;
  }

  .format-card:first-child {
    border-right: none;
    border-bottom: 2px solid var(--white);
  }

  .format-card h3 {
    font-size: 30px;
  }

  .format-card p {
    font-size: 17px;
    line-height: 1.4;
  }

  .cta-panel {
    display: block;
    padding: 26px;
  }

  .cta-panel h2 {
    font-size: 29px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .cta-panel p {
    font-size: 16px;
    line-height: 1.45;
  }

  .cta-panel .btn {
    margin-top: 22px;
  }

  .footer-inner {
    display: block;
  }

  .socials {
    margin-top: 18px;
  }
}


/* ===== MOBILE FIX WITH DISKET MONO ===== */

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .page {
    background-size: 34px 34px;
  }

  .container {
    width: calc(100% - 24px);
  }

  /* Шапка */
  .topbar-inner {
    min-height: 62px !important;
    justify-content: space-between !important;
  }

  .brand {
    display: flex !important;
  }

  .brand .site-logo {
    width: 76px !important;
    max-width: 76px !important;
    height: auto !important;
    flex: 0 0 auto !important;
  }

  .brand-text {
    display: none !important;
  }

  .nav {
    display: none !important;
  }

  .topbar .btn {
    width: auto !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 10px !important;
    letter-spacing: .04em !important;
  }

  /* Первый экран */
  .hero {
    min-height: auto !important;
    padding: 42px 0 52px !important;
  }

  .hero-grid {
    display: block !important;
  }

  .logo-stage {
    display: none !important;
  }

  .label {
    font-family: var(--mono) !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: .08em !important;
    margin-bottom: 18px !important;
  }

  .label::before {
    width: 42px !important;
  }

  h1 {
    font-family: var(--mono) !important;
    text-transform: uppercase !important;
    font-size: 32px !important;
    line-height: 1.12 !important;
    letter-spacing: .01em !important;
    font-weight: 900 !important;
    max-width: 100% !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero-lead {
    margin-top: 20px !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
    letter-spacing: -0.03em !important;
  }

  .hero-note {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 28px !important;
  }

  .btn {
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 14px !important;
    font-family: var(--mono) !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    letter-spacing: .04em !important;
    text-align: center !important;
  }

  /* Общие секции */
  section {
    padding: 52px 0 !important;
  }

  .section-head {
    display: block !important;
    margin-bottom: 24px !important;
  }

  .section-kicker {
    font-family: var(--mono) !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: .08em !important;
    margin-bottom: 14px !important;
  }

  .section-title {
    font-family: var(--mono) !important;
    text-transform: uppercase !important;
    font-size: 30px !important;
    line-height: 1.12 !important;
    letter-spacing: .01em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  /* Блок "Что такое BlackBox?" */
  .about-split {
    display: block !important;
  }

  .about-split-left,
  .about-split-right {
    padding: 28px !important;
  }

  .about-split-left {
    border-right: none !important;
    border-bottom: 2px solid var(--white) !important;
  }

  .about-split-left .section-title {
    font-size: 30px !important;
    line-height: 1.12 !important;
  }

  .about-list {
    gap: 18px !important;
    margin-bottom: 28px !important;
  }

  .about-list li {
    font-size: 18px !important;
    line-height: 1.36 !important;
  }

  .about-footer {
    font-family: var(--mono) !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    letter-spacing: .04em !important;
  }

  /* Как проходит игра */
  .tiles {
    grid-template-columns: 1fr !important;
  }

  .tile {
    min-height: auto !important;
    padding: 26px !important;
  }

  .tile-num {
    margin-bottom: 32px !important;
    font-family: var(--mono) !important;
  }

  .tile h3 {
    font-family: var(--mono) !important;
    text-transform: uppercase !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
    letter-spacing: .01em !important;
  }

  .tile p {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  /* Форматы */
  .formats {
    grid-template-columns: 1fr !important;
  }

  .format-card {
    min-height: auto !important;
    padding: 28px !important;
  }

  .format-card:first-child {
    border-right: none !important;
    border-bottom: 2px solid var(--white) !important;
  }

  .format-card h3 {
    font-family: var(--mono) !important;
    text-transform: uppercase !important;
    font-size: 30px !important;
    line-height: 1.12 !important;
    letter-spacing: .01em !important;
  }

  .format-card p {
    font-size: 17px !important;
    line-height: 1.42 !important;
  }

  /* Франшиза / Попробовать */
  .cta-panel {
    display: block !important;
    padding: 28px !important;
  }

  .cta-panel h2 {
    font-family: var(--mono) !important;
    text-transform: uppercase !important;
    font-size: 28px !important;
    line-height: 1.13 !important;
    letter-spacing: .01em !important;
  }

  .cta-panel p {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .cta-panel .btn {
    margin-top: 24px !important;
  }

  /* Подвал */
  .footer-inner {
    display: block !important;
  }

  .socials {
    margin-top: 18px !important;
  }
}




