 /* Pricing Section Styles */
 .pricing-section {
     width: 100%;
     background: #000;
     position: relative;
 }

 .price-core-badge {
     width: 200px;
     height: 30px;
     /* margin: 0 auto 16px auto; */
     /* center horizontally + spacing below */
     border-radius: 9999px;
     background: linear-gradient(90deg, #FF5900 0%, #0000, #134B9D 100%);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .price-core-inner-badge {
     width: 198px;
     height: 28px;
     background: black;
     border-radius: 9999px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .price-core-inner-badge p {
     color: white;
 }

 .pricing-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 30% 20%, rgba(222, 116, 21, 0.05) 0%, transparent 50%),
         radial-gradient(circle at 70% 80%, rgba(0, 104, 166, 0.05) 0%, transparent 50%);
     pointer-events: none;
 }

 .pricing-container {
     max-width: 1140px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 2;
 }

 /* Top Section */
 .pricing-header {
     text-align: center;
     margin-bottom: 80px;
     display: flex;
     flex-direction: column;
     align-content: center;
     justify-content: center;
     align-items: center;
     gap: 50px;
 }

 /* Plans Grid */
 .plans-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     justify-content: center;
 }

 /* Plan Card */
 .plan-card {
     width: 364px;
     height: auto;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 60px 30px;
     background: rgb(0, 0, 0);
     backdrop-filter: blur(10px);
     transition: all 0.4s ease;
     position: relative;
     display: flex;
     flex-direction: column;
 }

 /* Featured Plan */
 .plan-card.featured {
     /* border-color: rgba(40, 97, 255, 0.5);
     background: rgba(255, 255, 255, 0.08); */
     transform: scale(1.05);
 }

 .plan-card.featured:hover {
     transform: scale(1.05) translateY(-10px);
 }

 .badge-container {
     width: 100%;
     height: auto;
     margin-top: -40px;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     justify-content: center;
 }

 .plan-badge {
     width: 170px;
     height: 32px;
     background: #da4e24;
     ;
     color: white;
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Plan Header */
 .plan-header {
     text-align: center;
     margin-bottom: 30px;
 }

 .plan-name {
     font-size: 24px;
     font-weight: 400;
     color: white;
     margin: 0 0 10px 0;
     text-align: left;
 }

 .plan-subtitle {
     font-size: 16px;
     font-weight: 400;
     color: rgba(255, 255, 255, 0.7);
     margin: 0 0 20px 0;
     text-align: left;
 }

 .plan-price {
     font-size: 40px;
     font-weight: 400;
     color: white;
     margin: 0 0 25px 0;
     text-align: left;
 }

 .plan-price span {
     font-size: 16px;
     font-weight: 400;
     color: rgba(255, 255, 255, 0.7);
 }

 .price-btn {
     position: relative;
     width: 300px;
     height: 50px;
     border: none;
     border-radius: 12px;
     background: linear-gradient(164deg, #ff7e00 0%, #0000, #134B9D 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     padding: 0;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     overflow: visible;
     /* allow glow to extend outside */
 }

 /* ✨ Outer top glow */
 .price-btn::before {
     content: "";
     position: absolute;
     top: -6px;
     left: 0;
     width: 100%;
     height: 27px;
     background: linear-gradient(270deg, rgb(255 0 0 / 0%) 0%, rgb(255 104 0) 50%, rgb(255 179 0 / 5%) 100%);
     filter: blur(6px);
     border-top-left-radius: 8px;
     border-top-right-radius: 8px;
     pointer-events: none;
     z-index: 2;
     opacity: 0.9;
 }

 .inner-price-btn {
     width: 298px;
     height: 48px;
     background: black;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 2;
     /* stay below glow */
     background: linear-gradient(5deg, #000000, #00000096);
 }

 .inner-price-btn p {
     font-size: 16px;
     font-weight: bold;
     color: white;
     margin: 0;
 }

 .price-view-btn {
     position: relative;
     width: 300px;
     height: 50px;
     border: solid 1px white;
     border-radius: 12px;
     background: #00000050;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     padding: 0;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     overflow: visible;
 }

 .inner-price-view-btn {
     width: 298px;
     height: 48px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 2;
     /* stay below glow */
 }

 .inner-price-view-btn p {
     font-size: 16px;
     font-weight: bold;
     color: white;
     margin: 0;
 }

 .enterprise-btn {
     background: transparent !important;
     border: 1px solid;
 }

 /* Plan Divider */
 .plan-divider {
     width: 300px;
     height: 1px;
     background: rgba(255, 255, 255, 0.2);
     margin-top: 30px;
 }

 /* Plan Features */
 .plan-features {
     flex: 1;
     display: flex;
     flex-direction: column;
     margin-top: 10px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .feature-item span {
     font-size: 16px;
     font-weight: 400;
     color: white;
     line-height: 1.4;
 }

 .core-badge {
     width: 200px;
     height: 30px;
     /* margin: 0 auto 16px auto; */
     /* center horizontally + spacing below */
     border-radius: 9999px;
     background: linear-gradient(90deg, #FF5900 0%, #0000, #134B9D 100%);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .core-inner-badge {
     width: 198px;
     height: 28px;
     background: black;
     border-radius: 9999px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .plan-section h2 {
     color: #fff;
     font-size: 64px;
     font-weight: 400;
 }


 .feature-item {
     display: flex;
     align-items: center;
     gap: 8px;
     position: relative;
     font-family: Arial, sans-serif;
 }

 /* Info button styling */
 .info-btn {
     background-color: transparent;
     border: 1px solid #da4e24;
     color: #da4e24;
     border-radius: 50%;
     width: 20px;
     height: 20px;
     font-size: 12px;
     cursor: pointer;
     padding: 0;
     text-align: center;
     line-height: 18px;
 }

 /* Container so tooltip positions relative to it */
 .info-container {
     position: relative;
     display: inline-block;
 }

 /* Info card (hidden by default) */
 .info-card {
     display: none;
     position: absolute;
     left: -5px;
     top: -20px;
     background-color: #da4e24;
     color: white;
     padding: 10px;
     border-radius: 6px;
     font-size: 13px;
     width: 200px;
     z-index: 3;
 }

 /* Show card on hover */
 .info-container:hover .info-card {
     display: block;
 }

 /* Create the gradient effect using a pseudo-element */
 .price-view-btn::before {
     content: "";
     position: absolute;
     inset: 0;
     border-radius: 12px;
     background: linear-gradient(164deg, #ff7e00 0%, #0000, #134B9D 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 1;
 }

 /* Show the gradient on hover */
 .price-view-btn:hover::before {
     opacity: 1;
 }

 /* Mobile Responsiveness */
 @media (max-width: 1200px) {

     .core-badge {
         margin-bottom: 25px;
     }

     .pricing-container {
         max-width: 95%;
     }

     .plan-section h2 {
         font-size: 56px;
     }

     .plans-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 25px;
     }

     .plan-card {
         width: 100%;
         max-width: auto;
         margin: 0 auto;
     }
 }

 @media (max-width: 1024px) {

     .core-badge {
         margin-bottom: 25px;
     }

     .plans-grid {
         grid-template-columns: 1fr;
         gap: 30px;
         max-width: 400px;
         margin: 0 auto;
     }

     .plan-card.featured {
         transform: none;
     }

     .plan-card.featured:hover {
         transform: translateY(-10px);
     }
 }

 @media (max-width: 768px) {

     .info-card {
         left: auto;
         right: -136px;
         top: -18px;
         transform: none;
         width: 160px;
         font-size: 12px;
         z-index: 100;
     }

     .core-badge {
         margin-bottom: 25px;
     }

     .pricing-section {
         padding: 60px 0;
     }

     .plan-section h2 {
         font-size: 42px;
         text-align: center;
         padding: 0 20px;
     }

     .pricing-header {
         margin-bottom: 50px;
     }

     .pricing-title {
         font-size: 48px;
     }

     .plan-card {
         height: auto;
         min-height: auto;
         padding: 30px 25px;
     }

     .plan-name {
         font-size: 22px;
     }

     .plan-price {
         font-size: 36px;
     }

     .feature-item span {
         font-size: 15px;
     }
 }

 @media (max-width: 480px) {
     .pricing-title {
         font-size: 36px;
     }

     .plan-section h2 {
         font-size: 32px;
         text-align: center;
         padding: 0 15px;
         line-height: 1.2;
     }

     .pricing-label {
         font-size: 14px;
     }

     .plan-card {
         padding: 25px 20px;
     }

     .plan-name {
         font-size: 20px;
     }

     .plan-price {
         font-size: 32px;
     }

     .plan-divider {
         width: 100%;
     }

     .feature-item span {
         font-size: 14px;
     }
 }