/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f3f4f6;
}

/* Layout helpers */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: #ffffff;
  font-size: 1rem;
}

.logo-text {
  letter-spacing: 0.03em;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: #374151;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-nav a:hover {
  background-color: #eff6ff;
  color: #1d4ed8;
}

/* Dropdown groups */
.nav-group {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-toggle:hover {
  background-color: #eff6ff;
  color: #1d4ed8;
}

.nav-dropdown {
  display: none; /* we'll handle show/hide with JS later */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  padding: 0.5rem;
  min-width: 200px;
  z-index: 100;
}
.nav-group:hover .nav-dropdown{
    display: block;
}    

.nav-dropdown a {
  display: block;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
}

.nav-dropdown a:hover {
  background-color: #eff6ff;
}

/* Simple button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  opacity: 0.96;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  box-shadow: none;
}

.btn-outline:hover {
  background-color: #eff6ff;
  box-shadow: none;
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

/* Mobile nav button (we'll wire JS later) */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
}

/* Hero */

.hero {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #eef2ff, #ffffff);
  width: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}


.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-subtext {
  font-size: 0.9rem;
  color: #6b7280;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.75rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.17);
  max-width: 360px;
}

.hero-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: #374151;
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}

.section-light {
  background-color: #ffffff;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.section p {
  color: #4b5563;
  max-width: 640px;
}

/* Footer */
.site-footer {
  background-color: #020617;
  color: #e5e7eb;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo .logo-mark {
  background: #0f172a;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.footer-column a {
  display: block;
  font-size: 0.85rem;
  color: #e5e7eb;
  text-decoration: none;
  margin-bottom: 0.35rem;
}

.footer-column a:hover {
  color: #bfdbfe;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-nav {
    display: none; /* we'll show it with JS for mobile later */
  }

  .mobile-nav-toggle {
    display: block;
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* --- Home page enhancements --- */

/* Pill row under hero */
.pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pill {
  background-color: #eff6ff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pill-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background-color: #1d4ed8;
  color: #ffffff;
}

/* Section intro text */
.section-intro {
  margin-top: 0.4rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
  max-width: 40rem;
}

/* 2-column feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.feature-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.section-light .feature-card {
  /* Slightly lighter background on light sections */
  background-color: #f9fafb;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #4b5563;
}

/* Steps list */
.steps-list {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  color: #4b5563;
  font-size: 0.92rem;
}

.steps-list li + li {
  margin-top: 0.45rem;
}

/* Bulleted list for trust section */
.bullet-list {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  color: #4b5563;
  font-size: 0.92rem;
}

.bullet-list li + li {
  margin-top: 0.35rem;
}

/* Card actions */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: 0.5rem;
}

.text-link {
  font-size: 0.9rem;
  color: #1d4ed8;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Responsive tweaks for the new layout */
@media (max-width: 900px) {
  .pill-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* --- Customer page enhancements --- */

/* --- How it works (customers) --- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step-card p {
  color: #4b5563;
  font-size: 0.93rem;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

/* Allow a 2-column variant for certain grids */
.feature-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Tag-style lists for categories */
.tag-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: #eef2ff;
  color: #3730a3;
  border: 1px solid #e5e7eb;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .feature-grid-two {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Find a Pro form --- */

.request-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cards that hold chunks of the form */
.form-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.form-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.form-intro {
  font-size: 0.93rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Grid for form fields inside a card */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 0.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

/* Labels and inputs */
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  font-size: 0.92rem;
  font-family: inherit;
  color: #111827;
  background-color: #ffffff;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
  background-color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%),
    linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 3px),
    calc(100% - 10px) calc(50% + 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Help text under fields */
.form-help {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Radio pill group */
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease;
}

.radio-pill input {
  accent-color: #2563eb;
}

.radio-pill:hover {
  background-color: #eef2ff;
  border-color: #2563eb;
}

/* Checkbox label */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: #2563eb;
}

/* Form footer */
.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
}

.form-footer-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.form-footer-note a {
  color: #2563eb;
  text-decoration: none;
}

.form-footer-note a:hover {
  text-decoration: underline;
}

/* Responsive form layout */
@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Pricing page --- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.pricing-card-featured {
  border-color: #2563eb;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.18);
}

.pricing-badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.pricing-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: #6b7280;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
}

.price-note {
  font-size: 0.85rem;
  color: #6b7280;
}

.pricing-list {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-list li + li {
  margin-top: 0.25rem;
}

.pricing-meta {
  font-size: 0.82rem;
  color: #6b7280;
}

.pricing-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive pricing grid */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Pro Dashboard Lite --- */

.dashboard-main-area {
  background-color: #f3f4f6;
}

.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.dashboard-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlighted-name {
  color: #1d4ed8;
}

/* Summary cards row */

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.summary-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.summary-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.summary-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
}

.summary-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

/* Main dashboard grid */

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: 1.5rem;
}

.dashboard-column-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-column-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Leads table */

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.filter-label {
  color: #6b7280;
}

.filter-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease;
}

.filter-pill:hover {
  background-color: #eef2ff;
  border-color: #2563eb;
}

.filter-pill-active {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.leads-table {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.leads-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.2fr) minmax(0, 1fr) 70px 120px;
  gap: 0.5rem;
  align-items: center;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.leads-row-header {
  background-color: #f9fafb;
  font-weight: 600;
  color: #6b7280;
}

.leads-row-body {
  border-top: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.1s ease;
}

.leads-row-body:hover {
  background-color: #f3f4ff;
}

.leads-cell {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.leads-meta {
  font-size: 0.78rem;
  color: #6b7280;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-new {
  background-color: #dcfce7;
  color: #166534;
}

.status-active {
  background-color: #e0f2fe;
  color: #075985;
}

.status-closed {
  background-color: #e5e7eb;
  color: #374151;
}

.table-footer-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Activity list */

.activity-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.85rem;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.activity-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: #22c55e;
  flex-shrink: 0;
}

.activity-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.activity-meta {
  margin-left: auto;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Responsive dashboard layout */

@media (max-width: 1000px) {
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .summary-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .leads-row {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "job status"
      "meta meta";
    row-gap: 0.35rem;
  }

  .leads-row-header {
    display: none; /* too cramped on very small screens */
  }
}

/* --- Pro Lead Detail Page --- */

.breadcrumb-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.lead-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.lead-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.meta-chip {
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #e5e7eb;
}

.meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.meta-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

/* Detail layout */

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

.detail-main,
.detail-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.job-meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.subheading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

/* Contact block */

.contact-block {
  margin-top: 0.7rem;
  margin-bottom: 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.88rem;
}

/* Responsive layout for lead detail */

@media (max-width: 900px) {
  .lead-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Pro FAQ page --- */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  padding: 0.4rem 0.9rem;
}

/* Remove default details marker and style summary as a row */
.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.2rem;
  font-weight: 600;
  font-size: 0.96rem;
  color: #111827;
}

/* Optional custom caret */
.faq-summary::before {
  content: "▾";
  font-size: 0.8rem;
  color: #6b7280;
  transition: transform 0.15s ease;
}

/* Rotate caret when open */
.faq-item[open] > .faq-summary::before {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 0.2rem 0.6rem 1.2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.faq-content p + p {
  margin-top: 0.45rem;
}

/* Responsive FAQ */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Contact page layout --- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 1.5rem;
}

.contact-column-main,
.contact-column-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Reviews page --- */

.reviews-highlight-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.reviews-highlight-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.reviews-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.reviews-score {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.3rem;
}

.reviews-text {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Individual reviews grid */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.review-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem 1rem 1.05rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.review-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.review-stars {
  font-size: 0.9rem;
  color: #f59e0b; /* star color; ok to be a bit distinct */
}

.review-text {
  font-size: 0.88rem;
  color: #4b5563;
}

/* Responsive */

@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-highlight-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- About page --- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.about-cta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-cta-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Customer Request Detail Page (Customer side) --- */

.hp-page--request-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Breadcrumb + back link */

.hp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.hp-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.hp-link--back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #2563eb;
  text-decoration: none;
}

.hp-link--back:hover {
  text-decoration: underline;
}

.hp-breadcrumb__divider {
  color: #9ca3af;
}

.hp-breadcrumb__current {
  color: #4b5563;
}

/* Page header */

.hp-page-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.hp-page-header__main {
  flex: 1 1 auto;
}

.hp-page-header__side {
  flex: 0 0 auto;
  max-width: 260px;
}

.hp-page-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}

/* Metadata row under title */

.hp-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.88rem;
  color: #4b5563;
}

.hp-meta-item {
  display: inline-flex;
  gap: 0.25rem;
}

.hp-meta-label {
  font-weight: 600;
  color: #374151;
}

.hp-meta-value {
  color: #4b5563;
}

/* Status pill + helper text */

.hp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hp-pill--inreview {
  background-color: #e0f2fe;
  color: #075985;
  border: 1px solid #bae6fd;
}

.hp-status-note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Two-column layout (matches dashboard style) */

.hp-layout--two-column {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
}

/* Cards (reuse feel of feature-card / dashboard cards) */

.hp-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.hp-card--request {
  background-color: #ffffff;
}

.hp-card--pros {
  background-color: #f9fafb;
}

.hp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.hp-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

/* Request text */

.hp-request-body {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.hp-request-notes p + p {
  margin-top: 0.35rem;
}

/* Tabs */

.hp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0.65rem;
  margin-top: 0.35rem;
}

.hp-tab {
  border: none;
  background: transparent;
  padding: 0.35rem 0.8rem;
  border-radius: 999px 999px 0 0;
  font-size: 0.85rem;
  color: #6b7280;
  cursor: pointer;
  border: 1px solid transparent;
}

.hp-tab--active {
  color: #111827;
  background-color: #ffffff;
  border-color: #e5e7eb;
  border-bottom-color: #ffffff;
}

/* Panels */

.hp-tab-panels {
  font-size: 0.9rem;
  color: #4b5563;
}

.hp-tab-panel {
  display: none;
}

.hp-tab-panel--active {
  display: block;
}

.hp-timeline {
  margin-top: 0.6rem;
  list-style: none;
  padding-left: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.hp-timeline__item + .hp-timeline__item {
  margin-top: 0.25rem;
}

/* Pro list / cards */

.hp-pro-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.hp-pro-card {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr);
  gap: 0.75rem;
  padding: 0.8rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease,
    box-shadow 0.12s ease, transform 0.05s ease;
}

.hp-pro-card:hover {
  border-color: #c7d2fe;
  background-color: #f5f3ff;
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.18);
  transform: translateY(-1px);
}

.hp-pro-card--selected {
  border-color: #4f46e5;
  background-color: #eef2ff;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.22);
}

.hp-pro-card__main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hp-pro-card__header {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  align-items: flex-start;
}

.hp-pro-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.hp-pro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}

.hp-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background-color: #eef2ff;
  color: #3730a3;
  border: 1px solid #e5e7eb;
}

.hp-tag--top-rated {
  background-color: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.hp-tag--new {
  background-color: #e0f2fe;
  color: #075985;
  border-color: #bae6fd;
}

.hp-pro-meta {
  font-size: 0.82rem;
  color: #6b7280;
}

.hp-pro-meta__line + .hp-pro-meta__line {
  margin-top: 0.15rem;
}

/* Pro card actions */

.hp-pro-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  align-items: flex-start;
}

/* Button variants (tied to existing btn feel but lighter) */

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #e5e7eb;
  color: #111827;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.12s ease, border-color 0.12s ease,
    color 0.12s ease, transform 0.05s ease, box-shadow 0.05s ease;
}

.hp-btn:hover {
  background-color: #d1d5db;
}

.hp-btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.hp-btn--primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1d4ed8);
}

.hp-btn--secondary {
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.hp-btn--secondary:hover {
  background-color: #dbeafe;
}

.hp-btn--ghost {
  background-color: #ffffff;
  color: #374151;
  border-color: #e5e7eb;
}

.hp-btn--ghost:hover {
  background-color: #f9fafb;
}

.hp-btn--danger {
  background-color: #fee2e2;
  color: #b91c1c;
  border-color: #fecaca;
}

.hp-btn--danger:hover {
  background-color: #fecaca;
}

/* Card footer */

.hp-card-footer {
  margin-top: 0.7rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.6rem;
}

.hp-card-footer--subtle {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsive behavior */

@media (max-width: 1000px) {
  .hp-layout--two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hp-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-page-header__side {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hp-pro-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .hp-pro-card__actions {
    justify-content: flex-start;
  }
}

/* Small tweak so lead detail title visually matches other page titles */
.lead-header h1 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}

/* --- POLISH PHASE 1: GLOBAL VISUAL TWEAKS --- */

/* Clickable logo link */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  opacity: 0.9;
}

/* Page header pattern (for all interior pages) */
.page-header {
  margin-bottom: 1.5rem;
}

.page-eyebrow,
.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.page-title {
  font-size: 1.8rem;
  line-height: 1.15;
}

.page-subtitle {
  margin-top: 0.35rem;
  color: #4b5563;
  font-size: 0.95rem;
  max-width: 42rem;
}

/* Slight card hover for all major cards */
.feature-card,
.form-card,
.pricing-card,
.review-card,
.reviews-highlight-card,
.summary-card {
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease,
    background-color 0.14s ease;
}

.feature-card:hover,
.form-card:hover,
.pricing-card:hover,
.review-card:hover,
.reviews-highlight-card:hover,
.summary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11);
}

/* Make pricing featured card pop a bit more on hover */
.pricing-card-featured:hover {
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.28);
}

/* Subtle section separation */
.section {
  position: relative;
}

.section + .section {
  border-top: 1px solid #e5e7eb;
}

/* Small chips / labels for future polish use */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  color: #4b5563;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: #22c55e;
}

/* Hero polish: slightly softer background and spacing */
.hero {
  position: relative;
  overflow: hidden;
}

/* Light radial accent behind hero card */
.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 75% 20%,
    rgba(129, 140, 248, 0.16),
    transparent 50%
  );
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Make hero text a bit more comfortable on small screens */
@media (max-width: 720px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}

/* Slight tighten on footer text */
.site-footer p {
  font-size: 0.9rem;
}

/* Improve link focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.75);
  outline-offset: 2px;
}

/* Optional: soft animation on buttons */
.btn {
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease,
    background-position 0.2s ease;
  background-size: 150% 150%;
}

.btn:hover {
  background-position: 100% 0;
}

/* Make tables and rows feel a bit more clickable/clean */
.leads-row-body {
  cursor: pointer;
}

.leads-row-body:hover {
  background-color: #eef2ff;
}

/* Consistent spacing on small subtext paragraphs used as form-help */
.form-help {
  margin-top: 0.3rem;
}

/* Hero */

.hero {
  padding: 4rem 0 5rem;
  background: radial-gradient(circle at top left, #f5f8ff 0, #ffffff 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #475569;
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border-color: #1d4ed8;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-ghost {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5f5;
}

.btn-ghost:hover {
  background: #eff4ff;
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border-color: #2563eb;
}

.btn-outline:hover {
  background: #eff4ff;
}

.btn-full {
  width: 100%;
}

/* Hero trust row */

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: #64748b;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* Hero card */

.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  max-width: 26rem;
  margin-left: auto;
}

.hero-card-header {
  margin-bottom: 1.2rem;
}

.hero-card-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.hero-card-subtitle {
  font-size: 0.9rem;
  color: #64748b;
}

.hero-mini-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-mini-form .field span {
  color: #475569;
}

.hero-mini-form input,
.hero-mini-form select {
  border-radius: 0.7rem;
  border: 1px solid #cbd5e1;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.hero-mini-form input:focus,
.hero-mini-form select:focus {
  outline: 2px solid #2563eb33;
  border-color: #2563eb;
}

.hero-privacy-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: #f8fafc;
}

.section-soft {
  background: #f9fafb;
}

.section-cta {
  background: #0f172a;
  color: #e5e7eb;
}

.section-cta h2 {
  color: #f9fafb;
}

.section-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.25rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: #64748b;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.step-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 55%);
  transition: opacity 0.2s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  background: #eff4ff;
  color: #1d4ed8;
  margin-bottom: 0.8rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Values */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.value-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem 1.4rem 1.3rem;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.value-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-card li {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.4rem;
  padding-left: 1.1rem;
  position: relative;
}

.value-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
}

/* Testimonial row */

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.testimonial-main {
  max-width: 32rem;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.testimonial-name {
  font-size: 0.9rem;
  color: #64748b;
}

.testimonial-meta {
  font-size: 0.9rem;
  text-align: right;
  min-width: 13rem;
}

.stat-label {
  color: #a1a1aa;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.stat-sub {
  color: #6b7280;
}

/* CTA */

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-inner p {
  max-width: 30rem;
  color: #cbd5f5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin: 0 auto;
  }

  .steps-grid,
  .value-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-row {
    text-align: left;
  }

  .testimonial-meta {
    text-align: left;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- HOMEPAGE POLISH: ANIMATIONS & NAV --- */

/* Simple fade-in / fade-in-up helpers */
.fade-in {
  opacity: 0;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(12px);
}

body.is-loaded .fade-in,
body.is-loaded .fade-in-up {
  animation-duration: 0.7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slightly richer card shadows for homepage hero + sections */
.hero-card,
.feature-card,
.value-card,
.step-card,
.reviews-highlight-card,
.review-card,
.summary-card {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* Light “glow” on hover for key cards */
.hero-card:hover,
.feature-card:hover,
.value-card:hover {
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

/* Decorative gradient edge on the hero (right side) */
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 10%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.18), transparent 65%);
  opacity: 0.85;
  pointer-events: none;
}

/* Slightly bolder hero title + subtitle spacing */
.hero-copy h1 {
  letter-spacing: -0.02em;
}

.hero-subtitle {
  line-height: 1.5;
}

/* “Soft underline” under main section headings */
.section-header h2,
.section > .container > h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.section-header h2::after,
.section > .container > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #10b981);
}

/* Mobile nav: slide-down menu */
@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 1.5rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
    display: none;
  }

  .site-nav.site-nav--open {
    display: flex;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .header-inner {
    position: relative;
  }
}

/* Mobile nav button polish */
.mobile-nav-toggle {
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 1.1rem;
}

.mobile-nav-toggle.is-active {
  background: #eff6ff;
  border-color: #bfdbfe;
}

/* Early access success message */
#early-pro-success {
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


