.pricing-page {
    padding: clamp(44px, 6vw, 44px) 0;
    background: #fff;
}

.pricing-page .sec-title {
    margin-bottom: 1.7rem;
}

.pricing-page .sec-title h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #170b35;
    text-wrap: balance;
    text-align: center;
}

.pricing-page .sec-title .sec-title__subtitle {
    margin: 14px auto 0;
    max-width: 760px;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.65;
    color: #5b6476;
    text-wrap: pretty;
    text-align: center;
}

.pricing-benefits {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pricing-benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #d7ddd1;
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    color: #334155;
    font-size: 0.84rem;
}

.pricing-benefit-item svg {
    color: #273b09;
    flex-shrink: 0;
}

.pricing-toggle {
    margin: 1.4rem auto 2.2rem;
    max-width: 560px;
    background: #f5f7f3;
    border: 1px solid #d7ddd1;
    border-radius: 18px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pricing-toggle__option {
    border: 1px solid #d7ddd1;
    border-radius: 12px;
    background: #fff;
    color: #334155;
    padding: 11px 14px;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.pricing-toggle__option span {
    display: block;
    font-weight: 700;
}

.pricing-toggle__option small {
    display: block;
    margin-top: 2px;
    color: #64748b;
}

.pricing-toggle__option.is-active {
    background: #273b09;
    color: #fff;
    border-color: #273b09;
}

.pricing-toggle__option.is-active small {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-toggle__hint {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #5b6b45;
    font-size: 0.82rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.plan-card {
    position: relative;
    border-radius: 15px;
    background: #e8e6e6;
    padding: 4px 4px 18px;
    display: flex;
    flex-direction: column;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 13px;
    background: #fff;
}

.plan-card > * {
    position: relative;
    z-index: 1;
    margin-left: 17px;
    margin-right: 17px;
}

.plan-card__header {
    margin-top: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef2e8;
}

.plan-card--highlight {
    background: #273b09;
    margin-top: -14px;
}

.plan-card--highlight::before {
    inset: 5px;
}

.plan-card__tag {
    align-self: flex-start;
    margin-top: 10px;
    margin-bottom: 0.6rem;
    border-radius: 999px;
    background: #273b09;
    color: #fff;
    padding: 3px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.plan-card__name {
    font-size: 1.26rem;
    font-weight: 600;
    color: #170b35;
    line-height: 1.25;
}

.plan-card__subtitle {
    margin-top: 6px;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.35;
}

.plan-card__price {
    margin-top: 14px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e3e9dc;
}

.plan-card__price-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.plan-card__price-value {
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 500;
    color: #170b35;
    letter-spacing: -0.02em;
}

.plan-card__price-suffix {
    font-size: 0.95rem;
    color: #64748b;
}

.plan-card__vat {
    margin: 10px 0 0;
    font-size: 0.8rem;
    color: #7c8599;
}

.plan-card__note {
    margin-top: 12px;
    margin-bottom: 0;
    color: #273b09;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.35;
}

.plan-card__description {
    margin-top: 10px;
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.5;
    font-size: 0.9rem;
}

.plan-card__discount,
.pricing-table__discount {
    background: #d0e562;
    color: #273b09;
    border-radius: 999px;
    font-size: 0.7rem;
    padding: 2px 8px;
    font-weight: 700;
}

.plan-card__cta,
.pricing-table__cta {
    margin-top: auto;
}

.plan-card__cta.thm-btn_v1,
.pricing-table__cta.thm-btn_v1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    border: 1px solid #273b09;
    background: #273b09;
    color: #fff;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.plan-card__cta.thm-btn_v1:hover,
.pricing-table__cta.thm-btn_v1:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(39, 59, 9, 0.2);
}

.plan-card__cta.thm-btn_v1:not(.popular),
.pricing-table__cta.thm-btn_v1:not(.popular) {
    background: #fff;
    color: #273b09;
}

.plan-card__cta.thm-btn_v1:not(.popular):hover,
.pricing-table__cta.thm-btn_v1:not(.popular):hover {
    background: #273b09;
    color: #fff;
}

.plan-card__cta.thm-btn_v1 {
    width: auto;
    margin-top: 2px;
}

.pricing-table__cta.thm-btn_v1 {
    width: 100%;
}

.pricing-comparison {
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.pricing-table {
    width: 100%;
    min-width: 840px;
    background: #fff;
    border: 1px solid #dbe4d1;
    border-radius: 14px;
    overflow: hidden;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 13px 12px;
    border-bottom: 1px solid #edf2e8;
    border-right: 1px solid #edf2e8;
    vertical-align: middle;
}

.pricing-table tr > *:last-child {
    border-right: 0;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td,
.pricing-table tfoot tr:last-child th,
.pricing-table tfoot tr:last-child td {
    border-bottom: 0;
}

.pricing-table__group th {
    background: #f2f7ed;
    color: #273b09;
    font-weight: 700;
}

.pricing-table thead th {
    background: #f8faf6;
    color: #1f2937;
    font-weight: 700;
    border-bottom: 1px solid #e6ecdf;
}

.pricing-table thead th:first-child {
    min-width: 270px;
    text-align: left;
}

.pricing-table thead th:not(:first-child),
.pricing-table tbody td,
.pricing-table tfoot td {
    text-align: center;
}

.pricing-table tbody th[scope="row"] {
    color: #374151;
    font-weight: 500;
    text-align: left;
}

.pricing-table__plan {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #273b09;
    margin-bottom: 4px;
}

.pricing-table__plan-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.pricing-table__plan-price-value {
    font-size: 1.15rem;
    color: #111827;
    font-weight: 700;
}

.pricing-table__plan-price-suffix {
    color: #6b7280;
    font-size: 0.75rem;
}

.pricing-table__text {
    color: #374151;
    font-weight: 500;
}

.pricing-table__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
}

.pricing-table__check.is-true {
    background: #e7f5de;
    color: #273b09;
}

.pricing-table__check.is-false {
    background: #fef0f0;
    color: #b91c1c;
}

.pricing-table__cta-row th {
    background: #f8faf6;
    color: #273b09;
    font-weight: 700;
    text-align: left;
}

.pricing-table__cta {
    min-height: 40px;
    padding: 10px 10px;
    font-size: 0.82rem;
}

.pricing-page__footnote {
    border: 1px solid #dbe4d1;
    border-radius: 16px;
    background: #f8faf6;
    padding: clamp(20px, 3vw, 32px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

.pricing-page__footnote-content h3 {
    margin: 0 0 10px;
    color: #170b35;
    font-size: clamp(1.2rem, 2.1vw, 1.55rem);
}

.pricing-page__footnote-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.pricing-faq-item {
    background: #fff;
    border: 1px solid #e3e9dc;
    border-radius: 12px;
    padding: 10px 12px;
}

.pricing-faq-item strong {
    display: block;
    color: #273b09;
    font-size: 0.92rem;
    line-height: 1.35;
    margin-bottom: 4px;
}

.pricing-faq-item p {
    margin: 0;
    color: #4b5563;
    font-size: 0.86rem;
    line-height: 1.5;
}

.pricing-page__footnote-text {
    margin: 2px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 62ch;
    text-align: center;
}

.pricing-page__footnote-cta {
    margin-top: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: clamp(26px, 4vw, 40px) 16px;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(208, 229, 98, 0.18) 0%, rgba(208, 229, 98, 0) 55%),
        linear-gradient(145deg, #1e2f07 0%, #273b09 45%, #314b0c 100%);
}

.pricing-page__footnote-cta-inner {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pricing-page__footnote-cta .start_80.thm-btn_v1 {
    min-width: 220px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 25px;
    border: 1px solid #d0e562;
    background: #d0e562;
    color: #273b09;
    text-decoration: none;
    box-sizing: border-box;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    margin-left: auto;
    margin-right: auto;
    font-weight: bolder;
}

.pricing-page__footnote-cta .start_80.thm-btn_v1:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(39, 59, 9, 0.28);
    background: #c4db54;
    border-color: #c4db54;
}

@media (max-width: 991px) {
    .plan-card--highlight {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .pricing-page {
        padding: 28px 0;
    }

    .pricing-page .sec-title .sec-title__subtitle {
        margin-top: 12px;
        max-width: 100%;
    }

    .plan-card__price-value {
        font-size: 2.5rem;
    }

    .pricing-table {
        min-width: 760px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }

    .pricing-page__footnote {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pricing-page__footnote-cta .start_80.thm-btn_v1 {
        width: 100%;
        min-width: 0;
    }

    .pricing-page__footnote-cta-inner {
        max-width: 100%;
    }
}
