/* ------------------------------ General Layout ------------------------------ */
section {
  padding: calc(1.5 * var(--spacer-xl)) 0;
}

/* Global Reusable Tag */
.tag-accent {
  color: var(--c-accent);
  font: var(--sub-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

/* ------------------------------ Hero Section ------------------------------ */
.hero-section {
  background-image: radial-gradient(rgba(var(--c-primary-data), 0.25) 1px, transparent 1px), linear-gradient(to bottom, rgba(var(--c-primary-data), 0) 0%, rgba(var(--c-primary-data), 0.1) 100%);
  background-size: 35px 35px, auto;
  background-position: center center;
  -webkit-mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
}

.hero-centered-container {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-centered-container .hero-title {
  margin-top: 1rem;
}
.hero-centered-container .hero-description {
  margin: var(--spacer) auto 0;
}

/* ------------------------------ Pricing Plans ----------------------------- */
.plans-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacer-l);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 60rem) {
  .plans-container {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--c-primary);
  border-radius: var(--border-rad);
  padding: var(--spacer-l);
  color: var(--c-secondary);
  transition: transform 0.3s ease;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 35px 35px;
  background-position: center center;
}
.plan-card.featured-plan {
  outline: 4px solid var(--c-accent);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
@media (max-width: 60rem) {
  .plan-card.featured-plan {
    transform: scale(1);
  }
}

.plan-header {
  margin-bottom: var(--spacer-m);
}
.plan-header h2 {
  margin-bottom: 0.5rem;
}
.plan-header p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  min-height: 42px;
}

.price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffffff;
}
.price .currency {
  font-family: var(--ff);
  font-size: 1rem;
  opacity: 0.9;
}
.price .amount {
  font-size: 3.5rem;
  font-family: var(--ff-h1);
  font-weight: 700;
  line-height: 1;
}
.price .period {
  font-family: var(--ff);
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-placeholder {
  min-height: 56px; /* Matches the height of the $199 element */
}

.feature-category {
  margin-bottom: var(--spacer-m);
}
.feature-category .category-label {
  display: block;
  font: var(--sub-font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-secondary);
  margin-bottom: 1rem;
}
.feature-category .category-label.highlight {
  color: var(--c-accent);
}
.feature-category ul {
  list-style: none;
  padding: 0;
}
.feature-category ul li {
  font-family: var(--ff);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.feature-category ul li img {
  width: 14px;
  filter: brightness(0) invert(1);
}

.bonus-feature {
  padding: var(--spacer);
  border-radius: 12px;
  border: 1px dashed var(--c-accent);
  background: rgba(184, 139, 74, 0.05);
}
.bonus-feature h4 {
  color: var(--c-secondary);
  margin-bottom: 0.25rem;
}
.bonus-feature p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.4;
}

.plan-card .primary-button,
.plan-card .secondary-button {
  width: 100%;
  text-align: center;
  margin-top: var(--spacer);
}

.plan-footer {
  text-align: center;
  margin-top: var(--spacer-l);
}
.plan-footer h3 a {
  color: var(--c-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.plan-footer h3 a:hover {
  opacity: 0.7;
}

/* ----------------------------------- Software Spotlight ---------------------------------- */
.software-spotlight {
  background-color: rgba(var(--c-metal2-data), 0.3);
}

.spotlight-container {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: var(--spacer-xl);
  align-items: center;
}
@media screen and (max-width: 60rem) {
  .spotlight-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.spotlight-text h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.spotlight-text .spotlight-description {
  font: var(--p-font);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.spotlight-list {
  list-style: none;
  padding: 0;
}
.spotlight-list li {
  font-family: var(--ff);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.85;
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 60rem) {
  .spotlight-list li {
    text-align: left;
  }
}
.spotlight-list li img {
  width: 1.2rem;
  margin-top: 3px;
  filter: invert(53%) sepia(30%) saturate(697%) hue-rotate(345deg) brightness(96%) contrast(89%);
}
.spotlight-list li span {
  display: block;
  line-height: 1.5;
}

.spotlight-btn {
  margin-top: 1rem;
}

.spotlight-image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.spotlight-mockup {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--border-rad);
  border: 1px solid rgba(var(--c-black-data), 0.08);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15), 0 5px 15px -3px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: rotateY(-8deg) rotateX(1deg);
  backface-visibility: hidden;
}
.spotlight-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
  box-shadow: 0 25px 45px -5px rgba(0, 0, 0, 0.2), 0 10px 20px -3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 60rem) {
  .spotlight-mockup {
    max-width: 400px;
    transform: rotateY(0deg) rotateX(0deg);
    margin-top: var(--spacer-m);
  }
}

/* ----------------------------------- FAQ ---------------------------------- */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.faq-wrapper h2 {
  text-align: center;
  margin-bottom: var(--spacer-m);
}

div.faq-section-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--c-metal2);
}

.faq-question {
  font: var(--h4-font);
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--c-primary);
  padding: var(--spacer-m) 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.faq-question:hover {
  opacity: 0.6;
}

.faq-question img {
  height: 1.25rem;
  width: auto;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  stroke: var(--c-accent);
}

.faq-answer {
  text-align: left;
  font: var(--p-font);
  width: 100%;
  color: var(--c-primary);
  opacity: 0.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question.open img {
  transform: rotate(45deg);
}

.faq-question.open + .faq-answer {
  max-height: 15rem;
  padding-bottom: var(--spacer-m);
}/*# sourceMappingURL=styles_solutions.css.map */