/* --- WELCOME SCREEN --- */
.welcome-screen {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 20px 20px;
    background: white;
}

.welcome-content {
    text-align: center;
    width: 100%;
}

.welcome-content h1 {
    font-size: 2.2rem;
    color: #7b3fb3;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.welcome-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.welcome-content p:last-of-type {
    margin-bottom: 40px;
    font-weight: 600;
}

.start-btn {
    background: linear-gradient(135deg, #a04dcf 0%, #7b3fb3 100%);
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(160, 77, 207, 0.3);
    margin-top: 10px;
}

.start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 77, 207, 0.4);
    background: linear-gradient(135deg, #8e42b8 0%, #6a2f9a 100%);
}

/* --- TOP SECTION --- */
.top-section {
    height: 33%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.top-section h3 {
	color:#232323
}

.progress-bar {
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 60%;
    position: relative;
    height: 8px;
}

.progress-track {
    flex: 1;
    height: 8px;
    background: #e0cfe7;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #7b3fb3;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Diamond star for section ends */
.section-diamond {
    width: 14px;
    height: 14px;
    background: #e0cfe7;
    transform: rotate(45deg);
    position: absolute;
    z-index: 2;
    border: 2px solid white;
    margin-left: -7px;
}

.section-diamond.completed {
    background: #7b3fb3;
}

/* Add a star shape inside diamond for completed sections */
.section-diamond.completed::after {
    content: "★";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    color: white;
    font-size: 7px;
    line-height: 1;
}

/* --- MIDDLE SECTION --- */
.question-section {
    position: fixed;
    top: 33%;
    bottom: 90px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: auto;
}

.question-section h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
	text-transform: capitalize;
}

.option-btn {
    padding: 12px 20px;
    margin: 8px 0;
    border-radius: 8px;
    cursor: pointer;
    background: white;
    border: 2px solid #a04dcf;
    color: #a04dcf;
    width: 250px;
    text-align: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.option-btn:hover {
    background: #f5e6ff;
}

.option-btn.selected {
    background: #a04dcf;
    color: white;
    box-shadow: 0 4px 12px rgba(160, 77, 207, 0.3);
    border-color: #a04dcf;
}

/* Next button for multiple choice questions */
.next-btn {
    background: #7b3fb3;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.next-btn:hover {
    background: #6a2f9a;
}

.next-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Info screen styling */
.info-content {
    max-width: 600px;
    text-align: left;
    line-height: 1.6;
}

.info-content h2 {
    color: #7b3fb3;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.info-content p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1rem;
}

.info-content strong {
    color: #7b3fb3;
    font-weight: 600;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* Form screen styling - Updated to match other questions */
.form-content {
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 0;
}

.form-content h2 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #a04dcf;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #7b3fb3;
    box-shadow: 0 0 0 3px rgba(123, 63, 179, 0.1);
    background: #f5e6ff;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #a04dcf;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-select:focus {
    outline: none;
    border-color: #7b3fb3;
    box-shadow: 0 0 0 3px rgba(123, 63, 179, 0.1);
    background: #f5e6ff;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-row .form-group.weight {
    flex: 0 0 120px;
}

.form-row .form-group.height-ft {
    flex: 0 0 80px;
}

.form-row .form-group.height-in {
    flex: 0 0 100px;
}

.unit-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: center;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.nav-btn {
    background: #92e392;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
}

/* Pricing section styling */
.pricing-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* align left like in the image */
    font-family: Arial, sans-serif;
    line-height: 1.8;
    font-size: 1rem;
    color: #222;
}

.pricing-content h2 {
    color: #000;
    text-align: center; /* keep heading centered */
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table {
    margin: 15px 0;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.pricing-row {
    display: flex;
    justify-content: flex-start;
    gap: 6%;
    padding: 6px 0;
    border: none;
    font-size: 1rem;
}

.pricing-row .label {
    flex: 0 0 220px; /* fixed width so values align in one column */
    font-weight: 400;
    color: #000;
	position: relative;
}

.pricing-row .colon {
    flex: 0 0 auto;
    padding: 0 10px;
    text-align: center;
    font-weight: normal;
    color: #000;
}

.pricing-row .value {
    font-weight: 500;
    color: #000;
}

.pricing-row .value small {
    display: block;
    margin-top: 4px;
    color: #444;
    font-size: 0.9rem;
}

.pricing-cancel {
    margin-top: 10px;
	font-size: 0.95rem;
    color: #555;
}

.pricing-note {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

.pricing-note strong {
    color: #000;
    font-weight: 600;
}

.trial-acknowledgment {
    margin: 25px 0 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: #000;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
    cursor: pointer;
}

.trial-terms {
    margin-top: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

.trial-terms h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

.trial-terms ul {
    padding-left: 20px;
    list-style: disc;
    margin-top: 10px;
}

.trial-terms ul li {
    margin-bottom: 8px;
}
