*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg-body: #030915;
  --color-bg-dark: #040b16;
  --color-text-primary: #ffffff;
  --color-text-body: #ffffff;
  --color-text-muted: #c7c7c7;
  --color-border-stat: rgba(255, 255, 255, 0.5);
  --color-border-testimonial: rgba(255, 255, 255, 0.4);
  --color-glass: rgba(252, 252, 252, 0.15);

  --gradient-cta: linear-gradient(
    20.8deg,
    rgb(9, 191, 223) 16.1%,
    rgb(7, 215, 252) 100%
  );

  --font-primary: "Syne", sans-serif;
  --font-button: "Rubik", sans-serif;

  --container-max: 1440px;
  --container-padding: 120px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-full: 1000px;

  --shadow-card: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0px 4px 44px 0px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-body);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-button);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 32px;
  background: #ff2135;
  color: #fff;
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 16px;
  border-radius: var(--radius-full);
  transition:
    opacity 0.2s,
    transform 0.2s;
  width: fit-content;
  line-height: 1;
}

.btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-cta::after {
  content: "→";
  font-weight: 700;
}

.section-subtitle {
  font-size: 16px;
}

.section-desc {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.5;
}

.page-content {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.page-content__inner {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.8;
}

.page-content__inner h1,
.page-content__inner h2,
.page-content__inner h3,
.page-content__inner h4 {
  color: var(--color-text-primary);
  margin-bottom: 16px;
  margin-top: 32px;
}

.page-content__inner h1 {
  font-size: 38px;
}
.page-content__inner h2 {
  font-size: 28px;
}
.page-content__inner h3 {
  font-size: 22px;
}

.page-content__inner p {
  margin-bottom: 16px;
}

.page-content__inner a {
  color: #ff2135;
  text-decoration: underline;
}

.page-content__inner ul,
.page-content__inner ol {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}

.page-content__inner ol {
  list-style: decimal;
}

@media (max-width: 1023px) {
  :root {
    --container-padding: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  .btn-cta {
    font-size: 16px;
    padding: 14px 24px;
  }
}
