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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #111;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #eef6fc;
}

/* Header */
.header {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.header-actions .btn-primary {
  background: #1e88e5;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: #f5f5f5;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Grids */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* Placeholders */
.placeholder {
  background: #ddd;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.slot-card {
  aspect-ratio: 16 / 10;
}

.info-card {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.placeholder-line {
  width: 60%;
  height: 32px;
  background: #ccc;
  border-radius: 6px;
}

.placeholder-btn {
  width: 160px;
  height: 40px;
  background: #1e88e5;
  border-radius: 20px;
}

.text-placeholder {
  width: 70%;
  height: 18px;
  background: #ddd;
  border-radius: 4px;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .nav {
    display: none;
  }
}
.slot-card {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slots-grid {
  margin-bottom: 80px;
}

.cards-grid {
  margin-bottom: 80px;
}
section {
  position: relative;
  width: 100%;
}
.intro-text {
  max-width: 820px;
  line-height: 1.7;
  font-size: 16px;
  color: #111;
}

/* чтобы внутри %body% картинки/таблицы не ломали верстку */
.intro-text img {
  max-width: 100%;
  height: auto;
  display: block;
}
