body.marketing {
  background: var(--bg);
  overflow-x: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------------------------------------------------------------
   Background Texture & Ambient Glows
--------------------------------------------------------------- */
.grid-texture, .cyber-grid-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 20%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 20%, transparent 80%);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  animation: floatOrb 10s infinite alternate ease-in-out;
}
.glow-blue { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--accent-2); }
.glow-cyan { top: 20%; right: -10%; width: 40vw; height: 40vw; background: var(--accent); animation-delay: -5s; }
.glow-cyan-center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60vw; height: 40vw; background: var(--accent); filter: blur(120px); opacity: 0.1;}

/* ---------------------------------------------------------------
   Navbar
--------------------------------------------------------------- */
.m-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.m-nav .brand { display: flex; align-items: center; gap: 10px; font-family: "Outfit", "Inter", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.2px; }
.m-nav .brand .mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; box-shadow: 0 4px 12px var(--accent-soft-2);
}
.m-nav .links { display: flex; align-items: center; gap: 30px; }
.m-nav .links a { font-size: 13.5px; font-weight: 600; color: var(--text-dim); transition: color 0.2s; }
.m-nav .links a:hover { color: var(--text); }
.m-nav .actions { display: flex; align-items: center; gap: 18px; }
.m-nav .actions .signin { font-size: 13.5px; font-weight: 600; color: var(--text-dim); transition: color 0.2s; }
.m-nav .actions .signin:hover { color: var(--text); }
.m-nav .btn-nav-cta {
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 700; font-size: 13px; padding: 10px 18px; border-radius: 9px;
  display: inline-flex; align-items: center; gap: 7px; box-shadow: 0 4px 15px var(--accent-soft-2); transition: all 0.2s ease;
}
.m-nav .btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--accent-soft-2); }
@media (max-width: 980px){ .m-nav .links{ display: none; } }

/* ---------------------------------------------------------------
   Hero Section & Launch Badge
--------------------------------------------------------------- */
.hero { padding: 90px 20px 40px; text-align: center; position: relative; }
.launch-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(0, 229, 255, 0.1); border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--accent); font-size: 12px; font-weight: 600; margin-bottom: 24px;
}
.pulse-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: clamp(40px, 7vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: #fff; margin-bottom: 20px; }
.text-gradient-cyan { background: linear-gradient(135deg, #00E5FF, #0066FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.muted-text { color: var(--text-dim); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-faint); max-width: 600px; margin: 0 auto 40px; line-height: 1.6; }
.hero-cta-group { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; }

/* Buttons */
.btn-primary-neon {
  background: #fff; color: #000; font-weight: 700; padding: 14px 28px; border-radius: 12px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4), inset 0 -3px 0 rgba(0,0,0,0.1); transition: all 0.3s ease; font-family: 'Outfit', sans-serif;
}
.btn-primary-neon:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0, 229, 255, 0.6), inset 0 -3px 0 rgba(0,0,0,0.1); color: #000; }
.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 28px; border-radius: 12px; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(10px); transition: all 0.3s ease;
}
.btn-secondary-glass:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: #fff; }

/* ---------------------------------------------------------------
   Showcase Terminal (Hero)
--------------------------------------------------------------- */
.glass-terminal {
  background: rgba(10, 12, 20, 0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 16px; max-width: 800px; margin: 0 auto; text-align: left; box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0, 102, 255, 0.15);
}
.term-header { display: flex; align-items: center; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.3); }
.mac-controls span { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--border-soft); margin-right: 6px; }
.term-title { margin: 0 auto; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-faint); }
.term-body { padding: 24px; font-family: 'JetBrains Mono', monospace; font-size: 13.5px; line-height: 1.8; color: var(--text); }
.text-blue { color: var(--accent-2); }
.text-cyan { color: var(--accent); }
.text-green { color: var(--green); }
.text-dim { color: var(--text-faint); margin-right: 10px; }

/* ---------------------------------------------------------------
   Telemetry Section
--------------------------------------------------------------- */
.telemetry-section { text-align: center; padding: 40px 20px 80px; }
.telemetry-glass-panel {
  display: flex; align-items: center; justify-content: center; gap: 40px; max-width: 900px; margin: -40px auto 60px;
  background: rgba(13, 15, 24, 0.6); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.stat-block { flex: 1; text-align: left; }
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.1); }
.stat-label { font-size: 13px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800; color: #fff; line-height: 1.2; margin: 8px 0; }
.stat-unit { font-size: 20px; color: var(--text-faint); }
.progress-bar-cyber { height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; margin-top: 10px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #0066FF, #00E5FF); border-radius: 10px; }
.trend-up { font-size: 13px; color: var(--green); font-weight: 600; }

/* ---------------------------------------------------------------
   Advanced Bento Features
--------------------------------------------------------------- */
.features-bento { padding: 80px 20px; }
.section-heading { text-center; max-width: 600px; margin: 0 auto 50px; text-align: center;}
.eyebrow-tag { display: inline-block; background: var(--accent-soft); color: var(--accent); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(32px, 4vw, 46px); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; }
.section-title em { font-style: normal; color: var(--accent); }

.bento-grid-modern { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.bento-card {
  background: rgba(13, 15, 24, 0.5); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 32px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.bento-card:hover { border-color: rgba(0, 229, 255, 0.3); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.card-large { grid-column: span 2; display: flex; align-items: center; justify-content: space-between; }
.card-small { grid-column: span 1; }
.card-medium { grid-column: span 3; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(90deg, rgba(13,15,24,0.5), rgba(0,102,255,0.05)); }
.bento-card h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.bento-card p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }
.icon-box-neon { width: 50px; height: 50px; background: rgba(0, 229, 255, 0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: 14px; margin-bottom: 20px; box-shadow: inset 0 0 15px rgba(0,229,255,0.2); }
.icon-box-glass { width: 50px; height: 50px; background: rgba(255, 255, 255, 0.05); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: 14px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.1); }
.bento-code-snippet { background: rgba(0,0,0,0.5); padding: 20px; border-radius: 12px; font-family: 'JetBrains Mono', monospace; color: var(--text-dim); font-size: 13px; border: 1px solid rgba(255,255,255,0.05); }
.bento-code-snippet code { display: block; margin-bottom: 8px; }

/* ---------------------------------------------------------------
   Pricing Section Overhaul
--------------------------------------------------------------- */
.pricing-section { padding: 80px 20px; }
.pricing-cards-container { display: flex; align-items: center; justify-content: center; gap: 24px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.price-card { flex: 1; min-width: 300px; padding: 40px 32px; border-radius: 24px; text-align: left; position: relative; }
.glass-standard { background: rgba(13, 15, 24, 0.4); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px); transition: transform 0.3s ease; }
.glass-standard:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); }
.glass-premium { background: rgba(13, 15, 24, 0.8); backdrop-filter: blur(20px); transform: scale(1.05); z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transition: transform 0.3s ease; }
.glass-premium:hover { transform: scale(1.05) translateY(-4px); }
.glowing-border::before {
  content: ""; position: absolute; inset: 0; border-radius: 24px; padding: 2px;
  background: linear-gradient(135deg, #00E5FF, transparent, #0066FF); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan-name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 10px; }
.plan-price { font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 10px; }
.plan-price span { font-size: 18px; color: var(--text-faint); font-weight: 500; }
.plan-credits { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 30px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 40px; }
.plan-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 15px; color: var(--text-dim); }
.plan-features i { font-size: 18px; color: #fff; }
.btn-price-ghost { display: block; text-align: center; padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); color: #fff; font-weight: 700; transition: background 0.3s; }
.btn-price-ghost:hover { background: rgba(255,255,255,0.05); }
.btn-price-primary { display: block; text-align: center; padding: 14px; border-radius: 12px; background: linear-gradient(135deg, #00E5FF, #0066FF); color: #000; font-weight: 700; box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3); transition: transform 0.3s; }
.btn-price-primary:hover { transform: translateY(-2px); color: #000; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #00E5FF; color: #000; padding: 6px 16px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

/* ---------------------------------------------------------------
   Bottom CTA
--------------------------------------------------------------- */
.bottom-cta { padding: 120px 20px; position: relative; overflow: hidden; border-top: 1px solid var(--border-soft); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ---------------------------------------------------------------
   Footer & Floating WhatsApp Button
--------------------------------------------------------------- */
.m-footer { border-top: 1px solid var(--border-soft); padding: 60px 48px 30px; background: var(--bg-elevated); }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.footer-grid .brand { display: flex; align-items: center; gap: 9px; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.footer-grid .brand .mark { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(145deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; }
.footer-grid p { font-size: 13.5px; color: var(--text-faint); line-height: 1.6; max-width: 280px; }
.footer-grid h5 { font-family: "Outfit", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { font-size: 14px; color: var(--text-faint); transition: color 0.2s; }
.footer-grid ul a:hover { color: var(--text); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 15px; transition: all 0.2s; }
.footer-social a:hover { background: var(--bg-hover); color: var(--accent); border-color: var(--accent-soft-2); }
.footer-bottom { max-width: 1160px; margin: 0 auto; border-top: 1px solid var(--border-soft); padding-top: 24px; text-align: center; font-size: 13px; color: var(--text-faint); }

.wa-float-left {
  position: fixed; bottom: 26px; left: 26px; width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px;
  box-shadow: 0 10px 26px rgba(37,211,102,.4); z-index: 50; transition: all 0.2s ease;
}
.wa-float-left:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 15px 35px rgba(37,211,102,.5); }

/* ---------------------------------------------------------------
   Animations
--------------------------------------------------------------- */
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 50px) scale(1.1); } }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } 100% { opacity: 1; transform: scale(1); } }
@keyframes floatSlow { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.float-slow { animation: floatSlow 6s ease-in-out infinite; }

.fill-animated { position: relative; overflow: hidden; }
.fill-animated::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ---------------------------------------------------------------
   Responsive Adjustments
--------------------------------------------------------------- */
@media (max-width: 992px) {
  .bento-grid-modern { grid-template-columns: 1fr; }
  .card-large, .card-medium { grid-column: span 1; flex-direction: column; text-align: center; }
  .telemetry-glass-panel { flex-direction: column; gap: 20px; padding: 30px; }
  .stat-divider { width: 100%; height: 1px; }
  .pricing-cards-container { flex-direction: column; }
  .glass-premium { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid .brand { justify-content: center; }
  .footer-social { justify-content: center; }
  .hero-cta-group { flex-direction: column; }
}
/* Fix for Bottom CTA alignment and text overflow */
.bottom-cta {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center; /* Centering everything */
}

.bottom-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  margin: 16px 0 20px;
  line-height: 1.2;
  word-wrap: break-word; /* Text bahar nahi jayega */
  max-width: 90%;        /* Width ko control mein rakhega */
}

.bottom-cta p {
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 500px;
  margin: 0 auto 35px;
  padding: 0 15px;      /* Sides se padding di taaki text screen se chipke nahi */
}

.bottom-cta .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;      /* Button screen choti hone par niche aa jayenge */
  width: 100%;
}
 
/* FAQ Specific Styles */
.faq-section { padding: 100px 20px; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); margin-bottom: 12px; border-radius: 16px; overflow: hidden; transition: 0.3s; }
.faq-question { width: 100%; padding: 24px; display: flex; justify-content: space-between; align-items: center; background: transparent; color: #fff; font-size: 16px; font-weight: 600; border: none; cursor: pointer; text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 24px; color: var(--text-dim); line-height: 1.6; }
.faq-item.active .faq-answer { padding-bottom: 24px; }
.faq-question i { color: var(--accent); transition: 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-support { margin-top: 80px; }
.faq-support h3 { color: #fff; margin-bottom: 10px; }
/* FAQ Support Section Style */
.faq-support { 
    margin-top: 80px; 
    padding: 40px; 
    background: rgba(255,255,255,0.02); 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-support h3 { 
    font-family: 'Outfit', sans-serif; 
    font-size: 28px; 
    margin-bottom: 12px; 
    color: #fff; 
}

.faq-support p { 
    color: var(--text-dim); 
    font-size: 16px; 
    margin-bottom: 30px; 
}

.cta-row { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
}

/* Responsive fix for buttons */
@media (max-width: 600px) {
    .cta-row { flex-direction: column; width: 100%; }
    .cta-row a { width: 100%; justify-content: center; }
}

/* Docs Page Specifics */
.page-container { padding: 100px 20px; max-width: 900px; margin: 0 auto; }
.page-head { text-align: center; margin-bottom: 60px; }
.page-title { font-size: 48px; color: #fff; margin-top: 10px; }
.page-sub { color: var(--text-dim); font-size: 18px; margin-top: 15px; }

.step-wrapper { 
    border-left: 2px solid var(--border); 
    padding-left: 30px; 
    margin-left: 10px; 
    margin-top: 40px; 
}
.step-wrapper h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.step-wrapper p { color: var(--text-dim); margin-bottom: 20px; }

.code-box { 
    background: #000; padding: 10px 15px; border-radius: 8px; 
    color: var(--accent); font-family: monospace; 
}
.code-block { 
    background: #000; padding: 20px; border-radius: 12px; 
    overflow-x: auto; color: #fff; font-family: monospace; margin-top: 15px; 
}

/* ===================================================================
   Extension Page Specific Styles (Clean & No Inline)
=================================================================== */

/* Hero Section */
.page-container { 
    padding: 100px 20px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.page-head { 
    text-align: center; 
    margin-bottom: 80px; 
}

.page-title { 
    font-family: 'Outfit', sans-serif; 
    font-size: 56px; 
    font-weight: 800; 
    color: #fff; 
    margin-top: 15px;
    letter-spacing: -1px;
}

.page-sub { 
    color: var(--text-dim); 
    font-size: 18px; 
    line-height: 1.6;
    margin: 20px auto; 
    max-width: 700px; 
}

.cta-row { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    margin-top: 30px; 
}

/* Features Section (Bento Grid Re-use) */
.features-bento { 
    padding: 60px 0; 
}

.section-heading { 
    text-align: center; 
    margin-bottom: 50px; 
}

.section-title { 
    font-family: 'Outfit', sans-serif; 
    font-size: 36px; 
    color: #fff; 
}

/* Reusing your existing bento-grid-modern and bento-card */
.bento-grid-modern { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
}

/* Responsive Fix */
@media (max-width: 768px) {
    .page-title { font-size: 36px; }
    .cta-row { flex-direction: column; align-items: center; }
    .bento-grid-modern { grid-template-columns: 1fr; }
}

/* Telegram Page Specifics */
.command-list { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.command-item { 
    display: flex; align-items: center; gap: 20px; 
    padding: 15px; background: rgba(255,255,255,0.03); 
    border-radius: 10px; border: 1px solid var(--border);
}
.command-item code { color: var(--accent); font-weight: bold; font-family: monospace; }
.command-item span { color: var(--text-dim); }

/* Layouts */
.page-container { padding: 120px 20px; max-width: 1000px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }

/* Glass Panel (The Premium Look) */
.glass-panel { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 40px; 
    border-radius: 20px; 
}

/* Form Styles */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }
.form-control { 
    width: 100%; background: #000; border: 1px solid rgba(255,255,255,0.1); 
    padding: 12px; border-radius: 10px; color: #fff; 
}

/* Info Cards */
.info-side { display: flex; flex-direction: column; gap: 20px; }
.info-card { display: flex; gap: 20px; align-items: flex-start; }
.icon-box { 
    padding: 15px; border-radius: 10px; 
    background: rgba(255, 87, 34, 0.1); color: #FF5722; 
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}
/* Privacy Page Container */
.page-container { 
    padding: 120px 20px; 
    max-width: 900px; 
    margin: 0 auto; 
}

.page-head { margin-bottom: 60px; }

.page-title { 
    font-family: 'Outfit', sans-serif; 
    font-size: 48px; 
    color: #fff; 
    margin-bottom: 10px; 
}

.text-gradient-primary { 
    background: linear-gradient(90deg, var(--primary), #fb923c); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* Glass Panel (The Premium Look) */
.glass-panel { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 60px; 
    border-radius: 24px; 
    color: rgba(255, 255, 255, 0.7); 
    line-height: 1.8;
}

/* Styling the dynamic content from database */
.privacy-content h2 { color: #fff; font-size: 28px; margin-top: 40px; margin-bottom: 20px; }
.privacy-content h3 { color: #fff; font-size: 20px; margin-top: 30px; margin-bottom: 15px; }
.privacy-content p { margin-bottom: 20px; }
.privacy-content ul { padding-left: 20px; margin-bottom: 20px; }
.privacy-content li { margin-bottom: 10px; }
.privacy-content strong { color: #fff; }

@media (max-width: 768px) {
    .glass-panel { padding: 30px; }
    .page-title { font-size: 36px; }
}

/* Terms Page Container */
.page-container { 
    padding: 120px 20px; 
    max-width: 900px; 
    margin: 0 auto; 
}

.page-head { margin-bottom: 60px; }

.page-title { 
    font-family: 'Outfit', sans-serif; 
    font-size: 48px; 
    color: #fff; 
    margin-bottom: 10px; 
}

.text-gradient-primary { 
    background: linear-gradient(90deg, var(--primary), #fb923c); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* Glass Panel (Premium Look) */
.glass-panel { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 60px; 
    border-radius: 24px; 
    color: rgba(255, 255, 255, 0.7); 
    line-height: 1.8;
}

/* Terms Dynamic Content Styling */
.terms-content h2 { color: #fff; font-size: 28px; margin-top: 40px; margin-bottom: 20px; }
.terms-content h3 { color: #fff; font-size: 20px; margin-top: 30px; margin-bottom: 15px; }
.terms-content p { margin-bottom: 20px; }
.terms-content ul { padding-left: 20px; margin-bottom: 20px; }
.terms-content li { margin-bottom: 10px; }
.terms-content a { color: var(--primary); text-decoration: none; }
.terms-content strong { color: #fff; }

@media (max-width: 768px) {
    .glass-panel { padding: 30px; }
    .page-title { font-size: 36px; }
}