:root {
  --primary: #3b82f6; /* blue-500 */
  --primary-dark: #2563eb; /* blue-600 */
  --soft-blue: #dbeafe;
  --gray-100: #f9fafb;
  --gray-200: #f3f4f6;
  --gray-300: #e5e7eb;
  --gray-600: #4b5563;
  --text: #111827;
}

body {
  background-color: #f9fafb;
  color: var(--text);
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.global-padding {
  padding: 0px 20px;
}
h1, h2, h3 {
  font-family: Space Grotesk;
}
p, ul {
  font-family: Inter, sans-serif;
}
/* navbar start */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  position: relative;
  z-index:10;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

/* ul .navbar {
  list-style-type: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0 auto;
} */

.nav-link {
  display: inline;
  float: left;
}

.nav-link a {
  display: block;
  text-align: center;
  text-decoration: none;
  color:#1e3a8a;
  font-size: 12px;
  padding: 14px 16px;
  font-family: Inter;
  transition: color 0.2s ease;
}

.nav-link a:hover,
.nav-link a:focus {
  color: #3b82f6; /* primary blue */
  font-weight: 500;
}

.nav-link button,
.desktop-signin {
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
}
.desktop-signin {
  display: block;
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.desktop-signin:hover {
  background-color: #2563eb;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}

.mobile-signin {
  display: none;
  align-self: center;
  background-color: #3b82f6;
  color: white;
  border: none;
  padding:  5px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.hamburger {
  display: none;
  font-size: 36px;
  cursor: pointer;
  color: #1e40af;
}
/* navbar end */
.spacer-2 {
  height: 2em;
}
.spacer-4 {
  height: 4em;
}
.spacer-8 {
  height: 8em;
}
.heading-container {
  display: flex;
  justify-content: center;
}

.heading {
  text-align: center;
}

.pill-container {
  display: flex;
  justify-content: center;
}
.toggle-pill {
  position: relative;
  display: inline-flex;
  background-color: var(--soft-blue);
  border-radius: 9999px;
  padding: 4px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #1e3a8a;
  cursor: pointer;
  width: 160px;
  justify-content: space-between;
  align-items: center;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);

}

.pill-option {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  z-index: 2;
  transition: color 0.3s ease;
  border-radius: 9999px;
}

.pill-option.active-toggle {
  color: var(--gray-600);
  font-weight: bold;
}

.pill-highlight {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: 48%;
  background: #fff;
  border-radius: 9999px;
  z-index: 1;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* card start */
.card-container {
  display: flex;
  flex-direction: row;
  gap: 1.2em;
  justify-content: center;
}
.card-box {
  background-color: #fff;
  border: 1px solid (--gray-300);
  width: 300px;
  padding: 40px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  gap: 1.5em;
}

.card-box:hover {
  box-shadow: 0 8p 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.card-button {
  display: inline-block;
  margin-top: auto;
  background-color: #3b82f6;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.card-button:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.card-content p {
  max-width: 75%;
  padding-bottom: 1em;
}
.plan-type {
  font-family: Space Grotesk;
  font-size: 18px;
  font-weight: bold;
}
.strong {
  font-weight: bold;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center; /* ✅ fixes the vertical misalignment */
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
}

.feature-list li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.card-box.growth {
  border: 2px solid var(--primary);
  background-color: #eff6ff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}
.icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}
/* faqs accordion */

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* This aligns children horizontally */
  text-align: center;
  width: 100%;
}
.accordion-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: .5em;
}
.accordion {
  background-color: var(--gray-100);
  border: none;
  color: var(--text);
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  cursor: pointer;
  padding: 18px;
  text-align: left;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: 0.4s;
  width: 100%;
  max-width: 600px;
}
.accordion:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  background-color: var(--gray-200);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
  font-size: 14px;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  color: white;
  border-radius: 24px;
  padding: 60px 20px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.cta-section button {
  background-color: white;
  color: #1e3a8a;
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.15);
}

.cta-section button:hover {
  background-color: #e0e7ff;
  transform: translateY(-2px);
}

.cta-content {
  text-align: center;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
}


@media only screen and (max-width: 992px) {
  
}
/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .desktop-signin {
    display: none;
  }
  .mobile-signin {
    display: block;
  }
  .navbar.show {
    z-index: 6;
  }

  ul.navbar {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    display: none;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  ul.navbar.show {
    display: flex;
  }

  .nav-link a {
    text-align: center;
    font-size: 16px;
  }

  .card-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
}

@media only screen and (min-width: 600px) {
  
}

@media (max-width: 350px) {
  .card-box {
    width: 250px;
  }
}
