/* Modern CSS Variables for Consistency */
:root {
  --primary-green: #25D366;
  --primary-red: #C5221F;
  --primary-blue: #2463EB;  /* ADDED - was missing */
  --danger-red: #C5221F;     /* ADDED - was missing */
  --text-green-red: linear-gradient(90deg, #C5221F 0%, #25D366 50%);
  --text-green-white: linear-gradient(90deg, #5fd68b 0%, #c8dace 50%);
  --gradient-soft: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
  --card-hover-shadow: 0 20px 60px rgba(0,0,0,0.15);
  --border-radius: 20px;
  --border-radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern body background */
body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
  min-height: 100vh;
}

#topnavbar {
  position: relative;
  z-index: 100;
    padding-top: 5px !important;  /* Reduced from default */
  padding-bottom: 5px !important;
  margin-top: 8px !important;  /* Slightly reduced */
}

/* Modernize the navigation bar */
#topnavbar .gjs-grid-row {
  backdrop-filter: blur(10px) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
  border-radius: 20px !important;
  padding: 10px 20px !important;
}

#iyd2 {
  padding-top: 8px !important;  /* Reduced padding inside navbar */
  padding-bottom: 8px !important;
}

/* Adjust logo size to match condensed navbar */
.logo {
  height: 35px;  /* Slightly smaller for condensed navbar */
  width: auto;
}

#irfl3k {
  height: 35px !important;
}

/* Modern subscription cards */
.subscription-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.subscription-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.subscription-card.featured {
  border: 2px solid var(--primary-green);
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary-green), var(--primary-blue)) border-box;
}

.subscription-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-green);
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Plan headers with gradient backgrounds */
.plan-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.plan-price {
  font-size: 48px;
  font-weight: 300;
  color: var(--primary-blue);
  position: relative;
}

.plan-price span {
  font-size: 20px;
  color: #666;
}

/* Modern feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 20px;
}

/* Modern PayPal button container styling */
#paypal-button-container-vip,
#paypal-button-container-pro {
  margin-top: 30px;
  min-height: 45px;
}

/* Warning and info sections */
.modern-alert {
  background: linear-gradient(135deg, #fff5f5, #ffe0e0);
  border-left: 4px solid var(--danger-red);
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.modern-info {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-left: 4px solid var(--primary-blue);
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

/* Responsive design improvements */
@media (max-width: 768px) {
  .subscription-card {
    margin: 10px 0;
    padding: 20px;
  }
  
  .plan-price {
    font-size: 36px;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subscription-card {
  animation: fadeInUp 0.6s ease-out;
}

.subscription-card:nth-child(2) {
  animation-delay: 0.1s;
}



#feature-section {
  padding-top: 40px !important; /* Reduced from 80px */
  padding-bottom: 40px !important; /* Reduced from 80px */
  background: transparent;
  position: relative;
  overflow: visible; /* Changed to prevent image cutoff */
}

/* Fix image overlapping menu */
#ib541 img {
  position: relative;
  z-index: 1; /* Below menu */
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  max-width: 100%;
  height: auto;
}

/* Typography with your brand colors */
h1.gjs-heading {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #2c3e50; /* Keep solid color for better readability */
  line-height: 1.2;
  margin-bottom: 15px; /* Reduced spacing */
}

/* Apply green/red gradient to BEEPMATE text */
h1.gjs-heading + p span:first-child {
  background: linear-gradient(90deg, #C5221F 0%, #C5221F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1.gjs-heading + p span:last-child {
  background: linear-gradient(90deg, #25D366 0%, #25D366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.gjs-heading {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #2c3e50;
  font-weight: 600;
  margin-top: 15px; /* Reduced spacing */
  margin-bottom: 10px; /* Reduced spacing */
}

/* More condensed paragraph spacing */
#iz8m8 p {
  margin-bottom: 10px; /* Reduced from default */
  line-height: 1.5; /* Tighter line height */
}

/* Modern Form Styling - more compact */
#registerform {
  background: #e6fcee;
  padding: 20px; /* Reduced from 30px */
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-top: 20px; /* Reduced from 30px */
  max-width: 400px;
}

/* Phone Input Enhancement */
.iti {
  width: 100%;
  margin-bottom: 5px; /* Reduced */
}

#phone {
  width: 100%;
  padding: 12px; /* Reduced from 15px */
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  font-size: 16px;
  transition: var(--transition);
  background: white;
}

#phone:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

/* Checkbox Enhancement - more compact */
.form-check {
  
  padding: 0px 12px; /* Reduced from 15px */
  border-radius: var(--border-radius-sm);
  margin: 0px 0; /* Reduced */
}

.form-check-input {
  width: 20px;
  height: 10px;  /* FIXED from 10px */
  margin: 0;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #25D366;
}

/* Submit Button - more compact */
#startbtn {
  width: 100%;
  padding: 12px 25px; /* Reduced padding */
  font-size: 16px; /* Slightly smaller */
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 10px; /* Reduced */
}

#startbtn:not(:disabled) {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1fa352 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

#startbtn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

#startbtn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Feature Cards - more condensed */
#ib542 {
  margin-top: 30px; /* Reduced spacing */
}

#ib542 .py-5 {
  padding-top: 5px !important; /* Reduced from 3rem */
  padding-bottom: 5px !important;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px; /* Reduced from 30px */
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.feature-card i {
  font-size: 2.5rem; /* Reduced from 3rem */
  margin-bottom: 15px; /* Reduced */
  color: var(--primary-green); /* Use your green instead of gradient */
}

.feature-card h3 {
  font-size: 1.3rem; /* Reduced */
  margin-bottom: 10px; /* Reduced */
  color: #2c3e50;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Combined Use Cases Section - single block */
.use-cases {
  background: white;
  border-radius: var(--border-radius);
  padding:  30px; /* Reduced from 40px */
  margin: 10px auto; /* Reduced margin */
  max-width: 900px;
  box-shadow: var(--card-shadow);
}

.use-cases h3 {
  color: #2c3e50;
  font-size: 1.8rem; /* Reduced from 2rem */
  margin-bottom: 20px; /* Reduced */
  text-align: center;
  position: relative;
}

.use-cases h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
}

.use-cases ul {
  list-style: none;
  padding: 0;
  margin-top: 25px; /* Add spacing after title */
}

.use-cases li {
  padding: 12px 0; /* Reduced */
  padding-left: 35px; /* Reduced */
  position: relative;
  font-size: 15px; /* Slightly smaller */
  line-height: 1.6;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.use-cases li:last-child {
  border-bottom: none;
}

.use-cases li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 18px;
}

/* Modal Enhancement */
.modal-content {
  border-radius: var(--border-radius);
  border: none;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-green), #1fa352);
  color: white;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  border: none;
  padding: 20px; /* Reduced */
}

.modal-title {
  font-weight: 600;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.modal-body {
  padding: 25px; /* Reduced */
  font-size: 15px;
  line-height: 1.6;
}

.modal-body a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

.modal-body a:hover {
  text-decoration: underline;
}

.modal-footer {
  border: none;
  padding: 15px 25px; /* Reduced */
}

/* Footer adjustments for consistency */
.pagefooter {
  margin-top: 40px; /* Reduced spacing before footer */
}

/* Responsive Improvements */
@media (max-width: 768px) {
  #registerform {
    padding: 15px;
    margin: 15px auto;
  }
  
  .use-cases {
    padding: 20px;
    margin: 20px 10px;
  }
  
  h1.gjs-heading {
    padding-top:20px;
    text-align: center;
  }
  
  #ib541 {
    flex-direction: column-reverse;
  }
  
  #feature-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}


/* Hide topnavbar when menu is open */
body.menu-open #topnavbar {
  display: none !important;
}

/* Ensure menu has proper z-index */
.menu {
  z-index: 999 !important;
}

.hamburger-close {
  z-index: 1000 !important;
}

/* Better mobile menu styling */
@media (max-width: 768px) {
  .hamburger-open {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 12px;
    right: 20px;
    top: 10px;
  }
  
  .hamburger-close {
    background: transparent;
    color: white;
    font-size: 24px;
  }
  
  .menu {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  }
  
  .menuItem {
    font-size: 1.2rem;
    padding: 12px 0;
    transition: all 0.3s ease;
  }
  
  .menuItem:hover {
    transform: translateX(10px);
    color: #25D366;
  }
}

#irtfd > div > button, #icyzp > a > button {
    padding: 6px 16px;
}

/* .pt-3 {
    padding-top: 5px;
} */



/* ============================================
   RIGHT COLUMN FEATURES SECTION
   ============================================ */

/* Container for the right column */
.feature-highlight-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Image container with modern styling */
.hero-image-container {
  display: inline-block;
  max-width: 470px;
  max-height: 470px;
  margin-bottom: 30px;
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.hero-image-container img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.hero-image-container:hover img {
  transform: scale(1.02);
}

/* Feature list container */
.feature-highlights {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 470px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Gradient border effect */
.feature-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C5221F, #25D366);
}

/* Individual feature items */
.feature-item {
  display: flex;
  align-items: center;
  padding: 3px 0;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.feature-item:hover {
  transform: translateX(8px);
  color: #000;
}

/* Custom emoji styling */
.feature-item .feature-icon {
  font-size: 20px;
  margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
}

/* Different animation delay for each item */
.feature-item:nth-child(1) { animation-delay: 0s; }
.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.3s; }

/* Highlight key words */
.feature-item strong {
  color: #25D366;
  font-weight: 600;
}

/* Add subtle separator between items */
.feature-item:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

/* Alternative: Card style for each feature */
.feature-card-style .feature-item {
  background: linear-gradient(135deg, #f8f9fa, white);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid rgba(37, 211, 102, 0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-card-style .feature-item:hover {
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, white, #f0fff4);
}

/* Animations */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .feature-highlight-column {
    padding: 10px;
  }
  
  .hero-image-container {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .feature-highlights {
    padding: 10px;
  }
  
  .feature-item {
    font-size: 14px;
  }
}


/* ============================================
   CHECKBOX ALIGNMENT FIX
   ============================================ */

/* Fix checkbox alignment issues */
.form-check {
  display: flex;
  align-items: flex-start;
  padding: 3px;
  border-radius: 12px;
  margin: 3px 0;
}

.form-check-input {
  width: 20px;
  height: 10px;
  margin: 0;
  margin-right: 10px;
  margin-top: 2px; /* Align with first line of text */
  flex-shrink: 0; /* Prevent checkbox from shrinking */
  cursor: pointer;
  accent-color: #25D366;
}

.form-check-label {
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  flex: 1; /* Take remaining space */
  margin: 0; /* Remove default margin */
}

.form-check-label a {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
}

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

/* Mobile specific fixes */
@media (max-width: 768px) {
  .form-check {
    padding: 3px;
    margin: 20px 0;
  }
  
  .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 1px;
  }
  
  .form-check-label {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .form-check {
    padding: 4px 10px;
  }
  
  .form-check-input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  
  .form-check-label {
    font-size: 12px;
  }
}

/* Enhanced checked state */
.form-check-input:checked {
  background-color: #25D366;
  border-color: #25D366;
  position: relative;
}

/* Custom checkmark for better visibility */
.form-check-input:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Focus state for accessibility */
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

/* Hover effect on the container */
.form-check:hover {
  background: #f0f0f0;
  transition: background 0.3s ease;
}

/* Alternative style with better mobile alignment */
.form-check-modern {
  position: relative;
  padding-left: 35px;
  display: block;
  background: white;
  border: 1px solid #e0e0e0;
  padding: 15px 15px 15px 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin: 20px 0;
}

.form-check-modern:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.05);
}

.form-check-modern .form-check-input {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.form-check-modern .form-check-label {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .form-check-modern {
    padding: 12px 12px 12px 35px;
  }
  
  .form-check-modern .form-check-input {
    left: 10px;
  }
}




/* Pricing wrapper enhancement */
#pricingwrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

#pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  align-items: start;
  font-family: inherit;
}

/* Individual pricing cards */
.pricing-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Featured (VIP/PRO/Enterprise) styling */
.pricing-table.featured {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #25D366, #2463EB) border-box;
}

.pricing-table.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #25D366, #2463EB);
  color: white;
  padding: 5px 40px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Header section */
.pricing-table .header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.pricing-table.featured .header {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(36, 99, 235, 0.1));
}

.pricing-table .title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.pricing-table.featured .title {
  color: #25D366;
}

.pricing-table .price {
  font-size: 48px;
  font-weight: 300;
  color: #2c3e50;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.pricing-table .price span {
  font-size: 18px;
  color: #999;
  font-weight: 400;
}

/* Enterprise special pricing */
.pricing-table:last-child .price {
  font-size: 24px;
  font-weight: 500;
}

/* Features section */
.pricing-table .features {
  background: white;
  padding: 30px 25px;
  flex-grow: 1;
}

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

.pricing-table .features li {
  padding: 12px 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-table .features li:last-child {
  border-bottom: none;
}



/* Style for empty list items (spacers) */
.pricing-table .features li:empty {
  padding: 6px 0;
  border: none;
}

/* Highlight AI features */
.pricing-table .features li:contains("✨") {
  font-weight: 500;
  color: #333;
}

/* Strong text in features */
.pricing-table .features li b {
  font-weight: 600;
  font-size: 16px;
}

/* Signup button section */
.pricing-table .signup {
  padding: 25px;
  background: linear-gradient(135deg, #fafafa, white);
  display: flex;
  justify-content: center;
  
}

.pricing-table .signup a {
  display: inline-block;
  padding: 14px 40px;
  background: white;
  color: #25D366;
  border: 2px solid #25D366;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.pricing-table .signup a:hover {
  background: #25D366;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* Featured card buttons */
.pricing-table.featured .signup a {
  background: linear-gradient(135deg, #25D366, #2463EB);
  color: white;
  border: none;
}

.pricing-table.featured .signup a:hover {
  background: linear-gradient(135deg, #2463EB, #25D366);
  box-shadow: 0 5px 20px rgba(36, 99, 235, 0.3);
}

/* Enterprise button special */


.pricing-table:last-child .signup a:hover {
  background: #34495e;
  border-color: #34495e;
}

/* Add badge for free plan */
.pricing-table:first-child .header::after {
  content: "No Credit Card Required";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #666;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 1200px) {
  #pricing-tables {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 768px) {
  #pricingwrapper {
    padding: 10px;
  }
  
  #pricing-tables {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .pricing-table {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .pricing-table.featured::before {
    display: none; /* Hide ribbon on mobile */
  }
  
  .pricing-table .price {
    font-size: 36px;
  }
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-table {
  animation: fadeInUp 0.6s ease-out backwards;
}

.pricing-table:nth-child(1) { animation-delay: 0.1s; }
.pricing-table:nth-child(2) { animation-delay: 0.2s; }
.pricing-table:nth-child(3) { animation-delay: 0.3s; }
.pricing-table:nth-child(4) { animation-delay: 0.4s; }

/* Page title section - add above pricing tables */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.pricing-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}