.plans-hero {
    background: linear-gradient(180deg, #E6F7F9 0%, #FFFFFF 100%);
    padding: 80px 32px 60px;
    text-align: center;
}
.plans-hero h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: #012D2D;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.plans-hero p {
    font-size: 18px;
    color: #3E464E;
    max-width: 600px;
    margin: 0 auto;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px auto 0;
    background: #F8FAFB;
    border-radius: 50px;
    padding: 6px;
    width: fit-content;
}
.plans-tab {
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #3E464E;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
}
.plans-tab.active {
    background: #00797F;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 121, 127, 0.25);
}

.plans-section {
    background: #FFFFFF;
    padding: 60px 32px 100px;
}
.plans-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.plan-card {
    background: #FFFFFF;
    border: 2px solid rgba(1, 45, 45, 0.08);
    border-radius: 24px;
    padding: 48px 36px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(1, 45, 45, 0.1);
}
.plan-card.featured {
    border-color: #00797F;
    background: linear-gradient(180deg, #FFFFFF 0%, #E6F7F9 100%);
    box-shadow: 0 12px 40px rgba(0, 121, 127, 0.15);
}
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00797F;
    color: #FFFFFF;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #006066;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.plan-title {
    font-size: 28px;
    font-weight: 700;
    color: #012D2D;
    margin-bottom: 8px;
}
.plan-price {
    margin: 24px 0 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: #012D2D;
}
.plan-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: #012D2D;
    line-height: 1;
    letter-spacing: -0.02em;
}
.plan-price .period {
    font-size: 16px;
    color: #3E464E;
    font-weight: 500;
}
.plan-save {
    color: #00797F;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.plan-original {
    color: #8B95A1;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 24px;
}
.plan-desc {
    color: #3E464E;
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    flex: 1;
}
.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(1, 45, 45, 0.06);
    color: #012D2D;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.plan-features li:last-child {
    border-bottom: none;
}
.plan-features li::before {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: #D5F6FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-features li::after {
    content: "✓";
    color: #00797F;
    font-weight: 700;
    font-size: 12px;
    position: absolute;
    margin-left: 4px;
    margin-top: 0;
}
.plan-features li {
    position: relative;
    padding-left: 0;
}
.plan-features li > .check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: #D5F6FA;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00797F;
    font-size: 12px;
    font-weight: 700;
}
.plan-btn {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: #F0F9FA;
    color: #00797F;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-align: center;
}
.plan-btn:hover {
    background: #00797F;
    color: #FFFFFF;
}
.plan-card.featured .plan-btn {
    background: #00797F;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 121, 127, 0.25);
}
.plan-card.featured .plan-btn:hover {
    background: #006066;
    transform: translateY(-2px);
}

.plans-compare {
    background: #F8FAFB;
    padding: 100px 32px;
}
.plans-compare-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.compare-table {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(1, 45, 45, 0.06);
}
.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(1, 45, 45, 0.06);
}
.compare-row:last-child {
    border-bottom: none;
}
.compare-row.header {
    background: linear-gradient(180deg, #00797F 0%, #006066 100%);
}
.compare-row.header .compare-cell {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 24px;
}
.compare-cell {
    padding: 20px 24px;
    font-size: 15px;
    color: #012D2D;
    display: flex;
    align-items: center;
}
.compare-cell.feature-name {
    font-weight: 500;
}
.compare-cell.center {
    justify-content: center;
}
.check-mark {
    color: #00797F;
    font-size: 18px;
    font-weight: 700;
}
.dash-mark {
    color: #C7CED6;
    font-size: 18px;
}

.plans-faq {
    background: #FFFFFF;
    padding: 100px 32px;
}
.plans-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .compare-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    .compare-cell {
        padding: 14px 12px;
        font-size: 13px;
    }
    .compare-row.header .compare-cell {
        padding: 14px 12px;
        font-size: 13px;
    }
}
