:root {
  --safe-bg: #f4fbfa;
  --safe-card: #ffffff;
  --safe-card-soft: #eefaf8;

  --safe-text: #071d1c;
  --safe-muted: #5d7471;
  --safe-line: #d7e8e5;

  --safe-primary: #009688;
  --safe-primary-dark: #006f66;
  --safe-accent: #14c8b8;

  --safe-dark: #041312;
  --safe-dark-2: #071f1d;

  --safe-warning: #ffb800;

  --safe-blue: #005486;
  --safe-red: #b00020;
  --safe-green: #007a4d;

  --safe-radius: 24px;
  --safe-radius-lg: 32px;
  --safe-shadow: 0 18px 50px rgba(0, 60, 55, 0.1);
  --safe-shadow-strong: 0 24px 70px rgba(0, 45, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Manrope', sans-serif;
  color: var(--safe-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  /*padding: 64px 0;*/
}

.header-review-btn-desktop {
  display: flex;
}

.header-review-btn-mobile {
  display: none;
}

h2[id],
h3[id] {
  scroll-margin-top: 90px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 10px;
  border: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

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

.btn--primary {
  background: var(--safe-primary);
  color: #ffffff;
}

.btn--secondary {
  background: #ffffff;
  color: var(--safe-primary-dark);
  border: 1px solid rgba(0, 150, 136, 0.28);
}

.btn--outline {
  background: #ffffff;
  color: var(--safe-primary-dark);
  border: 1px solid rgba(0, 150, 136, 0.22);
}

.btn--dark {
  background: var(--safe-dark);
  color: #ffffff;
}
