/* RESET */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, Helvetica, sans-serif;
background: #000;
color: #fff;
line-height: 1.6;
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

/* HEADER */

.header {
background: #000;
border-bottom: 1px solid #222;
position: sticky;
top: 0;
z-index: 1000;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 0;
}

.logo {
font-size: 18px;
font-weight: bold;
color: white;
}

/* DESKTOP MENU */

.desktop-menu {
display: flex;
align-items: center;
gap: 24px;
}

.desktop-menu a {
color: #ccc;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.desktop-menu a:hover {
color: #ff2d2d;
}

.join-now {
background: #ff2d2d;
padding: 9px 20px;
border-radius: 25px;
color: white;
font-weight: bold;
}

/* MOBILE MENU ICON */

.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}

.menu-toggle span {
width: 24px;
height: 2px;
background: white;
margin: 4px 0;
}

/* HERO */

.hero {
padding: 90px 16px;
text-align: center;
background: linear-gradient(180deg,#2a0000,#000);
}

.hero h1 {
font-size: 42px;
margin-bottom: 12px;
}

.highlight {
color: #ff2d2d;
}

.hero p {
color: #aaa;
margin-bottom: 20px;
}

.buttons {
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}

.btn {
background: #ff2d2d;
color: white;
padding: 16px 32px;
border-radius: 40px;
text-decoration: none;
font-weight: bold;
}

.btn-outline {
border: 2px solid white;
padding: 16px 32px;
border-radius: 40px;
text-decoration: none;
color: white;
}

/* STATS SECTION */

.stats {
padding: 60px 0;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.stat-card {
background: #0b0b0b;
border: 1px solid #222;
border-radius: 18px;
height: 140px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: 0.3s;
}

.stat-card:hover {
border-color: #ff2d2d;
transform: translateY(-4px);
}

.stat-card h3 {
color: #ff2d2d;
font-size: 26px;
margin-bottom: 6px;
}

.stat-card p {
font-size: 12px;
color: #999;
letter-spacing: 1px;
}

/* SERVICES */

.section {
padding: 80px 0;
}

.section h2 {
text-align: center;
margin-bottom: 40px;
}

.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.card {
background: #0b0b0b;
padding: 30px;
border-radius: 16px;
border: 1px solid #222;
text-align: center;
transition: 0.3s;
}

.card:hover {
border-color: #ff2d2d;
transform: translateY(-6px);
}

.service-icon {
font-size: 28px;
margin-bottom: 14px;
}

/* FAQ */

.faq-item {
background: #0b0b0b;
border: 1px solid #222;
border-radius: 14px;
margin-bottom: 14px;
overflow: hidden;
}

.faq-question {
width: 100%;
background: none;
border: none;
color: white;
padding: 18px 22px;
font-size: 16px;
cursor: pointer;
display: flex;
justify-content: space-between;
}

.faq-answer {
max-height: 0;
overflow: hidden;
color: #aaa;
padding: 0 22px;
transition: 0.3s;
}

.faq-item.active .faq-answer {
max-height: 200px;
padding: 16px 22px;
}

/* CONTACT */

.contact {
text-align: center;
padding: 60px 0;
}

.contact .btn {
margin-top: 14px;
}

/* FOOTER */

footer {
border-top: 1px solid #222;
padding: 24px;
text-align: center;
color: #aaa;
font-size: 14px;
}

/* TABLET */

@media (max-width: 1024px) {

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}

.cards {
grid-template-columns: repeat(2, 1fr);
}

}

/* MOBILE */

@media (max-width: 768px) {

.desktop-menu {
display: none;
}

.menu-toggle {
display: flex;
}

.hero h1 {
font-size: 30px;
}

.buttons {
flex-direction: column;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}

.cards {
grid-template-columns: 1fr;
}

}