/* Appoiint Auth - Clean Minimal Styling */
/* Inspired by Anthropic's design principles */

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

html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: #374151;
  background-color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Container and Layout */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation Header */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  height: 32px;
  width: auto;
}

.nav-login {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login-text {
  color: #6b7280;
  font-size: 0.875rem;
}

.nav-login-btn {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.nav-login-btn:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

/* Main Content */
.signup-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.signup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

/* Content Section */
.content-section {
  padding: 2rem;
}

.badge {
  display: inline-block;
  background-color: #111827;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.2;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: #111827;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.check-icon::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.feature-text {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Form Section */
.form-section {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Form Styles */
.signup-form {
  margin-bottom: 2rem;
}

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

.form-group.full-width {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background-color: white;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-check-input {
  width: 16px;
  height: 16px;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: white;
}

.form-check-input:checked {
  background-color: #111827;
  border-color: #111827;
}

.form-check-label {
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: #111827;
  color: white;
  border: none;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.submit-btn:hover {
  background-color: #1f2937;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-spinner {
  opacity: 1;
}

.btn-spinner {
  opacity: 0;
  position: absolute;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Messages */
.error-message,
.success-message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}

.error-message {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.success-message {
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

/* Divider */
.divider {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
  color: #9ca3af;
  font-size: 0.875rem;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e7eb;
  z-index: 1;
}

.divider::after {
  content: 'or';
  background-color: white;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: white;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* Form Description and Links */
.form-description {
  text-align: center;
  margin-bottom: 1rem;
}

.form-description a {
  color: #111827;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-description a:hover {
  text-decoration: underline;
}

.login-link {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.login-link a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 3rem 2rem 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #d1d5db;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.footer-bottom-left p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: #d1d5db;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  cursor: pointer;
}

.language-selector:hover {
  color: #d1d5db;
}

.admin-login-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-login-link:hover {
  color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .signup-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }
  
  .content-section {
    text-align: center;
    padding: 1rem;
  }
  
  .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) {
  .nav-header {
    padding: 1rem;
  }
  
  .signup-content {
    padding: 1rem;
  }
  
  .form-section {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .nav-login {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-section {
    padding: 1.5rem;
  }
  
  .main-heading {
    font-size: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Focus and Accessibility */
.form-input:focus,
.submit-btn:focus,
.social-btn:focus,
.nav-login-btn:focus {
  outline: 2px solid #586684;
  outline-offset: 2px;
}

/* Loading State */
body.loading {
  cursor: wait;
}

body.loading * {
  pointer-events: none;
}

body.loading .submit-btn {
  pointer-events: auto;
}

/* Form Row (for side-by-side inputs) */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* Plan Selector */
.plan-selector {
  margin-bottom: 1.5rem;
}

.plan-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.plan-option {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background-color: white;
}

.plan-option:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

.plan-option.selected {
  border-color: #111827;
  background-color: #f9fafb;
}

.plan-option.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111827;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.plan-name {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.0rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.25rem;
}

.plan-price .currency {
  font-size: 1.0rem;
  font-weight: 500;
  color: #111827;
}

.plan-trial {
  font-size: 0.4rem;
  color: #6b7280;
}

/* Discount styling */
.plan-option.discounted {
  border-color: #16a34a;
  background-color: #f0fdf4;
}

.discount-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background-color: #16a34a;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1rem;
  display: block;
}

.discounted-price {
  color: #16a34a;
  font-weight: 700;
}

/* Coupon Feedback */
.coupon-feedback {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  display: none;
}

.coupon-feedback.success {
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  display: block;
}

.coupon-feedback.error {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  display: block;
}

.coupon-feedback.loading {
  background-color: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  display: block;
}

/* Trust Bar */
.trust-bar {
  margin-top: 3rem;
  text-align: center;
}

.trust-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.trust-logo:hover {
  opacity: 0.8;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    margin-bottom: 1.5rem;
  }
  
  .plan-options {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-logos {
    gap: 1rem;
  }
  
  .trust-logo {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .plan-option {
    padding: 0.75rem;
  }
  
  .plan-price {
    font-size: 1.125rem;
  }
  
  .trust-heading {
    font-size: 0.875rem;
  }
}

/* Hero Section Styles */
.hero-section {
  padding: 3rem 0;
  background-color: #f9fafb;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 500px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-google,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  border: 1px solid;
}

.btn-google {
  border-color: #e5e7eb;
  background-color: white;
  color: #374151;
}

.btn-google:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.btn-primary {
  border-color: #111827;
  background-color: #111827;
  color: white;
}

.btn-primary:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  color: white;
}

.hero-note {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}

.hero-preview {
  display: flex;
  justify-content: center;
}

.booking-card {
  background: white;
  border-radius: 0.75rem;
  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;
  padding: 1.5rem;
  max-width: 400px;
  width: 100%;
}

.booking-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.profile-img {
  border-radius: 50%;
  margin-right: 0.75rem;
  width: 40px;
  height: 40px;
}

.profile-info {
  flex: 1;
}

.profile-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.profile-title {
  color: #6b7280;
  font-size: 0.75rem;
}

.booking-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.duration-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.duration-badge {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
  background-color: #f3f4f6;
  color: #374151;
}

.duration-badge.active {
  background-color: #111827;
  color: white;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.calendar-day {
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-day:hover {
  background-color: #f3f4f6;
}

.calendar-day.active {
  background-color: #111827;
  color: white;
}

.calendar-day small {
  color: #6b7280;
  display: block;
  font-size: 0.75rem;
}

.calendar-day.active small {
  color: white;
}

.calendar-day span {
  font-weight: 600;
  color: #111827;
}

.calendar-day.active span {
  color: white;
}

.time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.time-slot {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  background-color: white;
  color: #374151;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

.time-slot.active {
  border-color: #111827;
  background-color: #111827;
  color: white;
}

.time-slot.active:hover {
  background-color: #1f2937;
  border-color: #1f2937;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-text {
    max-width: none;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-google,
  .btn-primary {
    flex: 1;
    min-width: 200px;
  }
  
  .booking-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-google,
  .btn-primary {
    width: 100%;
    max-width: 280px;
  }
  
  .booking-card {
    padding: 1rem;
    max-width: 300px;
  }
  
  .calendar-grid {
    gap: 0.125rem;
  }
  
  .calendar-day {
    padding: 0.375rem;
  }
  
  .time-slots {
    gap: 0.375rem;
  }
  
  .time-slot {
    padding: 0.375rem;
    font-size: 0.8125rem;
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.how-it-works-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.step-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.step-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 2.5rem;
  background: #111827;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: #111827;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.how-it-works-cta {
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: white;
}

/* Animation delays for staggered effect */
.step-card[data-step="1"] {
  transition-delay: 0.1s;
}

.step-card[data-step="2"] {
  transition-delay: 0.2s;
}

.step-card[data-step="3"] {
  transition-delay: 0.3s;
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 3rem 0;
  }
  
  .how-it-works-container {
    padding: 0 1rem;
  }
  
  .how-it-works-title {
    font-size: 1.875rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .step-card {
    padding: 2rem;
  }
  
  .step-number {
    left: 2rem;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 2rem 0;
  }
  
  .how-it-works-header {
    margin-bottom: 3rem;
  }
  
  .how-it-works-title {
    font-size: 1.5rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .step-number {
    left: 1.5rem;
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .step-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .step-title {
    font-size: 1.125rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Features Section */
.features-section {
  padding: 1rem 0;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

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

.features-header {
  text-align: center;
  margin-bottom: 2rem;
}

.features-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.feature-number {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: #111827;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: #111827;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Animation delays for staggered effect */
.feature-card[data-feature="1"] {
  transition-delay: 0.1s;
}

.feature-card[data-feature="2"] {
  transition-delay: 0.2s;
}

.feature-card[data-feature="3"] {
  transition-delay: 0.3s;
}

.feature-card[data-feature="4"] {
  transition-delay: 0.4s;
}

/* Responsive Design for Features */
@media (max-width: 768px) {
  .features-section {
    padding: 1rem 0;
  }
  
  .features-container {
    padding: 0 1rem;
  }
  
  .features-title {
    font-size: 1.875rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-number {
    left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 1rem 0;
  }
  
  .features-header {
    margin-bottom: 1rem;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-number {
    left: 1.25rem;
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-title {
    font-size: 1.125rem;
  }
}

/* Additional Features Section */
.additional-features-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.additional-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.additional-features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.additional-features-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.additional-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.additional-feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.additional-feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.additional-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.additional-feature-number {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: #111827;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.additional-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}

.additional-feature-icon svg {
  width: 24px;
  height: 24px;
  color: #111827;
}

.additional-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-feature-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Animation delays for staggered effect */
.additional-feature-card[data-additional="1"] {
  transition-delay: 0.1s;
}

.additional-feature-card[data-additional="2"] {
  transition-delay: 0.2s;
}

.additional-feature-card[data-additional="3"] {
  transition-delay: 0.3s;
}

.additional-feature-card[data-additional="4"] {
  transition-delay: 0.4s;
}

.additional-feature-card[data-additional="5"] {
  transition-delay: 0.5s;
}

.additional-feature-card[data-additional="6"] {
  transition-delay: 0.6s;
}

/* Responsive Design for Additional Features */
@media (max-width: 768px) {
  .additional-features-section {
    padding: 3rem 0;
  }
  
  .additional-features-container {
    padding: 0 1rem;
  }
  
  .additional-features-title {
    font-size: 1.875rem;
  }
  
  .additional-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .additional-feature-card {
    padding: 1.5rem;
  }
  
  .additional-feature-number {
    left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .additional-features-section {
    padding: 2rem 0;
  }
  
  .additional-features-header {
    margin-bottom: 3rem;
  }
  
  .additional-features-title {
    font-size: 1.5rem;
  }
  
  .additional-feature-card {
    padding: 1.25rem;
  }
  
  .additional-feature-number {
    left: 1.25rem;
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .additional-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .additional-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .additional-feature-title {
    font-size: 1.125rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.testimonial-number {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: #111827;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}

.testimonial-icon svg {
  width: 24px;
  height: 24px;
  color: #111827;
}

.testimonial-quote {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
}

.author-title {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Animation delays for staggered effect */
.testimonial-card[data-testimonial="1"] {
  transition-delay: 0.1s;
}

.testimonial-card[data-testimonial="2"] {
  transition-delay: 0.2s;
}

.testimonial-card[data-testimonial="3"] {
  transition-delay: 0.3s;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonials-container {
    padding: 0 1rem;
  }
  
  .testimonials-title {
    font-size: 1.875rem;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-number {
    left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2rem 0;
  }
  
  .testimonials-header {
    margin-bottom: 3rem;
  }
  
  .testimonials-title {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .testimonial-number {
    left: 1.25rem;
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .testimonial-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .testimonial-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .testimonial-quote {
    font-size: 0.875rem;
  }
  
  .author-image {
    width: 32px;
    height: 32px;
  }
  
  .author-name {
    font-size: 0.8125rem;
  }
  
  .author-title {
    font-size: 0.6875rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.pricing-card.featured {
  border-color: #111827;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-number {
  position: absolute;
  top: -12px;
  left: 2.5rem;
  background: #111827;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -8px;
  right: 2rem;
  background: #111827;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}

.pricing-icon svg {
  width: 24px;
  height: 24px;
  color: #111827;
}

.plan-name {
  font-size: 1.7rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.plan-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: #6b7280;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
}

.plan-description {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-check {
  width: 20px;
  height: 20px;
  background-color: #111827;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.feature-check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.plan-feature span {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
  background-color: white;
  color: #374151;
}

.plan-cta:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.plan-cta.primary {
  border-color: #111827;
  background-color: #111827;
  color: white;
}

.plan-cta.primary:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  color: white;
}

.pricing-footer {
  text-align: center;
}

.pricing-note {
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.pricing-contact {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

.pricing-contact a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
}

.pricing-contact a:hover {
  text-decoration: underline;
}

/* Animation delays for staggered effect */
.pricing-card[data-pricing="1"] {
  transition-delay: 0.1s;
}

.pricing-card[data-pricing="2"] {
  transition-delay: 0.2s;
}

.pricing-card[data-pricing="3"] {
  transition-delay: 0.3s;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
  .pricing-section {
    padding: 3rem 0;
  }
  
  .pricing-container {
    padding: 0 1rem;
  }
  
  .pricing-title {
    font-size: 1.875rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .pricing-number {
    left: 2rem;
  }
  
  .popular-badge {
    right: 2rem;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 2rem 0;
  }
  
  .pricing-header {
    margin-bottom: 3rem;
  }
  
  .pricing-title {
    font-size: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .pricing-number {
    left: 1.5rem;
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .popular-badge {
    right: 1.5rem;
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
  }
  
  .pricing-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .pricing-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .plan-name {
    font-size: 1.25rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .price-currency,
  .price-period {
    font-size: 0.875rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

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

.cta-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.cta-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
}

.cta-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.cta-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}

.cta-icon svg {
  width: 24px;
  height: 24px;
  color: #111827;
}

.cta-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-card-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
  background-color: white;
  color: #374151;
  min-width: 140px;
}

.cta-card-button:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.cta-card-button.primary {
  border-color: #111827;
  background-color: #111827;
  color: white;
}

.cta-card-button.primary:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  color: white;
}

/* Animation delays for staggered effect */
.cta-card[data-cta="1"] {
  transition-delay: 0.1s;
}

.cta-card[data-cta="2"] {
  transition-delay: 0.2s;
}

.cta-card[data-cta="3"] {
  transition-delay: 0.3s;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-container {
    padding: 0 1rem;
  }
  
  .cta-title {
    font-size: 1.875rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .cta-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 2rem 0;
  }
  
  .cta-header {
    margin-bottom: 3rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-card {
    padding: 1.5rem;
  }
  
  .cta-number {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .cta-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .cta-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .cta-card-title {
    font-size: 1.125rem;
  }
  
  .cta-card-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    min-width: 120px;
  }
}

/* One More Thing Section */
.one-more-thing-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.one-more-thing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.one-more-thing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.one-more-thing-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.one-more-thing-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.one-more-thing-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.comparison-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.comparison-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.comparison-card.old-way {
  border-color: #fecaca;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.comparison-card.new-way.featured {
  border-color: #111827;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.comparison-card.new-way.featured:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.comparison-number {
  position: absolute;
  top: -12px;
  left: 2.5rem;
  background: #111827;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-card.old-way .comparison-number {
  background: #dc2626;
}

.all-in-one-badge {
  position: absolute;
  top: -8px;
  right: 2rem;
  background: #16a34a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}

.comparison-card.old-way .comparison-icon {
  background: #fef2f2;
  border-color: #fecaca;
}

.comparison-card.old-way .comparison-icon svg {
  color: #dc2626;
}

.comparison-card.new-way .comparison-icon svg {
  color: #16a34a;
}

.comparison-icon svg {
  width: 24px;
  height: 24px;
  color: #111827;
}

.comparison-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.app-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #991b1b;
  font-weight: 500;
}

.app-item i {
  width: 16px;
  height: 16px;
  color: #dc2626;
  opacity: 0.7;
  flex-shrink: 0;
}

.unified-solution {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #166534;
  font-weight: 500;
}

.solution-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon i {
  width: 16px;
  height: 16px;
  color: #16a34a;
  opacity: 0.8;
}

.comparison-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.benefits-highlight {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  color: white;
}

.final-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border-radius: 1rem;
  color: white;
}

.final-cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.final-cta-description {
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: white;
  color: #111827;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.final-cta-button:hover {
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: #111827;
}

/* Animation delays for staggered effect */
.comparison-card[data-comparison="1"] {
  transition-delay: 0.1s;
}

.comparison-card[data-comparison="2"] {
  transition-delay: 0.2s;
}

/* Responsive Design for One More Thing */
@media (max-width: 768px) {
  .one-more-thing-section {
    padding: 3rem 0;
  }
  
  .one-more-thing-container {
    padding: 0 1rem;
  }
  
  .one-more-thing-title {
    font-size: 1.875rem;
  }
  
  .one-more-thing-subtitle {
    font-size: 1rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-card {
    padding: 2rem;
  }
  
  .comparison-number {
    left: 2rem;
  }
  
  .all-in-one-badge {
    right: 2rem;
  }
  
  .benefits-highlight {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .benefit-item {
    justify-content: center;
  }
  
  .final-cta {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .one-more-thing-section {
    padding: 2rem 0;
  }
  
  .one-more-thing-header {
    margin-bottom: 3rem;
  }
  
  .one-more-thing-title {
    font-size: 1.5rem;
  }
  
  .comparison-card {
    padding: 1.5rem;
  }
  
  .comparison-number {
    left: 1.5rem;
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .all-in-one-badge {
    right: 1.5rem;
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
  }
  
  .comparison-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .comparison-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .comparison-title {
    font-size: 1.25rem;
  }
  
  .app-item,
  .solution-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  
  .benefit-icon {
    width: 28px;
    height: 28px;
  }
  
  .benefit-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .benefit-item {
    font-size: 0.8125rem;
  }
  
  .final-cta-title {
    font-size: 1.25rem;
  }
  
  .final-cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Smooth animations */
* {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
