/* --- Value Stack (Checklist) --- */
.value-stack {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #ff6600; /* Fly Fitness Orange */
}

.value-stack h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.value-stack ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-stack li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
}

.value-stack li i {
    color: #27ae60; /* Green checkmark */
    margin-top: 3px;
}

/* --- Trust Strip (Under Button) --- */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #666;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    fill: #666;
}

/* --- FAQ Accordion (Bottom of page) --- */
.signup-faq {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #eee;
}

/* --- Shared Accordion Styles --- */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-button.open .accordion-arrow {
    transform: rotate(180deg);
}

/* --- Valid Input Feedback --- */
input[aria-invalid="false"]:not([type="checkbox"]):not([type="radio"]) {
    border-color: #10B981 !important; /* green-500 */
    background-color: #f0fdf4; /* green-50 */
}

input[aria-invalid="false"]:not([type="checkbox"]):not([type="radio"]):focus {
    --tw-ring-color: #10B981; /* green-500 */
    border-color: #10B981 !important;
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}
