/* Common Elements Styles */


/* Hero Styles */

.pricing-hero {
    max-width: 115rem;
    margin-top: 8rem;
    margin-inline: auto;
    text-align: center;
    padding: 0 2rem;
}

.pricing-hero h1 {
    font-size: 5.4rem;
    font-weight: 700;
    color: var(--brightText);
    line-height: 6rem;
    letter-spacing: -0.01rem;
    margin-bottom: 2.5rem;
}

.pricing-hero h2 {
    font-size: 2.0rem;
    font-weight: 500;
    color: var(--subheadText);
    line-height: 2.4rem;
    margin-bottom: 3.2rem;
}

.trial-terms {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
    margin-top: 4rem;
    color: var(--subheadText);
    flex-wrap: wrap;
}
.trial-terms .check {
    color: var(--solGreen);
    font-weight: 700;
}

/* Plan Section Styles */

.plan-section {
    max-width: 120rem;
    width: 100%;
    margin: 4rem auto 8rem;
    padding: 0 4rem;
}

/* Toggle Styles */
.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-size: 1.4rem;
    color: var(--mutedText);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.2s;
}

.toggle-label.active { color: #ffffff; }

.toggle-switch {
    width: 4.4rem;
    height: 2.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}

.toggle-switch.on { background: var(--solGreen); }

.toggle-thumb {
    position: absolute;
    width: 1.8rem;
    height: 1.8rem;
    background: #ffffff;
    border-radius: 50%;
    top: 0.3rem;
    left: 0.3rem;
    transition: transform 0.2s;
}

.toggle-switch.on .toggle-thumb { transform: translateX(2.0rem); }

.save-badge {
    background: rgba(0, 175, 170, 0.2);
    color: var(--solGreen);
    font-size: 1.1rem;
    font-weight: 600;
    padding: .2rem .7rem;
    border-radius: 20px;
}

/* Plan Cards */
.plan-card-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    max-width: 125rem;
    margin: 0 auto 8rem;
    align-items: stretch;
}

.plan-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    background: rgba(0, 175, 170, 0.15);
    border-color: rgba(0, 175, 170, 0.45);
    box-shadow: 0 0 4rem rgba(0, 175, 170, 0.07);
}

.plan-badge {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--solGreen);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    padding: .3rem 1.4rem;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name {
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.plan-desc {
    font-size: 1.6rem;
    color: var(--primaryText);
    line-height: 1.45;
    height: 6.5rem;
    margin-bottom: 2rem;
}

.price-wrap {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    margin-bottom: 2rem;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: .4rem;
}

.price {
    font-size: 3.2rem;
    font-weight: 600;
    color: #ffffff;
}

.billing-term  { font-size: 1.2rem; color: var(--mutedText); }

/* .price-period { font-size: 1.2rem; color: var(--mutedText); } */

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
    color: #adb5bd;
}

.card-features li {
    padding: .7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: .8rem;
}

.card-features li::before {
    content: '✓';
    color: var(--solGreen);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cta-btn-feature-try {
    display: block;
    text-align: center;
    padding: 1rem 1.6rem;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2.2rem;
    margin-top: 2rem;
    transition: opacity 0.2s;
    cursor: pointer;
    border-color: var(--solPink); 
    border: 2px;
    background-color: var(--solPink);
    color: #ffffff;
}
.cta-btn-feature-try:hover { 
    border-color: var(--solPink); 
    border: 2px;
    background-color: #ffffff;
    color: var(--solPink); 
}

.cta-primary {
    background: var(--solGreen);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.40);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.40);
}

.pricing-disclaimer {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primaryText);
    margin-bottom: 0;
}

.pricing-disclaimer-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

/* Comparison Styles */
.comp-section {
    max-width: 120rem;
    width: 100%;
    margin: 0rem auto 0rem; 
    padding: 2rem 1rem 5rem 1rem;
    margin-top:6rem;
}


.comparison-wrap  { overflow-x: auto; }

.comparison-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--brightText);
    text-align: center;
    margin-bottom: 2.8rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
}

.comparison-table thead th {
    padding: 1.2rem 1.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--brightText);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.comparison-table thead th.feature-col {
    text-align: left;
    width: 40%;
}

.comparison-table thead th:not(.feature-col) {
    /* width: calc(60% / 2); */
    width: 60%;
}

.comparison-table thead th.feat { color: var(--solGreen); background: rgba(0, 175, 170, 0.20); }

.comparison-table tbody td {
    padding: 0.75rem 1.125rem;
    text-align: center;
    color: var(--primaryText);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table tbody td:first-child,
.comparison-table tbody th {
    text-align: left;
    color: var(--brightText);
    font-weight: 500;
    padding: 0.75rem 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table tbody td.feat { background: rgba(0, 175, 170, 0.20); }

.comparison-table th[scope="row"] .feature-desc {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--subheadText);
    margin-top: 0.1rem;
    line-height: 1.4rem;
}

.cta-row tr {
    border: none;
}

.cta-row td {
    padding: 2rem 1.8rem;
    border-bottom: none;
}

.cta-row .cta-btn { display: block; margin: 0; }

.check {
    color: var(--solGreen);
    font-size: 1.5rem;
    font-weight: 600;
}

.dash {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}





/* Mobile Styles */

@media (max-width: 768px) {
    .pricing-hero h1 {font-size: 3.6rem; line-height: 4.2rem;}
    .pricing-hero h2 {font-size: 1.8rem; line-height: 2.2rem;}
    .pricing-hero {margin-top: 4rem;}
    .trial-terms {gap: 0.8rem; margin-top: 1.2rem;}
    .plan-card-group { grid-template-columns: 1fr; }
    .plan-section { padding: 0 2rem; }


}

@media (max-width: 560px) {
    .plan-card-group { grid-template-columns: 1fr; }
    .plan-section { padding: 0 2rem; }

}

