@charset "UTF-8";
.beacon-page {
  /* Hero */
  /* Problem section */
  /* Features */
  /* Origin story */
  /* Pricing */
  /* Services callout */
  /* Trust */
  /* Bottom CTA */
}
.beacon-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.beacon-page .beacon-hero {
  text-align: center;
  padding: 0 0 50px;
}
.beacon-page .beacon-logo {
  width: 400px;
  height: 400px;
  margin-bottom: 30px;
}
.beacon-page .beacon-hero h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111D30;
  margin-bottom: 15px;
  line-height: 1.2;
}
.beacon-page .beacon-hero-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.beacon-page .beacon-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.beacon-page .beacon-btn-primary {
  display: inline-block;
  background: #A04610;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.beacon-page .beacon-btn-primary:hover {
  background: #7d3709;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(160, 70, 16, 0.3);
}
.beacon-page .beacon-hero-small {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
}
.beacon-page .beacon-btn-secondary {
  display: inline-block;
  color: #A04610;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #A04610;
  transition: all 0.2s ease;
}
.beacon-page .beacon-btn-secondary:hover {
  background: #fef5f0;
  color: #A04610;
  text-decoration: none;
}
.beacon-page .beacon-problem {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px 35px;
  margin-bottom: 50px;
  border-left: 4px solid #A04610;
}
.beacon-page .beacon-problem h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111D30;
  margin-bottom: 15px;
}
.beacon-page .beacon-problem p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}
.beacon-page .beacon-problem p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #111D30;
}
.beacon-page .beacon-features {
  margin-bottom: 50px;
}
.beacon-page .beacon-features h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111D30;
  text-align: center;
  margin-bottom: 35px;
}
.beacon-page .beacon-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .beacon-page .beacon-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .beacon-page .beacon-feature-grid {
    grid-template-columns: 1fr;
  }
}
.beacon-page .beacon-feature {
  padding: 25px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
}
.beacon-page .beacon-feature:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.beacon-page .beacon-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.beacon-page .beacon-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111D30;
  margin-bottom: 8px;
}
.beacon-page .beacon-feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.beacon-page .beacon-origin {
  text-align: center;
  padding: 40px 30px;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #fef5f0 0%, #fdeee5 100%);
  border-radius: 12px;
  border: 1px solid #f8dccf;
}
.beacon-page .beacon-origin p {
  font-size: 16px;
  color: #111D30;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.beacon-page .beacon-origin p + p {
  margin-top: 12px;
}
.beacon-page .beacon-pricing {
  margin-bottom: 50px;
}
.beacon-page .beacon-pricing-header {
  text-align: center;
  margin-bottom: 15px;
}
.beacon-page .beacon-pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111D30;
  margin-bottom: 10px;
}
.beacon-page .beacon-pricing-header p {
  font-size: 15px;
  color: #555;
}
.beacon-page .beacon-billing-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin-bottom: 35px;
  font-size: 14px;
  color: #555;
}
.beacon-page .beacon-billing-toggle .active {
  font-weight: 700;
  color: #111D30;
}
.beacon-page .beacon-billing-toggle .badge {
  background: #A04610;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.beacon-page .beacon-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .beacon-page .beacon-tiers {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
.beacon-page .beacon-partner-note {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #555;
}
.beacon-page .beacon-partner-note a {
  color: #A04610;
  font-weight: 600;
  text-decoration: none;
}
.beacon-page .beacon-partner-note a:hover {
  text-decoration: underline;
}
.beacon-page .beacon-tier {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.beacon-page .beacon-tier:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.beacon-page .beacon-tier.featured {
  border-color: #A04610;
  border-width: 2px;
  position: relative;
  box-shadow: 0 2px 8px rgba(160, 70, 16, 0.1);
}
.beacon-page .beacon-tier.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #A04610;
  color: #fff;
  padding: 5px 18px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.beacon-page .beacon-tier-name {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.beacon-page .beacon-tier-tagline {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
  font-style: italic;
}
.beacon-page .beacon-tier-price {
  font-size: 36px;
  font-weight: 700;
  color: #A04610;
  line-height: 1;
  margin-bottom: 5px;
}
.beacon-page .beacon-tier-price span {
  font-size: 15px;
  font-weight: 400;
  color: #999;
}
.beacon-page .beacon-tier-price-note {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.beacon-page .beacon-tier-trial {
  font-size: 13px;
  color: #111D30;
  background: #fef5f0;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}
.beacon-page .beacon-tier-seats {
  font-size: 13px;
  color: #111D30;
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}
.beacon-page .beacon-tier-features {
  list-style: none;
  flex-grow: 1;
}
.beacon-page .beacon-tier-features li {
  padding: 8px 0;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: start;
}
.beacon-page .beacon-tier-features li::before {
  content: "✓";
  color: #A04610;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}
.beacon-page .beacon-tier-features li.not-included {
  color: #bbb;
}
.beacon-page .beacon-tier-features li.not-included::before {
  content: "—";
  color: #ddd;
}
.beacon-page .beacon-tier-cta {
  margin-top: 25px;
}
.beacon-page .beacon-tier-cta a {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.beacon-page .beacon-tier-cta a.primary {
  background: #A04610;
  color: #fff;
}
.beacon-page .beacon-tier-cta a.primary:hover {
  background: #7d3709;
  color: #fff;
  text-decoration: none;
}
.beacon-page .beacon-tier-cta a.secondary {
  border: 2px solid #A04610;
  color: #A04610;
}
.beacon-page .beacon-tier-cta a.secondary:hover {
  background: #fef5f0;
  text-decoration: none;
}
.beacon-page .beacon-tier-cta a.outline {
  border: 2px solid #e5e5e5;
  color: #555;
}
.beacon-page .beacon-tier-cta a.outline:hover {
  border-color: #A04610;
  color: #A04610;
  text-decoration: none;
}
.beacon-page .beacon-services-callout {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #111D30;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 50px;
}
.beacon-page .beacon-services-callout-icon {
  font-size: 28px;
  color: #eb7824;
  flex-shrink: 0;
  padding-top: 2px;
}
.beacon-page .beacon-services-callout h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.beacon-page .beacon-services-callout p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}
.beacon-page .beacon-services-callout a {
  color: #eb7824;
  font-weight: 600;
  text-decoration: none;
}
.beacon-page .beacon-services-callout a:hover {
  color: #fff;
  text-decoration: underline;
}
.beacon-page .beacon-services-callout-terms {
  font-size: 12px !important;
  color: #888 !important;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .beacon-page .beacon-services-callout {
    flex-direction: column;
    gap: 10px;
  }
}
.beacon-page .beacon-trust {
  margin-bottom: 50px;
}
.beacon-page .beacon-trust h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111D30;
  text-align: center;
  margin-bottom: 25px;
}
.beacon-page .beacon-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 576px) {
  .beacon-page .beacon-trust-grid {
    grid-template-columns: 1fr;
  }
}
.beacon-page .beacon-trust-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}
.beacon-page .beacon-trust-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.beacon-page .beacon-trust-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111D30;
  margin-bottom: 4px;
}
.beacon-page .beacon-trust-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.beacon-page .beacon-bottom-cta {
  text-align: center;
  background: linear-gradient(135deg, #fef5f0 0%, #fdeee5 100%);
  padding: 45px 30px;
  border-radius: 12px;
  border: 1px solid #f8dccf;
  margin-bottom: 20px;
}
.beacon-page .beacon-bottom-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111D30;
  margin-bottom: 12px;
}
.beacon-page .beacon-bottom-cta p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/*# sourceMappingURL=beacon.css.map */