/*
 * PureLeads Combined SaaS Stylesheet — Light Blue Accent Edition
 *
 * Sources merged:
 * - style_saas3.css
 * - style_saas4.css
 *
 * Merge strategy:
 * - style_saas4.css is retained as the primary/newer cascade.
 * - Selectors found only in style_saas3.css are appended below it.
 * - A final light-blue accent layer standardizes interactive accents.
 *
 * Generated: 2026-07-31
 */

/* 
 * PureLeads SaaS Application Stylesheet
 *
 * Organization:
 * 01. Foundation and reusable application components
 * 02. Public landing and comparison pages
 * 03. Customer and administrator support pages
 * 04. Navigation and account menus
 * 05. Visual theme layers and responsive refinements
 * 06. Refund policy page
 *
 * Maintenance notes:
 * - Repeated selector blocks are consolidated within the same CSS scope.
 * - Repeated properties retain the declaration that wins the CSS cascade.
 * - Media-query rules stay in their original responsive scope.
  */

/*  =========================================================
   01A. Reset and Base Elements
   Normalizes sizing, media, controls, and document defaults.
   =========================================================  */
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}

/*  =========================================================
   01B. Typography
   Defines headings, body copy, muted text, and list styling.
   =========================================================  */
h5 {
  color: #475569;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h6 {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
p {
  margin: 0 0 16px;
  color: var(--color-text-soft);
}
strong {
  font-weight: 800;
}
.small,
small {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.muted {
  color: var(--color-muted);
}
ul,
ol {
  color: var(--color-text-soft);
}

/*  =========================================================
   01C. Layout Utilities
   Provides containers, responsive grids, spacing, and alignment helpers.
   =========================================================  */
.wrap,
.footer-container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  margin: 20px 0;
  padding: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(246, 249, 255, 0.97)
  );
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat {
  margin-top: 8px;
  color: #2566c7;
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 900;
}
.hero-content {
  flex: 1;
  min-width: 0;
}
.hero-actions {
  display: flex;
  min-width: 240px;
  justify-content: flex-end;
  align-items: flex-start;
}
.hero-actions .btn {
  width: 100%;
  min-height: 54px;
}

/*  =========================================================
   01D. Forms and Inputs
   Styles labels, fields, checkboxes, validation help, and form states.
   =========================================================  */
form {
  width: 100%;
}
label.required::after {
  content: " *";
  color: var(--color-danger);
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.form-help {
  margin-top: 5px;
  color: #64748b;
  font-size: 0.85rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  cursor: pointer;
  user-select: none;
}

/*  =========================================================
   01E. Buttons and Actions
   Defines shared button behavior, action rows, and disabled states.
   =========================================================  */
button:active,
.btn:active {
  transform: translateY(0);
}
button:disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.actions .btn,
.actions button {
  margin: 0;
}

/*  =========================================================
   01F. Status Indicators and Tables
   Styles status pills and compact table actions.
   =========================================================  */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  color: #fff;
  background: #64748b;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}
.pill.done,
.pill.active {
  background: #16a34a;
}
.pill.failed,
.pill.disabled {
  background: #dc2626;
}
.pill.running,
.pill.pending {
  background: #d97706;
}
td .btn {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.85rem;
}

/*  =========================================================
   01G. Authentication
   Provides login, registration, and account-card presentation.
   =========================================================  */
.auth-header {
  margin-bottom: 24px;
  text-align: center;
}
.auth-header h1 {
  margin-bottom: 8px;
}
.auth-header p {
  margin: 0;
  color: #64748b;
}
.auth-card button {
  width: 100%;
  margin-top: 20px;
}
.auth-footer-text {
  margin: 0;
  text-align: center;
}
.link:hover {
  text-decoration: underline;
}

/*  =========================================================
   01H. Pricing Components
   Defines pricing grids, badges, prices, features, and credit balances.
   =========================================================  */
.pricing-section {
  margin: 44px 0;
}
.pricing-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pricing-badge {
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 6px 14px;
  color: #fff;
  background: linear-gradient(180deg, #22c55e, #15803d);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-price {
  color: #1d4ed8;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 900;
}
.pricing-period {
  margin-top: 6px;
  color: #64748b;
  font-size: 0.88rem;
}
.pricing-credit-count {
  margin: 20px 0;
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 900;
}
.pricing-features {
  flex: 1;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.pricing-features li {
  position: relative;
  margin: 12px 0;
  padding-left: 26px;
  color: #334155;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}
.pricing-form {
  margin-top: auto;
}
.pricing-form .btn {
  width: 100%;
}
.pricing-info-item strong {
  display: block;
  margin-bottom: 5px;
  color: #1d4ed8;
  font-size: 1.4rem;
}
.credit-balance-box span,
.credit-balance-box strong {
  display: block;
}
.credit-balance-box strong {
  font-size: 1.45rem;
}
.footer-container {
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.25fr;
  gap: 38px;
}

/*  =========================================================
   01I. Footer Components
   Styles footer headings, links, social controls, and separators.
   =========================================================  */
.footer h3,
.footer h4 {
  color: #fff;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer li {
  margin-bottom: 10px;
}
.footer a {
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.footer hr {
  margin: 35px 0 20px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/*  =========================================================
   01J. General Utilities
   Small reusable alignment, margin, and visibility helpers.
   =========================================================  */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.hidden {
  display: none !important;
}

/* =========================================================
   01K. Base Responsive Behavior
   Adapts the footer, hero, pricing layout, actions, containers,
   and wide data tables for tablet and mobile screen widths.
   ========================================================= */

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 30px;
  }
  .hero-actions {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .credit-balance-box {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .wrap,
  .footer-container {
    width: min(100% - 22px, var(--container));
  }
  .wrap {
    padding: 20px 0;
  }
  .actions {
    justify-content: flex-start;
  }
  .actions .btn,
  .actions button {
    width: 100%;
  }
  table {
    min-width: 760px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   02A. Public Landing Page
   Styles the marketing hero, feature cards, process steps,
   audience panels, credit examples, and primary call to action.
   ========================================================= */

.landing-hero {
  padding: 70px 0 55px;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 50px;
  align-items: center;
}

.landing-hero-content h1 {
  margin: 16px 0 22px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-shadow: 0 5px 18px rgba(0, 20, 90, 0.3);
}

.landing-lead {
  max-width: 760px;
  color: #e7f2ff;
  font-size: 1.2rem;
  line-height: 1.75;
}

.landing-eyebrow {
  display: inline-block;
  color: #bfe4ff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.landing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}

.landing-actions .btn {
  min-height: 52px;
  padding: 14px 22px;
}

.landing-trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #e2efff;
  font-size: 0.9rem;
  font-weight: 700;
}

.landing-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.landing-trust-row i {
  color: #4ade80;
}

.landing-hero-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 19, 85, 0.35);
}

.landing-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.82rem;
  font-weight: 800;
}

.preview-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 4px;
  background: #cbd5e1;
  border-radius: 50%;
}

.landing-preview-search {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin: 18px 0;
  padding: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
}

.landing-preview-search div {
  display: flex;
  flex-direction: column;
}

.landing-preview-search small {
  color: #64748b;
}

.landing-preview-search strong {
  color: #1e293b;
}

.landing-preview-search .btn {
  align-self: center;
}

.landing-preview-results {
  display: grid;
  gap: 11px;
}

.preview-result strong,
.preview-result span {
  display: block;
}

.preview-result span {
  color: #64748b;
  font-size: 0.8rem;
}

.preview-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2563eb;
  border-radius: 10px;
}

.landing-section {
  padding: 70px 0;
  background: #fff;
}

.landing-section-soft {
  background: #f1f7ff;
}

.landing-section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.landing-section-heading .landing-eyebrow {
  color: #2563eb;
}

.landing-section-heading h2 {
  margin-top: 10px;
  border: 0;
  color: #17233a;
  font-size: clamp(2rem, 4vw, 3rem);
}

.landing-section-heading p {
  font-size: 1.05rem;
}

.feature-grid,
.steps-grid,
.audience-grid,
.credit-examples-grid {
  display: grid;
  gap: 22px;
}

.feature-grid,
.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid,
.credit-examples-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.audience-card,
.credit-example-card {
  padding: 26px;
  background: #fff;
  border: 1px solid #dbe2ec;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.feature-icon,
.audience-card > i {
  display: flex;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #1686ff, #0051cb);
  border-radius: 13px;
  font-size: 1.25rem;
}

.step-card {
  position: relative;
  padding-top: 64px;
}

.step-number {
  position: absolute;
  top: 20px;
  left: 24px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2563eb;
  border-radius: 50%;
  font-weight: 900;
}

.credit-example-card {
  text-align: center;
}

.credit-example-card strong,
.credit-example-card span,
.credit-example-card b {
  display: block;
}

.credit-example-card strong {
  color: #1d4ed8;
  font-size: 1.25rem;
}

.credit-example-card b {
  color: #166534;
}

.landing-center-action {
  margin-top: 30px;
  text-align: center;
}

.landing-cta {
  padding: 60px 0;
  color: #fff;
  background: linear-gradient(135deg, #052f9c, #0b6df0);
}

.landing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.landing-cta h2 {
  margin: 10px 0;
  padding: 0;
  color: #fff;
  border: 0;
}

.landing-cta p {
  color: #dbeafe;
}

.landing-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 280px;
  justify-content: flex-end;
}

@media (max-width: 1050px) {
  .landing-hero-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-card {
    max-width: 720px;
  }

  .feature-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-hero {
    padding-top: 42px;
  }

  .landing-preview-search {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps-grid,
  .audience-grid,
  .credit-examples-grid {
    grid-template-columns: 1fr;
  }

  .landing-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-cta-actions {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .landing-cta-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   02B. Competitor Comparison Page
   Defines the comparison hero, score card, feature table,
   recommendation panels, checklist, FAQ, and conversion CTA.
   ========================================================= */

.comparison-hero {
  padding: 70px 0 60px;
}

.comparison-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 46px;
  align-items: center;
}

.comparison-hero-content h1 {
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-shadow: 0 5px 18px rgba(0, 20, 90, 0.3);
}

.comparison-lead {
  max-width: 760px;
  color: #e7f2ff;
  font-size: 1.15rem;
  line-height: 1.75;
}

.comparison-eyebrow {
  display: inline-block;
  color: #bfe4ff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.comparison-eyebrow.dark {
  color: #2563eb;
}

.comparison-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.comparison-actions .btn {
  min-height: 50px;
}

.comparison-trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #e2efff;
  font-size: 0.9rem;
  font-weight: 700;
}

.comparison-trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.comparison-trust-row i {
  color: #4ade80;
}

.comparison-score-card {
  padding: 26px;
  background: linear-gradient(145deg, #fff, #f3f7ff);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 19, 85, 0.35);
}

.comparison-score-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe2ec;
}

.comparison-score-header span {
  color: #64748b;
}

.comparison-score-header strong {
  color: #1d4ed8;
}

.comparison-score-row:last-child {
  border-bottom: 0;
}

.comparison-score-row span {
  color: #475569;
}

.comparison-score-row b {
  color: #15803d;
}

.comparison-section {
  padding: 70px 0;
  background: #fff;
}

.comparison-section-soft {
  background: #f1f7ff;
}

.comparison-section-heading {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}

.comparison-section-heading h2 {
  margin-top: 10px;
  color: #17233a;
  border: 0;
}

.comparison-summary-grid,
.comparison-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-summary-card,
.comparison-choice-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #dbe2ec;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.comparison-summary-card ul,
.comparison-choice-card ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.comparison-summary-card li,
.comparison-choice-card li {
  margin: 11px 0;
}

.comparison-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 14px;
  font-size: 1.3rem;
}

.comparison-icon.good {
  background: linear-gradient(180deg, #22c55e, #15803d);
}

.comparison-icon.warning {
  background: linear-gradient(180deg, #f59e0b, #b45309);
}

.comparison-icon.neutral {
  background: linear-gradient(180deg, #64748b, #475569);
}

.comparison-table-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #dbe2ec;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.comparison-table {
  margin: 0;
}

.comparison-table td {
  min-width: 220px;
}

.comparison-table td:first-child {
  min-width: 180px;
}

.comparison-table p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.comparison-tag {
  display: inline-flex;
  padding: 5px 10px;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.comparison-tag.good {
  background: #16a34a;
}

.comparison-tag.warning {
  background: #d97706;
}

.comparison-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-checklist div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: #fff;
  border: 1px solid #dbe2ec;
  border-radius: 12px;
}

.comparison-checklist i {
  color: #2563eb;
  font-size: 1.15rem;
}

.comparison-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 38px;
  color: #fff;
  background: linear-gradient(135deg, #052f9c, #0b6df0);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 40, 140, 0.25);
}

.comparison-cta-card h2 {
  margin: 10px 0;
  color: #fff;
  border: 0;
}

.comparison-cta-card p {
  color: #dbeafe;
}

.comparison-faq {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-faq details {
  margin-bottom: 13px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #dbe2ec;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
}

.comparison-faq p {
  margin: 14px 0 0;
}

@media (max-width: 950px) {
  .comparison-hero-grid {
    grid-template-columns: 1fr;
  }

  .comparison-score-card {
    max-width: 720px;
  }

  .comparison-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .comparison-hero {
    padding-top: 42px;
  }

  .comparison-summary-grid,
  .comparison-choice-grid,
  .comparison-checklist {
    grid-template-columns: 1fr;
  }

  .comparison-actions {
    width: 100%;
  }

  .comparison-actions .btn {
    width: 100%;
  }

  .comparison-table-card {
    padding: 14px;
  }
}

/* =========================================================
   03A. Customer Support Ticket List
   Styles support statistics, ticket filters, status badges,
   ticket tables, pagination, and empty states.
   ========================================================= */

.support-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.support-stat-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #1686ff, #0051cb);
  border-radius: 14px;
  font-size: 1.25rem;
}

.support-stat-icon.warning {
  background: linear-gradient(180deg, #f59e0b, #b45309);
}

.support-stat-icon.info {
  background: linear-gradient(180deg, #0ea5e9, #0369a1);
}

.support-stat-icon.success {
  background: linear-gradient(180deg, #22c55e, #15803d);
}

.support-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 26px;
}

.support-filter-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: auto;
  flex-wrap: wrap;
}

.support-filter-form > div {
  min-width: 180px;
}

.support-filter-form label {
  margin-top: 0;
}

.support-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.support-ticket-number:hover {
  text-decoration: underline;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  color: #fff;
  background: #64748b;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.support-badge.good {
  background: #16a34a;
}

.support-badge.warning {
  background: #d97706;
}

.support-badge.danger {
  background: #dc2626;
}

.support-badge.secondary {
  background: #64748b;
}

.support-empty-state {
  padding: 55px 20px;
  text-align: center;
}

.support-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

@media (max-width: 1050px) {
  .support-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-filter-form {
    width: 100%;
  }

  .support-filter-form > div {
    flex: 1;
  }
}

@media (max-width: 700px) {
  .support-stat-grid {
    grid-template-columns: 1fr;
  }

  .support-filter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .support-filter-form > div {
    width: 100%;
  }

  .support-filter-actions {
    flex-direction: column;
  }

  .support-filter-actions .btn,
  .support-filter-actions button {
    width: 100%;
  }

  .support-pagination {
    flex-direction: column;
  }
}

/* =========================================================
   03B. New Support Ticket Form
   Defines the ticket form layout, field grid, file preview,
   validation feedback, notices, and supporting help content.
   ========================================================= */

.support-new-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.support-new-layout > .card {
  margin-top: 0;
}

.support-new-layout aside .card {
  margin-top: 0;
  margin-bottom: 20px;
}

.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.support-character-count {
  margin-top: 5px;
  color: #64748b;
  font-size: 0.8rem;
  text-align: right;
}

.support-file-preview span {
  color: #64748b;
  font-size: 0.85rem;
}

.support-file-error {
  margin-top: 7px;
  color: #b91c1c;
  font-weight: 800;
}

.support-ticket-notice {
  margin-top: 22px;
}

.support-ticket-notice ul {
  margin: 10px 0 0;
  padding-left: 21px;
}

.support-ticket-notice li {
  margin: 7px 0;
}

.support-response-list {
  display: grid;
  gap: 17px;
}

.support-response-list > div {
  padding-bottom: 14px;
  border-bottom: 1px solid #dbe2ec;
}

.support-response-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.support-response-list p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.support-help-list {
  margin: 0;
  padding-left: 21px;
}

.support-help-list li {
  margin: 8px 0;
}

@media (max-width: 950px) {
  .support-new-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .support-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   03C. Support Ticket Conversation
   Styles message threads, staff replies, metadata, attachments,
   ticket details, related jobs, and resolved/closed states.
   ========================================================= */

.support-view-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(290px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.support-view-layout > div > .card:first-child,
.support-view-layout aside .card:first-child {
  margin-top: 0;
}

.support-ticket-heading-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.support-conversation-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.support-conversation-header h2 {
  margin-bottom: 5px;
}

.support-conversation-header p {
  margin: 0;
}

.support-conversation {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.support-message {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.support-message.staff .support-message-avatar {
  background: linear-gradient(180deg, #1686ff, #0051cb);
}

.support-message-meta strong,
.support-message-meta span {
  display: block;
}

.support-message-meta strong {
  color: #17233a;
}

.support-message-meta span,
.support-message-meta time {
  color: #64748b;
  font-size: 0.8rem;
}

.support-message-body {
  padding-top: 15px;
  color: #334155;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.support-attachment-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.support-attachment > span {
  flex: 1;
  min-width: 0;
}

.support-attachment strong,
.support-attachment small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-attachment small {
  color: #64748b;
}

.support-ticket-details dl,
.support-related-job dl {
  margin: 0;
}

.support-ticket-details dl > div,
.support-related-job dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #dbe2ec;
}

.support-ticket-details dl > div:last-child,
.support-related-job dl > div:last-child {
  border-bottom: 0;
}

.support-ticket-details dt,
.support-related-job dt {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 800;
}

.support-ticket-details dd,
.support-related-job dd {
  margin: 0;
  color: #334155;
  overflow-wrap: anywhere;
}

.support-closed-message,
.support-resolved-message {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-closed-icon,
.support-resolved-icon {
  display: flex;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
}

.support-closed-icon {
  background: #64748b;
}

.support-resolved-icon {
  background: #16a34a;
}

.support-closed-message h3,
.support-resolved-message h3 {
  margin-bottom: 6px;
}

.support-closed-message p,
.support-resolved-message p {
  margin: 0;
}

@media (max-width: 950px) {
  .support-view-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .support-message {
    grid-template-columns: 1fr;
  }

  .support-message-avatar {
    width: 42px;
    height: 42px;
  }

  .support-message-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .support-ticket-details dl > div,
  .support-related-job dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .support-closed-message,
  .support-resolved-message {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   03D. Administrator Ticket Queue
   Provides dashboard statistics, bulk controls, assignment
   fields, urgency states, filters, and administrative tables.
   ========================================================= */

.support-admin-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-stat-link {
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.support-stat-link:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

.support-stat-icon.danger {
  background: linear-gradient(180deg, #ef4444, #b91c1c);
}

.admin-ticket-filter-form {
  margin-top: 20px;
}

.admin-ticket-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 14px;
}

.admin-ticket-filter-grid label {
  margin-top: 0;
}

.admin-bulk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
}

.admin-bulk-selection {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-bulk-selection .checkbox-label {
  margin: 0;
}

.admin-bulk-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.admin-bulk-actions select {
  width: auto;
  min-width: 175px;
}

.admin-ticket-table {
  min-width: 1500px;
}

.admin-ticket-table td:first-child,
.admin-ticket-table th:first-child {
  width: 42px;
  text-align: center;
}

.admin-ticket-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2563eb;
}

.admin-assignee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #334155;
  font-weight: 800;
}

.admin-ticket-counts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-ticket-counts span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #64748b;
  font-size: 0.82rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1150px) {
  .support-admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-ticket-filter-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .admin-bulk-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-bulk-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .support-admin-stat-grid,
  .admin-ticket-filter-grid {
    grid-template-columns: 1fr;
  }

  .admin-bulk-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-bulk-actions select,
  .admin-bulk-actions .btn,
  .admin-bulk-actions button {
    width: 100%;
  }

  .admin-bulk-selection {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

/* =========================================================
   03E. Administrator Ticket Detail
   Defines response tabs, internal notes, activity history,
   assignment tools, ticket actions, and the danger zone.
   ========================================================= */

.admin-ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.admin-ticket-layout > div > .card:first-child,
.admin-ticket-layout aside .card:first-child {
  margin-top: 0;
}

.support-message.internal-note .support-message-avatar {
  background: linear-gradient(180deg, #f59e0b, #b45309);
}

.support-message.system .support-message-avatar {
  background: linear-gradient(180deg, #64748b, #334155);
}

.admin-ticket-response-tabs {
  padding-top: 20px;
}

.admin-response-panel {
  display: none;
}

.admin-response-panel.active {
  display: block;
}

.admin-ticket-activity {
  position: relative;
  display: grid;
  gap: 0;
}

.admin-ticket-activity-item {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 13px;
  padding: 13px 0;
}

.admin-customer-details {
  margin: 0 0 20px;
}

.admin-customer-details > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #dbe2ec;
}

.admin-customer-details dt {
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-customer-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.admin-ticket-layout aside form + form {
  margin-top: 10px;
}

@media (max-width: 1050px) {
  .admin-ticket-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .admin-response-tab-buttons {
    flex-direction: column;
    border-bottom: 0;
  }

  .admin-response-tab {
    width: 100%;
    justify-content: flex-start;
    border: 1px solid #dbe2ec;
    border-radius: 8px;
  }

  .admin-response-tab.active {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
  }

  .admin-customer-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* =========================================================
   04A. Site Header and Desktop Navigation
   Provides the PureLeads header shell, logo, desktop links,
   active-page state, and account action buttons.
   ========================================================= */
.site-header {
  position: relative;
  z-index: 1100;
  width: 100%;
  background: #071a33;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  overflow: visible;
}

.site-nav-container {
  position: relative;
  z-index: 1101;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
}

.site-logo:hover {
  color: #fff;
}

.site-logo img {
  display: block;
  width: auto;
  max-width: 175px;
  height: 45px;
  object-fit: contain;
}

.primary-navigation {
  position: relative;
  z-index: 1200;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.nav-links {
  position: relative;
  z-index: 1201;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

.nav-links a {
  position: relative;
  z-index: 1202;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  color: #dce8f8;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-links a.active {
  color: #fff;
  background: rgba(31, 126, 255, 0.22);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 2px;
  background: #35d07f;
  border-radius: 999px;
}

.nav-links .nav-button {
  margin-left: 5px;
  padding: 11px 17px;
  color: #fff;
  background: linear-gradient(135deg, #1177ee, #0d59ba);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(17, 119, 238, 0.25);
}

.nav-links .nav-button:hover,
.nav-links .nav-button:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #2087ff, #1168d6);
  transform: translateY(-1px);
}

.nav-links .nav-button-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.nav-links .nav-button-outline:hover,
.nav-links .nav-button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   04B. Mobile Menu Toggle
   Styles the hamburger button and animated close state.
   ========================================================= */
.mobile-nav-toggle {
  position: relative;
  z-index: 1300;
  display: none;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  outline: 2px solid rgba(96, 165, 250, 0.8);
  outline-offset: 2px;
  transform: none;
}

.mobile-nav-bar {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-nav-toggle.is-active .mobile-nav-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active .mobile-nav-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active .mobile-nav-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   04C. Mobile Navigation Overlay
   Keeps the dimmed page overlay behind the slide-out menu so
   menu links remain clickable while outside clicks close it.
   ========================================================= */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  background: rgba(2, 11, 25, 0.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mobile-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================================================
   04D. Tablet and Mobile Slide-Out Navigation
   Converts the desktop menu into a right-side panel and sets
   the stacking order required for clickable mobile links.
   ========================================================= */
@media (max-width: 900px) {
  .site-header {
    z-index: 1100;
    overflow: visible;
  }

  .site-nav-container {
    z-index: 1101;
    width: min(100% - 28px, 1200px);
    min-height: 70px;
  }

  .site-logo img {
    max-width: 155px;
    height: 40px;
  }

  .mobile-nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    display: block;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    padding: 92px 22px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #071a33;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    min-height: 48px;
    padding: 13px 15px;
    justify-content: flex-start;
    font-size: 1rem;
    pointer-events: auto;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-links a.active::after {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 4px;
    width: 3px;
    height: auto;
  }

  .nav-links .nav-button {
    margin-top: 8px;
    margin-left: 0;
    justify-content: center;
  }

  .mobile-nav-overlay {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* =========================================================
   04E. Small-Phone Navigation Refinements
   Reduces logo, toggle, panel, and link sizing on narrow screens.
   ========================================================= */
@media (max-width: 480px) {
  .site-nav-container {
    width: calc(100% - 22px);
    min-height: 64px;
  }

  .site-logo img {
    max-width: 135px;
    height: 36px;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 8px;
  }

  .primary-navigation {
    width: 90vw;
    padding: 82px 16px 22px;
  }

  .nav-links a {
    min-height: 46px;
    padding: 12px 14px;
  }
}

/* =========================================================
   04F. Reduced-Motion Navigation Accessibility
   Disables menu animation when the visitor requests less motion.
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .primary-navigation,
  .mobile-nav-overlay,
  .mobile-nav-bar,
  .nav-links a {
    transition: none;
  }
}

/* =========================================================
   05A. Dark-Blue SaaS Theme Foundation
   Supplies the layered page background, glass surfaces, branded
   controls, content states, navigation theme, and breakpoints.
   ========================================================= */
::selection {
  color: #fff;
  background: #1f7fe8;
}
h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #d4e8ff;
}
h5,
h6 {
  color: #a9c5e6;
}

.wrap {
  padding: 30px 0;
  padding-top: 36px;
  padding-bottom: 36px;
}
.card,
.auth-card,
.pricing-card,
.landing-hero-card,
.feature-card,
.step-card,
.audience-card,
.credit-example-card,
.comparison-score-card,
.comparison-summary-card,
.comparison-choice-card,
.comparison-table-card,
.comparison-checklist div,
.comparison-faq details,
.support-message-content,
.support-attachment,
.admin-danger-zone,
.pricing-info-item {
  color: var(--color-text);
  background: linear-gradient(
    145deg,
    rgba(20, 58, 108, 0.96),
    rgba(11, 33, 66, 0.96)
  );
  border: 1px solid var(--pl-line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.card,
.auth-card,
.pricing-card {
  border-radius: var(--radius-md);
}
.card:hover,
.pricing-card:hover,
.feature-card:hover,
.audience-card:hover,
.comparison-summary-card:hover,
.comparison-choice-card:hover,
.support-stat-link:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 180, 255, 0.3);
  box-shadow: 0 24px 54px rgba(0, 8, 30, 0.42);
}
.card,
.pricing-card,
.feature-card,
.audience-card,
.comparison-summary-card,
.comparison-choice-card,
.support-stat-link {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
input::placeholder,
textarea::placeholder {
  color: #7894b6;
}
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  color: #7890ad;
  background: #0c203d;
}
.form-help,
.support-character-count {
  color: #9fb7d4;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: #38a0ff;
}

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 44px;
  padding: 11px 18px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    box-shadow 0.18s ease;
  color: #fff;
  background: linear-gradient(135deg, #238df4, #49b2ff);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow:
    0 10px 24px rgba(10, 106, 220, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
button:hover,
.btn:hover {
  color: #fff;
  filter: none;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3aa2ff, #6ac4ff);
  box-shadow:
    0 16px 32px rgba(12, 112, 225, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.btn.secondary {
  background: linear-gradient(135deg, #557094, #7890b0);
}
.btn.good {
  background: linear-gradient(135deg, #159f5b, #35d17f);
}
.btn.danger {
  background: linear-gradient(135deg, #cc3048, #ff6074);
}
.btn.warning {
  background: linear-gradient(135deg, #d78110, #ffb43f);
}

.notice {
  margin: 16px 0;
  padding: 13px 15px;
  border: 1px solid #60a5fa;
  border-radius: var(--radius-sm);
  color: #d9edff;
  background: rgba(27, 117, 210, 0.18);
  border-color: rgba(86, 178, 255, 0.48);
}
.notice.err,
.err {
  color: #ffd9de;
  background: rgba(178, 35, 61, 0.2);
  border-color: rgba(255, 91, 110, 0.5);
}
.notice.success {
  color: #d9ffea;
  background: rgba(20, 139, 78, 0.2);
  border-color: rgba(46, 212, 122, 0.45);
}
.pill,
.support-badge,
.comparison-tag {
  box-shadow: 0 6px 14px rgba(0, 8, 25, 0.22);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
}

.auth-page {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 16px;
  position: relative;
}
.auth-card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    145deg,
    rgba(21, 62, 116, 0.98),
    rgba(8, 28, 58, 0.98)
  );
}
.auth-header p,
.auth-card .auth-footer-text {
  color: #acc5e2;
}
.auth-card hr {
  margin: 28px 0 20px;
  border: 0;
  border-top: 1px solid #dbe2ec;
  border-top-color: var(--pl-line);
}
.link {
  font-weight: 800;
  text-decoration: none;
  color: #72c4ff;
}

.pricing-section-heading p,
.pricing-period {
  color: #a8c1df;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: linear-gradient(
    160deg,
    rgba(21, 61, 112, 0.97),
    rgba(8, 27, 56, 0.98)
  );
}
.pricing-card.featured {
  border: 2px solid #2563eb;
  transform: translateY(-5px);
  border-color: #45a8ff;
  box-shadow: 0 24px 56px rgba(27, 118, 230, 0.28);
}
.pricing-card-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #dbe2ec;
  border-bottom-color: var(--pl-line);
}
.pricing-credit-count,
.pricing-features li {
  color: #e0eeff;
}
.pricing-info-item {
  padding: 20px;
  text-align: center;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  background: linear-gradient(
    145deg,
    rgba(24, 70, 128, 0.8),
    rgba(11, 35, 70, 0.88)
  );
}
.credit-balance-box {
  min-width: 220px;
  padding: 18px 24px;
  text-align: center;
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 22px rgba(0, 61, 255, 0.3);
  background: linear-gradient(135deg, #176ed2, #3ba7ff);
}
.footer p,
.footer a {
  color: #bcd3ed;
}
.footer a:hover {
  color: #fff;
}
.footer-social a {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #1e7ce8, #4db5ff);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  color: #90aac8;
}
.landing-hero-card,
.comparison-score-card {
  background: linear-gradient(155deg, #173e72, #091e3e);
}
.landing-preview-header,
.comparison-score-header {
  color: #abc2dd;
  border-bottom-color: var(--pl-line);
}
.landing-preview-search small,
.preview-result span,
.comparison-score-header span,
.comparison-score-row span {
  color: #9db5d0;
}
.feature-icon,
.audience-card > i,
.support-stat-icon,
.support-message.staff .support-message-avatar {
  background: linear-gradient(135deg, #238df4, #52b8ff);
}
.step-number,
.preview-icon {
  background: linear-gradient(135deg, #1b7ce6, #4fb7ff);
}
.credit-example-card span {
  margin: 8px 0;
  color: #a9bfd9;
}
.landing-cta,
.comparison-cta-card {
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(94, 190, 255, 0.28),
      transparent 35%
    ),
    linear-gradient(135deg, #08285a, #126ad0);
}

.comparison-score-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
  border-bottom-color: var(--pl-line);
}
.comparison-summary-card.pureleads {
  border-color: rgba(46, 212, 122, 0.45);
}
.comparison-summary-card.competitor {
  border-color: rgba(255, 181, 71, 0.45);
}
.comparison-table th:nth-child(2) {
  color: #baffd6;
  background: rgba(27, 146, 84, 0.25);
}
.comparison-table th:nth-child(3) {
  color: #ffe0b0;
  background: rgba(190, 108, 12, 0.25);
}
.comparison-faq summary {
  font-weight: 900;
  cursor: pointer;
  color: #f0f8ff;
}

.support-ticket-number {
  font-weight: 900;
  text-decoration: none;
  color: #70c2ff;
}
.support-empty-icon {
  display: flex;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  color: #73c5ff;
  background: rgba(56, 160, 255, 0.15);
}
.support-pagination span {
  color: #a7bfdc;
}
.support-file-preview {
  margin-top: 12px;
  padding: 13px 15px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: #d8eaff;
}
.support-response-list > div,
.support-ticket-details dl > div,
.support-related-job dl > div,
.admin-customer-details > div {
  border-bottom-color: var(--pl-line);
}
.support-message-avatar {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
  background: linear-gradient(135deg, #526b8c, #8094ae);
}
.support-message-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 11px;
  border-bottom: 1px solid #dbe2ec;
  border-bottom-color: var(--pl-line);
}
.support-message-meta strong,
.support-message-body,
.support-ticket-details dd,
.support-related-job dd {
  color: #e5f1ff;
}
.support-attachment:hover {
  color: #fff;
  border-color: #4eafff;
}
.support-message.internal-note .support-message-content {
  background: rgba(166, 105, 18, 0.18);
  border-color: rgba(255, 181, 71, 0.34);
}
.support-message.system .support-message-content {
  background: rgba(79, 96, 120, 0.18);
}

.admin-ticket-table tr.urgent-ticket {
  background: rgba(190, 35, 61, 0.14);
}
.admin-ticket-table tr.urgent-ticket:hover {
  background: rgba(218, 46, 73, 0.2);
}
.admin-needs-reply {
  margin-top: 5px;
  font-weight: 800;
  color: #ffc36a;
}
.admin-assignee,
.admin-customer-details dd {
  color: #e5f1ff;
}
.admin-ticket-counts span,
.admin-customer-details dt {
  color: #97afca;
}
.admin-response-tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  border-bottom: 1px solid #dbe2ec;
  border-bottom-color: var(--pl-line);
}
.admin-response-tab {
  min-height: 44px;
  padding: 11px 17px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  box-shadow: none;
  color: #9fb7d4;
}
.admin-response-tab:hover {
  box-shadow: none;
  transform: none;
  color: #fff;
  background: rgba(56, 160, 255, 0.1);
}
.admin-response-tab.active {
  color: #7fcaff;
  border-bottom-color: #38a0ff;
}
.admin-ticket-activity::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 12px;
  width: 2px;
  background: rgba(138, 183, 232, 0.24);
}
.admin-ticket-activity-icon {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  color: #55b5ff;
}
.admin-ticket-activity-item strong {
  color: #eef7ff;
}
.admin-ticket-activity-item p {
  margin: 4px 0;
  color: #c4d8ee;
}
.admin-ticket-activity-item span {
  font-size: 0.8rem;
  color: #8fa8c4;
}
.admin-danger-zone {
  border: 1px solid #fecaca;
  background: linear-gradient(
    145deg,
    rgba(95, 27, 44, 0.76),
    rgba(44, 17, 31, 0.84)
  );
  border-color: rgba(255, 91, 110, 0.32);
}
.admin-danger-zone h2 {
  color: #ff9aaa;
  border-bottom-color: rgba(255, 91, 110, 0.24);
}
.brand-text span {
  color: #66c4ff;
}
.nav-links > a,
.nav-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  margin: 0;
  padding: 9px 10px;
  background: transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  color: #c9def5;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-login-link:hover,
.nav-login-link.active {
  color: #fff;
  background: rgba(65, 158, 255, 0.14);
}
.nav-credit-balance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 9px;
  min-width: 112px;
  min-height: 44px;
  padding: 8px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  background: rgba(56, 160, 255, 0.12);
  border-color: rgba(104, 184, 255, 0.2);
}

.nav-credit-copy {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  white-space: nowrap;
}

.nav-credit-amount {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.nav-credit-label {
  color: #dbeafe;
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1;
}
.nav-user-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: auto;
  min-height: 48px;
  margin: 0;
  padding: 5px 10px 5px 6px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(130, 193, 255, 0.14);
}
.nav-register-button {
  min-height: 43px;
  margin: 0;
  padding: 10px 15px;
  white-space: nowrap;
  background: linear-gradient(135deg, #238df4, #49b2ff);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#2476ca, #5dbaff);
}

@media (max-width: 700px) {
  .card,
  .auth-card,
  .pricing-card {
    padding: 20px;
    border-radius: 14px;
  }
  .hero {
    margin-top: 22px;
    padding: 24px;
    border-radius: 18px;
  }
  .nav-menu {
    max-height: calc(100vh - 66px);
    padding: 14px 12px 18px;
    background: rgba(4, 16, 34, 0.98);
  }
}

/* =========================================================
   05B. Light-Blue Surface Theme
   Applies the final light cards, pale content sections, blue
   navigation/footer accents, readable tables, and form surfaces.
   ========================================================= */
:root {
  --color-secondary: #7f95bd;
  --color-success: #2ed47a;
  --color-danger: #ff5b6e;
  --color-warning: #ffb547;
  --color-white: #fff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1400px;
  --pl-glass: rgba(14, 39, 75, 0.8);
  --pl-glass-strong: rgba(16, 46, 88, 0.94);
  --pl-highlight: rgba(56, 160, 255, 0.18);
  --color-primary: #1686ff;
  --color-primary-dark: #075fc7;
  --color-primary-light: #9bd7ff;
  --color-bg-top: #eaf8ff;
  --color-bg-bottom: #72b9ee;
  --color-surface: #fff;
  --color-surface-soft: #edf8ff;
  --color-border: rgba(31, 111, 187, 0.18);
  --color-text: #17324f;
  --color-text-soft: #365776;
  --color-muted: #617f9f;
  --shadow-sm: 0 8px 22px rgba(34, 95, 145, 0.12);
  --shadow-md: 0 18px 44px rgba(34, 95, 145, 0.18);
  --shadow-lg: 0 28px 70px rgba(34, 95, 145, 0.24);
  --pl-line: rgba(31, 111, 187, 0.16);
}
html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #dff3ff;
}
body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 86% 4%,
      rgba(22, 134, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 32%,
      rgba(52, 145, 230, 0.14),
      transparent 34%
    ),
    linear-gradient(145deg, #f4fbff 0%, #def3ff 40%, #b8e0fa 72%, #79bdec 100%);
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-size: 38px 38px;
  opacity: 0.65;
  background:
    linear-gradient(rgba(19, 87, 145, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 87, 145, 0.025) 1px, transparent 1px);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #17324f;
}
h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-shadow: 0 8px 30px rgba(0, 8, 28, 0.28);
  color: #102a44;
}
h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  color: #174f82;
}
h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0b6fbd;
}
p,
ul,
ol {
  color: #365776;
}
.small,
small,
.muted {
  color: #617f9f;
}
a {
  color: #0877d1;
}
a:hover {
  color: #055fa9;
}
.card,
.auth-card,
.pricing-card,
.landing-hero-card,
.feature-card,
.step-card,
.audience-card,
.credit-example-card,
.comparison-score-card,
.comparison-summary-card,
.comparison-choice-card,
.comparison-table-card,
.comparison-checklist div,
.comparison-faq details,
.support-message-content,
.support-attachment,
.pricing-info-item {
  color: #17324f;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(232, 247, 255, 0.96)
  );
  border-color: var(--pl-line);
  box-shadow: var(--shadow-md);
}
.card h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid #dbe2ec;
  border-bottom-color: var(--pl-line);
}
.stat,
.pricing-price,
.pricing-info-item strong,
.credit-example-card strong {
  color: #0877d1;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 36px 0 22px;
  padding: 38px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(126, 198, 255, 0.22);
  color: #17324f;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(86, 178, 255, 0.25),
      transparent 34%
    ),
    linear-gradient(135deg, #eefaff, #a9d9f8);
  border-color: rgba(31, 111, 187, 0.2);
  box-shadow: var(--shadow-lg);
}
.hero h1 {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d7dee9;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  color: #143b5f;
}
.hero p,
.hero .muted {
  max-width: 850px;
  font-size: 1.05rem;
  color: #315c7d;
}
label {
  display: block;
  margin: 18px 0 7px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #234d70;
}
input,
select,
textarea {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  border: 1px solid rgba(130, 188, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  color: #17324f;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(36, 116, 190, 0.24);
}
input:focus,
select:focus,
textarea:focus {
  border-color: #45a8ff;
  box-shadow:
    0 0 0 4px rgba(56, 160, 255, 0.16),
    0 12px 30px rgba(0, 12, 35, 0.22);
  color: #17324f;
  background: #fff;
}
option {
  color: #17324f;
  background: #fff;
}
table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--pl-line);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--pl-line);
}
th,
td {
  padding: 13px 15px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #dbe2ec;
  color: #315b7e;
  border-bottom-color: var(--pl-line);
}
th {
  font-weight: 900;
  white-space: nowrap;
  color: #17324f;
  background: linear-gradient(180deg, #d8efff, #b9dcf6);
}
tbody tr:nth-child(even) {
  background: rgba(15, 91, 155, 0.025);
}
tbody tr:hover {
  background: rgba(22, 134, 255, 0.08);
}
.landing-section,
.comparison-section {
  background: #f7fcff;
}
.landing-section-soft,
.comparison-section-soft {
  background: #e7f5ff;
}
.landing-section-heading h2,
.comparison-section-heading h2 {
  color: #17324f;
}
.landing-section-heading p,
.comparison-section-heading p {
  color: #53728f;
}
.landing-preview-search,
.admin-bulk-toolbar,
.support-file-preview {
  color: #285777;
  background: #e7f5ff;
  border-color: rgba(31, 111, 187, 0.18);
}
.preview-result {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  border-color: var(--pl-line);
  background: #f8fcff;
}
.landing-preview-search strong,
.preview-result strong {
  color: #183b5a;
}
.support-message-content {
  padding: 18px;
  border: 1px solid #dbe2ec;
  border-radius: 14px;
  background: #f8fcff;
}
.support-message.staff .support-message-content {
  border-color: rgba(93, 177, 255, 0.28);
  background: #e8f5ff;
}
.support-message-meta strong,
.support-message-body,
.support-ticket-details dd,
.support-related-job dd,
.admin-assignee,
.admin-customer-details dd {
  color: #294f70;
}
.support-message-meta span,
.support-message-meta time,
.support-ticket-details dt,
.support-related-job dt {
  color: #6b839a;
}
.support-attachment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid #bfdbfe;
  border-radius: 9px;
  text-decoration: none;
  color: #1e5f94;
  background: #eef8ff;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(22, 93, 153, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(31, 90, 140, 0.22);
}
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1100;
  display: none;
  width: 245px;
  padding: 8px;
  border: 1px solid #dbe2ec;
  border-radius: 12px;
  background: #f7fcff;
  border-color: var(--pl-line);
  box-shadow: 0 20px 45px rgba(34, 95, 145, 0.22);
}
.nav-user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 10px 11px;
  background: transparent;
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  color: #244d70;
}
.nav-user-dropdown a:hover {
  color: #1d4ed8;
  background: #e7f5ff;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  gap: 18px;
  background: rgba(22, 93, 153, 0.98);
}
.footer {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7e9ff;
  border-top-color: rgba(127, 190, 255, 0.18);
  background: linear-gradient(180deg, #1766a8, #0b4f88);
}
::-webkit-scrollbar-track {
  background: #d9efff;
}
::-webkit-scrollbar-thumb {
  border: 3px solid #07172d;
  border-radius: 999px;
  background: linear-gradient(#73b8ec, #2f91db);
  border-color: #d9efff;
}

/* =========================================================
   06. Refund Policy Page
   Defines the policy layout, request panel, details, actions,
   warning state, and responsive sidebar behavior.
   ========================================================= */

.refund-policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.refund-policy-card {
  margin-top: 0;
}

.refund-policy-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.refund-policy-section:first-child {
  padding-top: 0;
}

.refund-policy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.refund-policy-section h2 {
  margin-bottom: 14px;
  padding: 0;
  border: 0;
}

.refund-policy-section h3 {
  margin-bottom: 12px;
}

.refund-list {
  margin: 15px 0 18px;
  padding-left: 24px;
}

.refund-list li {
  margin: 9px 0;
  padding-left: 4px;
}

.refund-request-box {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  background: #10315c;
}

.refund-request-box .btn {
  width: 100%;
  margin-top: 8px;
}

.refund-policy-sidebar {
  display: grid;
  gap: 18px;
}

.refund-policy-sidebar .card,
.refund-policy-sidebar .notice {
  margin: 0;
}

.refund-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border);
}

.refund-detail-row:last-child {
  border-bottom: 0;
}

.refund-detail-row strong {
  color: #fff;
}

.refund-detail-row span {
  color: var(--color-text-soft);
}

.refund-sidebar-button {
  width: 100%;
}

.refund-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.refund-contact-actions .btn {
  width: 100%;
}

.refund-status-warning {
  color: #b45309 !important;
}

@media (min-width: 576px) {
  .refund-contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .refund-contact-actions .btn {
    width: auto;
  }

  .refund-detail-row {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (min-width: 992px) {
  .refund-policy-layout {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.75fr);
    gap: 24px;
  }

  .refund-policy-sidebar {
    position: sticky;
    top: 105px;
  }
}

/* =========================================================
   07. SaaS Pricing Trust Row
   Displays short pricing benefits such as secure checkout,
   immediate credits, transparent billing, and customer support.
   Supports direct <span> children or .saas-trust-item elements.
   ========================================================= */

.saas-trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  width: 100%;
  margin: 24px 0 0;
}

.saas-trust-row > span,
.saas-trust-item {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  color: #174f80 !important;
  -webkit-text-fill-color: #174f80;
  text-shadow: none;
  border: 1px solid rgba(86, 157, 215, 0.24);
  border-radius: 13px;
  background: linear-gradient(
    145deg,
    rgba(247, 252, 255, 0.98),
    rgba(231, 246, 255, 0.96)
  );
  box-shadow: 0 8px 22px rgba(35, 101, 156, 0.08);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.saas-trust-check {
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  color: #087f5b !important;
  -webkit-text-fill-color: #087f5b;
  border-radius: 999px;
  background: #ddf8ed;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.saas-trust-text {
  min-width: 0;
  color: #174f80 !important;
  -webkit-text-fill-color: #174f80;
  font: inherit;
}

.saas-trust-row > span:hover,
.saas-trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 143, 219, 0.48);
  box-shadow: 0 13px 28px rgba(35, 101, 156, 0.14);
}

.saas-trust-row i,
.saas-trust-row svg,
.saas-trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: #087f5b;
  border-radius: 10px;
  background: #ddf8ed;
  font-size: 1rem;
}

.saas-trust-row svg {
  padding: 8px;
  fill: currentColor;
}

.saas-trust-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.saas-trust-copy strong {
  color: #174f80;
  font-size: 0.9rem;
  line-height: 1.3;
}

.saas-trust-copy small {
  color: #637d96;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .saas-trust-row {
    grid-template-columns: 1fr;
    margin-top: 19px;
  }

  .saas-trust-row > span,
  .saas-trust-item {
    min-height: 58px;
    padding: 12px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .saas-trust-row > span,
  .saas-trust-item {
    transition: none;
  }

  .saas-trust-row > span:hover,
  .saas-trust-item:hover {
    transform: none;
  }
}

/* =========================================================
   08. Final Dark-Navy Theme
   Restores the deeper PureLeads SaaS palette after the optional
   light-surface layer while retaining all later component fixes.
   ========================================================= */

:root {
  color-scheme: dark;
  --surface: #0e2b53;
  --surface-soft: #123662;
  --border: rgba(117, 181, 245, 0.2);
  --primary: #5cb7ff;
  --color-primary: #38a0ff;
  --color-primary-dark: #176fd1;
  --color-primary-light: #8fd3ff;
  --color-bg-top: #06152d;
  --color-bg-bottom: #0a2c57;
  --color-surface: #0e2b53;
  --color-surface-soft: #123662;
  --color-border: rgba(117, 181, 245, 0.2);
  --color-text: #edf7ff;
  --color-text-soft: #c3d8ee;
  --color-muted: #91abc7;
  --pl-line: rgba(117, 181, 245, 0.2);
  --pl-glass: rgba(10, 31, 62, 0.88);
  --pl-glass-strong: rgba(8, 25, 52, 0.97);
  --pl-highlight: rgba(56, 160, 255, 0.16);
  --shadow-sm: 0 8px 22px rgba(0, 7, 25, 0.24);
  --shadow-md: 0 18px 44px rgba(0, 7, 25, 0.34);
  --shadow-lg: 0 28px 70px rgba(0, 5, 20, 0.46);
}

html {
  background: #06152d;
}

body {
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 88% 5%,
      rgba(39, 132, 226, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 35%,
      rgba(19, 85, 157, 0.2),
      transparent 35%
    ),
    linear-gradient(145deg, #040e20 0%, #071c38 42%, #0a2a53 74%, #0b3c70 100%);
  background-attachment: fixed;
}

body::before {
  background:
    linear-gradient(rgba(135, 194, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 194, 255, 0.025) 1px, transparent 1px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #f3f9ff;
}

h1 {
  color: #ffffff;
}

h2 {
  color: #d8ebff;
}

h3 {
  color: #78c7ff;
}

p,
ul,
ol {
  color: var(--color-text-soft);
}

.small,
small,
.muted {
  color: var(--color-muted);
}

a {
  color: #72c4ff;
}

a:hover {
  color: #b9e4ff;
}

.card,
.auth-card,
.pricing-card,
.landing-hero-card,
.feature-card,
.step-card,
.audience-card,
.credit-example-card,
.comparison-score-card,
.comparison-summary-card,
.comparison-choice-card,
.comparison-table-card,
.comparison-checklist div,
.comparison-faq details,
.support-message-content,
.support-attachment,
.pricing-info-item,
.refund-policy-card,
.refund-policy-sidebar .card {
  color: var(--color-text);
  border-color: var(--pl-line);
  background: linear-gradient(
    145deg,
    rgba(20, 58, 108, 0.97),
    rgba(9, 29, 59, 0.98)
  );
  box-shadow: var(--shadow-md);
}

.card h2 {
  border-bottom-color: var(--pl-line);
}

.stat,
.pricing-price,
.pricing-info-item strong,
.credit-example-card strong {
  color: #66bdff;
}

.hero {
  color: #fff;
  border-color: rgba(105, 181, 255, 0.24);
  background:
    radial-gradient(
      circle at 86% 4%,
      rgba(69, 168, 255, 0.24),
      transparent 32%
    ),
    linear-gradient(135deg, #07172f, #0b376a 58%, #105a96);
  box-shadow: var(--shadow-lg);
}

.hero h1 {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.hero p,
.hero .muted {
  color: #c7e2f8;
}

label {
  color: #d9ebfb;
}

input,
select,
textarea {
  color: #edf7ff;
  border-color: rgba(126, 188, 255, 0.25);
  background: rgba(7, 26, 53, 0.9);
}

input:focus,
select:focus,
textarea:focus {
  color: #fff;
  border-color: #45a8ff;
  background: #0c2b55;
}

input::placeholder,
textarea::placeholder {
  color: #7894b6;
}

option {
  color: #edf7ff;
  background: #0c2b55;
}

table {
  color: var(--color-text);
  border-color: var(--pl-line);
  background: rgba(7, 25, 51, 0.94);
}

th,
td {
  color: #cbdff3;
  border-bottom-color: var(--pl-line);
}

th {
  color: #eff8ff;
  background: linear-gradient(180deg, #164a7f, #10365f);
}

tbody tr:nth-child(even) {
  background: rgba(73, 145, 217, 0.055);
}

tbody tr:hover {
  background: rgba(56, 160, 255, 0.12);
}

.landing-section,
.comparison-section {
  background: #071a35;
}

.landing-section-soft,
.comparison-section-soft {
  background: #0a2448;
}

.landing-section-heading h2,
.comparison-section-heading h2,
.landing-preview-search strong,
.preview-result strong {
  color: #eaf5ff;
}

.landing-section-heading p,
.comparison-section-heading p {
  color: #9db7d1;
}

.landing-preview-search,
.admin-bulk-toolbar,
.support-file-preview,
.preview-result {
  color: #c6dbef;
  border-color: var(--pl-line);
  background: rgba(15, 49, 91, 0.88);
}

.support-message-content,
.support-attachment {
  color: #d9eaff;
  border-color: var(--pl-line);
  background: #0b2a50;
}

.support-message.staff .support-message-content {
  border-color: rgba(93, 177, 255, 0.3);
  background: #103862;
}

.support-message-meta strong,
.support-message-body,
.support-ticket-details dd,
.support-related-job dd,
.admin-assignee,
.admin-customer-details dd {
  color: #e6f2ff;
}

.support-message-meta span,
.support-message-meta time,
.support-ticket-details dt,
.support-related-job dt {
  color: #8fa9c4;
}

.nav {
  border-bottom-color: rgba(115, 184, 255, 0.15);
  background: rgba(4, 18, 39, 0.95);
  box-shadow: 0 12px 34px rgba(0, 5, 20, 0.38);
}

.nav-menu {
  background: transparent;
}

.nav-user-dropdown {
  border-color: var(--pl-line);
  background: #0d294f;
  box-shadow: 0 24px 54px rgba(0, 5, 20, 0.5);
}

.nav-user-dropdown a {
  color: #dbeaff;
}

.nav-user-dropdown a:hover {
  color: #fff;
  background: rgba(56, 160, 255, 0.12);
}

.footer {
  color: #d7e9ff;
  border-top-color: rgba(127, 190, 255, 0.18);
  background: linear-gradient(180deg, #071b37, #040f22);
}

.footer p,
.footer a {
  color: #bcd3ed;
}

.saas-trust-row > span,
.saas-trust-item {
  color: #dceeff !important;
  -webkit-text-fill-color: #dceeff;
  border-color: rgba(93, 177, 255, 0.25);
  background: linear-gradient(
    145deg,
    rgba(17, 55, 99, 0.98),
    rgba(8, 29, 59, 0.98)
  );
  box-shadow: 0 10px 26px rgba(0, 7, 25, 0.24);
}

.saas-trust-check,
.saas-trust-row i,
.saas-trust-row svg,
.saas-trust-icon {
  color: #72e2ad !important;
  -webkit-text-fill-color: #72e2ad;
  background: rgba(25, 159, 91, 0.2);
}

.saas-trust-text,
.saas-trust-copy strong {
  color: #dceeff !important;
  -webkit-text-fill-color: #dceeff;
}

.saas-trust-copy small {
  color: #91abc7;
}

.refund-request-box {
  color: #dcecff;
  border-color: rgba(93, 177, 255, 0.26);
  background: #0d315c;
}

.refund-detail-row strong {
  color: #f2f8ff;
}

.refund-detail-row span {
  color: #abc2d9;
}

::-webkit-scrollbar-track {
  background: #06152d;
}

::-webkit-scrollbar-thumb {
  border-color: #06152d;
  background: linear-gradient(#1a5da7, #39a5ff);
}

@media (max-width: 700px) {
  .nav-menu {
    background: rgba(4, 16, 34, 0.99);
  }
}

/* =========================================================
   09. Homepage Content Compatibility
   Connects the long-form homepage components to the final
   dark-navy tokens used throughout style_saas.css.
   ========================================================= */

.content-card,
.detailed-feature-card,
.benefit-card,
.use-case-card,
.industry-card,
.comparison-panel,
.faq-item,
.trust-panel {
  color: var(--color-text);
  border-color: var(--pl-line);
  background: linear-gradient(
    145deg,
    rgba(20, 58, 108, 0.97),
    rgba(9, 29, 59, 0.98)
  );
  box-shadow: var(--shadow-md);
}

.content-card h2,
.content-card h3,
.detailed-feature-card h3,
.benefit-card h3,
.use-case-card h3,
.industry-card h3,
.trust-panel h3,
.faq-item summary {
  color: #edf7ff;
}

.content-card p,
.detailed-feature-card p,
.benefit-card p,
.use-case-card p,
.industry-card p,
.trust-panel p,
.faq-answer {
  color: #bdd3e9;
}

.detailed-feature-card i,
.benefit-card i,
.use-case-card i,
.industry-card i {
  color: #66bdff;
}

.stat-strip div {
  color: #dcecff;
  border: 1px solid rgba(117, 181, 245, 0.18);
  background: rgba(9, 36, 71, 0.72);
}

.stat-strip strong {
  color: #ffffff;
}

.comparison-panel table,
.comparison-table {
  border-color: var(--pl-line);
  background: rgba(6, 24, 49, 0.92);
}

.comparison-table th {
  color: #f0f8ff;
  border-bottom-color: var(--pl-line);
  background: #10365f !important;
}

.comparison-table td {
  color: #c6daed;
  border-bottom-color: var(--pl-line) !important;
}

.comparison-good {
  color: #69dfa5 !important;
}

.comparison-limit {
  color: #ffc66d !important;
}

.faq-item summary {
  background: rgba(18, 54, 98, 0.78);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--pl-line);
}

.faq-answer {
  background: rgba(7, 28, 57, 0.72);
}

.trust-list i {
  color: #69dfa5 !important;
}

.text-link-row a {
  color: #72c4ff;
}

.text-link-row a:hover {
  color: #c4eaff;
}
/* =========================================================
   Lists
   Modern styling for ul, ol and li elements
   ========================================================= */

ul,
ol {
    margin: 0 0 20px 22px;
    padding: 0;
    color: var(--color-text-soft);
    line-height: 1.8;
}

li {
    position: relative;
    margin: 8px 0;
    padding-left: 4px;
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

li strong {
    color: var(--color-heading);
    font-weight: 700;
}

li a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

li a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* =========================================================
   Feature Lists
   ========================================================= */

.feature-list,
.check-list,
.pricing-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.feature-list li,
.check-list li,
.pricing-features li {
    position: relative;
    margin: 12px 0;
    padding-left: 34px;
}

.feature-list li::before,
.check-list li::before,
.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: linear-gradient(
        180deg,
        #16a34a,
        #15803d
    );

    color: #ffffff;
    font-size: .75rem;
    font-weight: 900;
}

/* =========================================================
   Warning Lists
   ========================================================= */

.warning-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.warning-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 34px;
}

.warning-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: linear-gradient(
        180deg,
        #f59e0b,
        #d97706
    );

    color: #ffffff;
    font-weight: 900;
}

/* =========================================================
   Danger Lists
   ========================================================= */

.danger-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.danger-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 34px;
}

.danger-list li::before {
    content: "\2715";
    position: absolute;
    left: 0;
    top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: linear-gradient(
        180deg,
        #dc2626,
        #991b1b
    );

    color: #ffffff;
    font-size: .7rem;
    font-weight: 900;
}

/* =========================================================
   Nested Lists
   ========================================================= */

li ul,
li ol {
    margin-top: 10px;
    margin-bottom: 10px;
}
/* =========================================================
   Ordered Lists
   ========================================================= */

ol {
    margin: 20px 0 24px 28px;
    padding: 0;

    color: #334155;

    font-size: 1rem;
    line-height: 1.9;
}

ol li {
    margin: 12px 0;

    color: #334155;

    font-weight: 500;
}

ol li::marker {
    color: #2563eb;
    font-weight: 800;
}

ol li a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

ol li a:hover {
    color: #0b6df0;
    text-decoration: underline;
}
/* =========================================================
   Help Page Typography
   ========================================================= */

.help-page p {
    margin: 0 0 18px;
    padding: 0;

    color: #334155;

    font-size: 1.05rem;
    line-height: 1.85;

    font-weight: 400;
    letter-spacing: .01em;
}

.help-page p:last-child {
    margin-bottom: 0;
}

.help-page p strong {
    color: #0f172a;
    font-weight: 700;
}

.help-page p a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.help-page p a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.help-page .card p {
    color: #334155;
}

.help-page .card {
    padding: 30px;
}

.help-page .card h2,
.help-page .card h3 {
    margin-bottom: 14px;
}

.help-page .card p + ul,
.help-page .card p + ol {
    margin-top: 14px;
}
        /* =========================================================
           PureLeads Help Center: Foundation
           ========================================================= */

        .help-page,
        .help-page * {
            box-sizing: border-box;
        }

        .help-page {
            min-width: 0;
            overflow: hidden;
            color: #263a54;
            background:
                radial-gradient(
                    circle at 94% 28%,
                    rgba(42, 150, 224, .1),
                    transparent 30%
                ),
                linear-gradient(180deg, #f6fafd 0%, #edf4fa 100%);
        }

        .help-page button,
        .help-page input {
            font: inherit;
        }

        .help-page a,
        .help-page p,
        .help-page li,
        .help-page h1,
        .help-page h2,
        .help-page h3 {
            overflow-wrap: anywhere;
        }

        .help-wrap {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

        .help-sr-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* =========================================================
           Hero and Search
           ========================================================= */

        .help-hero {
            position: relative;
            padding: 68px 0 79px;
            overflow: hidden;
            color: #fff;
            background:
                radial-gradient(
                    circle at 85% 12%,
                    rgba(70, 193, 248, .27),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 8% 90%,
                    rgba(39, 104, 222, .2),
                    transparent 34%
                ),
                linear-gradient(135deg, #05152f 0%, #0a3263 53%, #126ead 100%);
        }

        .help-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(
                    rgba(255, 255, 255, .035) 1px,
                    transparent 1px
                ),
                linear-gradient(
                    90deg,
                    rgba(255, 255, 255, .035) 1px,
                    transparent 1px
                );
            background-size: 36px 36px;
        }

        .help-hero .help-wrap {
            position: relative;
            z-index: 1;
        }

        .help-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 30px;
            align-items: center;
        }

        .help-eyebrow {
            display: inline-flex;
            gap: 9px;
            align-items: center;
            margin-bottom: 13px;
            color: #b9e5ff;
            font-size: .74rem;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .help-eyebrow::before {
            content: "";
            width: 28px;
            height: 2px;
            border-radius: 999px;
            background: #50bdec;
        }

        .help-hero h1 {
            max-width: 820px;
            margin: 0;
            color: #fff;
            font-size: clamp(2.4rem, 8vw, 4.5rem);
            line-height: 1.03;
            letter-spacing: -.045em;
        }

        .help-hero-lead {
    max-width: 740px;
    margin: 19px 0 0;
    color: #EFF6FF;
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
        .help-search {
            position: relative;
            display: flex;
            align-items: center;
            max-width: 760px;
            margin-top: 25px;
            border: 1px solid rgba(255, 255, 255, .27);
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
        }

        .help-search-icon {
            position: absolute;
            left: 16px;
            display: grid;
            width: 28px;
            place-items: center;
            color: #37749f;
            pointer-events: none;
        }

        .help-search input {
            width: 100%;
            min-height: 59px;
            padding: 13px 53px 13px 52px;
            border: 0;
            border-radius: 15px;
            outline: 0;
            color: #1d334d;
            background: transparent;
        }

        .help-search:focus-within {
            border-color: #8dccf0;
            box-shadow:
                0 0 0 4px rgba(88, 187, 238, .2),
                0 18px 40px rgba(0, 0, 0, .2);
        }

        .help-search-clear {
            position: absolute;
            right: 11px;
            display: grid;
            width: 36px;
            height: 36px;
            padding: 0;
            place-items: center;
            border: 0;
            border-radius: 9px;
            color: #52677b;
            font-size: 1.35rem;
            cursor: pointer;
            background: #eaf1f6;
        }

        .help-search-status {
            margin-top: 11px;
            color: #bddff5;
            font-size: .84rem;
        }

        .help-hero-card {
            padding: 22px;
            border: 1px solid rgba(189, 225, 249, .21);
            border-radius: 20px;
            background: rgba(3, 22, 48, .65);
            box-shadow: 0 25px 59px rgba(0, 9, 27, .3);
            backdrop-filter: blur(15px);
        }

        .help-hero-card h2 {
            margin: 0 0 9px;
            color: #fff;
            font-size: 1.25rem;
        }

        .help-hero-card p {
            margin: 0 0 17px;
            color: #d4e9f9;
            font-size: .88rem;
            line-height: 1.65;
        }

        .help-hero-actions {
            display: grid;
            gap: 9px;
        }

        .help-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 10px 17px;
            border: 1px solid transparent;
            border-radius: 10px;
            font-weight: 850;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
        }

        .help-button.primary {
            color: #fff;
            background: linear-gradient(135deg, #1475ce, #1c9fdf);
            box-shadow: 0 11px 24px rgba(0, 12, 32, .23);
        }

        .help-button.ghost {
            border-color: rgba(255, 255, 255, .3);
            color: #fff;
            background: rgba(255, 255, 255, .09);
        }

        .help-button.secondary {
            border-color: #b9ccdc;
            color: #185f9c;
            background: #f4f9fd;
        }

        /* =========================================================
           Quick Actions
           ========================================================= */

        .help-quick {
            position: relative;
            z-index: 2;
            margin-top: -28px;
        }

        .help-quick-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 12px;
        }

        .help-quick-card {
            display: grid;
            grid-template-columns: 43px minmax(0, 1fr);
            gap: 12px;
            align-items: center;
            padding: 16px;
            border: 1px solid #d7e3ed;
            border-radius: 14px;
            color: #24425e;
            text-decoration: none;
            background: #fff;
            box-shadow: 0 13px 31px rgba(17, 56, 93, .1);
            transition:
                transform .18s ease,
                border-color .18s ease,
                box-shadow .18s ease;
        }

        .help-quick-card:hover {
            border-color: #94c5e4;
            transform: translateY(-3px);
            box-shadow: 0 18px 36px rgba(17, 81, 133, .13);
        }

        .help-quick-icon {
            display: grid;
            width: 43px;
            height: 43px;
            place-items: center;
            border-radius: 12px;
            color: #176aad;
            font-weight: 900;
            background: #e4f2fc;
        }

        .help-quick-card strong,
        .help-quick-card small {
            display: block;
        }

        .help-quick-card strong {
            margin-bottom: 3px;
            color: #194a74;
            font-size: .9rem;
        }

        .help-quick-card small {
            color: #6f7f91;
            font-size: .75rem;
            line-height: 1.4;
        }

        /* =========================================================
           Main Help Layout
           ========================================================= */

        .help-main {
            padding: 69px 0 75px;
        }

        .help-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 22px;
            align-items: start;
        }

        .help-sidebar {
            display: grid;
            gap: 17px;
            min-width: 0;
        }

        .help-sidebar-card,
        .help-content-header {
            padding: 19px;
            border: 1px solid #d7e3ed;
            border-radius: 16px;
            background: #fff;
            box-shadow: 0 10px 29px rgba(17, 56, 93, .065);
        }

        .help-sidebar-card h2 {
            margin: 0 0 13px;
            color: #173653;
            font-size: 1.08rem;
        }

        .help-category-list {
            display: grid;
            gap: 6px;
        }

        .help-category-button {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 10px;
            align-items: center;
            width: 100%;
            min-height: 42px;
            padding: 9px 11px;
            border: 0;
            border-radius: 9px;
            color: #506379;
            font-size: .81rem;
            font-weight: 780;
            text-align: left;
            cursor: pointer;
            background: transparent;
        }

        .help-category-button:hover,
        .help-category-button.active {
            color: #155f9f;
            background: #eaf5fd;
        }

        .help-category-button small {
            display: grid;
            min-width: 29px;
            min-height: 24px;
            padding: 3px 7px;
            place-items: center;
            border-radius: 8px;
            color: #567086;
            background: #edf2f6;
        }

        .help-category-button.active small {
            color: #fff;
            background: #1b6fb2;
        }

        .help-support-card {
            color: #fff;
            background:
                radial-gradient(
                    circle at 90% 6%,
                    rgba(67, 187, 241, .2),
                    transparent 30%
                ),
                linear-gradient(135deg, #0a264b, #115e99);
        }

        .help-support-card h2 {
            color: #fff;
        }

        .help-support-card p {
            margin: 0 0 15px;
            color: #d2e8f8;
            font-size: .82rem;
            line-height: 1.58;
        }

        .help-content {
            min-width: 0;
        }

        .help-content-header {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 15px;
        }

        .help-content-label {
            display: block;
            margin-bottom: 4px;
            color: #1b6bad;
            font-size: .7rem;
            font-weight: 900;
            letter-spacing: .11em;
            text-transform: uppercase;
        }

        .help-content-header h2 {
            margin: 0;
            color: #173653;
            font-size: 1.35rem;
        }

        .help-expand-button {
            align-self: flex-start;
            padding: 9px 13px;
            border: 1px solid #b8ccdc;
            border-radius: 9px;
            color: #175f99;
            font-weight: 800;
            cursor: pointer;
            background: #f3f9fd;
        }

        /* =========================================================
           Help Articles
           ========================================================= */

        .help-article-list {
            display: grid;
            gap: 10px;
        }

        .help-article {
            scroll-margin-top: 92px;
            overflow: hidden;
            border: 1px solid #d7e3ed;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 8px 24px rgba(17, 56, 93, .05);
        }

        .help-article[hidden] {
            display: none;
        }

        .help-article summary {
            position: relative;
            display: grid;
            grid-template-columns: 39px minmax(0, 1fr) 31px;
            gap: 11px;
            align-items: center;
            padding: 16px;
            color: #1d3a57;
            cursor: pointer;
            list-style: none;
        }

        .help-article summary::-webkit-details-marker {
            display: none;
        }

        .help-article-number {
            display: grid;
            width: 39px;
            height: 39px;
            place-items: center;
            border-radius: 10px;
            color: #1769aa;
            font-size: .7rem;
            font-weight: 900;
            background: #e5f2fb;
        }

        .help-article-title strong,
        .help-article-title small {
            display: block;
        }

        .help-article-title strong {
            margin-bottom: 4px;
            color: #1b3b58;
            font-size: .92rem;
        }

        .help-article-title small {
            color: #718093;
            font-size: .75rem;
            line-height: 1.42;
        }

        .help-article-toggle {
            display: grid;
            width: 31px;
            height: 31px;
            place-items: center;
            border-radius: 9px;
            color: #1769aa;
            font-size: 1.12rem;
            font-weight: 800;
            background: #eaf4fb;
        }

        .help-article summary .help-article-toggle::before {
            content: "+";
        }

        .help-article[open] summary .help-article-toggle::before {
            content: "−";
        }

        .help-article-body {
            padding: 17px 19px 20px 69px;
            border-top: 1px solid #e4ebf1;
            color: #596d82;
            font-size: .87rem;
            line-height: 1.7;
            background: #fbfdff;
        }

        .help-article-body p {
            margin: 0 0 12px;
        }

        .help-article-body p:last-child {
            margin-bottom: 0;
        }

        .help-article-body ul,
        .help-article-body ol {
            margin: 0 0 13px;
            padding-left: 21px;
        }

        .help-article-body li + li {
            margin-top: 5px;
        }

        .help-article-body a {
            color: #155fa1;
            font-weight: 750;
        }

        .help-article-body code {
            padding: 2px 5px;
            border-radius: 5px;
            color: #204d72;
            background: #e7f1f8;
        }

        .help-no-results {
            padding: 42px 20px;
            border: 1px solid #d7e3ed;
            border-radius: 16px;
            text-align: center;
            background: #fff;
        }

        .help-no-results h2 {
            margin: 0 0 8px;
            color: #173653;
        }

        .help-no-results p {
            margin: 0 0 17px;
            color: #697a8d;
        }

        /* =========================================================
           Contact CTA
           ========================================================= */

        .help-cta {
            padding: 0 0 77px;
        }

        .help-cta-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 21px;
            align-items: center;
            padding: 29px;
            border: 1px solid #cfe0ec;
            border-radius: 19px;
            color: #fff;
            background:
                radial-gradient(
                    circle at 90% 8%,
                    rgba(69, 194, 247, .23),
                    transparent 29%
                ),
                linear-gradient(135deg, #0a2549, #1267a3);
            box-shadow: 0 17px 42px rgba(18, 58, 99, .16);
        }

        .help-cta h2 {
            margin: 0 0 8px;
            color: #fff;
            font-size: clamp(1.45rem, 4vw, 2.1rem);
        }

        .help-cta p {
            max-width: 700px;
            margin: 0;
            color: #d8ebfb;
            line-height: 1.67;
        }

        .help-cta-actions {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        /* =========================================================
           Responsive Rules
           ========================================================= */

        @media (min-width: 560px) {
            .help-quick-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .help-content-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

            .help-expand-button {
                align-self: auto;
            }

            .help-cta-actions {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        @media (min-width: 900px) {
            .help-hero-grid {
                grid-template-columns: minmax(0, 1.35fr) minmax(315px, .65fr);
                gap: 52px;
            }

            .help-quick-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .help-layout {
                grid-template-columns: 265px minmax(0, 1fr);
                gap: 27px;
            }

            .help-sidebar {
                position: sticky;
                top: 91px;
            }

            .help-cta-inner {
                grid-template-columns: minmax(0, 1fr) auto;
                padding: 36px;
            }
        }

        @media (max-width: 480px) {
            .help-wrap {
                width: min(100% - 20px, 1180px);
            }

            .help-hero {
                padding: 51px 0 68px;
            }

            .help-hero-card,
            .help-sidebar-card,
            .help-content-header,
            .help-cta-inner {
                padding: 17px;
            }

            .help-main {
                padding-top: 57px;
            }

            .help-article summary {
                grid-template-columns: 35px minmax(0, 1fr) 29px;
                gap: 9px;
                padding: 13px;
            }

            .help-article-number {
                width: 35px;
                height: 35px;
            }

            .help-article-body {
                padding: 15px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .help-quick-card {
                transition: none;
            }

            .help-quick-card:hover {
                transform: none;
            }
        }

/* =========================================================
   MERGED SELECTORS UNIQUE TO style_saas3.css
   These rules were absent from style_saas4.css.
   ========================================================= */

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  width: min(calc(100% - 32px), 1400px);
  min-height: 80px;
  margin: 0 auto;
  padding: 10px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.brand:hover {
  color: #fff;
}

.nav-logo {
  display: block;
  width: auto;
  max-width: 210px;
  height: 58px;
  margin: 0;
  object-fit: contain;
}

.brand-text {
  display: block;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.nav-links > a i,
.nav-login-link i {
  flex: 0 0 auto;
  font-size: 0.88rem;
}

.nav-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 10px;
  margin-left: auto;
}

.nav-credit-balance:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.nav-credit-balance i {
  color: #facc15;
}

.nav-user-menu {
  position: relative;
  flex: 0 0 auto;
}

.nav-user-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: none;
  transform: none;
}

.nav-user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: #fff;
  background: linear-gradient(180deg, #1686ff, #0051cb);
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 900;
}

.nav-user-info {
  min-width: 0;
  text-align: left;
}

.nav-user-info strong,
.nav-user-info small {
  display: block;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-info strong {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.2;
}

.nav-user-info small {
  margin-top: 3px;
  color: #bfdbfe;
  font-size: 0.68rem;
  line-height: 1.2;
}

.nav-user-button > i {
  color: #bfdbfe;
  font-size: 0.7rem;
}

.nav-user-dropdown.open {
  display: block;
}

.nav-dropdown-header {
  padding: 10px 11px 13px;
  border-bottom: 1px solid #e2e8f0;
}

.nav-dropdown-header strong,
.nav-dropdown-header span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-dropdown-header strong {
  color: #17233a;
  font-size: 0.9rem;
}

.nav-dropdown-header span {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.76rem;
}

.nav-user-dropdown a i {
  width: 18px;
  color: #2563eb;
  text-align: center;
}

.nav-dropdown-divider {
  height: 1px;
  margin: 7px 3px;
  background: #e2e8f0;
}

.nav-user-dropdown .nav-logout-link {
  color: #b91c1c;
}

.nav-user-dropdown .nav-logout-link i {
  color: #dc2626;
}

.nav-user-dropdown .nav-logout-link:hover {
  color: #991b1b;
  background: #fee2e2;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  margin-left: auto;
  padding: 10px;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  box-shadow: none;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  transform: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.seo-intro-grid,
        .detailed-feature-grid,
        .benefit-grid,
        .use-case-grid,
        .industry-grid {
            display: grid;
            gap: 1.25rem;
        }

.seo-intro-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: start;
        }

.detailed-feature-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

.benefit-grid,
        .use-case-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

.industry-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

.content-card,
        .detailed-feature-card,
        .benefit-card,
        .use-case-card,
        .comparison-panel,
        .trust-panel {
            padding: 1.5rem;
        }

.detailed-feature-card h3,
        .benefit-card h3,
        .use-case-card h3,
        .industry-card h3 {
            margin-top: 0;
        }

.industry-card {
            padding: 1.25rem;
        }

.industry-card p {
            margin-bottom: 0;
        }

.landing-copy {
            max-width: 900px;
            margin: 0 auto;
        }

.landing-copy p {
            line-height: 1.8;
        }

.stat-strip {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

.comparison-table-wrap {
            overflow-x: auto;
        }

.comparison-table th,
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border, #dbe4ef);
            text-align: left;
            vertical-align: top;
        }

.faq-list {
            display: grid;
            gap: 1rem;
            max-width: 980px;
            margin: 0 auto;
        }

.faq-item {
            overflow: hidden;
        }

.faq-item summary::-webkit-details-marker {
            display: none;
        }

.faq-item summary::after {
            content: "+";
            float: right;
            font-size: 1.35rem;
        }

.faq-item[open] summary::after {
            content: "−";
        }

.text-link-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

.trust-list {
            display: grid;
            gap: 0.8rem;
            margin: 1rem 0 0;
            padding: 0;
            list-style: none;
        }

.trust-list li {
            display: flex;
            gap: 0.7rem;
            align-items: flex-start;
        }

/* Responsive/support rules unique to style_saas3.css */

@media (max-width: 1250px) {
.nav-container {
    min-height: 72px;
  }

.nav-logo {
    max-width: 190px;
    height: 52px;
  }

.nav-toggle {
    display: flex;
  }

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - 72px);
    padding: 18px;
    overflow-y: auto;
    background: #062d87;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 16px 30px rgba(0, 20, 80, 0.26);
  }

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

.nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

.nav-links > a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
  }

.nav-account {
    justify-content: flex-start;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

.nav-user-dropdown {
    right: auto;
    left: 0;
  }
}

@media (max-width: 700px) {
.nav-container {
    width: calc(100% - 24px);
    min-height: 66px;
    padding: 8px 0;
  }

.nav-logo {
    max-width: 165px;
    height: 46px;
  }

.brand-text {
    font-size: 1.3rem;
  }

.nav-links {
    grid-template-columns: 1fr;
  }

.nav-account {
    align-items: stretch;
    flex-direction: column;
  }

.nav-credit-balance,
  .nav-user-menu,
  .nav-user-button,
  .nav-login-link,
  .nav-register-button {
    width: 100%;
  }

.nav-login-link,
  .nav-register-button {
    justify-content: center;
  }

.nav-user-button {
    justify-content: flex-start;
  }

.nav-user-button > i {
    margin-left: auto;
  }

.nav-user-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }
}

@media (max-width: 980px) {
.detailed-feature-grid,
            .industry-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
}

@media (max-width: 760px) {
.seo-intro-grid,
            .benefit-grid,
            .use-case-grid,
            .detailed-feature-grid,
            .industry-grid,
            .stat-strip {
                grid-template-columns: 1fr;
            }
}

/* =========================================================
   LIGHT-BLUE ACCENT THEME OVERRIDES
   Centralizes the PureLeads accent without replacing the
   dark navy structural backgrounds used for contrast.
   ========================================================= */

:root {
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-primary-soft: #eff6ff;
  --color-accent: #60a5fa;
  --color-accent-bright: #93c5fd;
  --color-focus: rgba(96, 165, 250, 0.38);
  --accent: #60a5fa;
  --accent-hover: #3b82f6;
  --accent-soft: #eff6ff;
}

a,
.link,
.text-link {
  color: var(--color-primary);
}

a:hover,
a:focus-visible,
.link:hover,
.text-link:hover {
  color: var(--color-primary-hover);
}

.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary,
.primary-action {
  color: #fff;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  border-color: #3b82f6;
}

.btn-primary:hover,
.btn-primary:focus-visible,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover,
.primary-action:hover {
  color: #fff;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  border-color: #2563eb;
}

.btn-outline-primary,
.btn-secondary-outline {
  color: #2563eb;
  background: #eff6ff;
  border-color: #93c5fd;
}

.btn-outline-primary:hover,
.btn-secondary-outline:hover {
  color: #1d4ed8;
  background: #dbeafe;
  border-color: #60a5fa;
}

.stat,
.pricing-price,
.pricing-info-item strong,
.comparison-score-header strong,
.credit-example-card strong,
.help-section-eyebrow,
.landing-section-heading .landing-eyebrow,
.comparison-eyebrow.dark {
  color: #3b82f6;
}

.feature-icon,
.audience-card > i,
.preview-icon,
.step-number,
.help-icon,
.support-icon,
.account-icon,
.dashboard-icon {
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
.btn:focus-visible {
  outline-color: #60a5fa;
  box-shadow: 0 0 0 4px var(--color-focus);
}

.nav-link.active,
.nav-links a.active,
.primary-navigation a.active,
.pagination a.active,
.tabs a.active,
.tab-button.active {
  color: #1d4ed8;
  background: #dbeafe;
  border-color: #93c5fd;
}

.badge-primary,
.pill.primary,
.tag-primary {
  color: #1e3a8a;
  background: #dbeafe;
  border-color: #93c5fd;
}

.help-hero-lead,
.landing-lead,
.comparison-lead {
  color: #eff6ff;
}

/* =========================================================
   FINAL LIGHT-BLUE GRADIENT THEME
   Overrides all earlier dark-navy presentation layers while
   preserving the existing component structure and responsive
   behavior throughout PureLeads.
   ========================================================= */

:root {
  color-scheme: light;
  --surface: #ffffff;
  --surface-soft: #edf8ff;
  --border: rgba(35, 117, 190, 0.2);
  --primary: #147bd1;
  --color-primary: #1686e8;
  --color-primary-hover: #086abf;
  --color-primary-dark: #07589e;
  --color-primary-light: #ccecff;
  --color-primary-soft: #edf8ff;
  --color-accent: #53b6ee;
  --color-accent-bright: #8fd7fa;
  --color-bg-top: #f8fdff;
  --color-bg-bottom: #9ed5f5;
  --color-surface: #ffffff;
  --color-surface-soft: #edf8ff;
  --color-border: rgba(35, 117, 190, 0.2);
  --color-text: #173653;
  --color-text-soft: #365d7d;
  --color-muted: #66829c;
  --pl-line: rgba(35, 117, 190, 0.18);
  --pl-glass: rgba(244, 251, 255, 0.9);
  --pl-glass-strong: rgba(255, 255, 255, 0.97);
  --pl-highlight: rgba(74, 169, 230, 0.16);
  --shadow-sm: 0 8px 22px rgba(28, 93, 145, 0.1);
  --shadow-md: 0 18px 44px rgba(28, 93, 145, 0.15);
  --shadow-lg: 0 28px 70px rgba(28, 93, 145, 0.2);
  --color-focus: rgba(64, 159, 220, 0.28);
}

html {
  background: #dff3ff;
}

body {
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 88% 3%,
      rgba(79, 177, 235, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 34%,
      rgba(144, 210, 247, 0.28),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #fbfeff 0%,
      #e8f7ff 38%,
      #cbeaff 70%,
      #9fd5f4 100%
    );
  background-attachment: fixed;
}

body::before {
  background:
    linear-gradient(rgba(24, 100, 165, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 100, 165, 0.025) 1px, transparent 1px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #173653;
  text-shadow: none;
}

h1 {
  color: #102f4d;
}

h2 {
  color: #15588c;
}

h3 {
  color: #1472b8;
}

p,
ul,
ol {
  color: var(--color-text-soft);
}

.small,
small,
.muted {
  color: var(--color-muted);
}

a,
.link,
.text-link {
  color: #0874c8;
}

a:hover,
a:focus-visible,
.link:hover,
.text-link:hover {
  color: #075b9d;
}

/* Light-blue gradient surfaces */
.card,
.auth-card,
.pricing-card,
.landing-hero-card,
.feature-card,
.step-card,
.audience-card,
.credit-example-card,
.comparison-score-card,
.comparison-summary-card,
.comparison-choice-card,
.comparison-table-card,
.comparison-checklist div,
.comparison-faq details,
.support-message-content,
.support-attachment,
.pricing-info-item,
.refund-policy-card,
.refund-policy-sidebar .card,
.content-card,
.detailed-feature-card,
.benefit-card,
.use-case-card,
.industry-card,
.comparison-panel,
.faq-item,
.trust-panel,
.help-quick-card,
.help-hero-card,
.faq-hero-card,
.help-sidebar-card,
.help-content-header,
.help-article,
.help-no-results,
.account-profile,
.account-card,
.account-stat,
.account-sidebar,
.admin-card,
.dashboard-card,
.support-hero-card,
.support-card {
  color: var(--color-text);
  border-color: var(--pl-line);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(229, 246, 255, 0.97)
  );
  box-shadow: var(--shadow-md);
}

.card h2,
.card h3,
.content-card h2,
.content-card h3,
.detailed-feature-card h3,
.benefit-card h3,
.use-case-card h3,
.industry-card h3,
.trust-panel h3,
.faq-item summary,
.help-sidebar-card h2,
.help-hero-card h2,
.faq-hero-card h2,
.help-content-header h2,
.help-article-title strong {
  color: #173f61;
}

.card p,
.content-card p,
.detailed-feature-card p,
.benefit-card p,
.use-case-card p,
.industry-card p,
.trust-panel p,
.faq-answer,
.help-article-body,
.help-hero-card p,
.faq-hero-card p,
.support-message-body {
  color: #486984;
}

/* Heroes and promotional panels */
.hero,
.landing-hero,
.comparison-hero,
.help-hero,
.faq-hero,
.legal-hero,
.refund-hero,
.account-hero,
.support-hero,
.admin-hero,
.pricing-hero,
.landing-cta,
.help-cta-inner,
.help-support-card,
.refund-request-box,
.credit-balance-box {
  color: #123b5d;
  border-color: rgba(37, 119, 190, 0.22);
  background:
    radial-gradient(
      circle at 86% 7%,
      rgba(255, 255, 255, 0.7),
      transparent 31%
    ),
    linear-gradient(135deg, #f1faff 0%, #ccecff 54%, #88caf0 100%);
  box-shadow: var(--shadow-lg);
}

.hero h1,
.hero h2,
.landing-hero h1,
.comparison-hero h1,
.help-hero h1,
.faq-hero h1,
.legal-hero h1,
.refund-hero h1,
.account-hero h1,
.support-hero h1,
.admin-hero h1,
.pricing-hero h1,
.landing-cta h2,
.help-cta h2,
.help-support-card h2,
.credit-balance-box strong {
  color: #113b5e;
  text-shadow: none;
}

.hero p,
.hero .muted,
.landing-lead,
.comparison-lead,
.help-hero-lead,
.faq-hero-lead,
.legal-hero p,
.account-hero p,
.support-hero p,
.landing-cta p,
.help-cta p,
.help-support-card p,
.credit-balance-box span {
  color: #315f80;
  text-shadow: none;
}

.landing-eyebrow,
.comparison-eyebrow,
.help-eyebrow,
.faq-eyebrow,
.account-eyebrow,
.pricing-kicker {
  color: #126eae;
}

/* Forms */
label,
.form-label {
  color: #244d6d;
}

input,
select,
textarea {
  color: #173653;
  border-color: rgba(49, 126, 190, 0.26);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

input:focus,
select:focus,
textarea:focus {
  color: #102f4d;
  border-color: #4aa9e3;
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--color-focus);
}

input::placeholder,
textarea::placeholder {
  color: #7b93a8;
}

input:disabled,
select:disabled,
textarea:disabled,
input[readonly] {
  color: #70879a;
  background: #eaf2f7;
}

option {
  color: #173653;
  background: #ffffff;
}

/* Tables */
table,
.comparison-panel table,
.comparison-table {
  color: var(--color-text);
  border-color: var(--pl-line);
  background: rgba(255, 255, 255, 0.96);
}

th,
td,
.comparison-table td {
  color: #345b79;
  border-bottom-color: var(--pl-line) !important;
}

th,
.comparison-table th {
  color: #173f61;
  background: linear-gradient(180deg, #dff3ff, #bfe3fa) !important;
}

tbody tr:nth-child(even) {
  background: rgba(30, 112, 181, 0.035);
}

tbody tr:hover {
  background: rgba(30, 134, 210, 0.09);
}

.comparison-good {
  color: #087a52 !important;
}

.comparison-limit {
  color: #9a5a00 !important;
}

/* Content sections */
.landing-section,
.comparison-section,
.faq-main-section,
.help-main,
.account-page,
.support-page,
.admin-page,
.pricing-section {
  color: var(--color-text);
  background: transparent;
}

.landing-section-soft,
.comparison-section-soft,
.faq-quick-section,
.faq-main-section,
.help-page {
  background:
    radial-gradient(circle at 92% 12%, rgba(96, 180, 232, 0.1), transparent 31%),
    linear-gradient(180deg, #f7fcff 0%, #e5f4fd 100%);
}

.landing-preview-search,
.admin-bulk-toolbar,
.support-file-preview,
.preview-result,
.help-article-body,
.faq-answer {
  color: #41647f;
  border-color: var(--pl-line);
  background: #f7fcff;
}

.landing-preview-search strong,
.preview-result strong,
.stat-strip strong {
  color: #173f61;
}

.stat-strip div {
  color: #345b79;
  border-color: rgba(37, 119, 190, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.faq-item summary,
.help-article summary {
  color: #173f61;
  background: linear-gradient(135deg, #ffffff, #eaf7ff);
}

.faq-item[open] summary,
.help-article[open] summary {
  border-bottom-color: var(--pl-line);
}

.help-article-number,
.help-article-toggle,
.help-quick-icon,
.account-sidebar-icon {
  color: #176da9;
  background: #dff1fc;
}

.help-category-button {
  color: #4e687e;
}

.help-category-button:hover,
.help-category-button.active {
  color: #115f9a;
  background: #e4f3fc;
}

/* Navigation */
.nav {
  color: #173653;
  border-bottom-color: rgba(40, 121, 190, 0.2);
  background: linear-gradient(
    135deg,
    rgba(245, 252, 255, 0.97),
    rgba(190, 228, 250, 0.96)
  );
  box-shadow: 0 12px 30px rgba(31, 90, 140, 0.16);
}

.nav-menu {
  background: transparent;
}

.brand-text,
.nav-links > a,
.nav-login-link,
.nav-user-button {
  color: #174b74;
}

.brand-text span {
  color: #0877c9;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-login-link:hover,
.nav-login-link.active,
.nav-user-button:hover {
  color: #0b568f;
  background: rgba(255, 255, 255, 0.66);
}

.nav-credit-balance {
  color: #124d79;
  border-color: rgba(34, 117, 187, 0.22);
  background: rgba(255, 255, 255, 0.68);
}

.nav-credit-amount {
  color: #124d79;
}

.nav-credit-label,
.nav-user-info small {
  color: #56748e;
}

.nav-user-dropdown {
  color: #173653;
  border-color: var(--pl-line);
  background: linear-gradient(145deg, #ffffff, #e9f7ff);
  box-shadow: 0 22px 48px rgba(30, 88, 135, 0.2);
}

.nav-user-dropdown a {
  color: #285571;
}

.nav-user-dropdown a:hover {
  color: #0e5e99;
  background: #e0f2fc;
}

.nav-dropdown-header strong {
  color: #173f61;
}

.nav-dropdown-header span {
  color: #68839a;
}

/* Pricing and trust items */
.pricing-card.featured {
  border-color: #55afe4;
  background: linear-gradient(145deg, #ffffff, #dff3ff);
  box-shadow: 0 24px 56px rgba(31, 112, 174, 0.2);
}

.pricing-credit-count,
.pricing-features li,
.pricing-period {
  color: #3c6685;
}

.stat,
.pricing-price,
.pricing-info-item strong,
.credit-example-card strong {
  color: #0875c5;
}

.saas-trust-row > span,
.saas-trust-item {
  color: #174f80 !important;
  -webkit-text-fill-color: #174f80;
  border-color: rgba(69, 145, 204, 0.24);
  background: linear-gradient(145deg, #ffffff, #e3f5ff);
  box-shadow: var(--shadow-sm);
}

.saas-trust-text,
.saas-trust-copy strong {
  color: #174f80 !important;
  -webkit-text-fill-color: #174f80;
}

.saas-trust-copy small {
  color: #637f98;
}

.saas-trust-check,
.saas-trust-row i,
.saas-trust-row svg,
.saas-trust-icon,
.trust-list i {
  color: #087a52 !important;
  -webkit-text-fill-color: #087a52;
  background: #ddf8ed;
}

/* Support, policy, account, and admin text */
.support-message-meta strong,
.support-message-body,
.support-ticket-details dd,
.support-related-job dd,
.admin-assignee,
.admin-customer-details dd,
.refund-detail-row strong,
.account-profile strong {
  color: #173f61;
}

.support-message-meta span,
.support-message-meta time,
.support-ticket-details dt,
.support-related-job dt,
.admin-customer-details dt,
.refund-detail-row span,
.account-profile small {
  color: #68839a;
}

.support-message.staff .support-message-content {
  border-color: rgba(69, 153, 214, 0.28);
  background: #e7f5ff;
}

/* Footer */
.footer {
  color: #244f70;
  border-top-color: rgba(45, 127, 193, 0.2);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.6), transparent 30%),
    linear-gradient(135deg, #dff3ff, #a9d8f5);
}

.footer h3,
.footer h4 {
  color: #143d5d;
}

.footer p,
.footer a,
.footer-bottom {
  color: #365f7d;
}

.footer a:hover {
  color: #075b99;
}

::-webkit-scrollbar-track {
  background: #dff2fc;
}

::-webkit-scrollbar-thumb {
  border-color: #dff2fc;
  background: linear-gradient(#83c9ee, #379bd8);
}

@media (max-width: 1250px) {
  .nav-menu {
    background: linear-gradient(180deg, #eef9ff, #cceafb);
  }
}

@media (max-width: 700px) {
  .nav-menu {
    background: linear-gradient(180deg, #f7fcff, #c9e8fa);
  }
}

/* =========================================================
   FINAL LIGHT-TO-DARK BLUE GRADIENT THEME
   Combines airy light-blue content surfaces with medium and
   deep-blue branded areas for stronger visual depth.
   ========================================================= */

:root {
  color-scheme: light;
  --gradient-light: #f7fcff;
  --gradient-pale: #d9f1ff;
  --gradient-mid: #65b4e7;
  --gradient-deep: #155f9f;
  --gradient-dark: #082d58;
  --surface: #ffffff;
  --surface-soft: #eaf7ff;
  --border: rgba(30, 105, 170, 0.22);
  --primary: #147cc1;
  --color-primary: #1788d4;
  --color-primary-hover: #0c67a9;
  --color-primary-dark: #0a528d;
  --color-primary-light: #c9eaff;
  --color-primary-soft: #edf8ff;
  --color-surface: #ffffff;
  --color-surface-soft: #eaf7ff;
  --color-border: rgba(30, 105, 170, 0.22);
  --color-text: #153651;
  --color-text-soft: #365d79;
  --color-muted: #668198;
  --pl-line: rgba(30, 105, 170, 0.2);
  --shadow-sm: 0 8px 22px rgba(15, 69, 112, 0.12);
  --shadow-md: 0 18px 44px rgba(12, 65, 108, 0.18);
  --shadow-lg: 0 28px 70px rgba(7, 43, 82, 0.28);
}

html {
  background: #8fcbee;
}

body {
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 88% 4%,
      rgba(255, 255, 255, 0.68),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 38%,
      rgba(172, 224, 252, 0.38),
      transparent 34%
    ),
    linear-gradient(
      155deg,
      #fbfeff 0%,
      #dff4ff 26%,
      #9dd5f4 52%,
      #4d9bd1 76%,
      #155f9f 100%
    );
  background-attachment: fixed;
}

body::before {
  background:
    linear-gradient(rgba(19, 78, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 78, 129, 0.03) 1px, transparent 1px);
}

/* Light content cards remain readable over the deeper page gradient. */
.card,
.auth-card,
.pricing-card,
.landing-hero-card,
.feature-card,
.step-card,
.audience-card,
.credit-example-card,
.comparison-score-card,
.comparison-summary-card,
.comparison-choice-card,
.comparison-table-card,
.comparison-checklist div,
.comparison-faq details,
.pricing-info-item,
.content-card,
.detailed-feature-card,
.benefit-card,
.use-case-card,
.industry-card,
.comparison-panel,
.faq-item,
.trust-panel,
.help-quick-card,
.help-hero-card,
.faq-hero-card,
.help-sidebar-card,
.help-content-header,
.help-article,
.help-no-results,
.account-profile,
.account-card,
.account-stat,
.account-sidebar,
.admin-card,
.dashboard-card,
.support-card,
.support-message-content,
.support-attachment,
.refund-policy-card {
  color: var(--color-text);
  border-color: var(--pl-line);
  background:
    radial-gradient(
      circle at 92% 5%,
      rgba(156, 218, 249, 0.2),
      transparent 32%
    ),
    linear-gradient(145deg, #ffffff 0%, #edf8ff 100%);
  box-shadow: var(--shadow-md);
}

/* Branded hero panels transition from bright blue to deep blue. */
.hero,
.landing-hero,
.comparison-hero,
.help-hero,
.faq-hero,
.legal-hero,
.refund-hero,
.account-hero,
.support-hero,
.admin-hero,
.pricing-hero,
.landing-cta,
.help-cta-inner,
.help-support-card,
.refund-request-box,
.credit-balance-box {
  color: #ffffff;
  border-color: rgba(190, 229, 255, 0.28);
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(208, 241, 255, 0.38),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      #75c5ee 0%,
      #318dcc 45%,
      #155f9f 72%,
      #082d58 100%
    );
  box-shadow: var(--shadow-lg);
}

.hero h1,
.hero h2,
.landing-hero h1,
.comparison-hero h1,
.help-hero h1,
.faq-hero h1,
.legal-hero h1,
.refund-hero h1,
.account-hero h1,
.support-hero h1,
.admin-hero h1,
.pricing-hero h1,
.landing-cta h2,
.help-cta h2,
.help-support-card h2,
.credit-balance-box strong {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(4, 35, 68, 0.24);
}

.hero p,
.hero .muted,
.landing-lead,
.comparison-lead,
.help-hero-lead,
.faq-hero-lead,
.legal-hero p,
.account-hero p,
.support-hero p,
.landing-cta p,
.help-cta p,
.help-support-card p,
.credit-balance-box span {
  color: #e8f7ff;
  text-shadow: 0 1px 3px rgba(4, 35, 68, 0.2);
}

.landing-eyebrow,
.comparison-eyebrow,
.help-eyebrow,
.faq-eyebrow,
.account-eyebrow,
.pricing-kicker {
  color: #d6f1ff;
}

/* Medium-blue glass navigation. */
.nav {
  color: #123d5e;
  border-bottom-color: rgba(26, 97, 158, 0.22);
  background:
    linear-gradient(
      135deg,
      rgba(242, 251, 255, 0.97) 0%,
      rgba(184, 226, 249, 0.96) 58%,
      rgba(105, 181, 226, 0.94) 100%
    );
  box-shadow: 0 12px 30px rgba(15, 67, 110, 0.2);
}

.brand-text,
.nav-links > a,
.nav-login-link,
.nav-user-button {
  color: #123f64;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-login-link:hover,
.nav-login-link.active,
.nav-user-button:hover {
  color: #083d68;
  background: rgba(255, 255, 255, 0.58);
}

.nav-credit-balance {
  color: #0d4c78;
  border-color: rgba(17, 91, 151, 0.24);
  background: rgba(255, 255, 255, 0.62);
}

.nav-credit-amount {
  color: #0d4c78;
}

.nav-credit-label,
.nav-user-info small {
  color: #456c89;
}

.nav-user-dropdown {
  color: #173b58;
  border-color: var(--pl-line);
  background: linear-gradient(145deg, #ffffff, #dff3ff);
  box-shadow: 0 24px 52px rgba(9, 53, 91, 0.25);
}

.nav-user-dropdown a {
  color: #245674;
}

.nav-user-dropdown a:hover {
  color: #084b7d;
  background: #dceffa;
}

/* Medium-to-deep blue buttons. */
button,
.btn,
.btn-primary,
.primary-action {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #4eb1e7, #1682ca 58%, #0b5b9d);
  box-shadow: 0 10px 24px rgba(9, 79, 135, 0.25);
}

button:hover,
.btn:hover,
.btn-primary:hover,
.primary-action:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #62c2ee, #238fd3 58%, #0b5b9d);
}

.btn.secondary,
.btn-outline-primary,
.btn-secondary-outline {
  color: #135a8f;
  border-color: #83bfe3;
  background: linear-gradient(145deg, #ffffff, #dceffc);
}

.btn.secondary:hover,
.btn-outline-primary:hover,
.btn-secondary-outline:hover {
  color: #0a4776;
  background: linear-gradient(145deg, #effaff, #c8e7f8);
}

/* Featured pricing and trust surfaces bridge both tones. */
.pricing-card.featured {
  border-color: #318fca;
  background:
    radial-gradient(circle at 88% 8%, rgba(82, 172, 224, 0.17), transparent 31%),
    linear-gradient(145deg, #ffffff, #d9effc);
  box-shadow: 0 24px 56px rgba(12, 85, 139, 0.24);
}

.pricing-badge {
  color: #ffffff;
  background: linear-gradient(135deg, #3ca4dc, #0f6fb5);
}

.saas-trust-row > span,
.saas-trust-item {
  color: #164f78 !important;
  -webkit-text-fill-color: #164f78;
  border-color: rgba(35, 119, 181, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), #dceffc);
  box-shadow: var(--shadow-sm);
}

.saas-trust-text,
.saas-trust-copy strong {
  color: #164f78 !important;
  -webkit-text-fill-color: #164f78;
}

/* Deep-blue footer anchors the gradient without darkening content cards. */
.footer {
  color: #e7f6ff;
  border-top-color: rgba(191, 228, 250, 0.22);
  background:
    radial-gradient(circle at 85% 7%, rgba(101, 185, 229, 0.28), transparent 30%),
    linear-gradient(135deg, #2a82bb 0%, #155f9f 47%, #0b477d 72%, #082d58 100%);
}

.footer h3,
.footer h4 {
  color: #ffffff;
}

.footer p,
.footer a,
.footer-bottom {
  color: #d4ecfa;
}

.footer a:hover {
  color: #ffffff;
}

::-webkit-scrollbar-track {
  background: #d9eef9;
}

::-webkit-scrollbar-thumb {
  border-color: #d9eef9;
  background: linear-gradient(#69bce7, #176fae, #0a477d);
}

@media (max-width: 1250px) {
  .nav-menu {
    background: linear-gradient(180deg, #eef9ff 0%, #b9dff4 62%, #7cbce1 100%);
  }
}

@media (max-width: 700px) {
  .nav-menu {
    background: linear-gradient(180deg, #f6fcff 0%, #cce9f8 62%, #8dc6e6 100%);
  }
}
/* =========================================================
   Global H2 Heading Color
   Keeps every second-level heading consistently navy blue.
   ========================================================= */

h2 {
    color: #0b2f5b !important;
    text-shadow: none;
}
