* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
  --pri-color: #05361a;
  --sec-color: #aad13f;
  --acc-color: #B6DB8C;
  --linear-grd: linear-gradient(270deg, #05361a 0%, var(--pri-color) 100%);
  --linear-grd-light: linear-gradient(270deg, #094f26 0%, var(--pri-color) 100%);
  --shadow-main: box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  --grey-txt-color: #707070;
  --body-bg-color: #f5f5f5;
  --black-txt-color: #1d1d1d;
}

body {
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-family: "Anek Gujarati", sans-serif;
    position: relative;
}

.button {
    padding: 10px 18px;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    border: none;
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}

.button-main {
    background-color: var(--sec-color);
    color: var(--pri-color);
}

.button-main:hover {
    background-color: white;
}

.button-sec {
    background: none;
    border: 1.5px solid var(--pri-color);
    color: var(--pri-color);
}

.button-sec:hover {
    background: var(--acc-color);
    color: var(--pri-color);
}
.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price-hero {
    display: flex;
    margin-top: 120px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-copy h1 {
    font-size: 56px;
    font-weight: 500;
    color: var(--pri-color);
    line-height: 1.2;
    margin-bottom: 10px;
}
.hero-copy p {
    color: grey;
}

.hero-copy {
    margin-bottom: 50px;
}
.highlight {
    text-decoration: underline;
    text-decoration-color: var(--sec-color);
    text-decoration-thickness: 10px;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
}

.price-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.price-shell {
    width: 100%;
    max-width: 920px;
    padding: 0 20px;
    margin: 0 auto;
}

.price-controls {
    display: flex;
    justify-content: center;
}

.pricing-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.toggle-switch {
    background: #ffffff;
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(5, 72, 33, 0.12);
    border: 1px solid #e6ece0;
}

.toggle-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 200px;
    height: 42px;
    border-radius: 999px;
    gap: 4px;
    padding: 4px;
    background: #f7f9f4;
    overflow: hidden;
}

.toggle-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--pri-color);
    border-radius: 999px;
    transition: transform 0.3s ease;
}

.toggle-slider.annual .toggle-indicator {
    transform: translateX(100%);
}

.toggle-option {
    flex: 1;
    border: none;
    background: transparent;
    color: #7a7a7a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
    padding: 10px 0;
}

.toggle-option.active {
    color: var(--acc-color);
}

.discount-hint {
    font-size: 13px;
    color: #6d7567;
}

.plan-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plan-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid #e2e8dc;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(5, 72, 33, 0.08);
    width: 400px !important;
    position: relative;
}

.plan-card .plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--pri-color);
}

.pro-ft-label {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 7px;
    background: var(--acc-color);
    color: var(--pri-color);
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--pri-color);
}

.currency-symbol {
    font-size: 20px;
    font-weight: 700;
    color: var(--pri-color);
}

.price-period {
    font-size: 14px;
    color: #6f6f6f;
}

.plan-sub {
    color: #6f6f6f;
    font-size: 16px;
}

.plan-cta {
    border: none;
    background: var(--linear-grd);
    color: var(--acc-color);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.plan-list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: #4c554a;
    font-size: 14px;
    padding: 0;
}

.checkmark {
    color: var(--sec-color);
    font-weight: 700;
    margin-right: 8px;
}

.savings {
    font-size: 13px;
    color: #0f5132;
    background: rgba(16, 185, 129, 0.12);
    padding: 6px 10px;
    border-radius: 999px;
    width: fit-content;
}

.plan-card.featured {
    /* background: linear-gradient(160deg, #ffffff 0%, #f3f7ef 100%); */
    border-color: var(--pri-color);
    position: relative;
}

/* .plan-card.featured .plan-cta {
    background: var(--pri-color);
    color: var(--acc-color);
} */

/* .plan-card.featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    border: 1px solid rgba(170, 209, 63, 0.6);
    pointer-events: none;
} */

.plan-cta:hover,
.plan-cta.featured:hover {
    background: var(--sec-color);
    color: var(--pri-color);
}

/* FAQ */
.faq-wrap {
    width: 100%;
    padding: 20px 0 80px;
}

.faq-wrap .section-head {
    text-align: center;
    margin-bottom: 32px;
}

.section-head h2 {
font-size: 32px;
font-weight: 500;
color: var(--pri-color);
}

.faq-subtitle {
    color: grey;
    font-size: 15px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8dc;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(5, 72, 33, 0.06);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--pri-color);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 18px;
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding-top: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .plan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card {
        width: 100% !important;
        max-width: 450px;
        margin: 0 auto;
    }

    .plan-card.featured {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .price-hero {
        margin-top: 100px;
        padding: 0 20px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .toggle-slider {
        width: 180px;
    }

    .plan-card {
        width: 100% !important;
        max-width: 100%;
        padding: 24px 20px;
    }

    .price-shell {
        padding: 0 16px;
    }

    .faq-wrap {
        padding: 20px 16px 60px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        max-height: 260px;
    }
}

@media (max-width: 480px) {
    .price-hero {
        margin-top: 90px;
    }

    .hero-copy h1 {
        font-size: 30px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .plan-card {
        padding: 20px 16px;
    }

    .price-amount {
        font-size: 30px;
    }

    .plan-sub {
        font-size: 14px;
    }

    .plan-cta {
        padding: 14px 16px;
        font-size: 14px;
    }
}
