body.mini-faq-page {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: var(--sans);
    overflow-x: hidden;
}

body.mini-faq-page a {
    color: inherit;
    text-decoration: none;
}

.faq-header .primary-nav a,
.faq-header .primary-nav .nav-disabled {
    position: relative;
    padding-bottom: 8px;
}

.faq-header .primary-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--pink);
    transform: translateX(-50%);
}

.faq-page {
    padding-top: 14px;
}

.faq-hero {
    width: min(860px, calc(100% - 40px));
    margin: 0 auto 34px;
    text-align: center;
}

.faq-hero h1 {
    margin: 0;
    color: var(--plum);
    font-family: var(--serif);
    font-size: clamp(54px, 5.5vw, 72px);
    line-height: 0.96;
}

.faq-hero p {
    margin: 14px 0 0;
    font-family: var(--serif);
    font-size: clamp(22px, 2.1vw, 29px);
    font-weight: 600;
}

.faq-accordion {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(247, 37, 104, 0.12);
    border-radius: 26px;
    background: #fef7f2;
    box-shadow: 0 12px 30px rgba(116, 37, 70, 0.045);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover,
.faq-item.is-open {
    box-shadow: 0 18px 40px rgba(116, 37, 70, 0.08);
}

.faq-item.is-open {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.96);
}

.faq-item h2 {
    margin: 0;
}

.faq-item button {
    width: 100%;
    min-height: 74px;
    padding: 20px 28px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--plum);
    cursor: pointer;
    text-align: left;
    font: 800 19px/1.3 var(--sans);
}

.faq-item.is-open button {
    color: var(--pink);
}

.faq-item i {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
}

.faq-item i::before,
.faq-item i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.faq-item i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item.is-open i::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 240ms ease;
}

.faq-panel p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 28px;
    color: #4d3346;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.65;
    transition: padding-bottom 240ms ease;
}

.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel p {
    padding-bottom: 24px;
}

.faq-cta {
    position: relative;
    overflow: visible;
    min-height: 260px;
    margin-top: 40px;
    padding: 70px 0 45px;
    background: linear-gradient(90deg, #f8ad9f 0%, #f5aaa3 100%);
}

.faq-cta__wave {
    position: absolute;
    inset: -1px 0 auto;
    z-index: 2;
    width: 100%;
    height: 70px;
}

.faq-cta__wave path {
    fill: #fff;
}

.faq-cta__inner {
    position: relative;
    z-index: 3;
    width: min(1200px, calc(100% - 96px));
    min-height: 145px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(430px, 0.98fr) minmax(348px, auto) 280px;
    align-items: start;
    gap: 34px;
}

.faq-cta__text {
    align-self: start;
    padding-left: clamp(20px, 5vw, 72px);
    padding-top: 6px;
    min-width: 0;
}

.faq-cta h2 {
    margin: 0 0 9px;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(31px, 3.1vw, 40px);
    line-height: 1.1;
}

.faq-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 1.35vw, 19px);
    font-weight: 700;
}

.faq-cta__button {
    align-self: center;
    justify-self: start;
    margin-top: 28px;
    margin-left: 16px;
    white-space: nowrap;
}

.faq-cta__button:hover {
    transform: translateY(-2px) scale(1.02);
}

.faq-cta__flower {
    position: absolute;
    z-index: 4;
    bottom: 0;
    pointer-events: none;
    user-select: none;
}

.faq-cta__flower--left {
    left: 0;
    width: clamp(190px, 18vw, 255px);
}

.faq-cta__flower--right {
    right: 0;
    width: clamp(255px, 23.25vw, 323px);
}

@media (max-width: 1200px) {
    .faq-cta__inner {
        grid-template-columns: minmax(360px, 0.96fr) minmax(330px, auto) 220px;
        gap: 28px;
    }

    .faq-cta__flower--right {
        width: min(270px, 24vw);
    }
}

@media (max-width: 1080px) {
    .faq-cta__inner {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .faq-cta__text {
        padding-left: 0;
        padding-top: 0;
    }

    .faq-cta__button {
        justify-self: center;
        margin-top: 0;
        margin-left: 0;
    }

    .faq-cta__button:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

@media (max-width: 900px) {
    .faq-accordion {
        width: calc(100% - 28px);
        margin-bottom: 42px;
    }

    .faq-item button {
        min-height: 68px;
        padding: 18px 20px;
        font-size: 17px;
    }

    .faq-panel p {
        padding-inline: 20px;
        font-size: 16px;
    }

    .faq-cta {
        min-height: 320px;
        padding: 85px 0 55px;
    }

    .faq-cta__inner {
        width: calc(100% - 48px);
        min-height: 180px;
        gap: 24px;
    }

    .faq-cta__button {
        justify-self: center;
    }

    .faq-cta__flower--left {
        width: 150px;
        opacity: 0.75;
    }

    .faq-cta__flower--right {
        width: 230px;
        opacity: 0.75;
    }
}

@media (max-width: 620px) {
    .faq-cta {
        overflow: hidden;
    }

    .faq-cta__flower {
        z-index: 1;
    }

    .faq-cta__flower--left {
        width: 118px;
    }

    .faq-cta__flower--right {
        width: 172px;
    }
}
