:root {
  --lpdg-bg: #fafaf7;
  --lpdg-surface: #ffffff;
  --lpdg-text: #172033;
  --lpdg-text-soft: #60697b;
  --lpdg-dark: #111214;
  --lpdg-accent: #7ed957;
  --lpdg-accent-strong: #6ccc42;
  --lpdg-border: rgba(23, 32, 51, 0.08);
  --lpdg-radius-lg: 24px;
  --lpdg-radius-md: 18px;
  --lpdg-shadow: 0 16px 40px rgba(20, 28, 45, 0.06);
  --lpdg-container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lpdg-bg);
  color: var(--lpdg-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.lpdg-main { min-height: 60vh; }
.lpdg-container,
.lpdg-header__shell,
.lpdg-prefooter-shell,
.lpdg-footer-shell {
  width: min(var(--lpdg-container), calc(100% - 48px));
  margin-inline: auto;
}

.lpdg-page-wrap > .elementor,
.lpdg-page-wrap > .elementor-location-single,
.lpdg-page-wrap > .elementor-location-archive {
  width: 100%;
}

.lpdg-default-content,
.lpdg-single-wrap {
  padding: 56px 0 80px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p { margin: 0 0 16px; }

.lpdg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.lpdg-btn:hover { transform: translateY(-2px); }
.lpdg-btn--dark {
  background: var(--lpdg-dark);
  color: var(--lpdg-accent);
  border: 1px solid var(--lpdg-dark);
}

.lpdg-entry-title { font-size: clamp(34px, 5vw, 56px); }
.lpdg-entry-meta { color: var(--lpdg-text-soft); font-size: 14px; }
.lpdg-entry-content { max-width: 860px; }

@media (max-width: 767px) {
  .lpdg-container,
  .lpdg-header__shell,
  .lpdg-prefooter-shell,
  .lpdg-footer-shell {
    width: min(var(--lpdg-container), calc(100% - 28px));
  }

  .lpdg-default-content,
  .lpdg-single-wrap { padding: 40px 0 64px; }
}
