/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:         #0a0c0f;
  --bg2:        #0f1218;
  --bg3:        #141720;
  --card:       #161b24;
  --border:     rgba(255,255,255,0.06);
  --accent:     #e8a020;
  --accent2:    #c07010;
  --blue:       #5865f2;
  --text:       #d0d6e0;
  --text-muted: #6b7280;
  --white:      #ffffff;
  --radius:     10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; }

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

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

.highlight { color: var(--accent); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 2rem;
}

#navbar.scrolled {
  background: rgba(10, 12, 15, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; }

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), opacity var(--transition);
}

.nav-logo-img:hover { opacity: 0.85; }

.footer-logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(232, 160, 32, 0.08);
}

.nav-links .btn-shop {
  color: var(--accent);
  border: 1px solid rgba(232,160,32,0.4);
}

.nav-links .btn-shop:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav-socials {
  display: flex;
  gap: 0.6rem;
}

.nav-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  font-size: 1rem;
}

.nav-socials a:hover { color: var(--accent); background: rgba(232,160,32,0.1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,12,15,0.98);
  z-index: 999;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; }

.mobile-menu a {
  display: block;
  padding: 0.9rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu a:hover { color: var(--accent); padding-left: 2.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn i { font-size: 1.3rem; }

.btn span { display: flex; flex-direction: column; }
.btn span small { font-size: 0.7rem; font-weight: 400; opacity: 0.8; line-height: 1; text-transform: uppercase; letter-spacing: 1px; }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: #f0b030;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,160,32,0.35);
}

.btn-discord {
  background: var(--blue);
  color: var(--white);
}
.btn-discord:hover {
  background: #6875f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88,101,242,0.35);
}

.btn-ts {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ts:hover {
  background: #1e2535;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../image/home.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,12,15,0.92) 0%,
    rgba(10,12,15,0.75) 50%,
    rgba(10,12,15,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 72px;
  max-width: 680px;
  margin-left: 5%;
}

.hero-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  width: fit-content;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll a {
  color: var(--text-muted);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  display: block;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 2rem;
  background: var(--bg2);
}

.features > .section-header,
.features-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,160,32,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 54px; height: 54px;
  background: rgba(232,160,32,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(232,160,32,0.18);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PAGE HERO (sous-pages) ===== */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  background: url('../image/home.jpg') center 30% / cover no-repeat;
  padding-bottom: 3rem;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,12,15,1) 0%, rgba(10,12,15,0.6) 60%, rgba(10,12,15,0.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

/* ===== REGLEMENT PAGE ===== */
.reglement-page-section {
  padding: 4rem 2rem 7rem;
  background: var(--bg);
}

.regl-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Intro */
.regl-intro {
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.5rem;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* Sommaire */
.regl-toc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.regl-toc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.regl-toc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.3rem 1.5rem;
}

.regl-toc a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
  padding: 0.2rem 0;
}

.regl-toc a:hover { color: var(--accent); padding-left: 6px; }

/* Articles */
.regl-articles { display: flex; flex-direction: column; gap: 1.2rem; }

.regl-article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.regl-article:hover { border-color: rgba(232,160,32,0.2); }

.regl-article.regl-danger { border-color: rgba(239,68,68,0.15); }
.regl-article.regl-danger:hover { border-color: rgba(239,68,68,0.3); }
.regl-article.regl-danger .regl-article-header { background: rgba(239,68,68,0.05); }
.regl-article.regl-danger .regl-num { background: rgba(239,68,68,0.15); color: #ef4444; }

.regl-article-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.regl-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(232,160,32,0.1);
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}

.regl-article-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.3px;
}

.regl-article-header h2 i {
  color: var(--accent);
  font-size: 1rem;
}

.regl-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.regl-body p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
}

.regl-body ul {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.regl-body ul li {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.regl-body ul li::marker { color: var(--accent); }

/* Tags */
.regl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.regl-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  background: rgba(232,160,32,0.1);
  color: var(--accent);
  border-radius: 5px;
  border: 1px solid rgba(232,160,32,0.2);
}

/* Info box */
.regl-info {
  background: rgba(59,130,246,0.07);
  border-left: 3px solid #3b82f6;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.regl-info i { color: #3b82f6; flex-shrink: 0; margin-top: 2px; }

/* Numbered list */
.regl-list-numbered {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.regl-list-numbered > div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.regl-list-numbered > div > span {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 1px;
}

.regl-list-numbered p { font-size: 0.92rem; color: var(--text); line-height: 1.65; margin: 0; }

/* Two columns */
.regl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.regl-col-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem;
}

.regl-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.regl-col-title.legal  { color: #10b981; }
.regl-col-title.illegal { color: #ef4444; }

.regl-col-card ul { padding-left: 1rem; }
.regl-col-card p  { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

/* Def grid */
.regl-def-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.regl-def {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.regl-def-label {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.regl-def p { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

@media (max-width: 600px) {
  .regl-two-col { grid-template-columns: 1fr; }
  .regl-toc ul  { grid-template-columns: 1fr; }
}

/* ===== REGLEMENT (index section) ===== */
.reglement-section {
  padding: 6rem 2rem;
  background: var(--bg);
}

.reglement-section .section-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reglement-coming {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.reglement-coming::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.reglement-icon {
  width: 72px; height: 72px;
  background: rgba(232,160,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,160,32,0.3); }
  50%       { box-shadow: 0 0 0 14px rgba(232,160,32,0); }
}

.reglement-coming h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.reglement-coming p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== ABOUT BANNER ===== */
.about-banner {
  position: relative;
  padding: 7rem 2rem;
  background: url('../image/home.jpg') center top / cover no-repeat;
  text-align: center;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,12,15,0.82);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg);
}

.faq-section .section-header,
.faq-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(232,160,32,0.3); }

.faq-question {
  width: 100%;
  background: var(--card);
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: #1c2130; }
.faq-item.open .faq-question { background: #1a2030; color: var(--accent); }

.faq-question i {
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 0.9rem;
  color: var(--accent);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  background: var(--bg2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 1.2rem 1.5rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ===== STAFF ===== */
.staff-section {
  padding: 6rem 2rem;
  background: var(--bg2);
}

.staff-section .section-header,
.staff-category {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.staff-category {
  margin-bottom: 3rem;
}

.staff-cat-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.staff-cat-title i { color: var(--accent); }

.staff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.staff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  transition: transform var(--transition), border-color var(--transition);
}

.staff-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232,160,32,0.2);
}

.staff-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(232,160,32,0.1);
  border: 2px solid rgba(232,160,32,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.staff-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.staff-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

.project-lead { background: rgba(232,160,32,0.15); color: var(--accent); }
.manager      { background: rgba(192,112,16,0.15); color: #c07010; }
.admin        { background: rgba(239,68,68,0.12);  color: #ef4444; }
.moderator    { background: rgba(59,130,246,0.12); color: #3b82f6; }
.dev          { background: rgba(16,185,129,0.12); color: #10b981; }

/* ===== FOOTER ===== */
.footer {
  background: #070a0d;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.75rem 0 1.2rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  color: var(--accent);
  border-color: rgba(232,160,32,0.3);
  background: rgba(232,160,32,0.08);
}

.footer-links h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover { color: var(--text); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .nav-toggle { display: block; }

  .hero-content { margin-left: 2rem; margin-right: 2rem; }
  .hero-buttons { flex-direction: column; max-width: 300px; }

  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .footer-container { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .staff-grid { flex-direction: column; }
}
