#cost .cost-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    #cost .cost-options {
        grid-template-columns: repeat(2, minmax(18rem, 1fr));
    }
}

.goodnpo-how {
    background:
        radial-gradient(circle at 12% 14%, rgba(247, 174, 131, 0.22), transparent 30%),
        linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%);
}

.goodnpo-how-header {
    max-width: 760px;
    margin: 0;
    text-align: left;
}

.goodnpo-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--button-background-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.goodnpo-how-header .section-title {
    margin: 0;
    text-align: left;
}

.goodnpo-how-header p:not(.goodnpo-eyebrow) {
    max-width: 720px;
    margin: 1.25rem 0 0;
    color: var(--text-primary);
    font-size: 1.06rem;
    line-height: 1.72;
}

.goodnpo-how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
    margin-top: 2.625rem;
}

.goodnpo-how-card {
    min-width: 0;
    padding: 1.5rem;
    border: 1px solid rgba(25, 22, 51, 0.1);
    border-radius: 1rem;
    background: var(--bg-surface);
    box-shadow: 0 18px 50px rgba(25, 22, 51, 0.07);
}

.goodnpo-how-card h3 {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0 0 0.625rem;
    color: var(--text-primary);
    font-size: 1.12rem;
    line-height: 1.22;
}

.goodnpo-how-card p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.62;
}

.goodnpo-how-icon {
    display: inline-flex;
    width: 2.125rem;
    height: 2.125rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-peach);
    color: var(--brand-navy);
}

.goodnpo-how-icon svg {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.product-story-section {
    background: var(--bg-surface-alt);
}

.product-story-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.35fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    background: var(--bg-surface);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.product-story-copy {
    max-width: 44rem;
}

.product-story-copy p {
    line-height: 1.7;
}

.product-story-copy blockquote {
    margin: 2rem 0;
    border-left: 4px solid var(--button-background-color);
    padding: 0.75rem 0 0.75rem 1.25rem;
    color: var(--button-background-color);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-style: italic;
    line-height: 1.35;
}

.product-story-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

.product-story-product img {
    width: min(9rem, 60vw);
    height: min(9rem, 60vw);
    padding: 1.25rem;
    border-radius: 1rem;
    background: var(--bg-surface);
    box-shadow: var(--shadow);
}

.product-story-product .frappe-app-logo {
    --frappe-app-logo-size: min(9rem, 60vw);
    color: var(--text-inverse);
    background: var(--brand-navy);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    #cost .cost-options {
        grid-template-columns: 1fr;
    }

    .goodnpo-how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-story-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .product-story-product {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    #cost .cost-options {
        grid-template-columns: 1fr;
    }

    .goodnpo-how-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-top: 1.875rem;
    }

    .goodnpo-how-card {
        padding: 1.25rem;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.product-faq > .content > .section-title {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}
