
/* 
 * Pricing Page Styles
 * Contains all styles specific to the Pricing page
 */

/* Variables */
:root {
  --c-blue-900: #081030;
  --c-blue-800: #111b40;
  --c-blue-700: #152148;
  --c-blue-500: #1d7bdb;
  --c-blue-300: #293359;
  --c-blue-200: #4e5985;
  --c-blue-100: #dfe8ff;
  --c-green-400: #4ade80;
  --primary-blue: #1c7dc2;
  --secondary-blue: #06367F;
  --accent-blue: #149CFE;
}

/* Hero Section */
.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  z-index: 1;
  overflow: hidden;
  background: rgba(28, 125, 194, 0.66);
  transition: height 0.3s ease;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  transition: all 0.5s ease;
}

.sphere-1 {
  width: 40vw;
  height: 40vw;
  background: linear-gradient(40deg, rgba(28, 125, 194, 0.26), rgb(43, 133, 198));
  top: -10%;
  left: -10%;
  animation: float-1 15s ease-in-out infinite alternate;
  transform-origin: center center;
}

.sphere-2 {
  width: 45vw;
  height: 45vw;
  background: linear-gradient(240deg, rgba(72, 0, 255, 0.8), rgba(0, 183, 255, 0.4));
  bottom: -20%;
  right: -10%;
  animation: float-2 18s ease-in-out infinite alternate;
  transform-origin: center center;
}

.sphere-3 {
  width: 30vw;
  height: 30vw;
  background: linear-gradient(120deg, rgb(28, 125, 194), rgb(28, 125, 194));
  top: 60%;
  left: 20%;
  animation: float-3 20s ease-in-out infinite alternate;
  transform-origin: center center;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(41, 74, 201, 0.32) 1px, transparent 1px), 
                    linear-gradient(to bottom, rgba(46, 94, 255, 0.32) 1px, rgba(46, 94, 255, 0.48) 1px);
  z-index: 2;
}

.glow {
  position: absolute;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle, rgb(28, 125, 194), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: pulse 8s infinite alternate;
  filter: blur(30px);
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

/* Content Container */
.content-container {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
}

/* Hero Text */
.pricing-start-for-free {
  z-index: 9999;
  color: #ffffff;
  font-weight: 600;
  font-size: 64px;
  line-height: 95%;
  margin-bottom: 1rem;
}

.pricing-start-for-free-text {
  z-index: 9999;
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  line-height: 123%;
}

/* Form Styling */
.create-account {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-form-input {
  /*background: #EFF8FF;*/
  padding: 5px;
  margin-bottom: 1rem;
}

.pricing-form-input .form-control,
.pricing-form-input .form-select {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pricing-form-input .form-control:focus,
.pricing-form-input .form-select:focus {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15);
}

.pricing-form-input .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-form-input .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.pricing-form-input .form-select option {
  background-color: var(--primary-blue);
  color: #fff;
}

/* Form Validation Error Styles */
.pricing-form-input.error .form-control,
.pricing-form-input.error .form-select,
.pricing-form-input.error input[type="email"] {
  border: 2px solid #ff4444 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 68, 68, 0.25) !important;
  animation: shake 0.5s ease-in-out;
  pointer-events: auto !important;
  user-select: auto !important;
}

/* Ensure fields remain editable when focused */
.pricing-form-input.error .form-control:focus,
.pricing-form-input.error .form-select:focus,
.pricing-form-input.error input[type="email"]:focus {
  outline: none !important;
  border: 2px solid #ff4444 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 68, 68, 0.25) !important;
  pointer-events: auto !important;
  user-select: auto !important;
}

.pricing-form-input .error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
  line-height: 1.4;
}

/* Success State */
.pricing-form-input.success .form-control,
.pricing-form-input.success .form-select {
  border: 2px solid #4ade80 !important;
  box-shadow: 0 0 0 0.25rem rgba(74, 222, 128, 0.25) !important;
}

/* Warning State for Business Email */
.pricing-form-input .warning-message {
  color: #ffa500;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-form-input.warning .form-control {
  border: 2px solid #ffa500 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.25) !important;
}

/* Email specific validation */
.pricing-form-input.email-error .form-control {
  border: 2px solid #ff4444 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 68, 68, 0.25) !important;
  animation: shake 0.5s ease-in-out;
}

/* Shake Animation for Error */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
  20%, 40%, 60%, 80% { transform: translateX(3px); }
}



/* reCAPTCHA Error Styles */
.recaptcha-error {
  background: rgba(255, 68, 68, 0.1) !important;
  border: 2px solid #ff4444 !important;
  border-radius: 8px !important;
  color: #ff4444 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  animation: shake 0.5s ease-in-out;
}

.recaptcha-error .fa-exclamation-triangle {
  color: #ff4444;
}

/* Invalid Feedback Styling - More specific to avoid conflicts */
.pricing-form-input .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 12px;
  color: #ff4444 !important;
  font-weight: 500;
}

/* Show error messages when they have inline style display: block */
.pricing-form-input .invalid-feedback[style*="display: block"],
.pricing-form-input .invalid-feedback[style*="display:block"] {
  display: block !important;
}

/* Also show when parent has error class */
.pricing-form-input.error .invalid-feedback {
  display: block !important;
}

/* reCAPTCHA error styling */
#recaptcha-error {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 12px;
  color: #ff4444 !important;
  font-weight: 500;
}

#recaptcha-error[style*="display: block"],
#recaptcha-error[style*="display:block"] {
  display: block !important;
}

/* Success message animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced server-side message styling */
.alert-success {
  border: 2px solid #28a745 !important;
  background-color: rgba(212, 237, 218, 0.95) !important;
  color: #155724 !important;
  font-weight: 500;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

.alert-danger {
  border: 2px solid #dc3545 !important;
  background-color: rgba(248, 215, 218, 0.95) !important;
  color: #721c24 !important;
  font-weight: 500;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

.alert-warning {
  border: 2px solid #ffc107 !important;
  background-color: rgba(255, 243, 205, 0.95) !important;
  color: #856404 !important;
  font-weight: 500;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.btn-pricing-form {
  background: rgba(4, 4, 4, 0.15);
  padding: 10px;
  color: #e8f6ff;
  font-weight: 500;
  font-size: 20px;
  border: 1px solid rgba(0, 0, 255, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-pricing-form:hover {
  background: rgba(6, 54, 127, 0.66) !important;
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(0, 0, 255, 0.8);
}

/* Pricing Cards Section */
.pricing {
  margin-top: 0vh;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.pricing-cards-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 15px;
  margin: 0 -7.5px;
}

.pricing-border {
  border: 1px solid #8A8A8A;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-card-col {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  transition: transform 0.3s ease;
  padding: 0 7.5px;
}

.pricing-card {
  background-color: var(--c-blue-700);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: var(--c-blue-100);
  margin: auto;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Glowing border effect */
.pricing-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 14px;
  background: linear-gradient(45deg, var(--c-green-400), var(--c-blue-500), var(--c-blue-300), var(--c-blue-700));
  z-index: -1;
  filter: blur(8px);
}

/* Materialized background */
.pricing-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at top left, rgba(74, 222, 128, 0.3), rgba(29, 123, 219, 0.2) 40%, var(--c-blue-700) 80%);
  z-index: -2;
}

/* Card Backgrounds */
.pricing-card.card-bg-1 {
  border-color: #185f92;
  background: #ffffffd1;
  border: 2px solid #185f9233;
  color: black;
}

.pricing-card.card-bg-2 {
  border-color: #c6914c;
  background: #fcaa3ad1 !important;
  border: 2px solid #d59a4a3d;
  color: #ffffff;
}

.pricing-card.card-bg-3 {
  border-color: #fa5152;
  background: #fd2c2cd1 !important;
  border: 2px solid #fa5152;
  color: #ffffff;
}

.pricing-card.card-bg-4 {
  border-color: #2e5eff;
  background: #2e5eff !important;
  border: 2px solid #2e5eff;
  color: #ffffff;
}

/* Card Title */
.pricing-card-title {
  background: rgba(255, 255, 255, 0.29);
  padding: 1rem;
  color: #00e7ff;
  border-radius: 38px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 1rem;
}

.pricing-card.card-bg-1 .pricing-card-title {
  color: #03626c !important;
}

.pricing-card.card-bg-2 .pricing-card-title {
  color: #3b4242 !important;
}

.pricing-card.card-bg-3 .pricing-card-title {
  color: #900f10 !important;
}

/* Card Description */
.pricing-card-suitable-for {
  font-size: 12px;
  line-height: 1.4;
  min-height: 50px;
  margin-bottom: 1rem;
}

.pricing-card-suitable-for-cnt {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Features */
.pricing-features {
  text-align: left;
  line-height: 2rem;
  margin-top: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-features span {
  text-align: left;
  font-size: 12px;
  display: block;
  margin-bottom: 0.5rem;
}

.pricing-features span::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-green-400);
  color: white;
  font-size: 9px;
  font-weight: bold;
  margin-right: 8px;
  box-shadow: 0 0 10px var(--c-green-400);
  animation: glow-pulse 1.5s infinite alternate;
}

/* Card Buttons */
.btn-pricing-card-form {
  background: #149CFE;
  padding: 0.5rem 1rem;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 12px;
  border-radius: 20px;
  border: none;
  transition: all 0.3s ease;
}

.btn-pricing-card-form:hover {
  background: #06367F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.pricing-card.card-bg-1 .btn,
.pricing-card.card-bg-1 span::before {
  background-color: #4aa3de !important;
  color: white !important;
}

.pricing-card.card-bg-2 .btn,
.pricing-card.card-bg-2 span::before {
  background-color: #ffffff !important;
  color: #e98809 !important;
}

.pricing-card.card-bg-3 .btn,
.pricing-card.card-bg-3 span::before {
  background-color: #16010136 !important;
  color: #ffffff !important;
}

.pricing-card.card-bg-4 .btn,
.pricing-card.card-bg-4 span::before {
  background-color: #16010136 !important;
  color: #ffffff !important;
}

/* Comparison Table */
.pricing-table {
  margin: 3rem 0;
}

.table-pricing {
  width: 100%;
  border-collapse: collapse;
}

.table-pricing th, 
.table-pricing td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #dee2e6;
}

.features-table-header {
  width: 20%;
  background: rgba(46, 94, 255, 0.13);
}

.compare-features {
  color: #000000;
  font-weight: 600;
  font-size: 36px;
  line-height: 95%;
}

.features-list {
  color: #000000;
  font-weight: 500;
  font-size: 15px;
  line-height: 84%;
}

/* Special Effects */
.apex-plan-pop {
  animation: scaleAnimation 1.5s infinite alternate ease-in-out;
}

/* Animations */
@keyframes float-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(5%, 5%) scale(1.05);
  }
}

@keyframes float-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-5%, -2%) scale(1.05);
  }
}

@keyframes float-3 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-2%, 5%) scale(1.02);
    opacity: 0.6;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 5px var(--c-green-400);
  }
  100% {
    box-shadow: 0 0 15px var(--c-green-400);
  }
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}


/* Responsive Styles */
@media screen and (min-width: 1400px) {
  .gradient-background {
    height: 55%;
  }
  
  .sphere-1 {
    width: 35vw;
    height: 35vw;
  }
  
  .sphere-2 {
    width: 40vw;
    height: 40vw;
  }
  
  .sphere-3 {
    width: 25vw;
    height: 25vw;
  }
  
  .pricing {
    margin-top: 0;
  }
}


@media (max-width: 1200px) {
  .pricing-start-for-free {
    font-size: 48px;
  }
  
  .pricing-cards-row {
    flex-wrap: wrap;
  }
  
  .pricing-card-col {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin-bottom: 2rem;
  }
  
  .pricing {
    margin-top: 3vh;
  }
  
  .compare-features {
    font-size: 28px;
  }
  
  .gradient-background {
    height: 560px;
  }
  
  .sphere-1 {
    width: 50vw;
    height: 50vw;
  }
  
  .sphere-2 {
    width: 55vw;
    height: 55vw;
  }
  
  .sphere-3 {
    width: 40vw;
    height: 40vw;
    left: 10%;
  }
}

@media (max-width: 992px) {
  .pricing-start-for-free {
    font-size: 36px;
    text-align: center;
    line-height: 110%;
  }
  
  .pricing-start-for-free-text {
    font-size: 18px;
    text-align: center;
  }
  
  .create-account {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
  }
  
  .pricing {
    margin-top: 0vh;
  }
  
  .pricing-cards-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .pricing-card-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  
  .compare-features {
    font-size: 24px;
  }
  
  .gradient-background {
    height: 655px;
    background: rgba(28, 125, 194, 0.7);
  }
  
  .sphere-1 {
    width: 60vw;
    height: 60vw;
    top: -5%;
    opacity: 0.9;
  }
  
  .sphere-2 {
    width: 65vw;
    height: 65vw;
    right: -20%;
    opacity: 0.9;
  }
  
  .sphere-3 {
    width: 50vw;
    height: 50vw;
    top: 50%;
    left: 5%;
    opacity: 0.9;
  }
  
  .glow {
    width: 60vw;
    height: 50vh;
    opacity: 0.8;
  }
  
  /* Enhanced medium device styles */
  .row.gap-3.justify-content-between {
    flex-wrap: wrap;
  }
  
  .pricing-card-col.col-lg-3 {
    width: 48%;
    margin-bottom: 20px;
  }
  
  .pricing-card-title {
    font-size: 16px;
  }
  
  .pricing-features span {
    font-size: 12px;
  }
  
  .pricing-card-suitable-for {
    min-height: 60px;
  }
  
  /* Improve form layout */
  .pricing-form-input .form-control,
  .pricing-form-input .form-select {
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  
  .btn-pricing-form {
    padding: 10px;
    font-size: 18px;
  }
  
  /* Adjust recaptcha for better fit */
  .g-recaptcha {
    transform: scale(0.95);
    transform-origin: 0 0;
  }
}

@media (max-width: 768px) {
  /* Improved gradient background for tablets */
  .gradient-background {
    height: 67%;
    background: rgba(28, 125, 194, 0.7);
  }
  
  .pricing-start-for-free {
    font-size: 32px;
    line-height: 110%;
  }
  
  .pricing-start-for-free-text {
    font-size: 16px;
  }
  
  .pricing {
    margin-top: 10vh;
  }
  
  .table-pricing {
    font-size: 14px;
  }
  
  .compare-features {
    font-size: 20px;
  }
  
  .features-list {
    font-size: 13px;
  }
  
  /* Adjusted gradient elements for better tablet display */
  .sphere-1 {
    width: 70vw;
    height: 70vw;
    top: 0;
    left: -20%;
    filter: blur(40px);
    opacity: 0.9;
  }
  
  .sphere-2 {
    width: 75vw;
    height: 75vw;
    bottom: -30%;
    right: -30%;
    filter: blur(40px);
    opacity: 0.9;
  }
  
  .sphere-3 {
    width: 60vw;
    height: 60vw;
    top: 40%;
    left: 0;
    filter: blur(40px);
    opacity: 0.9;
  }
  
  .glow {
    width: 80vw;
    height: 40vh;
    filter: blur(20px);
    opacity: 0.8;
  }
  
  .grid-overlay {
    background-size: 30px 30px;
    opacity: 0.7;
  }
  
  /* Enhanced form container for better visibility */
  .create-account {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }
  
  /* Enhanced tablet styles */
  .pricing-card-col {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .btn-pricing-form {
    font-size: 18px;
  }
  
  .pricing-form-input .form-control,
  .pricing-form-input .form-select {
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  
  .pricing-card {
    padding: 15px;
  }
  
  .pricing-card-title {
    padding: 0.8rem;
    font-size: 17px;
  }
  
  .pricing-features {
    line-height: 1.8rem;
  }
  
  .pricing-card-suitable-for {
    font-size: 11px;
  }
  
  .pricing-features span {
    font-size: 11px;
    margin-bottom: 0.4rem;
  }
  
  .pricing-features span::before {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }
  
  .btn-pricing-card-form {
    font-size: 12px;
    padding: 0.45rem 0.9rem;
  }
}

@media (max-width: 576px) {
  .pricing-start-for-free {
    font-size: 28px;
    line-height: 110%;
    margin-top: 20px;
  }
  
  .pricing-start-for-free-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .btn-pricing-form {
    font-size: 16px;
    padding: 8px;
  }
  
  .pricing {
    margin-top: 15vh;
  }
  
  .pricing-card-title {
    font-size: 16px;
    padding: 0.75rem;
  }
  
  .pricing-features span {
    font-size: 11px;
  }
  
  .compare-features {
    font-size: 18px;
  }
  
  .table-pricing th, 
  .table-pricing td {
    padding: 0.5rem;
  }
  
  /* Enhanced gradient background for mobile */
  .gradient-background {
    height: 800px;
    background: rgba(28, 125, 194, 0.75);
  }
  
  .sphere-1 {
    width: 80vw;
    height: 80vw;
    filter: blur(30px);
    top: -5%;
    left: -25%;
  }
  
  .sphere-2 {
    width: 85vw;
    height: 85vw;
    filter: blur(30px);
    bottom: -35%;
    right: -35%;
  }
  
  .sphere-3 {
    width: 70vw;
    height: 70vw;
    filter: blur(30px);
    top: 35%;
    left: -15%;
  }
  
  .glow {
    width: 85vw;
    height: 35vh;
    filter: blur(20px);
  }
  
  .grid-overlay {
    background-size: 20px 20px;
    opacity: 0.8; /* Slightly more visible grid */
  }
  
  .particle {
    opacity: 0.4 !important;
  }
  
  /* Enhanced mobile styles */
  .create-account {
    padding: 1.25rem !important;
    background-color: rgba(255, 255, 255, 0.15); /* Slightly more opaque for better visibility */
    margin: 0 auto;
    max-width: 95%;
  }
  
  .pricing-form-input {
    margin-bottom: 0.75rem;
  }
  
  .pricing-form-input .form-control,
  .pricing-form-input .form-select {
    padding: 0.6rem;
    font-size: 15px;
  }
  
  /* Improved pricing cards for mobile */
  .pricing-cards-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    max-width: 95%;
  }
  
  .pricing-card-col.col-lg-3 {
    padding: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .pricing-card {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card-title {
    margin-bottom: 0.75rem;
    font-size: 18px;
    padding: 0.6rem;
  }
  
  .pricing-card-suitable-for {
    font-size: 12px;
    min-height: auto;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .pricing-features {
    line-height: 1.75rem;
    margin-top: 1rem;
  }
  
  .pricing-features span {
    margin-bottom: 0.6rem;
    font-size: 12px;
  }
  
  .pricing-features span::before {
    width: 12px;
    height: 12px;
    font-size: 8px;
    margin-right: 10px;
  }
  
  .row > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  .btn-pricing-card-form {
    font-size: 13px;
    padding: 0.5rem 1rem;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  /* Improve table display on mobile */
  .table-pricing {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Extra small devices (small phones, less than 400px) */
@media (max-width: 399.98px) {
    .pricing-start-for-free-row{
        /* width: 100%; */
        width: 97%;
        margin-left: 6px;
    }
    .container{
        padding-left: 0;
        padding-right: 0;
    }
  .pricing-start-for-free {
    font-size: 24px;
    margin-bottom: 0.5rem;
  }
  
  .pricing-start-for-free-text {
    font-size: 13px;
    margin-bottom: 1rem;
  }
  
  .btn-pricing-form {
    font-size: 14px;
    padding: 8px;
  }
  
  .create-account {
    padding: 1rem !important;
    max-width: 100%;
  }
  
  .pricing-form-input {
    margin-bottom: 0.5rem;
  }
  
  .pricing-form-input .form-control,
  .pricing-form-input .form-select {
    padding: 0.5rem;
    font-size: 14px;
  }
  
  /* Improved pricing cards for very small screens */
  .pricing-cards-row {
    max-width: 100%;
    gap: 15px;
  }
  
  .pricing-card {
    padding: 12px;
  }
  
  .pricing-card-title {
    font-size: 16px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .pricing-card-suitable-for {
    font-size: 11px;
    margin-bottom: 0.5rem;
  }
  
  .pricing-features {
    margin-top: 0.75rem;
    line-height: 1.6rem;
  }
  
  .pricing-features span {
    font-size: 11px;
    margin-bottom: 0.4rem;
  }
  
  .pricing-features span::before {
    width: 10px;
    height: 10px;
    font-size: 7px;
    margin-right: 8px;
  }
  
  .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
    margin: 0 auto;
  }
  
  /* Adjust form layout for very small screens */
  .row .col-md-4 {
    padding-right: 5px;
    padding-left: 5px;
  }
  
  /* Make sure buttons are properly sized */
  .btn-pricing-card-form {
    font-size: 12px;
    padding: 0.4rem 0.8rem;
    margin-top: 0.5rem;
  }
  
  /* Gradient background adjustments for very small screens */
  .gradient-background {
    height: 760px;
  }
  
  .pricing {
    margin-top: 10vh;
  }
  
  .sphere-1 {
    width: 90vw;
    height: 90vw;
    filter: blur(25px);
    top: -10%;
    left: -30%;
  }
  
  .sphere-2 {
    width: 95vw;
    height: 95vw;
    filter: blur(25px);
    bottom: -40%;
    right: -40%;
  }
  
  .sphere-3 {
    width: 80vw;
    height: 80vw;
    filter: blur(25px);
    top: 30%;
    left: -20%;
  }
  
  .glow {
    width: 90vw;
    height: 30vh;
    filter: blur(15px);
  }
  
  .grid-overlay {
    background-size: 15px 15px;
  }
  
  /* Improve comparison table for very small screens */
  .compare-features {
    font-size: 16px;
  }
  
  .features-list {
    font-size: 12px;
  }
  
  .table-pricing th, 
  .table-pricing td {
    padding: 0.4rem;
    font-size: 11px;
  }
}
@media screen and (min-width: 1201px) and (max-width:1399px)  {
  .gradient-background {
    height: 67%;
  }
  
  .sphere-1 {
    width: 35vw;
    height: 35vw;
  }
  
  .sphere-2 {
    width: 40vw;
    height: 40vw;
  }
  
  .sphere-3 {
    width: 25vw;
    height: 25vw;
  }
  
  .pricing {
    margin-top: 0;
  }
}
