/* Billing Pages Styles - Stepwize Theme */

.billing-container {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Header */
.billing-container header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.billing-container .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.billing-container .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.billing-container .back-link a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.billing-container .back-link a:hover {
  color: #00008B;
}

.billing-container .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00008B;
  display: flex;
  align-items: center;
}

/* Hero Section */
.billing-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.billing-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.billing-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.billing-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 0;
}

/* Billing Options Section */
.billing-options-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.billing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Billing Card */
.billing-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.billing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #00008B;
}

.billing-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #00008B 0%, #0000CD 100%);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.billing-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00008B;
  margin-bottom: 1.5rem;
}

.billing-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.billing-card-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.billing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.billing-card-features li {
  padding: 0.75rem 0;
  color: #374151;
  font-size: 0.9375rem;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 1.5rem;
}

.billing-card-features li:last-child {
  border-bottom: none;
}

.billing-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00008B;
  font-weight: bold;
}

.billing-card-cta {
  margin-top: auto;
}

/* Buttons */
.billing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.billing-btn-primary {
  background: linear-gradient(135deg, #00008B 0%, #0000CD 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.billing-btn-primary:hover {
  background: linear-gradient(135deg, #00006B 0%, #00008B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 139, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.billing-btn-secondary {
  background-color: #ffffff;
  color: #00008B;
  border: 2px solid #00008B;
}

.billing-btn-secondary:hover {
  background-color: #00008B;
  color: #ffffff;
  text-decoration: none;
}

.billing-btn-outline {
  background-color: transparent;
  color: #00008B;
  border: 2px solid #00008B;
}

.billing-btn-outline:hover {
  background-color: #00008B;
  color: #ffffff;
  text-decoration: none;
}

.billing-btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Stripe Page */
.billing-content-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  min-height: calc(100vh - 80px);
}

.stripe-intro-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stripe-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stripe-logo-placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00008B;
}

.stripe-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.stripe-subtitle {
  font-size: 1.125rem;
  color: #64748b;
}

.pricing-highlight {
  text-align: center;
  margin: 2rem 0 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  border-radius: 12px;
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 700;
  color: #00008B;
  line-height: 1;
}

.pricing-label {
  font-size: 1.25rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.benefits-section {
  margin: 3rem 0;
}

.benefits-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item svg {
  flex-shrink: 0;
  color: #00008B;
  margin-top: 0.125rem;
}

.stripe-cta-section {
  text-align: center;
  margin-top: 3rem;
}

.stripe-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Purchase Order Form */
.po-form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.po-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.po-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.po-subtitle {
  font-size: 1.125rem;
  color: #64748b;
}

.po-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.required {
  color: #dc2626;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00008B;
  box-shadow: 0 0 0 3px rgba(0, 0, 139, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 2rem;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: #10b981;
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.success-text {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.success-actions {
  margin-top: 2rem;
}

/* Book Call Page */
.book-call-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.book-call-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 0;
}

.book-call-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.book-call-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Calendly Form Section */
.calendly-form-section {
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.calendly-form-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
  margin-top: -2.5rem;
}

/* Questions Section (Below Form) */
.call-questions-section {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3rem 0;
  position: relative;
}

.call-questions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00008B 0%, #0000CD 100%);
  border-radius: 2px;
}

/* Why Schedule Section */
.why-schedule-section {
  margin-bottom: 0;
}

.why-schedule-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 1rem;
}

.why-schedule-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00008B 0%, #0000CD 100%);
  border-radius: 2px;
}

.benefit-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-point {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 1.5rem;
}

.benefit-point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2rem;
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #00008B 0%, #0000CD 100%);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.benefit-point:hover {
  padding-left: 2rem;
}

.benefit-point:hover::before {
  opacity: 1;
}

.benefit-point:first-child {
  padding-top: 0;
}

.benefit-point:first-child::before {
  top: 0;
}

.benefit-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-point-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #00008B;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.benefit-point:hover .benefit-point-title {
  color: #00006B;
}

.benefit-point-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* What Happens Section */
.what-happens-section {
  padding: 2.5rem 0 0;
  border-top: 2px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 1rem;
}

.what-happens-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.what-happens-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #00008B 0%, #0000CD 100%);
  border-radius: 2px;
}

.what-happens-list {
  margin: 0;
  padding-left: 1.75rem;
  color: #475569;
  font-size: 1rem;
  line-height: 2;
  list-style: decimal;
}

.what-happens-list li {
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  position: relative;
  transition: color 0.2s ease;
}

.what-happens-list li::marker {
  color: #00008B;
  font-weight: 600;
}

.what-happens-list li:hover {
  color: #0f172a;
}

.what-happens-list li:last-child {
  margin-bottom: 0;
}

/* Calendly Embed Section */
.calendly-embed-section {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
}

.calendly-embed-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00008B 0%, #0000CD 100%);
  border-radius: 16px 16px 0 0;
}

.calendly-embed-section:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 139, 0.1), 0 4px 6px -2px rgba(0, 0, 139, 0.05);
  border-color: #cbd5e1;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 550px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

/* Calendly Error Handling */
.calendly-error {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
}

.calendly-error::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  border-radius: 16px 16px 0 0;
}

.calendly-error-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.calendly-error-text {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calendly-error-contact {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0;
}

.calendly-error-contact a {
  color: #00008B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.calendly-error-contact a:hover {
  color: #00006B;
  text-decoration: underline;
}

/* Calendly Booking Section */
.calendly-booking-section {
  margin-bottom: 4rem;
}

.calendly-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.calendly-widget-wrapper {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 700px;
  border: none;
}

.book-call-header {
  text-align: center;
  margin-bottom: 3rem;
}

.book-call-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.book-call-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.book-call-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Calendar Section */
.calendar-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.calendar-nav-btn {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  transition: all 0.2s ease;
}

.calendar-nav-btn:hover {
  background: #00008B;
  color: #ffffff;
  border-color: #00008B;
}

.calendar-nav-btn:active {
  transform: scale(0.95);
}

.calendar-month-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.weekday {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  padding: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.calendar-day.today {
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  color: #00008B;
  font-weight: 700;
  border-color: #00008B;
}

.calendar-day.selected {
  background: linear-gradient(135deg, #00008B 0%, #0000CD 100%);
  color: #ffffff;
  font-weight: 700;
  border-color: #00008B;
  box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.calendar-day.disabled {
  color: #d1d5db;
  cursor: not-allowed;
  background: #f9fafb;
}

.calendar-day.empty {
  cursor: default;
  background: transparent;
}

/* Time Slots Section */
.time-slots-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  max-height: 500px;
  overflow-y: auto;
}

.time-slots-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.time-slots-date {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.time-slot-btn {
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.time-slot-btn:hover {
  border-color: #00008B;
  background: #f0f4ff;
  color: #00008B;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 139, 0.1);
}

.time-slot-btn.selected {
  background: linear-gradient(135deg, #00008B 0%, #0000CD 100%);
  color: #ffffff;
  border-color: #00008B;
  box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.time-slot-btn.selected:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 139, 0.4);
}

.no-slots {
  text-align: center;
  color: #6b7280;
  padding: 2rem;
  font-size: 0.9375rem;
}

/* Booking Form Section */
.booking-form-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.form-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.booking-form {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group input[readonly] {
  background-color: #f9fafb;
  cursor: not-allowed;
}

.form-group input[readonly]:focus {
  border-color: #d1d5db;
  box-shadow: none;
}

.form-actions {
  margin-top: 2rem;
}

.form-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-actions button:disabled:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: #10b981;
}

.form-success .success-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.form-success .success-text {
  font-size: 1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.success-details {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.success-detail-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.9375rem;
}

.success-detail-item:last-child {
  border-bottom: none;
}

.success-detail-item strong {
  color: #0f172a;
  display: inline-block;
  min-width: 120px;
}

/* Benefits Section */
.call-benefits-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #f3f4f6;
}

.benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #00008B;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #00008B 0%, #0000CD 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.benefit-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.benefit-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .billing-title {
    font-size: 2rem;
  }

  .billing-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .billing-card {
    padding: 2rem;
  }

  .stripe-intro-container,
  .po-form-container {
    padding: 2rem 1.5rem;
  }

  .stripe-title,
  .po-title {
    font-size: 2rem;
  }

  .book-call-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .book-call-title {
    font-size: 2rem;
  }

  .book-call-subtitle {
    font-size: 1rem;
  }

  .book-call-title {
    font-size: 2rem;
  }

  .book-call-subtitle {
    font-size: 1.0625rem;
  }

  .calendly-form-section {
    margin-bottom: 3rem;
  }

  .calendly-embed-section {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .call-questions-section {
    gap: 3rem;
    padding: 2rem 1rem;
  }

  .why-schedule-title {
    font-size: 1.5rem;
  }

  .benefit-point {
    padding-left: 1.25rem;
  }

  .benefit-point:hover {
    padding-left: 1.5rem;
  }

  .what-happens-section {
    padding: 2rem 1.5rem;
  }

  .why-schedule-title {
    font-size: 1.375rem;
    margin-bottom: 2rem;
  }

  .benefit-point {
    padding: 1.5rem 0;
  }

  .benefit-point:first-child {
    padding-top: 0;
  }

  .benefit-point-title {
    font-size: 1.0625rem;
  }

  .what-happens-section {
    padding-top: 2rem;
  }

  .calendly-embed-section {
    position: static;
    padding: 1rem;
  }

  .calendly-inline-widget {
    height: 500px;
    min-width: 280px;
  }

  .calendly-container {
    padding: 1.5rem;
  }

  .calendly-widget-wrapper {
    padding: 0;
  }
    min-width: 280px;
  }

  .book-call-title {
    font-size: 2rem;
  }

  .pricing-amount {
    font-size: 3rem;
  }

  .book-call-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calendar-section,
  .time-slots-section,
  .booking-form-section {
    padding: 1.5rem;
  }

  .time-slots-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .billing-hero {
    padding: 2rem 0 1rem;
  }

  .billing-options-section {
    padding: 2rem 0;
  }

  .billing-content-section {
    padding: 2rem 0;
  }

  .billing-container .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .billing-container .back-link {
    align-self: flex-start;
  }
}

