:root {
  --brand: #e72c15;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 18px; /* увеличен базовый размер с 16px */
}
body {
  margin: 0;
  color: #222;
  background: #fff;
  line-height: 1.6;
  font-size: 1rem; /* теперь 18px */
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
p {
  margin: 0 0 1rem;
  font-size: 1.1rem; /* увеличен до ~20px */
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
main {
  display: block;
}
h2 {
  position: relative;
  padding-left: 30px;
  margin-top: 2rem;
  margin-bottom: 2rem;

  color: rgba(0, 0, 0, 0.75);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px; /* 115.789% */
}
h2::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 140px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MiIgaGVpZ2h0PSIyNzIiIHZpZXdCb3g9IjAgMCA0MiAyNzIiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik00LjI3MDc1ZS0wNiAyMC42MjNDMS44NzAyMWUtMDUgOS4yMzMzMSA5LjIzMzMyIC00LjAzNjAxZS0wNyAyMC42MjMxIC05LjAxNDYyZS0wN0MzMi4wMTI3IDUuOTYzNThlLTA1IDQxLjI0NjEgOS4yMzMzNCA0MS4yNDYxIDIwLjYyM0M0MS4yNDYxIDI5LjUwODUgMzUuNjI2NyAzNy4wODE4IDI3Ljc0ODEgMzkuOTgyNEwyMC42MzA5IDI3MkwxMy40OTgxIDM5Ljk4MjRDNS42MTkyNyAzNy4wODE4IDQuMjcwNzVlLTA2IDI5LjUwODUgNC4yNzA3NWUtMDYgMjAuNjIzWiIgZmlsbD0iI0U3MkMxNSIvPjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
/* Layout helpers (Flex only) */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: clamp(48px, 6vw, 96px) 0;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
}
.col {
  flex: 1 1 420px;
  min-width: 280px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero .bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.titlebar {
  width: 100%;
  gap: 20px;
}

.title-text {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.title-text img {
  max-width: clamp(2.5rem, 7vw, 4.5rem);
  display: block;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.hero .subtitle {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: normal;
}
.hero-visual {
  margin-top: clamp(20px, 4vw, 40px);
  border-radius: 14px;
}

/* Visual blocks */
.visual {
  position: relative;
  border-radius: 14px;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); */
  height: clamp(240px, 45vw, 480px);
}
.visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stats {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat {
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 14px; /* увеличен padding */
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem; /* явно указан размер */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Section headings & accents */
.accent {
  color: var(--brand);
}
.dotlist li {
  position: relative;
  padding-left: 22px;
  font-size: 1.1rem; /* увеличен размер */
}
.dotlist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 300px;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 24px; /* увеличен padding */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  font-size: 1.05rem; /* добавлен размер шрифта */
}

/* Feature words */
.feature-words {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 24px);
}
.feature-word {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #222;
  line-height: 1;
}

/* Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.step {
  flex: 1 1 220px;
  min-width: 200px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  padding: 24px; /* увеличен padding */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  font-size: 1.05rem; /* добавлен размер шрифта */
}
.step .num {
  width: 50px; /* увеличен размер */
  height: 50px;
  margin: 0 auto 12px; /* увеличен отступ */
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem; /* добавлен размер шрифта */
}

/* Subtle section backgrounds */
.bg-soft {
  background: #f7f7f9;
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Links (if any appear) */
a {
  color: var(--brand);
  text-decoration: none;
  font-size: 1.1rem; /* увеличен размер */
}
a:hover {
  text-decoration: underline;
}
.contact-and-payment .container {
  justify-content: center !important;
  align-items: center;
}
