*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 110px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(230,57,70,0.12); color: var(--red);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(230,57,70,0.25);
  margin-bottom: 24px;
}
.tag::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 0.92; letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title em { color: var(--red); font-style: normal; }
.section-sub { font-size: 17px; color: var(--text2); max-width: 520px; line-height: 1.75; font-weight: 300; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 100px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; border: none; transition: all var(--transition);
  letter-spacing: 0.3px; white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230,57,70,0.4); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-ghost { background: transparent; color: var(--text2); padding: 15px 24px; }
.btn-ghost:hover { color: var(--text); }
.btn-white { background: #fff; color: #080400; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
