/* 
 * 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;
  }
}

/* =========================================================
   04. Navigation and Account Menus
   Styles the responsive header, logo, primary links, account
   controls, credit balance, dropdowns, and mobile navigation.
   ========================================================= */

.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 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  gap: 3px;
  margin: 0;
  padding: 0;
  flex-wrap: 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);
}

@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;
  }
}

/* =========================================================
   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;
  gap: 7px;
  min-height: 40px;
  padding: 8px 12px;
  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-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;
  }
}
.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,
        .industry-card,
        .comparison-panel,
        .faq-item,
        .trust-panel {
            background: var(--surface, #ffffff);
            border: 1px solid var(--border, #dbe4ef);
            border-radius: 18px;
            box-shadow: 0 12px 34px rgba(15, 35, 60, 0.07);
        }

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

        .detailed-feature-card i,
        .benefit-card i,
        .use-case-card i,
        .industry-card i {
            color: var(--primary, #1769e0);
            font-size: 1.35rem;
            margin-bottom: 0.8rem;
        }

        .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;
        }

        .stat-strip div {
            padding: 1rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.08);
            text-align: center;
        }

        .stat-strip strong {
            display: block;
            font-size: 1.15rem;
        }

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

        .comparison-table {
            width: 100%;
            min-width: 760px;
            border-collapse: collapse;
        }

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

        .comparison-table th {
            background: var(--surface-soft, #f4f8fc);
        }

        .comparison-table td:first-child {
            font-weight: 700;
        }

        .comparison-good {
            color: #14804a;
            font-weight: 700;
        }

        .comparison-limit {
            color: #9a5b00;
            font-weight: 700;
        }

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

        .faq-item {
            overflow: hidden;
        }

        .faq-item summary {
            cursor: pointer;
            font-weight: 800;
            padding: 1.2rem 1.35rem;
            list-style: none;
        }

        .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: "−";
        }

        .faq-answer {
            padding: 0 1.35rem 1.25rem;
            line-height: 1.75;
        }

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

        .text-link-row a {
            font-weight: 700;
        }

        .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;
        }

        .trust-list i {
            color: #14804a;
            margin-top: 0.25rem;
        }

        @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;
            }
        }
