:root {
  --rof-orange: #ff7a00;
  --rof-orange-hover: #ffb067;
  --rof-bg: #10171b;
  --rof-bg-4: #070b0d;
  --rof-white: #ffffff;
  --rof-max: 1200px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--rof-bg);
  color: var(--rof-white);
  font-family: 'Exo 2', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.rof-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rof-orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rof-btn:hover {
  background: var(--rof-orange-hover);
}

.rof-section-title {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  line-height: 1.1;
}

.rof-top-bar {
  background: var(--rof-bg-4);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px;
}

@media (max-width: 768px) {
  .rof-section-title {
    font-size: 28px;
    text-align: center;
  }
  .rof-top-bar {
    font-size: 10px;
  }
}
