/* =========================================================================
   styles.css for NetMods
   - Complete stylesheet including header, hero, cards, campaigns,
     Whop stores, admin editor, password modal, auth forms, chat, profile,
     promotion form and responsive rules.
   - Organized, de-duplicated and extended with a polished profile page.
   ========================================================================= */

.logo img,
.logo-img {
  height: 85px; /* good visual height */
  width: 180px; /* increased width for better visibility */
  cursor: pointer;
  display: block;
  object-fit: contain;
  margin-top: -14px;    /* visually center */
  margin-bottom: -14px; /* prevent header stretch */
}

.left-nav .logo {
  display: flex;
  align-items: center;
}
/* =========================
   0. CSS Variables & Reset
   ========================= */

:root{
  --bg: #f4f6f9;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --accent-500: #006df0;
  --accent-600: #0056d6;
  --accent-700: #003fa8;
  --accent-200: #dbe9ff;
  --success: #16a34a;
  --danger: #ef4444;
  --card-shadow: 0 6px 22px rgba(12,22,36,0.06);
  --elev-shadow: 0 10px 30px rgba(12,22,36,0.08);
  --glass: rgba(255,255,255,0.6);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}
html, body {
  overflow-x: hidden; /* Remove horizontal scrollbar */
}

body.calendly-popup-open {
  overflow: hidden; /* Disable scrolling when popup is open */
}
/* Calendly popup tweaks: remove scrollbar near the embedded form
   - Force Calendly overlay/popup/iframe to not show scrollbars
   - Use vendor rules to hide scrollbars across browsers
*/
body.calendly-popup-open .calendly-overlay,
body.calendly-popup-open .calendly-popup,
body.calendly-popup-open .calendly-inline-widget,
body.calendly-popup-open .calendly-inline-widget iframe,
body.calendly-popup-open .calendly-popup iframe {
  overflow: hidden !important;
}

/* Hide scrollbars for Firefox and IE/Edge */
body.calendly-popup-open .calendly-overlay,
body.calendly-popup-open .calendly-popup,
body.calendly-popup-open .calendly-inline-widget,
body.calendly-popup-open .calendly-inline-widget iframe,
body.calendly-popup-open .calendly-popup iframe {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE 10+ */
}

/* Hide webkit scrollbars inside Calendly iframe containers */
body.calendly-popup-open .calendly-inline-widget iframe::-webkit-scrollbar,
body.calendly-popup-open .calendly-popup iframe::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Small safety: ensure overlay covers full viewport so no page scrollbar shows next to popup */
body.calendly-popup-open .calendly-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; /* Remove horizontal scrollbar */}
body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden; /* Remove horizontal scrollbar */
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* helpers */
.hidden { display: none !important; }
.center { text-align: center; }
.flex { display: flex; }
.flex-column { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.p-8 { padding: 8px; }

/* focus accessibility */
:focus { outline: 3px solid rgba(0,109,240,0.12); outline-offset: 3px; }
/* =========================
   1. Header
   ========================= */
header {
  background: linear-gradient(90deg, rgba(0,20,40,0.98), rgba(3,37,65,0.98));
  color: var(--surface);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.left-nav,
.right-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo */
.logo {
  font-size: 1.9rem;
  font-weight: 800;
  color: #e6f0ff;
  letter-spacing: 0.4px;
}
.logo small {
  color: #cfe3ff;
  font-weight: 500;
  margin-left: 6px;
  font-size: 0.86rem;
}

/* Logo image */
.logo img,
.logo-img {
  height: 95px;
  width: 200px;
  cursor: pointer;
  display: block;
  object-fit: contain;
  margin-top: -8px;
  margin-bottom: -8px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 1.9rem;
  font-weight: 800;
  color: #e6f0ff;
  letter-spacing: 0.4px;
  margin-top: -4px;
}

.logo-text small {
  color: #cfe3ff;
  font-weight: 500;
  margin-left: 6px;
  font-size: 0.86rem;
}
.left-nav .logo {
  display: flex;
  align-items: center;
}

/* header buttons (default) */
.small-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--surface);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-500), var(--accent-600));
  color: var(--surface);
  box-shadow: 0 8px 24px rgba(2, 94, 218, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 700;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--surface);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.right-nav a {
  margin-left: 10px;
}

/* =========================
   Chat Button (Modern Look)
   ========================= */
.chat-btn {
  background: linear-gradient(135deg, #0b74ff, #004de6);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 116, 255, 0.3);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-btn::before {
  content: "💬";
  font-size: 1.1rem;
}

.chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 116, 255, 0.4);
  background: linear-gradient(135deg, #0d7fff, #0059ff);
}

/* =========================
   User Menu
   ========================= */
#userMenu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.user-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 10px;
  border-radius: 8px;
}

/* Active header state */
.header-active {
  background: linear-gradient(90deg, var(--accent-600), var(--accent-700)) !important;
  border-color: var(--accent-700) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(2, 94, 218, 0.14);
}


/* =========================
   2. Hero Section
   ========================= */
.hero-section {
  background: linear-gradient(135deg, #041025 0%, #07203a 40%, #0b1320 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

/* Hero Header Text */
.hero-section .hero-header h1 {
  font-size: 2.4rem;       /* slightly smaller, readable */
  font-weight: 700;        /* bold but not too heavy */
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* softer shadow for depth */
  line-height: 1.2;        /* better spacing */
}

.hero-section .hero-header .hero-subheading {
  font-size: 1.05rem;       /* slightly smaller for hierarchy */
  font-weight: 400;         /* normal weight */
  color: rgba(235, 245, 255, 0.85);
  margin-bottom: 60px;
}


/* Hero Boxes */
.hero-section .hero-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-section .hero-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.hero-section .hero-box:hover {
  transform: translateY(-4px); /* subtle hover */
  background: rgba(255, 255, 255, 0.07); /* mild highlight */
  box-shadow: 0 10px 25px rgba(0, 115, 255, 0.15); /* subtle colored shadow */
}

.hero-section .hero-box h2 {
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #17e6e6;
  margin-bottom: 15px;
}

.hero-section .hero-box p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.hero-section .hero-box p span { 
  color: #17e6e6; 
  font-weight: 700; 
}

/* Buttons */
.hero-section .hero-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #00c3ff, #0072ff);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,115,255,0.25);
}

.hero-section .hero-btn:hover {
  background: linear-gradient(90deg, #0072ff, #00c3ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,115,255,0.28);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-section { padding: 70px 20px 100px; }
  .hero-section .hero-header h1 { font-size: 2rem; }
  .hero-section .hero-options { flex-direction: column; align-items: center; gap: 40px; }
  .hero-section .hero-box { width: 100%; max-width: 340px; }
  .hero-section .hero-box h2 { font-size: 32px; }
  .hero-section .hero-box p { font-size: 17px; }
  .hero-btn { font-size: 15px; padding: 12px 28px; }
}

/* =========================
   3. Sections & Titles
   ========================= */
section { padding: 56px 20px; }
h2 {
  text-align: center;
  font-size: 1.9rem;
  color: #061428;
  margin-bottom: 18px;
  position: relative;
}
h2::after {
  content: none; /* Remove the line */
}

/* =========================
   Promotions Section - Image Only
   ========================= */

.promotions-section {
  padding: 80px 0;
  background-color: #f5f6fa;
  text-align: center;
}

.promotions-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.promo-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
  position: relative;
}

.promo-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #2a9d8f;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Slider container */
.promo-slider {
  display: flex;
  gap: 25px;
  overflow: hidden;
  position: relative;
  width: calc(260px * 12 + 30px * 12);
  animation: slideHorizontal 25s linear infinite;
}

/* Smooth infinite slide */
@keyframes slideHorizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Promo Card */
.promo-card {
  flex: 0 0 260px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.promo-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Image fills entire card */
.promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.promo-card:hover img {
  transform: scale(1.05);
}

/* Remove promo-info entirely */
.promo-info {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .promo-card { flex: 0 0 220px; }
}

@media (max-width: 768px) {
  .promo-card { flex: 0 0 180px; }
}

@media (max-width: 480px) {
  .promo-card { flex: 0 0 150px; }
}
/* =========================
   General Landing Page Fonts & Theme
   ========================= */
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #111;
  margin: 0;
  padding: 0;
  background-color: #f5f7fa;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: #07203a;
  margin: 0;
}

p {
  color: #444;
  font-size: 0.95rem;
}

span {
  color: #5b6ef2;;
  font-weight: 600;
}

/* =========================
   Services Section
   ========================= */
.services-section {
  padding: 60px 0;
  background: #f8f9fc;
}

.services-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0d2b55;
  margin-bottom: 40px;
  position: relative;
}

.services-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-items: center;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #007bff;
}

.service-card h3 {
  padding: 15px 10px;
  color: #0d2b55;
  font-weight: 600;
  font-size: 1.1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
/* =========================
   Reach Millions Section
   ========================= */
.reach-millions-section {
  padding: 80px 20px;
  background-color: #f9f9fb;
  text-align: center;
}
.reach-millions-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}
.reach-millions-section h2 span {
  color: #2a9d8f;
}
.reach-millions-section p {
  font-size: 1.125rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-btn {
  background: linear-gradient(135deg, #0b74ff, #004de6);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11, 116, 255, 0.3);
  transition: all 0.25s ease;
  margin-top: 24px;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 116, 255, 0.4);
  background: linear-gradient(135deg, #0d7fff, #0059ff);
}
.card-icon {
  width: 60px;       /* Adjust size as needed */
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px auto; /* centers image and adds space below */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* =========================
   Stop Burning Section
   ========================= */
.stop-burning-section {
  background-color: #072139;
  color: #fff;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  text-align: left;
}
.stop-container {
  max-width: 900px;
  line-height: 1.7;
}
.stop-burning-section h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 25px;
}
.stop-burning-section h2 span {
  color: #17e6e6;
}
.stop-burning-section .intro {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 35px;
}
.stop-burning-section .pain-points {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.stop-burning-section .pain-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.stop-burning-section .pain-points li::before {
  content: "•";
  color: #00ff66;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.stop-burning-section .highlight {
  font-size: 1.125rem;
  font-weight: 600;
  color: #00ffcc;
}
/* =========================
   Viral Reach Section (Optimized Spacing Version)
   ========================= */
.viral-reach-section {
  padding: 70px 40px; /* reduced vertical padding, better horizontal spacing */
  background-color: #fdfdfd;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* ---------- Title ---------- */
.viral-reach-section h2 span {
  font-size: 2.5rem; /* original size */
  font-weight: 800;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  color: #222;
  letter-spacing: 0.3px;
}

/* Remove underline */
.viral-reach-section h2 span::after {
  content: none;
}

/* ---------- Description ---------- */
.viral-reach-section .section-description {
  font-size: 1.05rem;
  color: #555;
  max-width: 780px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  padding: 0 10px; /* slight inner padding for mobile balance */
}

/* ---------- Subheading ---------- */
.viral-reach-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
}

/* ---------- Benefits Grid ---------- */
.viral-reach-section .benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; 
  margin-bottom: 60px;
  padding: 0 30px;
}

/* Benefit Card */
.viral-reach-section .benefit {
  background-color: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.viral-reach-section .benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.viral-reach-section .benefit h4 span {
  font-size: 1.15rem;
  font-weight: 700;
  color: #5b6ef2;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.viral-reach-section .benefit p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ---------- Summary ---------- */
.viral-reach-section .summary {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 35px auto;
  color: #444;
  line-height: 1.7;
  padding: 0 10px;
}

.viral-reach-section .summary .highlight {
  color: #2a9d8f;
  font-weight: 700;
}

/* ---------- CTA Button ---------- */
.viral-reach-section .cta .btn-primary {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #0b74ff, #004de6);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 14px rgba(42, 157, 143, 0.3);
}

.viral-reach-section .cta .btn-primary:hover {
  background: linear-gradient(90deg, #1abc9c, #2a9d8f);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(42, 157, 143, 0.35);
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 1024px) {
  .viral-reach-section {
    padding: 60px 30px;
  }
  .viral-reach-section .benefits {
    padding: 0 20px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .viral-reach-section {
    padding: 55px 20px;
  }
  .viral-reach-section .section-description {
    margin-bottom: 40px;
  }
  .viral-reach-section h3 {
    margin-bottom: 30px;
  }
  .viral-reach-section .benefits {
    gap: 22px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .viral-reach-section {
    padding: 50px 16px;
  }
  .viral-reach-section h2 span {
    font-size: 2rem;
  }
  .viral-reach-section .benefits {
    gap: 20px;
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
  .stop-burning-section h2 { font-size: 2.2rem; }
  .stop-burning-section .intro, .stop-burning-section .highlight { font-size: 1rem; }
  .reach-millions-section h2 { font-size: 1.5rem; }
  .reach-millions-section p { font-size: 1rem; }
  .viral-reach-section h2 span { font-size: 2rem; }
  .viral-reach-section h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .viral-reach-section h2 span { font-size: 1.7rem; }
  .viral-reach-section h3 { font-size: 1.1rem; }
}

/* =========================
   6. Stop Burning Section
   ========================= */

.stop-container { max-width: 900px; line-height: 1.8; }
.stop-burning-section h2 { font-size: 48px; font-weight: 900; margin-bottom: 25px; color: #ffffff; }
.stop-burning-section h2 span { color: 17e6e6; }
.stop-burning-section .intro { font-size: 20px; font-weight: 500; margin-bottom: 35px; }
.stop-burning-section .pain-points { list-style: none; padding: 0; margin: 0 0 40px 0; }
.stop-burning-section .pain-points li { position: relative; padding-left: 28px; margin-bottom: 18px; font-size: 18px; }
.stop-burning-section .pain-points li::before { content: "•"; color: #00ff66; font-weight: bold; position: absolute; left: 0; top: 0; }
.stop-burning-section .highlight { font-size: 20px; margin-top: 30px; font-weight: 600; color: #17e6e6;; }

/* =========================
   7. Reach Millions Section
   ========================= */
/* Reach Millions Section 
.reach-millions-section {
  padding: 80px 20px;
  background-color: #f9f9fb; 
  text-align: center;
}*/

.reach-millions-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a; /* Dark text for readability */
  margin-bottom: 16px;
  line-height: 1.3;
}

.reach-millions-section h2 span {
  color: #5b6ef2; /* Accent color instead of green */
}

.reach-millions-section p {
  font-size: 1.125rem;
  color: #555555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .reach-millions-section h2 {
    font-size: 1.5rem;
  }

  .reach-millions-section p {
    font-size: 1rem;
  }
}
/* =========================
   8. Chat Section
   ========================= */
#chatSection { max-width: 760px; margin: 40px auto 80px; padding: 0 12px; }
#chatBox {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--elev-shadow);
  overflow: hidden;
  border: 1px solid #e6eefb;
  display: flex;
  flex-direction: column;
  height: 520px;
}
#chatMessages {
  flex: 1 1 auto;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg,#fbfdff,#f7fbff);
}
.message-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .98rem;
  line-height: 1.35;
  box-shadow: 0 6px 18px rgba(3,40,80,0.06);
  word-wrap: break-word;
}
.message-bubble.user { margin-left: auto; background: linear-gradient(180deg,var(--accent-500),var(--accent-600)); color: #fff; border-bottom-right-radius: 4px; }
.message-bubble.admin { margin-right: auto; background: #f1f5fb; color: #07203a; border-bottom-left-radius: 4px; }
.chat-inputs { display: flex; border-top: 1px solid #e6eefb; }
#chatInput { flex: 1; padding: 14px 16px; border: none; background: transparent; font-size: 1rem; }
#chatSend { background: var(--accent-600); color: #fff; padding: 12px 18px; border: none; font-weight: 700; cursor: pointer; }

/* =========================
   9. Admin Panel
   ========================= */
#adminSection {
  max-width: 920px;
  margin: 40px auto 80px;
  background: var(--surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--elev-shadow);
}
#adminSection h2 { margin-bottom: 10px; color: #07203a; }
#adminSection h3 { margin-top: 8px; font-size: 1.05rem; color: #0b1221; }

/* =========================
   10. Whop Stores Cards
   ========================= */
#stores { padding: 100px 20px; background: #f4f6f9; }
.store-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.store-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }
.store-card img { width: 100%; height: 180px; object-fit: cover; }
.store-card h3 { padding: 12px 16px; font-size: 1.2rem; color: #07203a; }
.store-card p { padding: 0 16px 14px; font-size: .96rem; color: #555; }

/* =========================
   11. Profile Page
   ========================= */
.profile-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-shadow);
  max-width: 700px;
  margin: 0 auto 80px;
}
.profile-card h2 { font-size: 2rem; margin-bottom: 12px; }
.profile-card p { font-size: 1rem; color: #444; margin-bottom: 16px; }
.profile-card img { width: 120px; height: 120px; border-radius: 50%; margin-bottom: 16px; }

/* =========================
   12. Responsive Layout
   ========================= */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
}
@media (max-width: 768px) {
  header .nav-bar { flex-direction: column; gap: 14px; }
  .hero-section { padding: 60px 20px 80px; }
  .stop-burning-section { flex-direction: column; text-align: center; padding: 70px 20px; }
  .reach-millions-section { padding: 70px 20px; }
}



/* ================= VIRAL REACH SECTION ================= */
.viral-reach-section {
  padding: 70px 20px;
  background: #f5f7fa;
  text-align: center;
  color: #111;
}

.viral-reach-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #07203a;
}

.viral-reach-section .section-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.viral-reach-section .section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #0072ff;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.benefit {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 20px;
  width: 260px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,115,255,0.15);
}

.benefit h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0072ff;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}

.summary {
  max-width: 750px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
}

.summary .highlight {
  color: #0072ff;
  font-weight: 700;
}

.cta button.btn-primary {
  background: linear-gradient(90deg, #00c3ff, #0072ff);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 5px 15px rgba(0,115,255,0.25);
}

.cta button.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,115,255,0.4);
}


/* =========================
   GET MILLIONS SECTION (Dark Blue Theme)
   ========================= */
.get-millions-section {
  background: linear-gradient(135deg, #072139, #0b2d52);
  padding: 80px 40px;
  text-align: center;
  color: #ffffff;
}

.get-millions-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Title ---------- */
.get-millions-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 55px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ---------- Steps Grid ---------- */
.get-millions-section .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* ---------- Step Card ---------- */
.get-millions-section .step {
  background: linear-gradient(145deg, #0e2d4c, #133b63);
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1 1 calc(23% - 20px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 230px;
}

.get-millions-section .step:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ---------- Step Icon ---------- */
.get-millions-section .step-icon {
  font-size: 2.3rem;
  flex-shrink: 0;
  margin-top: 3px;
  color: #00c8ff;
  text-shadow: 0 0 6px rgba(0, 200, 255, 0.4);
}

/* ---------- Step Content ---------- */
.get-millions-section .step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00c8ff;
  letter-spacing: 0.3px;
}

.get-millions-section .step-content p {
  font-size: 0.95rem;
  color: #d6e6ff;
  line-height: 1.6;
}

/* ---------- Summary ---------- */
.get-millions-section .summary-text {
  margin-top: 45px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #52d1ff;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .get-millions-section {
    padding: 70px 30px;
  }
  .get-millions-section .step {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 768px) {
  .get-millions-section {
    padding: 60px 20px;
  }
  .get-millions-section .section-title {
    font-size: 1.9rem;
    margin-bottom: 45px;
  }
  .get-millions-section .steps {
    flex-direction: column;
    gap: 18px;
  }
  .get-millions-section .step {
    flex: 1 1 100%;
    min-height: auto;
  }
}
.get-millions-section .step-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.get-millions-section .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.4));
  transition: transform 0.3s ease;
}

.get-millions-section .step:hover .step-icon img {
  transform: scale(1.08);
}

/* ================= REAL PEOPLE SECTION ================= */


.real-people-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.real-people-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #07203a;
}

.real-people-section .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.real-people-section .card {
  background: linear-gradient(145deg, #ffffff, #e4f0ff);
  border-radius: 16px;
  padding: 30px 25px;
  flex: 1 1 calc(30% - 25px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.real-people-section .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.real-people-section .card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0072ff;
}

.real-people-section .card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0072ff;
}

.real-people-section .card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .real-people-section .card { flex: 1 1 calc(45% - 25px); }
}

@media (max-width: 768px) {
  .real-people-section .cards { flex-direction: column; gap: 20px; }
  .real-people-section .card { flex: 1 1 100%; min-height: auto; }
  .real-people-section .section-title { font-size: 2rem; }
}



/* ================= REAL PEOPLE SECTION ================= */
.real-people-section {
  background: #eef3f8; /* Matches other sections */
  padding: 70px 20px;
  text-align: center;
  color: #111;
}

.real-people-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.real-people-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #07203a;
}

.real-people-section .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.real-people-section .card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 20px;
  flex: 1 1 calc(30% - 20px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.real-people-section .card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.real-people-section .card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #0072ff;
}

.real-people-section .card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0072ff;
}

.real-people-section .card p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .real-people-section .card { flex: 1 1 calc(45% - 20px); }
}

@media (max-width: 768px) {
  .real-people-section .cards { flex-direction: column; gap: 15px; }
  .real-people-section .card { flex: 1 1 100%; min-height: auto; }
  .real-people-section .section-title { font-size: 1.8rem; }
}


/* */

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

/* Custom neat dot before each point */
.features li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #2a9d8f;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.1;
}
.pricing-section {
  background-color: #f8f9fb;
  padding: 80px 20px;
  text-align: center;
}

.pricing-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #07203a;
}

.pricing-section .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: linear-gradient(145deg, #ffffff, #e8f0ff);
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1 1 calc(33% - 30px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card.popular {
  background: linear-gradient(135deg, #0072ff, #00c3ff);
  color: #fff;
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card .pricing-header .price {
  font-size: 1.8rem;
  font-weight: 800;
}

.pricing-card .pricing-header .price span {
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
}

.pricing-card ul.features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pricing-card ul.features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.pricing-card .btn-choose {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #0072ff, #00c3ff);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pricing-card .btn-choose:hover {
  background: linear-gradient(90deg, #00c3ff, #0072ff);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-card { flex: 1 1 calc(45% - 30px); }
}

@media (max-width: 768px) {
  .pricing-card { flex: 1 1 100%; }
}


/* ================= FAST ANSWERS SECTION ================= */
.fast-answers-section {
  background: linear-gradient(180deg, #f9fbfd 0%, #f2f6fa 100%);
  padding: 55px 16px;
  color: #1a1a1a;
  text-align: center;
  font-family: "Inter", system-ui, sans-serif;
}

.fast-answers-section .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Section Title */
.fast-answers-section .section-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #0a2342;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* FAQ Container */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e7ecf3;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 14px 18px;
  background: #f9fafc;
  color: #0d1b2a;
  font-weight: 500;
  font-size: 0.96rem;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-question:hover {
  background: #eef3f9;
  color: #0047b3;
}

/* Arrow */
.arrow {
  display: inline-block;
  font-size: 1rem;
  color: #0047b3;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

/* Answer */
.faq-answer {
  display: none;
  padding: 12px 18px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Button */
.faq .cta {
  margin-top: 25px;
  text-align: center;
}

.faq .btn-primary {
  padding: 10px 24px;
  background: linear-gradient(135deg, #007bff, #005ae0);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 91, 224, 0.2);
}

.faq .btn-primary:hover {
  background: linear-gradient(135deg, #0069e0, #004dd1);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 91, 224, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .fast-answers-section {
    padding: 45px 14px;
  }
  .fast-answers-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 22px;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
  .faq-answer {
    font-size: 0.88rem;
    padding: 10px 14px;
  }
}





/* ================= ABOUT US SECTION ================= */
.about-us-section {
  background: linear-gradient(135deg, #041025 0%, #082039 40%, #0b1320 100%);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}

.about-us-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-us-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #00c3ff; /* brand highlight color */
}

.about-us-section .about-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-us-section .about-content p strong {
  color: #00c3ff; /* highlight important line */
}




