/* SaM oTPravil — SMTP для хостинг-провайдеров */

.land {
  --primary: #7c44f5;
  --primary-hover: #c55de0;
  --primary-light: #e175ff;
  --surface: #f9f8fb;
  --text: #22223b;
  --text-muted: #777777;
  --white: #ffffff;
  --border: #bdc3c7;
  --code-bg: #22223b;

  color: var(--text);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.land__container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.land__container_narrow {
  width: min(800px, 100% - 40px);
}

.land__section {
  padding: 48px 0 64px;
  background: var(--white);
}

.land__section_surface {
  background: var(--surface);
}

.land__section_faq {
  padding-top: 32px;
}

/* Hero */

.land__hero {
  padding: 48px 0 56px;
}

.land__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: 24px 40px;
  align-items: center;
}

.land__kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.land__hero-title {
  margin: 0 0 20px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.land__hero-lead {
  margin: 0 0 28px;
  max-width: 38ch;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}

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

.land__hero-art {
  width: 100%;
  max-width: 480px;
  height: auto;
  justify-self: end;
}

/* Section titles */

.land__section-title {
  margin: 0 0 40px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
}

.land__section-title_left {
  text-align: left;
}

.land__section-lead {
  margin: -24px auto 36px;
  max-width: 48ch;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-muted);
}

.land__section-lead_left {
  margin-left: 0;
  max-width: 56ch;
  text-align: left;
}

.land__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.land__bullets_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
}

.land__bullet {
  padding-left: 20px;
  border-left: 4px solid var(--primary);
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-muted);
}

.land__bullet strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

/* Perks */

.land__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

.land__perk-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.land__perk-title {
  margin: 0 0 10px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.15;
}

.land__perk-text {
  margin: 0;
  max-width: 38ch;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.35;
}

.land__hl {
  color: var(--primary);
  font-weight: 500;
}

/* Products / forks */

.land__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.land__product {
  display: flex;
  flex-direction: column;
  padding: 32px 24px 28px;
  background: var(--white);
  border: 1px solid var(--primary-light);
  border-radius: 20px;
  min-height: 100%;
}

.land__product_accent {
  border-width: 2px;
  border-color: var(--primary);
}

.land__product-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.land__product-title {
  margin: 0 0 12px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.land__product-text {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Case stats */

.land__case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 32px;
}

.land__stat {
  padding: 24px 20px;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
}

.land__stat-num {
  display: block;
  margin-bottom: 8px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #e175ff 0%, #8157f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.land__stat-label {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-muted);
}

/* Stripes */

.land__stripes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.land__stripe {
  padding: 32px 40px;
  border: 2px solid var(--primary-light);
  border-radius: 30px;
  background: var(--white);
}

.land__stripe-title {
  margin: 0 0 10px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.land__stripe-text {
  margin: 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.35;
  color: #000;
}

/* Quotes */

.land__quote {
  margin: 28px 0 0;
  padding: 28px 32px;
  border-left: 4px solid var(--primary);
  background: var(--white);
  border-radius: 0 16px 16px 0;
}

.land__quote_secondary {
  border-left-color: var(--primary-light);
  background: transparent;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-light);
  border-radius: 0 16px 16px 0;
}

.land__quote-text {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text);
}

.land__quote-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
}

.land__quote-author {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
}

.land__quote-role {
  font-size: 14px;
  color: var(--text-muted);
}

.land__note {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Shared */

.land__btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.land__btn_primary {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.land__btn_primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.land__btn_outline {
  color: var(--primary);
  background: var(--white);
}

.land__btn_outline:hover {
  color: var(--white);
  background: var(--primary);
}

.land__btn_lg {
  padding: 16px 36px;
  font-size: 18px;
}

.land__link {
  color: var(--primary);
  font-weight: 500;
}

.land__link:hover {
  color: var(--primary-hover);
}

.land__link_arrow::after {
  content: '\00a0›';
}

.land__materials {
  list-style: none;
  margin: 0;
  padding: 0;
}

.land__material {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.land__material:last-child {
  border-bottom: 1px solid var(--border);
}

.land__material-title {
  margin: 0 0 8px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.land__material-text {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 56ch;
}

.land__faq-item {
  border-top: 1px solid var(--border);
}

.land__faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.land__faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 36px 16px 0;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.land__faq-q::-webkit-details-marker {
  display: none;
}

.land__faq-q::after {
  content: '+';
  color: var(--primary);
  font-size: 24px;
}

.land__faq-item[open] .land__faq-q::after {
  content: '−';
}

.land__faq-a {
  margin: 0;
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--text-muted);
}

.land__cta {
  padding: 56px 0 80px;
}

.land__cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
  gap: 32px;
  align-items: center;
}

.land__cta-title {
  margin: 0 0 16px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 700;
  line-height: 1;
}

.land__cta-lead {
  margin: 0 0 24px;
  max-width: 40ch;
  font-size: 18px;
  color: var(--text-muted);
}

.land__cta-note {
  margin: 20px 0 0;
  font-size: 15px;
  color: var(--text-muted);
}

.land__cta-art {
  width: 100%;
  max-width: 360px;
  height: auto;
  justify-self: end;
}

@media (max-width: 959px) {
  .land__hero-grid,
  .land__cta-grid {
    grid-template-columns: 1fr;
  }

  .land__hero-art,
  .land__cta-art {
    justify-self: center;
    max-width: 320px;
  }

  .land__perks {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .land__products,
  .land__case-stats,
  .land__bullets_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .land__container,
  .land__container_narrow {
    width: calc(100% - 20px);
  }

  .land__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .land__btn {
    text-align: center;
  }

  .land__section-title {
    text-align: left;
  }

  .land__section-lead {
    text-align: left;
    margin-left: 0;
  }

  .land__stripe,
  .land__quote {
    padding: 24px 20px;
  }
}
