
body {
  background: linear-gradient(180deg, #f1f5fa 0%, #e7ecfd 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

body::before,
body::after {
  display: none;
}

.pricing-section {
  padding: 50px 20px;
}
.pricing-head {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-head h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 10px;
}

.pricing-head p {
  font-size: 24px;
  color: #475569;
  margin-top: 0 !important;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.plan-icon {
  width: 34px;
  height: 34px;
  color: #007bff;  
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(2,132,199,0.08);
  padding: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(14, 165, 233, 0.35);
}

.pricing-header {
  position: relative;
  padding: 28px 20px 36px;
  text-align: center;
  border-radius: 22px 22px 0 0;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.35);
}
.pricing-header::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 34px;
  background: #fff;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -5px 0 rgba(15, 23, 42, 0.18);
}
.pricing-header.free {
  background: linear-gradient(135deg, #38bdf8, #0ea5a5);
}
.pricing-header.medium {
 background: linear-gradient(135deg, #0ea5a5, #0284c7);
}

.pricing-header.advance {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}
.pricing-header.enterprise {
  background: linear-gradient(135deg, #1e40af, #0f766e);
}

.pricing-header h2 {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  margin: 0;
  letter-spacing: .3px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.pricing-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 38px;
  height: 3px;
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
}
.pricing-body {
  padding: 20px 26px 26px !important;
  text-align: left;
  flex: 1;
}

.pricing-body h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 14px;
  text-align: center;
  color: #0f172a;
}

.pricing-body h2 span {
  font-size: 17px;
  color: #555;
  font-weight: 400;
}

.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-body ul li {
  margin: 12px 0;
  font-size: 16px;
  color: #0f172a;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-body ul li::before {
  content: "✓";
  color: #0b7272;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
  font-size: 15px;
  margin-top: 4px;
} 
.feature-list li {
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.5;
}
.plan-users {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #0f5d5d;
  margin-bottom: 18px;
}
.btn {
  display: block;
  text-align: center;
  background-image: linear-gradient(to right, #0284c7, #0ea5a5);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-image: linear-gradient(to right, #0369a1, #0f766e);
}
.pricing-card:last-child .btn {
  background: linear-gradient(to right, #0369a1, #0f766e);
}
.pricing-card:last-child .btn:hover {
  background: linear-gradient(to right, #035886, #0c5c56);
}


@media (max-width: 992px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-body h2 {
    font-size: 24px;
  }
  .section-title {
    font-size: 28px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 20px 15px;
  }
  .pricing-body h2 {
    font-size: 22px;
  }
  .section-title {
    font-size: 22px;
    flex-direction: column;
    gap: 6px;
  }
}

.hero {
  background: linear-gradient(to bottom right, #38bdf8, #0ea5a5, #0284c7);
  padding: 20px 50px 80px 50px;
  color: #fff;
  position: relative;
}

.hero-wrap {
  max-width: 1400px;
  margin: auto;
}
.auth-links {
  position: absolute;
  top: 24px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  z-index: 20;
}

.auth-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.auth-btn {
  padding: 7px 16px;
  border-radius: 999px; 
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  transition: all 0.2s ease;
}

.auth-btn:hover {
  background: #ffffff;
  color: #0ea5b7;
  border-color: #ffffff;
}

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

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(255 255 255 /1);
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(to right, #fde047, #fdba74);
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero p {
  font-size: 24px;
  margin: 20px 0 40px;
  max-width: 100%;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
  width: 100%;
}

.feature-box {
  display: flex;
  gap: 15px;
  background: #ffffff1a;
  padding: 26px 30px;
  border-radius: 18px;
  border: 1px solid #fff3;
  align-items: center;
  min-height: 92px;
}

.feature-box img {
  width: 50px;
  height: 50px;
  color: rgb(253 224 71 /1);
  filter: brightness(0) saturate(100%) invert(75%) sepia(91%) saturate(650%) hue-rotate(2deg) brightness(102%) contrast(100%); 
}

.feature-box strong {
  font-size: 30px;
  line-height: 28px;
  font-weight: 600;
  display: block;
  color: rgb(255 255 255 /1);
  margin-bottom: 7px !important;
  margin: 0;
}

.feature-box span {
  font-size: 22px;
  margin: 0;
  color: rgb(231, 249, 240);
}

.trusted {
  margin-top: 50px;
  padding: 32px;
  background: #ffffff1a;
  border-color: #fff3;
  border-width: 1px;
  border-radius: 24px;
  border-style: solid;
  opacity: 1;
  transform: none;
}

.trusted h4 {
  color: rgb(255 255 255 /1);
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 10px;
  font-size: 26px;
  line-height: 32px;
}

.logos {
  display: flex;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex-direction: column; 
  gap: 22px;
}

.logo-row {
  display: flex;
  justify-content: space-between;
  gap: 16px; 
} 

.logo-box {
  width: 380px;  
  height: 56px;
  background-color: #fff3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-box {
  width: 40px;
  height: 40px;
  background-color: #ffffff4d;
  border-radius: 8px;
}

/* responsive */
@media (max-width: 600px) {

  .hero {
    padding: 20px 20px 50px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px;
    margin: 16px 0 28px;
  }

  /* HERO FEATURES */
  .hero-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-box {
    padding: 18px 16px;
    min-height: auto;
  }

  .feature-box strong {
    font-size: 20px;
  }

  .feature-box span {
    font-size: 15px;
  }

  /* TRUSTED / LOGOS */
  .trusted {
    padding: 20px;
    margin-top: 30px;
  }

  .trusted h4 {
    font-size: 20px;
    text-align: center;
  }

  .logos {
    gap: 14px;
  }

  .logo-row {
    flex-direction: column;
    gap: 12px;
  }

  .logo-box {
    width: 100%;    
    height: 48px;
  }

  /* PRICING */
  .pricing-head h2 {
    font-size: 28px;
  }

  .pricing-head p {
    font-size: 16px;
  }

  .pricing-body {
    padding: 18px 20px 24px !important;
  }

  .pricing-body ul li {
    font-size: 14px;
  }
}

@media (max-width: 992px) {

  .hero {
    padding: 30px 30px 60px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .feature-box strong {
    font-size: 22px;
  }

  .feature-box span {
    font-size: 16px;
  }

  .logo-box {
    width: 100%;
  }
  .auth-links {
    right: 20px;
    top: 16px;
    font-size: 13px;
  }
}
