/* ═══════════════════════════════════════════
   HIND MEDIA NETWORK — Reporter Portal
   Colors match main website: #001342 + #ed7110
═══════════════════════════════════════════ */

:root {
  /* Website brand colors */
  --navy:        #001342;
  --navy-mid:    #001a5c;
  --navy-light:  #003b7a;
  --orange:      #ed7110;
  --orange-dark: #c95e00;
  --orange-pale: #fff3e8;
  --cream:       #f0f0f0;
  --cream-dark:  #e4e4e4;
  --white:       #ffffff;
  --text-dark:   #001342;
  --text-mid:    #2a3560;
  --text-muted:  #6b7280;
  --border:      rgba(0,19,66,0.10);
  --border-org:  rgba(237,113,16,0.28);
  --radius:      10px;
  --radius-sm:   6px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(0,19,66,0.10);
  --shadow-lg:   0 14px 56px rgba(0,19,66,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Devanagari', 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 15px;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-box {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.nav-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-title small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-btn {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  padding: 7px 16px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
}
.nav-btn:hover,
.nav-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}
.nav-cta.active {
  background: var(--orange) !important;
  color: var(--white) !important;
}

/* ══════════════════════════════════════
   PAGE SYSTEM
══════════════════════════════════════ */
.page {
  display: none;
  padding-top: 64px;
  min-height: 100vh;
}
.page.active {
  display: block;
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hidden { display: none !important; }

/* ══════════════════════════════════════
   LOGIN PAGE
══════════════════════════════════════ */
#page-login {
  background: var(--navy);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 80px 1.5rem 2.5rem;
  min-height: 100vh;
}
#page-login.active {
  display: flex;
  animation: fadeUp 0.4s ease both;
}

.login-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.login-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(237,113,16,0.13) 0%, transparent 65%);
  border-radius: 50%;
}
.login-bg::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,26,92,0.55) 0%, transparent 65%);
  border-radius: 50%;
}

.login-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  width: 100%;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Left hero panel */
.login-hero { background: var(--navy-mid);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.login-hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 240px; height: 240px;
  border: 44px solid rgba(237,113,16,0.10);
  border-radius: 50%;
}
.login-hero::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -40px;
  width: 200px; height: 200px;
  border: 34px solid rgba(237,113,16,0.07);
  border-radius: 50%;
}

.login-badge {
  display: inline-block;
  background: rgba(237,113,16,0.14);
  border: 1px solid rgba(237,113,16,0.28);
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.8rem;
}

.login-hero h2 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.login-hero h2 em {
  font-style: italic;
  color: var(--orange);
}
.login-hero p {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
}

.login-stats {
  display: flex;
  gap: 1.8rem;
  margin-top: 2rem;
}
.login-stat { }
.stat-num {
  display: block;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
}
.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.login-quote {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  line-height: 1.6;
}

/* Right form panel */
.login-form-wrap {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-header {
  margin-bottom: 1.8rem;
}
.login-form-header h3 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.login-form-header p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Tabs */
.form-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 1.5rem;
}
.form-tab {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 18px 10px;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.2s;
  user-select: none;
}
.form-tab.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

/* Form elements */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: all 0.2s;
  appearance: none;
}
.form-group input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(237,113,16,0.08);
}
.form-group input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}
.input-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.forgot-wrap {
  text-align: right;
  margin-bottom: 1rem;
}
.forgot-link {
  font-size: 12px;
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 12px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.login-footer-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 12px;
  color: var(--text-muted);
}
.login-footer-text a {
  color: var(--orange);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}
.login-footer-text a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: block;
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.22s;
  text-align: center;
}
.btn-navy { background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--orange);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--orange);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0) !important;
}
.full-width {
  width: 100%;
  font-size: 15px;
  padding: 15px;
}

/* ══════════════════════════════════════
   HERO (Membership)
══════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  background: radial-gradient(ellipse, rgba(237,113,16,0.09) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(237,113,16,0.12);
  border: 1px solid rgba(237,113,16,0.24);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 1.6rem;
  position: relative; z-index: 1;
}

.hero h1 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  max-width: 680px;
  margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  position: relative; z-index: 1;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  position: relative; z-index: 1;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.33);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.section-label.light { color: var(--orange); }

.section-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.section-sub.light { color: rgba(255,255,255,0.42); }

/* ══════════════════════════════════════
   ALERT BANNER
══════════════════════════════════════ */
.alert-banner {
  background: rgba(237,113,16,0.07);
  border: 1px solid var(--border-org);
  border-radius: var(--radius-sm);
  padding: 12px 1rem 12px 2.8rem;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.alert-banner::before {
  content: 'i';
  position: absolute;
  left: 10px; top: 13px;
  width: 18px; height: 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════
   PLAN CARDS
══════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  cursor: pointer;
  transition: all 0.25s;
}
.plan-card:hover {
  border-color: rgba(237,113,16,0.50);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.plan-card.featured {
  border-color: var(--orange);
  background: linear-gradient(155deg, var(--orange-pale) 0%, var(--white) 55%);
}
.plan-card.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(237,113,16,0.16);
}

.plan-tag {
  position: absolute;
  top: -13px; right: 20px;
  background: var(--orange);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.plan-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1.2rem;
}

.plan-name {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  line-height: 1.6;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 1.5rem;
}
.price-sym {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.price-num {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 5px;
}

.plan-features {
  list-style: none;
  margin-bottom: 0.5rem;
}
.plan-features li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 11px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-select-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.plan-select-btn:hover,
.plan-card.selected .plan-select-btn {
  background: var(--navy);
  color: var(--white);
}

/* ══════════════════════════════════════
   ADD-ONS
══════════════════════════════════════ */
.addons-section {
  background: var(--navy);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.addon-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s;
}
.addon-card:hover {
  border-color: rgba(237,113,16,0.45);
  background: rgba(237,113,16,0.05);
  transform: translateY(-2px);
}
.addon-card.added {
  border-color: var(--orange);
  background: rgba(237,113,16,0.10);
}

.addon-badge {
  display: inline-block;
  background: rgba(237,113,16,0.16);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.addon-icon {
  font-size: 28px;
  margin-bottom: 0.75rem;
  display: block;
}
.addon-name {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
}
.addon-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.addon-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--orange);
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.addon-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 8px;
  border-radius: 7px;
  border: 1px solid rgba(237,113,16,0.40);
  background: transparent;
  color: var(--orange);
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.addon-btn:hover,
.addon-card.added .addon-btn {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.step-card:hover {
  border-color: var(--border-org);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.step-num {
  display: block;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--orange-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ══════════════════════════════════════
   FAQ — NEW DESIGN
══════════════════════════════════════ */

/* Section */
.rp-faq-section {
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
  padding: 56px 0 0;
}

.faq-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.faq-main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #001342;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.faq-main-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* Grid — 2 columns */
.faq-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ item */
.faq-new-item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.faq-new-item:hover {
  border-color: #ed7110;
}
.faq-new-item.open {
  border-color: #ed7110;
  box-shadow: 0 6px 24px rgba(237,113,16,0.10);
}

/* Question */
.faq-new-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 12px;
}
.faq-new-q-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #001342;
}
.faq-new-q-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff3e8, #ffe4cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ed7110;
  flex-shrink: 0;
  transition: background 0.3s;
}
.faq-new-item.open .faq-new-q-icon {
  background: linear-gradient(135deg, #ed7110, #c95e00);
  color: #fff;
}

/* Toggle chevron */
.faq-new-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.3s, color 0.3s;
}
.faq-new-item.open .faq-new-toggle {
  transform: rotate(180deg);
  background: #ed7110;
  color: #fff;
}

/* Answer */
.faq-new-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s;
}
.faq-new-a p {
  padding: 0 18px 18px 64px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.8;
}
.faq-new-a p strong {
  color: #001342;
}
.faq-new-item.open .faq-new-a {
  max-height: 300px;
}

/* Help CTA */
.faq-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #001342, #001f6b);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 1080px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(0,19,66,0.20);
}
.faq-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(237,113,16,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ed7110;
  flex-shrink: 0;
}
.faq-cta-text {
  flex: 1;
}
.faq-cta-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.faq-cta-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.faq-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ed7110, #c95e00);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(237,113,16,0.30);
}
.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(237,113,16,0.40);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-new-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-new-a p {
    padding-left: 18px;
  }
  .faq-cta {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .faq-new-q {
    padding: 14px 14px;
    gap: 8px;
  }
  .faq-new-q-text {
    font-size: 13px;
    gap: 8px;
  }
  .faq-new-q-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .faq-new-a p {
    padding: 0 14px 14px;
    font-size: 12px;
  }
  .faq-main-title {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════
   ORDER SUMMARY
══════════════════════════════════════ */
.order-section {
  background: var(--navy);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
}
.order-inner {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.order-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.order-row:last-of-type { border-bottom: none; }
.order-label { color: rgba(255,255,255,0.48); font-weight: 400; }
.order-value { color: var(--white); font-weight: 500; }

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(237,113,16,0.28);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.order-total-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.order-total-price {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--orange);
}
.order-note {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.6;
}
.order-contact {
  text-align: center;
  margin-top: 1rem;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.35);
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-links {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.75; }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--orange);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 280px;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 700px) {
  .login-wrap {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .login-hero { display: none; }

  .plans-grid { grid-template-columns: 1fr; }

  .addons-grid { grid-template-columns: 1fr 1fr; }

  .hero h1 { font-size: 2rem; }
}

@media (max-width: 420px) {
  .addons-grid { grid-template-columns: 1fr; }
  .nav-title small { display: none; }
}

/* ══════════════════════════════════════
   ENHANCED ADDITIONS
══════════════════════════════════════ */

/* Login feature list */
.login-features {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.login-feature-item i {
  width: 28px; height: 28px;
  background: rgba(237,113,16,0.18);
  border: 1px solid rgba(237,113,16,0.30);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb366;
  font-size: 12px;
  flex-shrink: 0;
}

/* Login form icon */
.login-form-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Orange button */
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Trust strip icons */
.trust-item i {
  color: var(--orange);
  font-size: 15px;
}

/* Section label icon */
.section-label {
  color: var(--orange);
}

/* FAQ arrow */
.faq-arrow {
  font-size: 10px;
  color: var(--orange);
  margin-right: 8px;
  transition: transform 0.2s;
}
.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}
.faq-q span {
  display: flex;
  align-items: center;
}

/* Plan features with icons */
.plan-features li i {
  color: var(--orange);
  font-size: 11px;
  width: 18px;
  flex-shrink: 0;
}
.plan-features li::before {
  display: none;
}

/* Addon icon wrapper */
.addon-icon {
  display: block;
  margin-bottom: 0.75rem;
}

/* Order section icons */
.order-label i {
  margin-right: 6px;
  color: rgba(237,113,16,0.7);
}

/* Back to login link */
.back-login {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 13px;
  color: var(--text-muted);
}
.back-login a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.back-login a:hover { text-decoration: underline; }

/* Contact page reuse */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--orange) 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-hero p {
  font-size: 15px;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.contact-hero .hero-badge {
  display: inline-block;
  background: rgba(237,113,16,0.25);
  border: 1px solid rgba(237,113,16,0.5);
  color: #ffcc88;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* Contact wrapper */
.contact-wrapper {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.contact-info-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,19,66,0.07);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0,19,66,0.12);
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.info-icon.orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.info-icon.blue   { background: linear-gradient(135deg, var(--navy-light), var(--navy)); }
.info-icon.green  { background: linear-gradient(135deg, #1a7a1a, #0d5c0d); }
.info-icon.purple { background: linear-gradient(135deg, #5b2c6f, #3d1a54); }
.info-card-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-card-body p, .info-card-body a {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}
.info-card-body a:hover { color: var(--orange); }

/* Form card */
.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 22px rgba(0,19,66,0.09);
}
.form-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .form-subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(237,113,16,0.12);
  background: #fff;
}
.submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(237,113,16,0.35);
}
.form-note {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

/* Map section */
.map-section {
  max-width: 1100px;
  margin: 0 auto 36px;
  padding: 0 16px;
}
.map-section h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-section h3 i { color: var(--orange); }
.map-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,19,66,0.10);
  height: 320px;
}

/* Success message */
.success-msg {
  display: none;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #28a745;
  border-radius: 6px;
  padding: 12px 16px;
  color: #155724;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
}
.success-msg.show { display: flex; }

@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .form-card { padding: 20px 16px; }
}

/* ══════════════════════════════════════
/* ══════════════════════════════════════
   REPORTER PAGE — PROFESSIONAL MODERN
══════════════════════════════════════ */
.rp-section{padding:56px 0;max-width:1080px;margin:0 auto}
.rp-white{background:#fff}
.rp-light{background:#f8f9fb}
.rp-section-inner{max-width:1080px;margin:0 auto;padding:0 24px}
.rp-badge-dot{display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#16a34a;margin-bottom:16px;background:#f0fdf4;border:1px solid #bbf7d0;padding:5px 12px;border-radius:20px}
.rp-badge-dot span{width:7px;height:7px;background:#16a34a;border-radius:50%;display:inline-block;flex-shrink:0}
.rp-heading{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:800;color:#001342;line-height:1.2;margin-bottom:12px;letter-spacing:-.02em}
.rp-heading-lg{font-size:clamp(1.5rem,3vw,2.2rem);font-weight:800;color:#001342;line-height:1.25;margin-bottom:14px;letter-spacing:-.02em}
.rp-heading-sm{font-size:1.4rem;font-weight:800;color:#001342;margin-bottom:8px;padding-bottom:10px;border-bottom:3px solid #ed7110;display:inline-block}
.rp-red{color:#ed7110}
.rp-sub{font-size:14px;color:#6b7280;max-width:580px;line-height:1.8;margin-bottom:32px;font-weight:400}
.rp-sub-sm{font-size:13px;color:#6b7280;line-height:1.7;margin-bottom:8px}
.rp-benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.rp-benefit-card{background:#fff;border:1px solid #f0f0f0;border-radius:12px;padding:22px 18px;transition:box-shadow .25s,transform .25s,border-color .25s;box-shadow:0 1px 4px rgba(0,0,0,.04)}
.rp-benefit-card:hover{box-shadow:0 8px 24px rgba(0,19,66,.10);transform:translateY(-3px);border-color:#ed7110}
.rp-benefit-icon{width:44px;height:44px;background:linear-gradient(135deg,#fff3e8,#ffe4cc);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:19px;color:#ed7110;margin-bottom:14px}
.rp-benefit-title{font-size:14px;font-weight:700;color:#001342;margin-bottom:7px}
.rp-benefit-desc{font-size:12px;color:#6b7280;line-height:1.7}
.rp-earn-intro{background:linear-gradient(135deg,#fff8f3,#fafafa);border-top:1px solid #f0e8e0;border-bottom:1px solid #f0e8e0}
.rp-two-col{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.rp-tag-pills{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px}
.rp-pill{background:#fff;border:1.5px solid #e5e7eb;border-radius:20px;padding:5px 14px;font-size:12px;color:#374151;transition:border-color .2s}
.rp-pill:hover{border-color:#ed7110}
.rp-pill strong{color:#ed7110}
.rp-mini-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.rp-mini-stat{background:#fff;border:1.5px solid #f0f0f0;border-radius:10px;padding:16px 12px;text-align:center;box-shadow:0 1px 4px rgba(0,0,0,.04);transition:box-shadow .2s,border-color .2s}
.rp-mini-stat:hover{border-color:#ed7110;box-shadow:0 4px 12px rgba(237,113,16,.12)}
.rp-mini-stat-title{font-size:15px;font-weight:800;color:#ed7110;margin-bottom:5px}
.rp-mini-stat-desc{font-size:11px;color:#6b7280;line-height:1.5}
.rp-why-card,.rp-adds-card{background:#fff;border:1px solid #f0f0f0;border-radius:12px;padding:22px;margin-bottom:14px;box-shadow:0 1px 4px rgba(0,0,0,.04)}
.rp-why-title{font-size:14px;font-weight:700;color:#001342;margin-bottom:16px;padding-bottom:10px;border-bottom:1px solid #f0f0f0}
.rp-why-item{display:flex;align-items:flex-start;gap:12px;font-size:13px;color:#374151;line-height:1.65;margin-bottom:12px}
.rp-num-badge{width:24px;height:24px;background:#ed7110;color:#fff;border-radius:50%;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rp-check-item{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:#374151;line-height:1.65;margin-bottom:10px}
.rp-check{color:#ed7110;font-size:11px;margin-top:3px;flex-shrink:0}
.rp-addons-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:20px}
.rp-addon-card{background:#fff;border:1.5px solid #f0f0f0;border-radius:12px;padding:22px;transition:all .25s;box-shadow:0 1px 4px rgba(0,0,0,.04)}
.rp-addon-card:hover{border-color:#ed7110;box-shadow:0 6px 20px rgba(237,113,16,.10);transform:translateY(-2px)}
.rp-addon-card.rp-added{border-color:#ed7110;background:linear-gradient(135deg,#fff8f3,#fff);box-shadow:0 4px 16px rgba(237,113,16,.12)}
.rp-addon-abbr{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;background:#f3f4f6;border:1.5px solid #e5e7eb;border-radius:8px;font-size:11px;font-weight:800;color:#374151;margin-bottom:14px}
.rp-addon-name{font-size:15px;font-weight:700;color:#001342;margin-bottom:6px}
.rp-addon-desc{font-size:12px;color:#6b7280;line-height:1.65;margin-bottom:16px}
.rp-addon-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid #f0f0f0}
.rp-addon-price{font-size:18px;font-weight:800;color:#ed7110}
.rp-addon-btn{background:#fff;border:1.5px solid #d1d5db;border-radius:7px;padding:8px 20px;font-size:13px;font-weight:600;color:#374151;cursor:pointer;transition:all .2s;font-family:inherit}
.rp-addon-btn:hover,.rp-addon-card.rp-added .rp-addon-btn{background:#ed7110;color:#fff;border-color:#ed7110;box-shadow:0 2px 8px rgba(237,113,16,.25)}
.rp-selected-addons{background:#f9fafb;border:1.5px solid #e5e7eb;border-radius:10px;padding:16px 18px}
.rp-selected-label{font-size:13px;font-weight:700;color:#001342;margin-bottom:5px}
.rp-selected-text{font-size:13px;color:#6b7280}
.rp-sticky-bar{position:sticky;bottom:0;background:#fff;border-top:2px solid #f0f0f0;box-shadow:0 -4px 20px rgba(0,0,0,.08);padding:12px 20px;display:flex;align-items:center;gap:12px;flex-wrap:nowrap;z-index:50}
.rp-sticky-label{font-size:11px;color:#9ca3af;margin-bottom:2px;text-transform:uppercase;letter-spacing:.06em;font-weight:600}
.rp-sticky-val{font-size:17px;font-weight:800;color:#001342}
.rp-sticky-total{font-size:24px;font-weight:800;color:#ed7110;margin-left:auto}
.rp-pay-btn{background:linear-gradient(135deg,#cc0000,#990000);color:#fff;border:none;border-radius:8px;padding:14px 32px;font-size:14px;font-weight:700;cursor:pointer;font-family:inherit;transition:all .2s;white-space:nowrap;box-shadow:0 4px 14px rgba(204,0,0,.30)}
.rp-pay-btn:hover{background:linear-gradient(135deg,#aa0000,#770000);transform:translateY(-1px);box-shadow:0 6px 20px rgba(204,0,0,.35)}
.rp-form-heading{font-size:1.8rem;font-weight:800;color:#001342;margin-bottom:8px;padding-bottom:10px;border-bottom:3px solid #ed7110;display:inline-block}
.rp-form-note{font-size:13px;color:#374151;margin-bottom:28px;font-weight:500;background:#f8f9fb;border:1px solid #e5e7eb;border-radius:8px;padding:12px 16px;border-left:3px solid #ed7110}
.rp-form-row3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px}
.rp-form-group label{display:block;font-size:12px;font-weight:700;color:#374151;margin-bottom:7px;text-transform:uppercase;letter-spacing:.06em}
.rp-input{width:100%;padding:12px 16px;border:1.5px solid #e5e7eb;border-radius:8px;font-size:14px;font-family:inherit;color:#001342;background:#fafafa;outline:none;transition:all .2s}
.rp-input:focus{border-color:#ed7110;background:#fff;box-shadow:0 0 0 3px rgba(237,113,16,.10)}
.rp-input::placeholder{color:#9ca3af}
.rp-membership-box{border:1.5px solid #e5e7eb;border-radius:12px;padding:24px;margin-bottom:24px;background:#fafafa}
.rp-membership-header{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #f0f0f0}
.rp-membership-title{font-size:16px;font-weight:800;color:#001342;margin-bottom:5px}
.rp-membership-sub{font-size:12px;color:#6b7280;line-height:1.65;max-width:480px}
.rp-membership-price-badge{background:linear-gradient(135deg,#fff3e8,#ffe4cc);color:#ed7110;font-size:16px;font-weight:800;padding:8px 16px;border-radius:8px;white-space:nowrap;border:1.5px solid rgba(237,113,16,.25)}
.rp-plan-toggle{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:20px}
.rp-plan-opt{border:1.5px solid #e5e7eb;border-radius:10px;padding:16px;cursor:pointer;transition:all .2s;background:#fff}
.rp-plan-opt:hover{border-color:#ed7110;box-shadow:0 2px 10px rgba(237,113,16,.10)}
.rp-plan-opt.selected{border-color:#ed7110;background:linear-gradient(135deg,#fff8f3,#fff);box-shadow:0 4px 14px rgba(237,113,16,.12)}
.rp-plan-opt-name{font-size:14px;font-weight:700;color:#001342;margin-bottom:5px}
.rp-plan-opt-desc{font-size:12px;color:#6b7280;line-height:1.55;margin-bottom:10px}
.rp-plan-opt-price{font-size:16px;font-weight:800;color:#ed7110}
.rp-included-label{font-size:12px;font-weight:700;color:#374151;margin-bottom:12px;text-transform:uppercase;letter-spacing:.06em}
.rp-included-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:14px}
.rp-included-item{display:flex;align-items:center;gap:8px;font-size:12px;color:#374151;background:#fff;border:1px solid #e5e7eb;border-radius:7px;padding:9px 12px;font-weight:500;transition:border-color .2s}
.rp-included-item:hover{border-color:#16a34a}
.rp-dot{width:8px;height:8px;background:#16a34a;border-radius:50%;flex-shrink:0}
.rp-reward-note{font-size:11px;color:#9ca3af;margin-top:6px;font-style:italic}
.rp-submit-btn{width:100%;padding:16px;background:linear-gradient(135deg,#cc0000,#990000);color:#fff;border:none;border-radius:10px;font-size:15px;font-weight:700;cursor:pointer;font-family:inherit;transition:all .2s;display:flex;align-items:center;justify-content:center;gap:10px;box-shadow:0 4px 16px rgba(204,0,0,.28)}
.rp-submit-btn:hover{background:linear-gradient(135deg,#aa0000,#770000);transform:translateY(-2px);box-shadow:0 8px 24px rgba(204,0,0,.32)}
@media(max-width:900px){.rp-benefits-grid{grid-template-columns:repeat(2,1fr)}.rp-two-col{grid-template-columns:1fr;gap:24px}.rp-form-row3{grid-template-columns:1fr 1fr}.rp-included-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.rp-section{padding:36px 0}.rp-benefits-grid{grid-template-columns:1fr}.rp-addons-grid{grid-template-columns:1fr}.rp-plan-toggle{grid-template-columns:1fr}.rp-mini-stats{grid-template-columns:1fr}.rp-sticky-bar{flex-direction:column;align-items:stretch;gap:12px}.rp-sticky-total{margin-left:0;font-size:20px}.rp-included-grid{grid-template-columns:1fr 1fr}.rp-form-row3{grid-template-columns:1fr}.rp-pay-btn{width:100%}}

/* ══ REPORTER PAGE — VISUAL POLISH ══ */

/* Section dividers */
.rp-white + .rp-white { border-top: 1px solid #f3f4f6; }
.rp-light { background: linear-gradient(180deg, #f8f9fb 0%, #f3f4f6 100%); }

/* Benefit cards — stronger shadow + accent top border */
.rp-benefit-card {
  border-top: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.rp-benefit-card:hover { border-top-color: #ed7110; }

/* Benefit icon — pulse on hover */
.rp-benefit-card:hover .rp-benefit-icon {
  background: linear-gradient(135deg, #ed7110, #c95e00);
  color: #fff;
  transform: scale(1.08);
  transition: all 0.2s;
}

/* Addon card — left accent bar */
.rp-addon-card { border-left: 3px solid transparent; }
.rp-addon-card:hover,
.rp-addon-card.rp-added { border-left-color: #ed7110; }

/* Addon abbr — colored when added */
.rp-addon-card.rp-added .rp-addon-abbr {
  background: #fff3e8;
  border-color: #ed7110;
  color: #ed7110;
}

/* Plan opt — checkmark when selected */
.rp-plan-opt.selected::after {
  content: '✓';
  position: absolute;
  top: 12px; right: 14px;
  width: 22px; height: 22px;
  background: #ed7110;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rp-plan-opt { position: relative; }

/* Membership box — subtle gradient bg */
.rp-membership-box {
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  box-shadow: 0 2px 12px rgba(0,19,66,0.05);
}

/* Form inputs — cleaner focus ring */
.rp-input:focus {
  border-color: #ed7110;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(237,113,16,0.08);
}

/* Submit btn — shimmer effect */
.rp-submit-btn {
  position: relative;
  overflow: hidden;
}
.rp-submit-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.rp-submit-btn:hover::after { left: 150%; }

/* Pay btn — same shimmer */
.rp-pay-btn {
  position: relative;
  overflow: hidden;
}
.rp-pay-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s;
}
.rp-pay-btn:hover::after { left: 150%; }

/* Sticky bar — glass effect */
.rp-sticky-bar {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.96);
}

/* Why card hover */
.rp-why-card:hover, .rp-adds-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,19,66,0.08);
  transition: all 0.2s;
}

/* Num badge — gradient */
.rp-num-badge {
  background: linear-gradient(135deg, #ed7110, #c95e00);
  box-shadow: 0 2px 6px rgba(237,113,16,0.30);
}

/* Included items — green dot glow */
.rp-included-item:hover .rp-dot {
  box-shadow: 0 0 0 3px rgba(22,163,74,0.20);
}

/* Mini stat hover */
.rp-mini-stat:hover .rp-mini-stat-title {
  color: #c95e00;
}

/* Form note — left border accent */
.rp-form-note {
  background: linear-gradient(135deg, #fff8f3, #fff);
}

/* Section inner max-width consistency */
.rp-section > .rp-sticky-bar {
  max-width: 100%;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

/* ══ FORM & ADDON ENHANCEMENTS ══ */

/* Form top header */
.rp-form-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rp-form-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
}
.rp-form-secure-badge i { font-size: 14px; }

/* Step labels */
.rp-form-step { margin-bottom: 28px; }
.rp-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #001342;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rp-step-num-sm {
  width: 24px; height: 24px;
  background: #001342;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Plan opt icon */
.rp-plan-opt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.rp-plan-opt-icon {
  width: 32px; height: 32px;
  background: #f3f4f6;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6b7280;
  flex-shrink: 0;
  transition: all 0.2s;
}
.rp-plan-opt.selected .rp-plan-opt-icon {
  background: #fff3e8;
  color: #ed7110;
}

/* Addon top row */
.rp-addon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.rp-addon-category {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 20px;
}
.rp-addon-card.rp-added .rp-addon-category {
  background: #fff3e8;
  color: #ed7110;
}

/* Sticky divider */
.rp-sticky-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* Addon btn icon */
.rp-addon-btn i { margin-right: 4px; font-size: 11px; }
.rp-addon-card.rp-added .rp-addon-btn i::before { content: "\f00c"; }

/* ══ STICKY BAR FIX ══ */
.rp-sticky-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 2px solid #e5e7eb;
  box-shadow: 0 -4px 24px rgba(0,19,66,0.10);
  padding: 12px 20px;
  z-index: 100;
  margin: 0;
  box-sizing: border-box;
}

.rp-sticky-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.rp-sticky-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.rp-sticky-label {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.rp-sticky-val {
  font-size: 15px;
  font-weight: 800;
  color: #001342;
  letter-spacing: -0.02em;
}

.rp-sticky-total {
  font-size: 18px;
  font-weight: 800;
  color: #ed7110;
  letter-spacing: -0.02em;
  margin-left: 0;
}

.rp-sticky-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.rp-pay-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: linear-gradient(135deg, #cc0000, #990000);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(204,0,0,0.28);
  transition: all 0.2s;
}
.rp-pay-btn:hover {
  background: linear-gradient(135deg, #aa0000, #770000);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.35);
}

/* Responsive sticky bar */
@media (max-width: 768px) {
  .rp-sticky-bar-inner {
    gap: 8px;
  }
  .rp-sticky-val { font-size: 14px; }
  .rp-sticky-total { font-size: 16px; }
  .rp-pay-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .rp-sticky-bar {
    padding: 10px 12px;
  }
  .rp-sticky-bar-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }
  .rp-sticky-divider { display: none; }
  .rp-sticky-item {
    flex: 1;
    min-width: 70px;
  }
  .rp-sticky-total { font-size: 15px; }
  .rp-pay-btn {
    width: 100%;
    margin-left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 13px;
  }
}

/* ══ MEMBERSHIP PLAN DETAILS ══ */
.rp-plan-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.rp-plan-feat {
  margin-bottom: 12px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.5;
}
.feat-item i {
  color: #16a34a;
  font-size: 11px;
  margin-top: 3px;
}
.rp-plan-limit {
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #fef2f2;
  border-radius: 6px;
}
.limit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #991b1b;
  font-weight: 500;
}
.limit-item i {
  color: #ef4444;
}
.rp-plan-bonus {
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #f0fdf4;
  border-radius: 6px;
  border: 1px dashed #bbf7d0;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #166534;
  font-weight: 600;
}
.bonus-item i {
  color: #16a34a;
  margin-top: 2px;
}
.rp-plan-best {
  font-size: 12px;
  font-weight: 700;
  color: #ed7110;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.rp-plan-opt-price span {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 400;
}
.rp-plan-opt-header {
  justify-content: space-between;
}

/* ══ EARNING SECTION — FULL REDESIGN ══ */
.rp-earn-section {
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 60%);
  padding: 56px 0 0;
}

/* Header */
.earn-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.earn-main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #001342;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.earn-main-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* Grid */
.earn-visual-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

/* Card base */
.earn-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.earn-card:hover {
  transform: translateY(-6px);
}
.earn-card-inner {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s;
}
.earn-card:hover .earn-card-inner {
  border-color: #ed7110;
}

/* Glow effect */
.earn-card-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.4s;
  z-index: 1;
}
.earn-card:hover .earn-card-glow {
  opacity: 0.15;
}
.earn-ngo .earn-card-glow { background: #16a34a; }
.earn-basic .earn-card-glow { background: #2563eb; }
.earn-standard .earn-card-glow { background: #ed7110; }
.earn-premium .earn-card-glow { background: #9333ea; }
.earn-pro .earn-card-glow { background: #cc0000; }

/* Rank badge */
.earn-card-rank {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.earn-popular-rank {
  color: #ed7110;
  background: linear-gradient(135deg, rgba(237,113,16,0.12), rgba(237,113,16,0.04));
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.earn-elite-rank {
  color: #cc0000;
  background: linear-gradient(135deg, rgba(204,0,0,0.12), rgba(204,0,0,0.04));
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Icon */
.earn-card-icon-wrap {
  margin-bottom: 14px;
}
.earn-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto;
  transition: transform 0.3s, box-shadow 0.3s;
}
.earn-card:hover .earn-card-icon {
  transform: scale(1.1) rotate(-3deg);
}
.earn-ngo .earn-card-icon {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #16a34a;
  box-shadow: 0 4px 14px rgba(22,163,74,0.15);
}
.earn-basic .earn-card-icon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2563eb;
  box-shadow: 0 4px 14px rgba(37,99,235,0.15);
}
.earn-standard .earn-card-icon {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #ed7110;
  box-shadow: 0 4px 14px rgba(237,113,16,0.18);
}
.earn-premium .earn-card-icon {
  background: linear-gradient(135deg, #fdf4ff, #fae8ff);
  color: #9333ea;
  box-shadow: 0 4px 14px rgba(147,51,234,0.15);
}
.earn-pro .earn-card-icon {
  background: linear-gradient(135deg, #fff5f5, #fee2e2);
  color: #cc0000;
  box-shadow: 0 4px 14px rgba(204,0,0,0.15);
}

/* Title */
.earn-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #001342;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.earn-card-role {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* Price */
.earn-card-price {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.earn-currency {
  font-size: 16px;
  font-weight: 700;
  color: #6b7280;
  vertical-align: top;
  line-height: 1.8;
}
.earn-amount {
  font-size: 38px;
  font-weight: 800;
  color: #001342;
  letter-spacing: -0.03em;
  line-height: 1;
}
.earn-period {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

/* Feature list */
.earn-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
}
.earn-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #374151;
  padding: 6px 0;
  line-height: 1.5;
}
.earn-card-list li i {
  color: #16a34a;
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Tagline */
.earn-card-tagline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.earn-card-tagline i { font-size: 12px; }
.earn-ngo .earn-card-tagline { color: #16a34a; }
.earn-basic .earn-card-tagline { color: #2563eb; }
.earn-standard .earn-card-tagline { color: #ed7110; }
.earn-premium .earn-card-tagline { color: #9333ea; }
.earn-pro-tagline { color: #cc0000 !important; }

/* Standard card special */
.earn-standard .earn-card-inner {
  border-color: #ed7110;
  background: linear-gradient(180deg, #fffaf5 0%, #fff 30%);
  box-shadow: 0 8px 32px rgba(237,113,16,0.10);
}
.earn-standard .earn-amount { color: #ed7110; }

/* Pro card special */
.earn-pro .earn-card-inner {
  border-color: #cc0000;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 30%);
  box-shadow: 0 8px 32px rgba(204,0,0,0.08);
}
.earn-pro .earn-amount { color: #cc0000; }

/* ══ COMPARISON BAR ══ */
.earn-compare-bar {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 24px;
}
.earn-compare-item {
  display: grid;
  grid-template-columns: 140px repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.earn-compare-item:last-child { border-bottom: none; }
.earn-compare-label {
  font-size: 13px;
  font-weight: 700;
  color: #001342;
  padding: 14px 12px;
}
.earn-compare-values {
  display: contents;
}
.cmp-val {
  font-size: 13px;
  color: #6b7280;
  padding: 14px 8px;
  text-align: center;
  font-weight: 500;
  border-left: 1px solid #f3f4f6;
}
.cmp-val.cmp-unlimited {
  color: #16a34a;
  font-weight: 700;
}
.cmp-val.cmp-fast {
  color: #ed7110;
  font-weight: 700;
}
.cmp-val.cmp-elite {
  color: #cc0000;
  font-weight: 700;
}
.cmp-val.cmp-revenue {
  background: linear-gradient(135deg, #fff5f5, #fee2e2);
  border-radius: 8px;
  color: #cc0000;
  font-weight: 800;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .earn-visual-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .earn-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .earn-compare-bar { display: none; }
}
@media (max-width: 480px) {
  .earn-visual-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .earn-main-title { font-size: 1.6rem; }
  .earn-card-inner { padding: 20px 14px; }
  .earn-amount { font-size: 32px; }
}

