/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a2b3b;
  line-height: 1.5;
  min-height: 100vh;
}

/* Shared Nav Adjustments */
.site-nav nav a[aria-current="page"] {
  color: #1a2b3b;
}

/* Main Content */
.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.pricing-hero {
  text-align: center;
  max-width: 672px;
  margin: 96px auto 48px;
}

.pricing-hero-title {
  font-weight: 800;
  font-size: 60px;
  line-height: 60px;
  color: #1a2b3b;
  margin-bottom: 24px;
}

.pricing-hero-subtitle {
  font-size: 20px;
  line-height: 28px;
  color: #64748b;
}

/* Billing Toggle */
.billing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
}

.toggle-label.active {
  color: #1a2b3b;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #e2e8f0;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.toggle-switch.annual {
  background-color: #2563eb;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.toggle-switch.annual .toggle-slider {
  transform: translateX(24px);
}

.savings-badge {
  display: none;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
}

.savings-badge.show {
  display: inline;
}

/* Pricing Card */
.pricing-card-wrapper {
  max-width: 896px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Trust Banner */
.trust-banner {
  background-color: #eff6ff;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-dot {
  width: 8px;
  height: 8px;
  background-color: #2563eb;
  border-radius: 50%;
}

.trust-text {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.5px;
}

/* Pricing Content */
.pricing-content {
  padding: 48px;
}

/* Price Section */
.price-section {
  text-align: center;
  margin-bottom: 32px;
}

.price-main {
  margin-bottom: 8px;
}

.price-amount {
  font-weight: 800;
  font-size: 72px;
  line-height: 72px;
  color: #1a2b3b;
}

.price-period {
  font-size: 24px;
  color: #64748b;
  margin-left: 8px;
}

.annual-details {
  display: none;
  font-size: 16px;
  color: #64748b;
  margin-bottom: 8px;
}

.annual-details.show {
  display: block;
}

.price-strikethrough {
  text-decoration: line-through;
  color: #94a3b8;
  margin-right: 8px;
}

.price-actual {
  font-weight: 600;
  color: #1a2b3b;
}

.platform-fee {
  font-size: 14px;
  color: #64748b;
}

/* CTA Section */
.cta-section {
  margin-bottom: 32px;
}

.cta-button {
  display: block;
  width: 100%;
  background-color: #2563eb;
  color: white;
  text-align: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s;
  box-shadow: 0px 4px 12px rgba(37, 99, 235, 0.25);
}

.cta-button:hover {
  background-color: #1d4ed8;
}

.cta-subtext {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #e2e8f0;
  margin-bottom: 32px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
}

.feature-column {
  min-width: 0;
}

.vertical-divider {
  width: 1px;
  background-color: #e2e8f0;
}

.feature-heading {
  font-weight: 700;
  font-size: 20px;
  color: #1a2b3b;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: block;
  margin-bottom: 12px;
}

.feature-item span {
  font-size: 16px;
  color: #1a2b3b;
  line-height: 24px;
}

/* Flat Rate Callout */
.flat-rate-callout {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.flat-rate-callout p {
  font-size: 16px;
  color: #1a2b3b;
  line-height: 24px;
  text-align: center;
}

/* Contact Text */
.contact-text {
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.contact-link {
  color: #2563eb;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .pricing-hero-title {
    font-size: 40px;
    line-height: 44px;
  }

  .pricing-hero-subtitle {
    font-size: 18px;
  }

  .pricing-content {
    padding: 32px 24px;
  }

  .price-amount {
    font-size: 56px;
    line-height: 56px;
  }

  .price-period {
    font-size: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }

  .vertical-divider {
    display: none;
  }

  .trust-banner {
    flex-direction: column;
    gap: 16px;
  }
}
