.elementor-2897 .elementor-element.elementor-element-7ce9ebb{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-2897 .elementor-element.elementor-element-7ce9ebb.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2897 .elementor-element.elementor-element-24a4777{width:var( --container-widget-width, 100% );max-width:100%;margin:0 0 calc(var(--kit-widget-spacing, 0px) + 0) 0;padding:50px 150px 0px 150px;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-2897 .elementor-element.elementor-element-24a4777.elementor-element{--align-self:center;--order:-99999 /* order start hack */;--flex-grow:0;--flex-shrink:0;}.elementor-2897 .elementor-element.elementor-element-ec29506{--display:flex;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2897 .elementor-element.elementor-element-7ce9ebb{--content-width:1532px;}}/* Start custom CSS for html, class: .elementor-element-24a4777 *//* Pricing Cards Container */
        .pricing-cards {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        table {
          width: 100%;
          border-collapse: collapse;
          table-layout: fixed; /* Added for better column distribution */
        }

        /* Sticky Header */
        thead {
            position: sticky;
            top: 0;
            z-index: 10;
            color: black;
            background-color: white; /* Added to prevent content bleeding through */
        }

        /* First row (header) height adjustment */
        thead tr:first-child {
            height: 400px;
        }

        /* Alternative: Target the th elements directly */
        thead th {
            height: 400px;
            vertical-align: top;
            color: black;
            background-color: white; /* Added to match thead background */
            padding: 8px; /* Added for better spacing */
            word-wrap: break-word; /* Prevent text overflow */
            overflow-wrap: break-word; /* Modern property for text wrapping */
        }

        /* Optional: Responsive column widths */
        th, td {
            min-width: 120px; /* Prevent columns from being too narrow */
            max-width: 0; /* Works with table-layout: fixed for equal distribution */
        }

        /* Optional: Handle long content in cells */
        td {
            word-wrap: break-word;
            overflow-wrap: break-word;
            padding: 8px;
        }

        /* Card Styling - Merged with Motion-inspired elements */
         .card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
        }

        .card.popular {
            border: 2px solid #6366f1;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
        }

        .card.popular:hover {
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
        }

        /* Price Styling */
        .price {
            font-size: 28px;
            font-weight: bold;
            margin: 10px 0;
        }

        /* Button Styling - Enhanced from your original */
        .button, .motion-btn {
            display: inline-block;
            background: #4a6cff;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            margin-top: 15px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .button:hover, .motion-btn:hover {
            transform: translateY(-2px);
            background: #3a5cef;
            box-shadow: 0 8px 24px rgba(74, 108, 255, 0.4);
        }

        .button:active, .motion-btn:active {
            transform: translateY(0);
        }

        /* Subtle shine effect */
        .button::before, .motion-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .button:hover::before, .motion-btn:hover::before {
            left: 100%;
        }

        /* Motion-style Most Popular badge */
        .most-popular {
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            background: #6366f1;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            z-index: 10;
        }

        /* Comparison Table */
        .comparison, table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            text-align: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: black;
        }

        .comparison th, .comparison td, th, td {
            border-bottom: 1px solid #eee;
            padding: 12px;
            text-align: left;
        }

        .comparison th, th {
            background: #f9f9f9;
            font-weight: bold;
        }

        /* Check Mark Styling */
        .check {
            color: #4a6cff;
            font-size: 20px;
        }

        /* Sub text styling */
        .sub {
            color: #6b7280;
            margin-bottom: 16px;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
         .card h4 {
                    color: black;
                }
                
        .billing-toggle {
                    margin: 30px 0;
                    text-align: center;
                }

        .toggle-container {
                    display: inline-flex;
                    background: rgba(0, 0, 0, 0.1);
                    padding: 6px;
                    border-radius: 50px;
                    align-items: center;
        }

        .toggle-option {
                    padding: 10px 20px;
                    border-radius: 25px;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    color: #666;
                    font-weight: 500;
        }

        .toggle-option.active {
                    background: white;
                    color: #6366f1;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .savings-badge {
                    background: #10b981;
                    color: white;
                    padding: 4px 12px;
                    border-radius: 20px;
                    font-size: 0.8rem;
                    margin-left: 10px;
                    font-weight: 600;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            padding: 20px;
        }

        .muted {
            color: #6b7280;
            font-size: 0.9em;
        }

        .label {
            font-weight: 600;
            color: #374151;
        }

        .labelnone {
            background: transparent !important;
        }/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-7ce9ebb *//* Pricing Cards Container */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Better column distribution */
}

/* Sticky Header */
thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  color: black;
  background-color: white; /* Prevent content bleeding */
  padding: 12px;
  font-weight: bold;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Remove broken fixed height */
thead tr:first-child,
thead th {
  height: auto;
  vertical-align: middle;
}

/* Responsive column widths */
th, td {
  min-width: 120px;
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

/* Handle long content in cells */
td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}/* End custom CSS */