@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: white;
  background-color: #171717;
  overflow-x: hidden;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #2B2B2B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
header a {
  text-decoration: none;
  color: white;
}
header a .logo {
  display: flex;
  align-items: center;
}
header a .logo img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
header a .logo span {
  font-size: 22px;
  letter-spacing: -0.5px;
}
header a .logo span b {
  font-weight: 700;
}
header .desktop-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}
header .desktop-nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
header .desktop-nav ul li a:hover {
  color: white;
  transform: translateY(-2px);
}
header .login-btn {
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
header .login-btn:hover {
  background-color: white;
  color: #171717;
  transform: translateY(-1px);
}
header .burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
header .burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
}
header dialog {
  display: none;
  width: 100%;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background-color: #171717;
  border: none;
  padding: 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  flex-direction: column;
  gap: 40px;
  color: white;
  box-sizing: border-box;
}
header dialog[open] {
  display: flex;
  animation: slideInMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
header dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
}
header dialog .dialog-header .logo {
  display: flex;
  align-items: center;
}
header dialog .dialog-header .logo img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
header dialog .dialog-header .logo span {
  font-size: 22px;
  letter-spacing: -0.5px;
}
header dialog .dialog-header .logo span b {
  font-weight: 700;
}
header dialog .dialog-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
}
header dialog nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
header dialog nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
header dialog nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 600;
}
header dialog nav .login-btn-mobile {
  width: 100%;
  border: 1px solid white;
  background: white;
  color: #171717;
  padding: 14px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

@keyframes slideInMenu {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.hero {
  padding: 160px 50px 60px 50px;
  text-align: center;
}
.hero .hero-text {
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero .hero-text p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.pricing-plans {
  padding: 40px 50px;
}
.pricing-plans h2 {
  display: none;
}
.pricing-plans .plan-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pricing-plans .plan-cards .card {
  background-color: #2B2B2B;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-plans .plan-cards .card:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}
.pricing-plans .plan-cards .card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}
.pricing-plans .plan-cards .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-plans .plan-cards .card p:nth-of-type(1) {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}
.pricing-plans .plan-cards .card p:nth-of-type(1) b {
  font-size: 36px;
  color: white;
  font-weight: 700;
  margin-right: 4px;
  letter-spacing: -1px;
}
.pricing-plans .plan-cards .card p:nth-of-type(2) {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  flex-grow: 1;
}
.pricing-plans .plan-cards .card button {
  width: 100%;
  border: none;
  background-color: white;
  color: #171717;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.pricing-plans .plan-cards .card button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.pricing-plans .plan-cards .card button:active {
  transform: scale(0.98);
}
.pricing-plans .plan-cards .card:nth-child(1) button, .pricing-plans .plan-cards .card:nth-child(3) button {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-plans .plan-cards .card:nth-child(1) button:hover, .pricing-plans .plan-cards .card:nth-child(3) button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.comparsion-table {
  padding: 60px 50px 100px 50px;
}
.comparsion-table .table-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #2B2B2B;
}
.comparsion-table .table-container::-webkit-scrollbar {
  height: 8px;
}
.comparsion-table .table-container::-webkit-scrollbar-track {
  background: #171717;
}
.comparsion-table .table-container::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}
.comparsion-table .comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 850px;
}
.comparsion-table .comparison-table th,
.comparsion-table .comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comparsion-table .comparison-table th {
  background-color: #2B2B2B;
  font-weight: 600;
  font-size: 16px;
  color: white;
}
.comparsion-table .comparison-table th:not(:first-child) {
  text-align: center;
  width: 22%;
}
.comparsion-table .comparison-table tbody tr {
  background-color: #1e1e1e;
  transition: background-color 0.2s ease;
}
.comparsion-table .comparison-table tbody tr:nth-child(even) {
  background-color: #171717;
}
.comparsion-table .comparison-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.comparsion-table .comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparsion-table .comparison-table tbody td {
  color: rgba(255, 255, 255, 0.75);
}
.comparsion-table .comparison-table tbody td strong {
  color: white;
  font-weight: 500;
}
.comparsion-table .comparison-table tbody td.center {
  text-align: center;
}

footer {
  background-color: #171717;
  color: white;
  padding: 80px 50px 40px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .logo img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .logo span {
  font-size: 24px;
  letter-spacing: -0.5px;
}
footer .logo span b {
  font-weight: 700;
}
footer .links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex-grow: 1;
  max-width: 850px;
}
footer .links .column h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .links .column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .links .column ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
footer .links .column ul li a:hover {
  color: white;
  transform: translateY(-2px);
}
footer .links p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  margin-top: 20px;
  grid-column: 1/-1;
}

@media (max-width: 1024px) {
  .pricing-plans .plan-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 24px;
  }
  .pricing-plans .plan-cards .card {
    padding: 32px 24px;
  }
  footer .footer-content {
    flex-direction: column;
    gap: 48px;
  }
  footer .links {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (max-width: 768px) {
  header {
    padding: 12px 24px;
  }
  header .desktop-nav,
  header .login-btn {
    display: none;
  }
  header .burger-icon {
    display: flex;
  }
  .hero {
    padding: 120px 24px 40px 24px;
  }
  .hero .hero-text h1 {
    font-size: 32px;
  }
  .pricing-plans,
  .comparsion-table,
  footer {
    padding: 30px 24px;
  }
  footer .links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  footer .links .column h4 {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
  }
}/*# sourceMappingURL=pricing-styles.css.map */