:root {
  --pol-bg: #05070c;
  --pol-bg-alt: #172131;
  --pol-bg-deep: #0e1420;
  --pol-orange: #ffad33;
  --pol-text: #ffffff;
  --pol-text-muted: #bfc4cc;
  --pol-text-soft: #a5abb6;
  --pol-border: rgba(255, 255, 255, 0.08);
  --pol-card-bg: #14181c;
  --pol-radius: 16px;
  --pol-container: 1440px;
  --pol-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  --pol-font:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--pol-bg);
  color: var(--pol-text);
  font-family: var(--pol-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

.pol-container {
  width: 100%;
  max-width: var(--pol-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pol-main {
  display: block;
  overlow-x: hidden;
}

.pol-section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin: 0 0 16px;
}

.pol-section-subtitle {
  text-align: center;
  color: var(--pol-text-soft);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.pol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    transform 0.15s ease,
    opacity 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  line-height: 1;
}

.pol-btn:hover {
  transform: translateY(-1px);
}

.pol-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.pol-btn--primary {
  background: var(--pol-orange);
  color: #1b1b1b;
}

.pol-btn--primary:hover {
  background: #ffcc33;
}

.pol-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pol-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pol-top-bar {
  background: var(--pol-orange);
  color: #1b1b1b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
  line-height: 1;
}

@media (max-width: 767px) {
  .pol-top-bar {
    font-size: 10px;
    padding: 6px 0;
  }
}
