:root {
  --rose: #f43f5e;
  --rose-dark: #be123c;
  --rose-lt: #fda4af;
  --rose-bg: #fff0f4;
  --plum: #7c3aed;
  --plum-dark: #5b21b6;
  --plum-lt: #c4b5fd;
  --plum-bg: #f5f3ff;
  --text: #1c1033;
  --muted: #64748b;
  --off: #f8fafc;
  --white: #ffffff;
  --dark: #0a0612;
  --grad: linear-gradient(135deg, #f43f5e 0%, #7c3aed 100%);
  --r: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'DM Sans', sans-serif; 
  background: var(--white); 
  color: var(--text); 
  line-height: 1.6; 
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* --- NAVIGATION --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.solid { padding: 12px 40px; background: rgba(255, 255, 255, 0.98); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.nav-logo img { height: 38px; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { 
  color: var(--text); 
  text-decoration: none; 
  font-size: 0.9rem; 
  font-weight: 600; 
  opacity: 0.7; 
  transition: 0.3s; 
}
.nav-links a:hover { opacity: 1; color: var(--rose); }

.nav-right { display: flex; gap: 12px; align-items: center; }
.btn-nav-ghost { 
  color: var(--text); 
  border: 2px solid var(--text); 
  padding: 10px 24px; 
  border-radius: 50px; 
  font-size: 0.85rem; 
  font-weight: 700; 
  cursor: pointer; 
  transition: 0.3s; 
  text-decoration: none; 
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-nav-ghost:hover { background: var(--text); color: #fff; transform: translateY(-2px); }

@media(max-width: 768px) {
  .nav-links { display: none; }
  nav { padding: 12px 20px; }
}

/* --- HERO --- */
.hero {
  background: linear-gradient(145deg, #0a0612 0%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  color: #fff;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://cdn.sithaapp.com/uploads/07-10-2025/sitha%20pic.png') center/cover;
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.hbg {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}
.hbg-1 { width: 500px; height: 500px; background: var(--rose); top: -100px; right: -100px; }
.hbg-2 { width: 400px; height: 400px; background: var(--plum); bottom: -100px; left: -100px; }

.hero-inner { position: relative; z-index: 5; max-width: 800px; margin: 0 auto; text-align: center; padding: 0 24px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: #fff !important;
}
.badge-dot { width: 8px; height: 8px; background: var(--rose); border-radius: 50%; display: block; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }

.hero h1 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2.5rem, 8vw, 4.5rem); 
  font-weight: 900; 
  line-height: 1.1; 
  margin-bottom: 24px; 
  color: #fff !important;
}
.hero h1 em { 
  font-style: italic; 
  background: var(--grad); 
  -webkit-background-clip: text; 
  -webkit-fill-color: transparent; 
  background-clip: text; 
  color: transparent !important;
}

.hero p { 
  font-size: 1.15rem; 
  opacity: 0.8; 
  max-width: 600px; 
  margin: 0 auto 40px; 
  color: rgba(255,255,255,0.7) !important;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-fill { 
  background: var(--grad); 
  color: #fff; 
  padding: 16px 36px; 
  border-radius: 50px; 
  font-weight: 700; 
  text-decoration: none; 
  transition: 0.3s; 
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.3);
}
.btn-fill:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(244, 63, 94, 0.5); }

.btn-ghost { 
  background: rgba(255, 255, 255, 0.1); 
  color: #fff; 
  padding: 16px 36px; 
  border-radius: 50px; 
  font-weight: 700; 
  text-decoration: none; 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  transition: 0.3s; 
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); }

.stats { 
  display: flex; 
  justify-content: center; 
  gap: 48px; 
  margin-top: 64px; 
  padding-top: 48px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
}
.stat h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #fff !important; }
.stat p { font-size: 0.85rem; opacity: 0.5; color: #fff !important; margin-top: -4px; }

@media(max-width: 600px) {
  .stats { gap: 24px; flex-direction: column; align-items: center; }
  .stat { text-align: center; }
}

/* --- SECTIONS --- */
.sec { padding: 100px 0; }
.bg-off { background: var(--off); }

.sec-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.tag { 
  display: inline-block; 
  color: var(--rose); 
  font-weight: 800; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  font-size: 0.75rem; 
  margin-bottom: 12px; 
}
.sec-head h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2rem, 5vw, 2.8rem); 
  font-weight: 900; 
  line-height: 1.2; 
  color: var(--text) !important;
}
.sec-head h2 span { color: var(--rose); }
.sec-head p { font-size: 1.05rem; color: var(--muted) !important; margin-top: 16px; }

/* --- WHY SITHA --- */
.why-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 24px; 
}
.why-card { 
  background: #fff; 
  padding: 40px; 
  border-radius: 24px; 
  border: 1px solid rgba(0,0,0,0.03); 
  transition: 0.4s; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.why-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.wi { 
  width: 56px; height: 56px; 
  background: var(--rose-bg); 
  color: var(--rose); 
  border-radius: 16px; 
  display: flex; align-items: center; justify-content: center; 
  font-size: 1.5rem; 
  margin-bottom: 24px; 
}
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 12px; color: var(--text) !important; }
.why-card p { font-size: 0.95rem; color: var(--muted) !important; }

/* --- HUBS --- */
.hub-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.hub-card { 
  position: relative; 
  background: #fff; 
  border-radius: 32px; 
  padding: 48px; 
  text-decoration: none; 
  overflow: hidden; 
  border: 1px solid rgba(0,0,0,0.05); 
  transition: 0.4s; 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hub-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }

.hub-ic { width: 80px; height: 80px; margin-bottom: 32px; color: var(--rose); }
.hub-card:last-child .hub-ic { color: var(--plum); }

.hub-card h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 12px; color: var(--text) !important; }
.hub-card p { color: var(--muted) !important; font-size: 1rem; margin-bottom: 32px; }

.hub-btn { 
  padding: 12px 32px; 
  border-radius: 50px; 
  background: var(--text); 
  color: #fff; 
  font-weight: 700; 
  font-size: 0.9rem; 
  transition: 0.3s; 
}
.hub-card:hover .hub-btn { background: var(--rose); }
.hub-card:last-child:hover .hub-btn { background: var(--plum); }

@media(max-width: 768px) {
  .hub-wrap { grid-template-columns: 1fr; }
  .hub-card { padding: 32px; }
}

/* --- CATEGORIES --- */
.cat-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
  gap: 20px; 
}
.cat { 
  background: #fff; 
  padding: 24px; 
  border-radius: 24px; 
  text-align: center; 
  transition: 0.3s; 
  border: 1px solid rgba(0,0,0,0.03);
}
.cat:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--rose-lt); }
.cat-ic { 
  width: 60px; height: 60px; 
  border-radius: 20px; 
  display: flex; align-items: center; justify-content: center; 
  font-size: 1.8rem; 
  margin: 0 auto 16px; 
}
.cat h4 { font-size: 1rem; font-weight: 700; color: var(--text) !important; margin-bottom: 4px; }
.cat p { font-size: 0.75rem; color: var(--muted) !important; }

/* --- STEPS --- */
.steps { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 40px; 
  position: relative;
}
.step { text-align: center; position: relative; }
.snum { 
  width: 40px; height: 40px; 
  background: var(--text); 
  color: #fff; 
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  font-weight: 800; 
  margin: 0 auto 20px; 
  font-size: 0.9rem;
}
.step em { font-size: 2.5rem; display: block; margin-bottom: 16px; font-style: normal; }
.step h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 8px; color: var(--text) !important; }
.step p { font-size: 0.9rem; color: var(--muted) !important; }

/* --- VIDEOS --- */
.vid-row { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px; 
}
.vid-card { 
  background: #000; 
  border-radius: 24px; 
  overflow: hidden; 
  aspect-ratio: 16/9; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.vid-card iframe { width: 100%; height: 100%; border: none; }

/* --- DOWNLOAD --- */
.dl { 
  background: var(--text); 
  color: #fff; 
  padding: 80px 0; 
  margin: 0 24px; 
  border-radius: 40px; 
  position: relative;
  overflow: hidden;
}
.dl-in { 
  max-width: 1000px; 
  margin: 0 auto; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 0 48px;
  gap: 40px;
}
.dl h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 12px; color: #fff !important; }
.dl p { font-size: 1.1rem; opacity: 0.7; margin-bottom: 32px; color: #fff !important; }
.dl-btns { display: flex; gap: 16px; }
.dl-btns img { height: 48px; }
.qr-box { 
  background: #fff; 
  padding: 16px; 
  border-radius: 24px; 
  width: 160px; height: 160px; 
}
.qr-box img { width: 100%; height: 100%; object-fit: contain; }

@media(max-width: 768px) {
  .dl-in { flex-direction: column; text-align: center; padding: 0 24px; }
  .dl-btns { justify-content: center; }
  .dl h2 { font-size: 2.2rem; }
}

/* --- FOOTER --- */
footer {
  background: #fff;
  color: var(--text);
  padding: 100px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.fg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}
.flogo img { height: 38px; margin-bottom: 24px; }
.fbrand p { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 320px; margin-bottom: 32px; }
.socials { display: flex; gap: 12px; }
.soc {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 1.1rem; transition: 0.3s; text-decoration: none;
}
.soc:hover { background: var(--text); color: #fff; transform: translateY(-4px); }
.fcol h5 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; color: var(--text) !important;
}
.fcol ul { list-style: none; padding: 0; }
.fcol li { margin-bottom: 12px; }
.fcol li a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: 0.2s; }
.fcol li a:hover { color: var(--rose); transform: translateX(4px); }

.fbot {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.fbot p { font-size: 0.9rem; color: var(--muted) !important; font-weight: 600; }

.legal-notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 32px;
  background: var(--off);
  border-radius: 24px;
  margin-top: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}
.legal-notice-col h6 { font-size: 0.8rem; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; color: var(--text) !important; }
.legal-notice-col ul { list-style: none; }
.legal-notice-col li { font-size: 0.75rem; color: var(--muted) !important; margin-bottom: 6px; }
.legal-notice-col strong { color: var(--text) !important; }

/* --- HELP --- */
.fhelp {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--text); color: #fff;
  border: none; border-radius: 50px;
  padding: 12px 24px; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  cursor: pointer; z-index: 998;
  transition: 0.3s;
}
.fhelp:hover { transform: scale(1.05); background: var(--rose); }
.fhelp-ic { width: 24px; height: 24px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.moverlay { 
  display: none; position: fixed; inset: 0; z-index: 1000; 
  background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); 
  align-items: center; justify-content: center; padding: 24px; 
}
.moverlay.open { display: flex; }
.mbox { 
  background: #fff; border-radius: 32px; width: 100%; max-width: 900px; 
  max-height: 90vh; overflow-y: auto; padding: 40px; 
}
.mbox-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mclose { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); }
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.hcard { background: var(--off); border-radius: 20px; overflow: hidden; }
.hcard iframe { width: 100%; border: none; }
.hcard-info { padding: 20px; }
.htag { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 8px; }
.hcard-info h4 { font-size: 1rem; margin-bottom: 6px; }
.hcard-info p { font-size: 0.85rem; color: var(--muted) !important; }
