/* Bookkeeping Page Specific Styles */

/* Hero Section */
.bookkeeping-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.bookkeeping-hero .kicker {
  margin-bottom: 12px;
}

.bookkeeping-hero h1 {
  margin: 12px 0 16px;
}

.bookkeeping-hero .lead {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* Trust Strip Section */
.trust-strip-section {
  padding: 32px 0;
  background: linear-gradient(180deg, rgba(233,241,255,.55), rgba(233,241,255,.35));
  border-top: 1px solid rgba(231,237,246,.75);
  border-bottom: 1px solid rgba(231,237,246,.75);
}

.trust-strip-section .trust-strip {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Estimator Section */
.estimator-section {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, rgba(233,241,255,.55), rgba(233,241,255,.45), rgba(233,241,255,.35));
  border-top: 1px solid rgba(231,237,246,.75);
  border-bottom: 1px solid rgba(231,237,246,.75);
  position: relative;
  margin-top: 0;
}

.estimator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(60% 60% at 20% 30%, rgba(47,103,199,.18) 0%, rgba(47,103,199,0) 70%),
    radial-gradient(50% 50% at 85% 15%, rgba(11,31,74,.12) 0%, rgba(11,31,74,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.estimator-section .container {
  position: relative;
  z-index: 1;
}

.estimator-card {
  max-width: 600px;
  margin: 32px auto 0;
  border-radius: var(--radius);
  border: 1.5px solid rgba(231,237,246,.95);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
  box-shadow: var(--shadow);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

.estimator-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47,103,199,.08), rgba(11,31,74,.04));
  z-index: -1;
  opacity: 0;
  transition: opacity .2s ease;
}

.estimator-card:hover::before {
  opacity: 1;
}

.estimator-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(11,31,74,.18);
}

.estimator-header {
  margin-bottom: 24px;
}

.estimator-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-900);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.slider-wrapper {
  width: 100%;
}

.slider-range-display {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-900);
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(233,241,255,.45);
  border: 1px solid rgba(231,237,246,.95);
}

.estimator-slider {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  background: rgba(231,237,246,.75);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background .2s ease;
}

.estimator-slider:hover {
  background: rgba(231,237,246,.95);
}

.estimator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(47,103,199,.3);
  transition: transform .12s ease, box-shadow .12s ease;
  border: 2px solid #fff;
}

.estimator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(47,103,199,.4);
}

.estimator-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(47,103,199,.3);
  transition: transform .12s ease, box-shadow .12s ease;
  border: 2px solid #fff;
}

.estimator-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(47,103,199,.4);
}

.estimator-slider:focus {
  outline: none;
}

.estimator-slider:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 4px;
  border-radius: 10px;
}

.estimator-output {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(231,237,246,.75);
  border-bottom: 1px solid rgba(231,237,246,.75);
  margin: 24px 0;
}

.estimator-price-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-700);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.estimator-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.estimator-price-amount {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-900);
  letter-spacing: -.03em;
}

.estimator-price-period {
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
}

/* Disclaimer Box */
.disclaimer-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(233,241,255,.55);
  border: 1px solid rgba(47,103,199,.2);
}

.disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(8,18,38,.78);
}

.disclaimer-content strong {
  color: var(--brand-900);
  font-weight: 800;
}

/* Tiers Accordion */
.tiers-accordion {
  max-width: 600px;
  margin: 24px auto 0;
  border-radius: var(--radius);
  border: 1.5px solid rgba(231,237,246,.95);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px;
  overflow: hidden;
}

.tiers-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
  color: var(--brand-900);
  letter-spacing: -.02em;
  padding: 4px 0;
}

.tiers-accordion summary::-webkit-details-marker {
  display: none;
}

.tiers-accordion summary:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 8px;
}

.tiers-accordion .chev {
  width: 18px;
  height: 18px;
  transition: transform .16s ease;
  color: var(--brand-500);
}

.tiers-accordion[open] .chev {
  transform: rotate(180deg);
}

.tiers-table-wrapper {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(231,237,246,.75);
  overflow-x: auto;
}

.tiers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tiers-table thead {
  background: rgba(233,241,255,.45);
}

.tiers-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 800;
  color: var(--brand-900);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(231,237,246,.75);
}

.tiers-table td {
  padding: 12px 16px;
  color: rgba(8,18,38,.78);
  font-weight: 600;
  border-bottom: 1px solid rgba(231,237,246,.5);
}

.tiers-table tbody tr:last-child td {
  border-bottom: none;
}

.tiers-table tbody tr:hover {
  background: rgba(233,241,255,.3);
}

/* What's Included Section */
.whats-included {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(233,241,255,.25), rgba(255,255,255,0));
  position: relative;
}

.whats-included .cards {
  margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.whats-included .card {
  min-height: auto;
}

.whats-included .card-body {
  padding: 20px 18px;
  gap: 8px;
}

.whats-included .card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.whats-included .card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(233,241,255,.55), rgba(233,241,255,.35), rgba(255,255,255,0));
  border-top: 1px solid rgba(231,237,246,.75);
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(50% 50% at 50% 50%, rgba(47,103,199,.1) 0%, rgba(47,103,199,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -.03em;
  color: var(--brand-900);
  font-weight: 800;
}

.cta-content .sub {
  margin: 0 0 28px;
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 960px) {
  .bookkeeping-hero {
    padding: 60px 0 32px;
  }

  .estimator-section {
    padding: 48px 0;
  }

  .estimator-card {
    padding: 24px 20px;
    margin-top: 24px;
  }

  .estimator-price-amount {
    font-size: 42px;
  }

  .disclaimer-box {
    padding: 16px;
  }

  .disclaimer-content p {
    font-size: 12px;
  }

  .tiers-table {
    font-size: 13px;
  }

  .tiers-table th,
  .tiers-table td {
    padding: 10px 12px;
  }

  .whats-included {
    padding: 48px 0;
  }
  .whats-included .cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cta-section {
    padding: 48px 0;
  }
}
