@font-face {
  font-family: 'Open Sauce';
  src: url('../fonts/open-sauce.one-light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Open Sauce';
  src: url('../fonts/open-sauce.one-regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Open Sauce';
  src: url('../fonts/OpenSauceSans-Bold.ttf') format('truetype');
  font-weight: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sauce', sans-serif;
  color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /*overflow: hidden;*/
}

.container {
  display: flex;
  gap: 2px;
  justify-content: center; 
}

.grainy-square {
  width: 18px;
  height: 18px;
  background-color: #111;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.navbar {
  width: 100%;
  padding: 36px 0;
  display: flex;
  justify-content: center; 
  align-items: center;
  position: relative;
  gap: 800px; 
}

.logo {
  font-size: 20px;
  font-weight: 400;
}

.navbar-actions {
  display: flex;
  gap: 3px;
  align-items: center;
}

.nav-btn1 {
  padding: 6px 13px;
  font-size: 14px;
  border: 1px solid black;
  background-color: black;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Open Sauce', sans-serif;
}

.nav-btn2 {
  padding: 6px 13px;
  font-size: 14px;
  border: 1px solid #d1d1d1;
  background-color: white;
  color: black;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Open Sauce', sans-serif;
}

.baseline-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 16px;
}

.baseline-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.fixed-center-section {
  text-align: center;
  padding: 60px 40px;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 44px;
}

.cta-btn {
  font-family: 'Open Sauce', sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.cta-btn.primary {
  background-color: black;
  color: white;
  border-color: black;
}

.cta-btn.secondary {
  background-color: white;
  color: black;
  border-color: #d1d1d1;
}

.features-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 7px;
}

.features-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.why-jsheet-section {
  padding: 0px 40px; 
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 32px;
  max-width: 1100px;
  margin-inline: auto;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 12px;
}

.why-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-icon {
  width: 16px;
  height: 16px;
  background-color: black;
  border-radius: 3px;
  flex-shrink: 0;
}

.why-title {
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.why-desc {
  font-size: 16px;
  color: black;
  margin-top: 10px;
  line-height: 1.6;
}

.pricing-section {
  padding: 60px 40px; 
  text-align: center;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 7px;
}

.pricing-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  border: 1px solid #d9d9d9;
  padding: 32px;
  width: 280px;
  border-radius: 8px;
  text-align: center;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid black;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  background-color: #fafafa;
}

.pricing-card:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.plan-badge {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  background: black;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: black;
}

.plan-duration {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 34px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 14px;
  padding: 15px 0;
  border-top: 1px solid #d9d9d9;
}

.plan-features li:first-child {
  border-top: none;
}

a {
  color: inherit; 
  text-decoration:none; 
}

.sub-detail {
  font-size: 12px;
  color: #777;
}

.plan-btn {
  padding: 10px;
  border: 1px solid black;
  background-color: white;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Open Sauce', sans-serif;
  margin-top: auto;
}

.plan-btn.featured-btn {
  background-color: black;
  color: white;
}

.main-footer {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 800px; 
  font-size: 14px;
  z-index: 100;
  margin-top: 60px;
}

.main-footer .logo {
  font-size: 12px;
  font-weight: 400;
}

.footer-right {
  font-weight: 700;
}
