/* Layout Containers */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-hero {
  margin-top: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: var(--fs-xl) 0;
}

/* Card Base Styling */
.card {
    background: white;
    border: 1px solid var(--color-soft-gray-dark);
    border-radius: 12px;
    padding: var(--fs-md);
    display: flex;
    flex-direction: column;
}


/* Ensure the content area fills the space and pushes the footer down */
.card-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures it fills the card height */
    flex-grow: 1;
}

/* This is the magic: pushes everything in the footer to the bottom */
.card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.heading-note {
  font-size: var(--fs-sm);
  font-weight: 300;
}

/* Brand Accents */
.standard-card { border-top: 8px solid var(--color-teal); }
.training-card { border-top: 8px solid var(--color-orange); }
.access-card { border-top: 8px solid var(--color-red); }

/* Typography usage */
.price-tag {
    font-size: var(--fs-xxl);
    font-weight: 800;
    color: var(--color-dark-blue);
    margin: 0.5rem 0;
}

/* Renamed Badge/Callout Styling */
.info-callout {
    background-color: var(--color-dark-teal-faint);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--color-teal);
    font-size: var(--fs-sm);
    margin: 1rem 0;
}
/* Buttons */
.cta-button, .secondary-button {
    display: block; /* Ensures they take full width in the footer */
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
}

.cta-button {
    background-color: var(--color-teal);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
}

.secondary-button {
    background-color: var(--color-soft-gray);
    color: var(--color-dark-blue);
    padding: 0.8rem;
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--color-soft-gray-dark);
}



/* Specific adjustment for the Capacity Notice to ensure it's distinct */
.capacity-notice {
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    background-color: #ffffff; /* Clean white background */
    border: 1px solid var(--color-soft-gray-dark);
    border-left: 4px solid var(--color-orange); /* Keeps the training link */
    border-radius: 8px;
}

/* Ensure the Ethics Footer matches the soft look */
.ethics-footer {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fcfcfc; /* Barely-there gray */
    border-radius: 8px;
    border: 1px solid var(--color-soft-gray);
}

.capacity-notice h3 {
    margin-top: 0;
    color: var(--color-dark-blue);
}

/* Responsive Table */
.discount-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.discount-table th, .discount-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--color-soft-gray-dark);
}