/* Правовые страницы almazmarketing.ru */

:root {
  --lg-bg: #ffffff;
  --lg-bg2: #f7f7f7;
  --lg-border: #e4e4e4;
  --lg-text: #1a1a1a;
  --lg-text2: #5a5a5a;
  --lg-accent: #ff6e18;
  --lg-radius: 10px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--lg-bg);
  color: var(--lg-text);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.lg-header {
  border-bottom: 1px solid var(--lg-border);
  background: var(--lg-bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.lg-header__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lg-logo {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--lg-text);
  text-decoration: none;
}

.lg-logo:hover { color: var(--lg-accent); }

.lg-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--lg-text2);
  text-decoration: none;
  white-space: nowrap;
}

.lg-back:hover { color: var(--lg-accent); }

.lg-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.lg-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lg-accent);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.lg-meta {
  font-size: 14px;
  color: var(--lg-text2);
  margin: 0 0 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--lg-border);
}

h2 {
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}

h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 30px 0 12px;
}

p { margin: 0 0 14px; }

ul, ol { margin: 0 0 16px; padding-left: 22px; }

li { margin-bottom: 8px; }

a { color: var(--lg-accent); }

strong { font-weight: 700; }

.lg-card {
  background: var(--lg-bg2);
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius);
  padding: 24px 26px;
  margin: 24px 0;
}

.lg-card p:last-child, .lg-card ul:last-child { margin-bottom: 0; }

.lg-table-wrap {
  overflow-x: auto;
  margin: 22px 0 26px;
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 620px;
}

th {
  text-align: left;
  font-weight: 800;
  background: var(--lg-bg2);
  padding: 13px 16px;
  border-bottom: 1px solid var(--lg-border);
  vertical-align: top;
}

td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--lg-border);
  vertical-align: top;
}

tr:last-child td { border-bottom: none; }

.lg-btn {
  display: inline-block;
  background: var(--lg-accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--lg-radius);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}

.lg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 110, 24, .28);
}

.lg-footer {
  border-top: 1px solid var(--lg-border);
  padding: 28px 24px 40px;
}

.lg-footer__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  font-size: 14px;
  color: var(--lg-text2);
}

.lg-footer a { color: var(--lg-text2); text-decoration: none; }

.lg-footer a:hover { color: var(--lg-accent); }

@media (max-width: 600px) {
  .lg-main { padding: 36px 20px 60px; }
  body { font-size: 15.5px; }
}
