* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--para-font-family);
    background: var(--bg-light);
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
}


/* HERO*/
.hero {
    padding: var(--space-60) 0 var(--space-48);
    background: linear-gradient(135deg, var(--bg-main) 50%, #c2dcff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-48);
    align-items: center;
}

.hero h1 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(2rem, 4.5vw, 2.9rem);
    font-weight: var(--font-700);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--space-20);
}

.hero p {
    font-size: var(--p-size-18);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    max-width: 600px;
}

.hero-card {
    backdrop-filter: blur(5px);
    background: #f9f9fab8;
    border: 3px solid var(--bg-main);
    border-radius: var(--radius-24);
    padding: var(--space-32);
    box-shadow: var(--shadow-panel);
    max-width: 600px;
    margin: auto;
}

.hero-card-title {
    display: inline-block;
    font-family: var(--heading-bold-font-family);
    font-size: var(--p-size-20);
    font-weight: var(--font-700);
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-16);
    /* border-bottom: 3px solid var(--primary-color); */
}

.hero-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.hero-faq-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-16);
    padding: var(--space-16);
    border-radius: var(--radius-12);
    background: var(--bg-main);
    backdrop-filter: blur(5px);
    border: 1px solid var(--color-border);
}

.hero-faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-active-bg);
    color: var(--primary-color);
    font-family: var(--heading-bold-font-family);
    font-weight: var(--font-800);
    font-size: var(--p-size-16);
    flex-shrink: 0;
}

.hero-faq-item strong {
    display: block;
    color: var(--text-primary);
    font-weight: var(--font-700);
    font-size: var(--p-size-16);
    margin-bottom: 2px;
}

.hero-faq-item span {
    color: var(--text-primary);
    font-size: var(--p-size-14);
    line-height: var(--leading-normal);
}



@media (max-width:1280px) {
    .hero {
        padding: var(--space-32) 0;
    }

}

@media (max-width:1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-lft {
        text-align: center;
    }

    .hero p {
        margin: auto;
    }

    .hero .btn-group {
        justify-content: center;
    }
}


/* SUPPORT CONTENT SECTIONS */
.section {
    padding: var(--space-85) 0;
    background: var(--bg-main);
}

.section-soft {
    background: linear-gradient(180deg, #f7fbff 0%, var(--bg-light) 100%);
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-64);
    gap: var(--space-48);
}

.section-header-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-eyebrow .dash {
    width: 18px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-6);
    display: inline-block;
}

.section-title {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
    font-weight: var(--font-700);
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.section-header span {
    color: var(--primary-color);
}

.section-desc {
    font-family: var(--para-font-family);
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .section-header {
        flex-direction: column;
        gap: var(--space-16);
    }
}

.feature-pill {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-14, 14px) var(--space-16);
    background: var(--bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-12);
    transition: border-color 0.2s, background 0.2s;
}

.feature-pill:hover {
    border-color: #c5d8fc;
    background: var(--color-active-bg);
}

.feature-pill strong {
    font-family: var(--heading-bold-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-700);
    color: var(--text-nav);
}

.feature-pill span {
    font-size: var(--p-size-13, 13px);
    color: var(--text-grey);
    line-height: var(--leading-normal);
}

/*  SIMPLE LIST — renewal-benefit-list*/
.simple-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.renewal-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-20);
    padding: var(--space-20) 0;
    border-bottom: 1px solid var(--color-border);
}

.renewal-benefit-list li:last-child {
    border-bottom: none;
}

.renewal-benefit-list li strong {
    font-family: var(--heading-bold-font-family);
    font-size: var(--p-size-16);
    font-weight: var(--font-700);
    color: var(--text-nav);
    min-width: 280px;
    flex-shrink: 0;
    padding-top: 2px;
}

.renewal-benefit-list li span {
    font-size: var(--p-size-14);
    color: var(--text-grey);
    line-height: var(--leading-relaxed);
}

.renewal-why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: var(--space-32);
    align-items: flex-start;
    margin-top: var(--space-32);
}

.renewal-why-copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    position: sticky;
    top: 100px;
}

.renewal-why-note {
    padding: var(--space-24);
    border-radius: var(--radius-20);
    background: var(--primary-dark);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-panel);
    position: relative;
}

.renewal-why-note::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.renewal-why-note h3 {
    margin: 0 0 12px;
    font-size: var(--p-size-22);
    color: var(--bg-main);
}

.renewal-why-note p {
    color: var(--bg-main);
}

.renewal-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-20);
}

.detail-card {
    background: var(--bg-main);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-18);
    padding: var(--space-24);
    display: grid;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--text-primary);
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-panel);
    background: var(--primary-color);
    color: var(--bg-main);

}

.detail-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-main);
    font-family: var(--heading-bold-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-700);
}

.detail-card:hover.detail-card span {
    background: var(--bg-main);
    color: var(--primary-color);
}

.detail-card h4 {
    margin: 0;
    font-size: var(--p-size-16);
    /* color: var(--text-nav); */
}

.detail-card p {
    margin: 0;
    /* color: var(--text-primary); */
    line-height: var(--leading-relaxed);
}


@media (max-width: 900px) {

    .renewal-why-grid,
    .renewal-benefit-grid,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .renewal-why-copy {
        position: static;
    }

}

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-20);
}

.card {
    background: var(--bg-main);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-16);
    padding: var(--space-28, 28px) var(--space-24);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    cursor: default;
}

.card:hover {
    box-shadow: var(--shadow-panel);
    transform: translateY(-3px);
    border-color: #c5d8fc;
}

/* Top accent on hover */
/* .card::before {
    content: '';
    display: block;
    height: 3px;
    width: 40px;
    background: var(--primary-color);
    border-radius: var(--radius-9999, 9999px);
    margin-bottom: var(--space-8);
    opacity: 0;
    transition: opacity 0.25s;
} */

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 24px;
}

.card h3 {
    font-family: var(--heading-bold-font-family);
    font-size: var(--p-size-18);
    font-weight: var(--font-800);
    color: var(--text-nav);
    letter-spacing: -0.01em;
}

.card p {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
}

.card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: var(--radius-12);
    margin-bottom: var(--space-20);
}

@media (max-width: 900px) {

    .renewal-why-grid,
    .renewal-benefit-grid,
    .hero-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* section-soft cards get light bg override */
.section-soft .card {
    background: var(--bg-main);
}


/* ── PRICING SECTION ── */

.pricing-sec {
    background: var(--bg-main);
    padding: var(--space-85) 0;
}

.pricing-inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: var(--space-24);
}

.pricing-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-family: var(--para-font-family);
    font-size: var(--p-size-12);
    font-weight: var(--font-600);
    color: var(--text-grey);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-eyebrow::before {
    content: '—';
    color: var(--text-grey);
}

.pricing-heading {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: var(--font-800);
    color: var(--text-nav);
    line-height: var(--leading-tight);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-8);
}

.pricing-sub {
    font-family: var(--para-font-family);
    font-size: var(--p-size-15);
    color: var(--text-primary);
}

.btn-see-pricing {
    background: var(--primary-color);
    color: var(--bg-main);
    border: none;
    border-radius: var(--radius-8);
    padding: 14px var(--space-24);
    font-size: var(--p-size-15);
    font-weight: var(--font-700);
    font-family: var(--para-font-family);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
    transition: background 0.18s;
}

.btn-see-pricing:hover {
    background: var(--primary-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
    align-items: stretch;
}

.plan-card {
    background: var(--bg-main);
    border: 1.5px solid var(--border-blue);
    border-radius: var(--radius-24);
    padding: var(--space-24);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.18s;
    /* height: 503px; */
}

.plan-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 24px rgba(26, 86, 240, 0.12);
}

.plan-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-name {
    font-family: var(--heading-bold-font-family);
    font-size: 22px;
    font-weight: var(--font-800);
    color: var(--text-nav);
}

.most-popular-badge {
    background: var(--bg-light-blue);
    color: var(--primary-color);
    font-family: var(--para-font-family);
    font-size: var(--p-size-12);
    font-weight: var(--font-600);
    padding: 5px 12px;
    border-radius: var(--radius-9999);
    white-space: nowrap;
}

.plan-desc {
    font-family: var(--para-font-family);
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: 160%;
    margin-bottom: 24px;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price-amount {
    font-family: var(--heading-bold-font-family);
    font-size: 44px;
    font-weight: var(--font-800);
    color: var(--text-nav);
    line-height: 1;
}

.plan-price-amount.offer {
    font-size: var(--h3-size-24);
    color: #505151d2;
    text-decoration: line-through;
}

.plan-price-period {
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    color: var(--text-primary);
    font-weight: var(--font-400);
}

.plan-price-note {
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-400);
    color: var(--text-primary);
    margin-top: -8px;
}

/* CTA Button */
.plan-cta {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-10);
    font-family: var(--para-font-family);
    font-size: var(--p-size-15);
    font-weight: var(--font-700);
    cursor: pointer;
    transition: all 0.18s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.plan-cta.outline {
    background: transparent;
    color: var(--text-nav);
    border: 2px solid var(--border-blue);
}

.plan-cta.outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.plan-cta.solid {
    background: var(--primary-color);
    color: var(--bg-main);
    border: none;
}

.plan-cta.solid:hover {
    background: var(--primary-dark);
}

.plan-divider {
    border: none;
    border-top: 1px solid var(--border-blue);
    margin: 0;
}

.plan-best-for {
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
}

.plan-best-for strong {
    color: var(--text-primary);
    font-weight: var(--font-700);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .pricing-sec {
        padding: 40px 0;
    }

    .plan-price-amount {
        font-size: 36px;
    }

    .pricing-heading {
        font-size: 24px;
    }
}


/*RENEWAL GRID — upgrade section*/
.renewal-grid {
    display: grid;
    grid-template-columns: 1fr 451px;
    gap: var(--space-64);
    align-items: start;
    justify-content: space-between;
}

.upgrade-lft {
    padding-left: var(--space-32);
}

/* Upgrade step list */
.renewal-step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step-counter;
}

.upgrd-renewal-step-list li,
ul.renewal-step-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-20);
    padding: var(--space-12) 0;
    margin-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-border);
    counter-increment: step-counter;
    position: relative;
    font-size: var(--p-size-18);
}

.upgrd-renewal-step-list li:last-child {
    border-bottom: none;
}

/* Number badge — auto from counter */
.upgrade-lft .upgrd-renewal-step-list li::before {
    content: counter(step-counter, decimal-leading-zero);
    font-family: var(--heading-bold-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-700);
    color: var(--bg-main);
    background: var(--bg-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ul list gets bullet dot */
ul.renewal-step-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--success-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 0 4px rgba(49, 158, 61, 0.12);
}

.renewal-step-list li strong {
    font-family: var(--heading-bold-font-family);
    font-size: var(--p-size-16);
    font-weight: var(--font-700);
    color: var(--text-nav);
    display: block;
    margin-bottom: 4px;
}

.renewal-step-list li span {
    font-size: var(--p-size-14);
    color: var(--text-grey);
    line-height: var(--leading-relaxed);
    display: block;
}

/* Content wrapper for strong+span inside li when using counter */
ul.renewal-step-list li>div,
ul.renewal-step-list li>strong {
    display: block;
}

/* RENEWAL CTA PANEL*/
.renewal-cta-panel {
    background: var(--bg-dark);
    border-radius: var(--radius-24);
    padding: var(--space-32);
    position: sticky;
    top: var(--space-16);
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
    /* width: 450px; */
}

.renewal-cta-panel h2 {
    font-family: var(--heading-bold-font-family);
    font-size: var(--h2-size-28);
    font-weight: var(--font-800);
    color: #fff;
    line-height: var(--leading-tight);
    letter-spacing: -0.01em;
}

.renewal-cta-panel p {
    font-size: var(--p-size-14);
    color: var(--bg-main);
    line-height: var(--leading-relaxed);
}

.renewal-cta-panel .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.renewal-cta-panel .btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
}


.renew {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-48);
    align-items: self-start;
}

.renew-card {
    padding: var(--space-24);
    border: 1px solid gray;
    border-radius: var(--radius-16);
    color: var(--bg-main);
    background: var(--bg-dark);
    position: sticky;
    top: var(--space-85);
}

.image {
    width: 80%;
    padding: 20px;
    margin: auto;
    background: var(--bg-light-blue);
    margin-bottom: var(--space-20);
    border-radius: var(--radius-16);
}

.image img {
    border-radius: var(--radius-16);
}

@media (max-width: 1100px) {
    .section-title {
        font-size: var(--h2-size-32);
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .renewal-cta-panel {
        position: static;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-48);
    }
}

@media (max-width:1000px) {
    .renewal-grid {
        grid-template-columns: 1fr;
    }

    .renew {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section {
        padding: var(--space-48) 0;
    }

    .renewal-hero {
        padding: var(--space-48) 0 var(--space-32);
    }

    .section-title {
        font-size: var(--h2-size-28);
    }

    .section-header {
        margin-bottom: var(--space-32);
    }

    .hero-lft h1 {
        font-size: var(--h2-size-28);
    }


    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas,
    .renewal-cta-buttons,
    .hero .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .renewal-benefit-list li {
        flex-direction: column;
        gap: var(--space-8);
    }

    .renewal-benefit-list li strong {
        min-width: unset;
    }

    .hero-card,
    .renewal-cta-panel {
        padding: var(--space-24);
    }

    .renewal-grid {
        flex-direction: column;
        gap: var(--space-48);
    }
}


/* ── FAQ SECTION ── */
.faq-section {
    padding: var(--space-85) 0;
    background: var(--bg-main);
}

.faq-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-24);
    margin-bottom: var(--space-48);
    flex-wrap: wrap;
}

.section-heading {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
    font-weight: var(--font-800);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-8);
}

.faq-header__left {
    flex: 1;
}

.section-eyebrow__line {
    width: 24px;
    height: 1.5px;
    background: var(--primary-color);
}

.section-eyebrow__text {
    font-size: var(--p-size-12);
    font-weight: var(--font-600);
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.collapse-all-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    cursor: pointer;
    color: var(--primary-color);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    padding: 8px 14px;
    border-radius: var(--radius-9999);
    border: 1.5px solid var(--color-border);
    background: var(--bg-main);
    user-select: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-top: 6px;
}

.collapse-all-btn:hover {
    background: #eaf0ff;
}

.collapse-all-btn .btn-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-700);
}


.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item {
    background: var(--bg-main);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-12);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 101, 242, 0.08);
}

.faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
    padding: var(--space-20) var(--space-24);
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--para-font-family);
    font-size: clamp(var(--p-size-18), 2.5vw, 22px);
    font-weight: var(--font-500);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    letter-spacing: -0.38px;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-grey);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 var(--space-24);
}

.faq-answer p {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    padding-bottom: var(--space-20);
    max-width: 1000px;
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon svg {
    stroke: var(--primary-color);
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
    max-height: 300px;
    padding-top: 0;
}

#faq1:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

#faq1:checked~.faq-answer {
    max-height: 300px;
}



@media (max-width: 767px) {
    .faq-section {
        padding: var(--space-48) var(--space-16);
    }


    .faq-label {
        padding: var(--space-16);
        gap: var(--space-12);
    }

    .faq-answer {
        padding: 0 var(--space-16);
    }

    .faq-item input[type="checkbox"]:checked~.faq-answer {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-16);
    }
}